restructure file locations
authorMischa POSLAWSKY <perl@shiar.org>
Wed, 28 May 2008 08:41:06 +0000 (08:41 +0000)
committerMischa POSLAWSKY <perl@shiar.org>
Wed, 28 May 2008 10:49:14 +0000 (10:49 +0000)
Use root directories lib/ (pm and pod) and bin/ (executable scripts).
This is the common layout of modern modules, and in fact ever more
expected (by Module::Build for example).

15 files changed:
MANIFEST
Makefile.PL
bin/plp.cgi [moved from plp.cgi with 100% similarity]
bin/plp.fcgi [moved from plp.fcgi with 100% similarity]
lib/PLP.pm [moved from PLP.pm with 100% similarity]
lib/PLP/Backend/Apache.pm [moved from PLP/Backend/Apache.pm with 100% similarity]
lib/PLP/Backend/CGI.pm [moved from PLP/Backend/CGI.pm with 100% similarity]
lib/PLP/Backend/FastCGI.pm [moved from PLP/Backend/FastCGI.pm with 100% similarity]
lib/PLP/FAQ.pod [moved from PLP/FAQ.pod with 100% similarity]
lib/PLP/Fields.pm [moved from PLP/Fields.pm with 100% similarity]
lib/PLP/Functions.pm [moved from PLP/Functions.pm with 100% similarity]
lib/PLP/HowTo.pod [moved from PLP/HowTo.pod with 100% similarity]
lib/PLP/Tie/Delay.pm [moved from PLP/Tie/Delay.pm with 100% similarity]
lib/PLP/Tie/Headers.pm [moved from PLP/Tie/Headers.pm with 100% similarity]
lib/PLP/Tie/Print.pm [moved from PLP/Tie/Print.pm with 100% similarity]

index 5a004a81a31534ff0f7399be5face279cd881572..606b53f872961910069908368f2b04eed11edf17 100644 (file)
--- a/MANIFEST
+++ b/MANIFEST
@@ -2,15 +2,16 @@ Changes
 Makefile.PL
 MANIFEST
 META.yml
-PLP.pm
 README
-plp.cgi
+COPYING
 plp.vim
-PLP/FAQ.pod
-PLP/Fields.pm
-PLP/Functions.pm
-PLP/HowTo.pod
-PLP/Tie/Delay.pm
-PLP/Tie/Headers.pm
-PLP/Tie/Print.pm
+lib/PLP.pm
+lib/PLP/Fields.pm
+lib/PLP/Functions.pm
+lib/PLP/Tie/Delay.pm
+lib/PLP/Tie/Headers.pm
+lib/PLP/Tie/Print.pm
+lib/PLP/FAQ.pod
+lib/PLP/HowTo.pod
+bin/plp.cgi
 t/Functions.t
index a9dd6134d62518093b68faf78a9c2e3417b85b90..dc01c663e5474dbaf365c33d9a8386126c73a75f 100644 (file)
@@ -8,9 +8,9 @@ use ExtUtils::MakeMaker;
 
 WriteMakefile(
        NAME          => 'PLP',
-       VERSION_FROM  => 'PLP.pm',
+       VERSION_FROM  => 'lib/PLP.pm',
        PREREQ_PM     => {},
-       ABSTRACT_FROM => 'PLP.pm',
+       ABSTRACT_FROM => 'lib/PLP.pm',
        NO_META       => 1,
        (LICENSE      => 'mit') x ($ExtUtils::MakeMaker::VERSION > 6.30),
        AUTHOR        => 'Mischa POSLAWSKY <perl@shiar.org>',
similarity index 100%
rename from plp.cgi
rename to bin/plp.cgi
similarity index 100%
rename from plp.fcgi
rename to bin/plp.fcgi
similarity index 100%
rename from PLP.pm
rename to lib/PLP.pm
similarity index 100%
rename from PLP/Backend/CGI.pm
rename to lib/PLP/Backend/CGI.pm
similarity index 100%
rename from PLP/FAQ.pod
rename to lib/PLP/FAQ.pod
similarity index 100%
rename from PLP/Fields.pm
rename to lib/PLP/Fields.pm
similarity index 100%
rename from PLP/Functions.pm
rename to lib/PLP/Functions.pm
similarity index 100%
rename from PLP/HowTo.pod
rename to lib/PLP/HowTo.pod
similarity index 100%
rename from PLP/Tie/Delay.pm
rename to lib/PLP/Tie/Delay.pm
similarity index 100%
rename from PLP/Tie/Headers.pm
rename to lib/PLP/Tie/Headers.pm
similarity index 100%
rename from PLP/Tie/Print.pm
rename to lib/PLP/Tie/Print.pm