From: Chris Williams Date: Fri, 4 Sep 2009 14:52:27 +0000 (+0100) Subject: Moved Module::Load from lib/ to ext/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b41b8addf5576a157ecc804475e7a0a036c02641;p=p5sagit%2Fp5-mst-13.2.git Moved Module::Load from lib/ to ext/ --- diff --git a/MANIFEST b/MANIFEST index d278456..bcf9572 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1101,6 +1101,14 @@ ext/Module-CoreList/README Module::CoreList ext/Module-CoreList/t/corelist.t Module::CoreList tests ext/Module-CoreList/t/find_modules.t Module::CoreList tests ext/Module-CoreList/t/pod.t Module::CoreList tests +ext/Module-Load/lib/Module/Load.pm Module::Load +ext/Module-Load/t/01_Module-Load.t Module::Load tests +ext/Module-Load/t/to_load/config_file Module::Load tests +ext/Module-Load/t/to_load/LoadIt.pm Module::Load tests +ext/Module-Load/t/to_load/LoadMe.pl Module::Load tests +ext/Module-Load/t/to_load/Must/Be/Loaded.pm Module::Load tests +ext/Module-Load/t/to_load/TestModule.pm Module::Load tests +ext/Module-Load/t/to_load/ToBeLoaded Module::Load tests ext/Module-Load-Conditional/lib/Module/Load/Conditional.pm Module::Conditional ext/Module-Load-Conditional/t/01_Module_Load_Conditional.t Module::Conditional tests ext/Module-Load-Conditional/t/02_Parse_Version.t Module::Load::Conditional tests @@ -2839,14 +2847,6 @@ lib/Module/Build/t/write_default_maniskip.t Module::Build tests lib/Module/Build/t/xs.t Module::Build lib/Module/Build/Version.pm Module::Build lib/Module/Build/YAML.pm Module::Build -lib/Module/Load.pm Module::Load -lib/Module/Load/t/01_Module-Load.t Module::Load tests -lib/Module/Load/t/to_load/config_file Module::Load tests -lib/Module/Load/t/to_load/LoadIt.pm Module::Load tests -lib/Module/Load/t/to_load/LoadMe.pl Module::Load tests -lib/Module/Load/t/to_load/Must/Be/Loaded.pm Module::Load tests -lib/Module/Load/t/to_load/TestModule.pm Module::Load tests -lib/Module/Load/t/to_load/ToBeLoaded Module::Load tests lib/Net/Changes libnet lib/Net/Cmd.pm libnet lib/Net/Config.eg libnet diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 1a5a756..9af613d 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1177,7 +1177,7 @@ package Maintainers; { 'MAINTAINER' => 'kane', 'DISTRIBUTION' => 'KANE/Module-Load-0.16.tar.gz', - 'FILES' => q[lib/Module/Load/t lib/Module/Load.pm], + 'FILES' => q[ext/Module-Load], 'CPAN' => 1, 'UPSTREAM' => 'cpan', }, diff --git a/ext/.gitignore b/ext/.gitignore index 4c3b30f..60a68bf 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -33,6 +33,7 @@ ppport.h /Log-Message/Makefile.PL /Log-Message-Simple/Makefile.PL /Math-BigInt-FastCalc/Makefile.PL +/Module-Load/Makefile.PL /Module-Load-Conditional/Makefile.PL /Module-Loaded/Makefile.PL /mro/Makefile.PL diff --git a/lib/Module/Load.pm b/ext/Module-Load/lib/Module/Load.pm similarity index 100% rename from lib/Module/Load.pm rename to ext/Module-Load/lib/Module/Load.pm diff --git a/lib/Module/Load/t/01_Module-Load.t b/ext/Module-Load/t/01_Module-Load.t similarity index 100% rename from lib/Module/Load/t/01_Module-Load.t rename to ext/Module-Load/t/01_Module-Load.t diff --git a/lib/Module/Load/t/to_load/LoadIt.pm b/ext/Module-Load/t/to_load/LoadIt.pm similarity index 100% rename from lib/Module/Load/t/to_load/LoadIt.pm rename to ext/Module-Load/t/to_load/LoadIt.pm diff --git a/lib/Module/Load/t/to_load/LoadMe.pl b/ext/Module-Load/t/to_load/LoadMe.pl similarity index 100% rename from lib/Module/Load/t/to_load/LoadMe.pl rename to ext/Module-Load/t/to_load/LoadMe.pl diff --git a/lib/Module/Load/t/to_load/Must/Be/Loaded.pm b/ext/Module-Load/t/to_load/Must/Be/Loaded.pm similarity index 100% rename from lib/Module/Load/t/to_load/Must/Be/Loaded.pm rename to ext/Module-Load/t/to_load/Must/Be/Loaded.pm diff --git a/lib/Module/Load/t/to_load/TestModule.pm b/ext/Module-Load/t/to_load/TestModule.pm similarity index 100% rename from lib/Module/Load/t/to_load/TestModule.pm rename to ext/Module-Load/t/to_load/TestModule.pm diff --git a/lib/Module/Load/t/to_load/ToBeLoaded b/ext/Module-Load/t/to_load/ToBeLoaded similarity index 100% rename from lib/Module/Load/t/to_load/ToBeLoaded rename to ext/Module-Load/t/to_load/ToBeLoaded diff --git a/lib/Module/Load/t/to_load/config_file b/ext/Module-Load/t/to_load/config_file similarity index 100% rename from lib/Module/Load/t/to_load/config_file rename to ext/Module-Load/t/to_load/config_file diff --git a/lib/.gitignore b/lib/.gitignore index 317b0b2..46d1b52 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -61,6 +61,7 @@ /MIME /Math/BigInt/FastCalc.pm /Module/CoreList.pm +/Module/Load.pm /Module/Load/Conditional.pm /Module/Loaded.pm /Module/Pluggable.pm