From: Nicholas Clark Date: Mon, 28 Sep 2009 15:46:59 +0000 (+0100) Subject: Move Switch from ext/ to dist/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=51bde7eebd4cedd091a03b9c38593f8e945fb4a9;p=p5sagit%2Fp5-mst-13.2.git Move Switch from ext/ to dist/ --- diff --git a/MANIFEST b/MANIFEST index 135fcbd..5b63f66 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1163,6 +1163,15 @@ 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 +dist/Switch/Changes Changes for Switch.pm +dist/Switch/Makefile.PL Makefile.PL for Switch.pm +dist/Switch/MANIFEST MANIFEST for Switch.pm +dist/Switch/META.yml META.yml for Switch.pm +dist/Switch/README README for Switch.pm +dist/Switch/Switch.pm Switch for Perl +dist/Switch/t/given.t See if Perl 6 given (switch) works +dist/Switch/t/nested.t See if nested switch works +dist/Switch/t/switch.t See if Perl 5 switch works djgpp/config.over DOS/DJGPP port djgpp/configure.bat DOS/DJGPP port djgpp/djgpp.c DOS/DJGPP port @@ -2607,15 +2616,6 @@ ext/Storable/t/tied.t See if Storable works ext/Storable/t/utf8hash.t See if Storable works ext/Storable/t/utf8.t See if Storable works ext/Storable/t/weak.t Can Storable store weakrefs -ext/Switch/Changes Changes for Switch.pm -ext/Switch/Makefile.PL Makefile.PL for Switch.pm -ext/Switch/MANIFEST MANIFEST for Switch.pm -ext/Switch/META.yml META.yml for Switch.pm -ext/Switch/README README for Switch.pm -ext/Switch/Switch.pm Switch for Perl -ext/Switch/t/given.t See if Perl 6 given (switch) works -ext/Switch/t/nested.t See if nested switch works -ext/Switch/t/switch.t See if Perl 5 switch works ext/Sys-Hostname/Hostname.pm Sys::Hostname extension Perl module ext/Sys-Hostname/Hostname.xs Sys::Hostname extension external subroutines ext/Sys-Hostname/t/Hostname.t See if Sys::Hostname works diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 802edfa..bd0f470 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1359,7 +1359,7 @@ use File::Glob qw(:case); 'DISTRIBUTION' => 'RGARCIA/Switch-2.14.tar.gz', 'FILES' => q[ext/Switch], 'CPAN' => 1, - 'UPSTREAM' => "blead", + 'UPSTREAM' => 'blead', }, 'Sys::Syslog' => diff --git a/ext/Switch/Changes b/dist/Switch/Changes similarity index 100% rename from ext/Switch/Changes rename to dist/Switch/Changes diff --git a/ext/Switch/MANIFEST b/dist/Switch/MANIFEST similarity index 100% rename from ext/Switch/MANIFEST rename to dist/Switch/MANIFEST diff --git a/ext/Switch/META.yml b/dist/Switch/META.yml similarity index 100% rename from ext/Switch/META.yml rename to dist/Switch/META.yml diff --git a/ext/Switch/Makefile.PL b/dist/Switch/Makefile.PL similarity index 100% rename from ext/Switch/Makefile.PL rename to dist/Switch/Makefile.PL diff --git a/ext/Switch/README b/dist/Switch/README similarity index 100% rename from ext/Switch/README rename to dist/Switch/README diff --git a/ext/Switch/Switch.pm b/dist/Switch/Switch.pm similarity index 100% rename from ext/Switch/Switch.pm rename to dist/Switch/Switch.pm diff --git a/ext/Switch/t/given.t b/dist/Switch/t/given.t similarity index 100% rename from ext/Switch/t/given.t rename to dist/Switch/t/given.t diff --git a/ext/Switch/t/nested.t b/dist/Switch/t/nested.t similarity index 100% rename from ext/Switch/t/nested.t rename to dist/Switch/t/nested.t diff --git a/ext/Switch/t/switch.t b/dist/Switch/t/switch.t similarity index 100% rename from ext/Switch/t/switch.t rename to dist/Switch/t/switch.t