From: Nicholas Clark Date: Mon, 28 Sep 2009 15:30:53 +0000 (+0100) Subject: Move SelfLoader from ext/ to dist/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=2d99478739a24349cd74c9af7ec0da283ad4d42e;p=p5sagit%2Fp5-mst-13.2.git Move SelfLoader from ext/ to dist/ --- diff --git a/MANIFEST b/MANIFEST index 6cea1bd..135fcbd 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1160,6 +1160,9 @@ dist/Safe/t/safe3.t See if Safe works dist/Safe/t/safeload.t Tests that some modules can be loaded by Safe dist/Safe/t/safeops.t Tests that all ops can be trapped by Safe dist/Safe/t/safeuniversal.t Tests Safe with functions from universal.c +dist/SelfLoader/lib/SelfLoader.pm Load functions only on demand +dist/SelfLoader/t/01SelfLoader.t See if SelfLoader works +dist/SelfLoader/t/02SelfLoader-buggy.t See if SelfLoader works djgpp/config.over DOS/DJGPP port djgpp/configure.bat DOS/DJGPP port djgpp/djgpp.c DOS/DJGPP port @@ -2548,9 +2551,6 @@ ext/SDBM_File/sdbm/tune.h SDBM kit ext/SDBM_File/sdbm/util.c SDBM kit ext/SDBM_File/t/sdbm.t See if SDBM_File works ext/SDBM_File/typemap SDBM extension interface types -ext/SelfLoader/lib/SelfLoader.pm Load functions only on demand -ext/SelfLoader/t/01SelfLoader.t See if SelfLoader works -ext/SelfLoader/t/02SelfLoader-buggy.t See if SelfLoader works ext/Shell/Shell.pm Make AUTOLOADed system() calls ext/Shell/t/Shell.t Tests for above ext/Socket/Makefile.PL Socket extension makefile writer diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 738570d..802edfa 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1330,7 +1330,7 @@ use File::Glob qw(:case); 'FILES' => q[ext/SelfLoader], 'EXCLUDED' => [ qw{ t/00pod.t } ], 'CPAN' => 1, - 'UPSTREAM' => "blead", + 'UPSTREAM' => 'blead', }, 'Shell' => diff --git a/ext/SelfLoader/lib/SelfLoader.pm b/dist/SelfLoader/lib/SelfLoader.pm similarity index 100% rename from ext/SelfLoader/lib/SelfLoader.pm rename to dist/SelfLoader/lib/SelfLoader.pm diff --git a/ext/SelfLoader/t/01SelfLoader.t b/dist/SelfLoader/t/01SelfLoader.t similarity index 100% rename from ext/SelfLoader/t/01SelfLoader.t rename to dist/SelfLoader/t/01SelfLoader.t diff --git a/ext/SelfLoader/t/02SelfLoader-buggy.t b/dist/SelfLoader/t/02SelfLoader-buggy.t similarity index 100% rename from ext/SelfLoader/t/02SelfLoader-buggy.t rename to dist/SelfLoader/t/02SelfLoader-buggy.t