From: Nicholas Clark Date: Sun, 13 Sep 2009 15:12:13 +0000 (+0100) Subject: Move Getopt::Long from lib to ext. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=359ab69c2e6e9e71dc5be4023a8ee521e8795dac;p=p5sagit%2Fp5-mst-13.2.git Move Getopt::Long from lib to ext. --- diff --git a/MANIFEST b/MANIFEST index b7f8b79..69504e6 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1292,6 +1292,15 @@ ext/GDBM_File/hints/sco.pl Hint for GDBM_File for named architecture ext/GDBM_File/Makefile.PL GDBM extension makefile writer ext/GDBM_File/t/gdbm.t See if GDBM_File works ext/GDBM_File/typemap GDBM extension interface types +ext/Getopt-Long/CHANGES Getopt::Long changes +ext/Getopt-Long/lib/Getopt/Long.pm Fetch command options (GetOptions) +ext/Getopt-Long/README Getopt::Long README +ext/Getopt-Long/t/gol-basic.t See if Getopt::Long works +ext/Getopt-Long/t/gol-compat.t See if Getopt::Long works +ext/Getopt-Long/t/gol-linkage.t See if Getopt::Long works +ext/Getopt-Long/t/gol-oo.t See if Getopt::Long works +ext/Getopt-Long/t/gol-xargv.t See if Getopt::Long works +ext/Getopt-Long/t/gol-xstring.t See if Getopt::Long works ext/Hash-Util/Changes Change history of Hash::Util ext/Hash-Util-FieldHash/Changes Changes for Hash::Util::FieldHash ext/Hash-Util-FieldHash/FieldHash.xs XS portion @@ -3184,15 +3193,6 @@ lib/finddepth.pl A depth-first find emulator--used by find2perl lib/find.pl A find emulator--used by find2perl lib/flush.pl Routines to do single flush lib/getcwd.pl A getcwd() emulator -lib/Getopt/Long/CHANGES Getopt::Long changes -lib/Getopt/Long.pm Fetch command options (GetOptions) -lib/Getopt/Long/README Getopt::Long README -lib/Getopt/Long/t/gol-basic.t See if Getopt::Long works -lib/Getopt/Long/t/gol-compat.t See if Getopt::Long works -lib/Getopt/Long/t/gol-linkage.t See if Getopt::Long works -lib/Getopt/Long/t/gol-oo.t See if Getopt::Long works -lib/Getopt/Long/t/gol-xargv.t See if Getopt::Long works -lib/Getopt/Long/t/gol-xstring.t See if Getopt::Long works lib/getopt.pl Perl library supporting option parsing lib/getopts.pl Perl library supporting option parsing lib/Getopt/Std.pm Fetch command options (getopt, getopts) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index e533365..ede1085 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -742,13 +742,15 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'jv', 'DISTRIBUTION' => 'JV/Getopt-Long-2.38.tar.gz', - 'FILES' => q[lib/Getopt/Long.pm - lib/Getopt/Long + 'FILES' => q[ext/Getopt-Long lib/newgetopt.pl ], 'EXCLUDED' => [ qr{^examples/}, qw{perl-Getopt-Long.spec}, ], + 'MAP' => { '' => 'ext/Getopt-Long/', + 'lib/newgetopt.pl' => 'lib/newgetopt.pl', + }, 'CPAN' => 1, 'UPSTREAM' => 'cpan', }, diff --git a/lib/Getopt/Long/CHANGES b/ext/Getopt-Long/CHANGES similarity index 100% rename from lib/Getopt/Long/CHANGES rename to ext/Getopt-Long/CHANGES diff --git a/lib/Getopt/Long/README b/ext/Getopt-Long/README similarity index 100% rename from lib/Getopt/Long/README rename to ext/Getopt-Long/README diff --git a/lib/Getopt/Long.pm b/ext/Getopt-Long/lib/Getopt/Long.pm similarity index 100% rename from lib/Getopt/Long.pm rename to ext/Getopt-Long/lib/Getopt/Long.pm diff --git a/lib/Getopt/Long/t/gol-basic.t b/ext/Getopt-Long/t/gol-basic.t similarity index 100% rename from lib/Getopt/Long/t/gol-basic.t rename to ext/Getopt-Long/t/gol-basic.t diff --git a/lib/Getopt/Long/t/gol-compat.t b/ext/Getopt-Long/t/gol-compat.t similarity index 100% rename from lib/Getopt/Long/t/gol-compat.t rename to ext/Getopt-Long/t/gol-compat.t diff --git a/lib/Getopt/Long/t/gol-linkage.t b/ext/Getopt-Long/t/gol-linkage.t similarity index 100% rename from lib/Getopt/Long/t/gol-linkage.t rename to ext/Getopt-Long/t/gol-linkage.t diff --git a/lib/Getopt/Long/t/gol-oo.t b/ext/Getopt-Long/t/gol-oo.t similarity index 100% rename from lib/Getopt/Long/t/gol-oo.t rename to ext/Getopt-Long/t/gol-oo.t diff --git a/lib/Getopt/Long/t/gol-xargv.t b/ext/Getopt-Long/t/gol-xargv.t similarity index 100% rename from lib/Getopt/Long/t/gol-xargv.t rename to ext/Getopt-Long/t/gol-xargv.t diff --git a/lib/Getopt/Long/t/gol-xstring.t b/ext/Getopt-Long/t/gol-xstring.t similarity index 100% rename from lib/Getopt/Long/t/gol-xstring.t rename to ext/Getopt-Long/t/gol-xstring.t diff --git a/t/TEST b/t/TEST index 30836f3..6d3da61 100755 --- a/t/TEST +++ b/t/TEST @@ -34,6 +34,7 @@ my %temp_no_core = '../ext/Compress-Raw-Bzip2' => 1, '../ext/Compress-Raw-Zlib' => 1, '../ext/Devel-PPPort' => 1, + '../ext/Getopt-Long' => 1, '../ext/IO-Compress' => 1, '../ext/IPC-SysV' => 1, '../ext/Math-BigInt' => 1,