From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on dcvr.yhbt.net X-Spam-Level: X-Spam-ASN: X-Spam-Status: No, score=-2.9 required=3.0 tests=ALL_TRUSTED,AWL,BAYES_00, URIBL_BLOCKED shortcircuit=no autolearn=unavailable version=3.3.2 X-Original-To: meta@public-inbox.org Received: from localhost (dcvr.yhbt.net [127.0.0.1]) by dcvr.yhbt.net (Postfix) with ESMTP id 960CB20579; Thu, 3 Mar 2016 03:38:40 +0000 (UTC) From: Eric Wong To: meta@public-inbox.org Cc: Eric Wong Subject: [PATCH 1/2] move scripts to script/ directory Date: Thu, 3 Mar 2016 03:38:37 +0000 Message-Id: <20160303033838.24778-2-e@80x24.org> In-Reply-To: <20160303033838.24778-1-e@80x24.org> References: <20160303033838.24778-1-e@80x24.org> List-Id: This seems to match more closely with what is expected of Perl packages based on how blib is used. Hopefully makes the top-level source tree less cluttered and things easier-to-find. --- MANIFEST | 7 ++++--- Makefile.PL | 2 +- ssoma => script/ssoma | 0 ssoma-mda => script/ssoma-mda | 0 ssoma-rm => script/ssoma-rm | 0 5 files changed, 5 insertions(+), 4 deletions(-) rename ssoma => script/ssoma (100%) rename ssoma-mda => script/ssoma-mda (100%) rename ssoma-rm => script/ssoma-rm (100%) diff --git a/MANIFEST b/MANIFEST index ebfbe09..f610ad8 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,5 +1,6 @@ .gitignore COPYING +Documentation/.gitignore Documentation/include.mk Documentation/ssoma-mda.pod Documentation/ssoma-rm.pod @@ -16,9 +17,9 @@ lib/Ssoma/GitIndexInfo.pm lib/Ssoma/IMAP.pm lib/Ssoma/MDA.pm lib/Ssoma/Remover.pm -ssoma -ssoma-mda -ssoma-rm +script/ssoma +script/ssoma-mda +script/ssoma-rm t/all.t t/extractor.t t/git.t diff --git a/Makefile.PL b/Makefile.PL index 6316423..bf30ad0 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -11,7 +11,7 @@ WriteMakefile( VERSION => '0.1.0', AUTHOR => 'Eric Wong ', ABSTRACT => 'some sort of mail archiver', - EXE_FILES => [qw/ssoma-mda ssoma ssoma-rm/], + EXE_FILES => [ map { "script/$_" } qw/ssoma-mda ssoma ssoma-rm/], PREREQ_PM => { # Keep this sorted and synced to the INSTALL document 'Digest::SHA' => 0, diff --git a/ssoma b/script/ssoma similarity index 100% rename from ssoma rename to script/ssoma diff --git a/ssoma-mda b/script/ssoma-mda similarity index 100% rename from ssoma-mda rename to script/ssoma-mda diff --git a/ssoma-rm b/script/ssoma-rm similarity index 100% rename from ssoma-rm rename to script/ssoma-rm -- EW