From: Nicholas Clark Date: Sun, 13 Sep 2009 15:44:27 +0000 (+0100) Subject: Move NEXT from lib to ext. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=92d4c6331040f899673234f65d5ab2a406c5a32d;p=p5sagit%2Fp5-mst-13.2.git Move NEXT from lib to ext. --- diff --git a/MANIFEST b/MANIFEST index 765a02a..9fc42d9 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1952,6 +1952,15 @@ ext/Net-Ping/t/410_syn_host.t Ping Net::Ping ext/Net-Ping/t/450_service.t Ping Net::Ping ext/Net-Ping/t/500_ping_icmp.t Ping Net::Ping ext/Net-Ping/t/510_ping_udp.t Ping Net::Ping +ext/NEXT/Changes NEXT +ext/NEXT/lib/NEXT.pm Pseudo-class NEXT for method redispatch +ext/NEXT/README NEXT +ext/NEXT/t/actual.t NEXT +ext/NEXT/t/actuns.t NEXT +ext/NEXT/t/dynamically_scoped_regex_vars.t NEXT +ext/NEXT/t/next.t NEXT +ext/NEXT/t/stringify.t NEXT +ext/NEXT/t/unseen.t NEXT ext/Object-Accessor/lib/Object/Accessor.pm Object::Accessor ext/Object-Accessor/t/00_Object-Accessor.t Object::Accessor tests ext/Object-Accessor/t/01_Object-Accessor-Subclassed.t Object::Accessor tests @@ -3291,15 +3300,6 @@ lib/Net/protoent.t See if Net::protoent works lib/Net/servent.pm By-name interface to Perl's builtin getserv* lib/Net/servent.t See if Net::servtent works lib/newgetopt.pl A perl library supporting long option parsing -lib/NEXT/Changes NEXT -lib/NEXT.pm Pseudo-class NEXT for method redispatch -lib/NEXT/README NEXT -lib/NEXT/t/actual.t NEXT -lib/NEXT/t/actuns.t NEXT -lib/NEXT/t/dynamically_scoped_regex_vars.t NEXT -lib/NEXT/t/next.t NEXT -lib/NEXT/t/stringify.t NEXT -lib/NEXT/t/unseen.t NEXT lib/open2.pl Open a two-ended pipe (uses IPC::Open2) lib/open3.pl Open a three-ended pipe (uses IPC::Open3) lib/open.pm Pragma to specify default I/O layers diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index ac35844..8e2d6aa 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1087,7 +1087,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'rafl', 'DISTRIBUTION' => 'FLORA/NEXT-0.64.tar.gz', - 'FILES' => q[lib/NEXT.pm lib/NEXT], + 'FILES' => q[ext/NEXT], 'EXCLUDED' => [ qr{^demo/} ], 'CPAN' => 1, 'UPSTREAM' => 'cpan', diff --git a/ext/.gitignore b/ext/.gitignore index 56e1abe..2405c6d 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -65,6 +65,7 @@ ppport.h /Module-Loaded/Makefile.PL /mro/Makefile.PL /Net-Ping/Makefile.PL +/NEXT/Makefile.PL /Object-Accessor/Makefile.PL /Opcode/Makefile.PL /Package-Constants/Makefile.PL diff --git a/lib/NEXT/Changes b/ext/NEXT/Changes similarity index 100% rename from lib/NEXT/Changes rename to ext/NEXT/Changes diff --git a/lib/NEXT/README b/ext/NEXT/README similarity index 100% rename from lib/NEXT/README rename to ext/NEXT/README diff --git a/lib/NEXT.pm b/ext/NEXT/lib/NEXT.pm similarity index 100% rename from lib/NEXT.pm rename to ext/NEXT/lib/NEXT.pm diff --git a/lib/NEXT/t/actual.t b/ext/NEXT/t/actual.t similarity index 100% rename from lib/NEXT/t/actual.t rename to ext/NEXT/t/actual.t diff --git a/lib/NEXT/t/actuns.t b/ext/NEXT/t/actuns.t similarity index 100% rename from lib/NEXT/t/actuns.t rename to ext/NEXT/t/actuns.t diff --git a/lib/NEXT/t/dynamically_scoped_regex_vars.t b/ext/NEXT/t/dynamically_scoped_regex_vars.t similarity index 100% rename from lib/NEXT/t/dynamically_scoped_regex_vars.t rename to ext/NEXT/t/dynamically_scoped_regex_vars.t diff --git a/lib/NEXT/t/next.t b/ext/NEXT/t/next.t similarity index 100% rename from lib/NEXT/t/next.t rename to ext/NEXT/t/next.t diff --git a/lib/NEXT/t/stringify.t b/ext/NEXT/t/stringify.t similarity index 100% rename from lib/NEXT/t/stringify.t rename to ext/NEXT/t/stringify.t diff --git a/lib/NEXT/t/unseen.t b/ext/NEXT/t/unseen.t similarity index 100% rename from lib/NEXT/t/unseen.t rename to ext/NEXT/t/unseen.t diff --git a/lib/.gitignore b/lib/.gitignore index 9980d73..ec42bb5 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -256,6 +256,7 @@ /Module/Pluggable /Module/Pluggable.pm /NDBM_File.pm +/NEXT.pm /Net /Net/Cmd.pm /Net/Config.pm diff --git a/t/TEST b/t/TEST index 6d3da61..520f79b 100755 --- a/t/TEST +++ b/t/TEST @@ -40,6 +40,7 @@ my %temp_no_core = '../ext/Math-BigInt' => 1, '../ext/Math-BigRat' => 1, '../ext/MIME-Base64' => 1, + '../ext/NEXT' => 1, '../ext/parent' => 1, '../ext/Pod-Simple' => 1, '../ext/Parse-CPAN-Meta' => 1,