From: Chris Williams Date: Fri, 4 Sep 2009 15:16:24 +0000 (+0100) Subject: Move Params::Check from lib/ to ext/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a40e5e8eceb01f35c691b0458e6328f96f908c91;p=p5sagit%2Fp5-mst-13.2.git Move Params::Check from lib/ to ext/ --- diff --git a/MANIFEST b/MANIFEST index 2bafdd8..405e2b8 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1246,6 +1246,8 @@ ext/Opcode/Opcode.xs Opcode extension external subroutines ext/Opcode/ops.pm "Pragma" form of Opcode extension Perl module ext/Opcode/t/Opcode.t See if Opcode works ext/Opcode/t/ops.t See if Opcode works +ext/Params-Check/lib/Params/Check.pm Params::Check +ext/Params-Check/t/01_Params-Check.t Params::Check tests ext/Package-Constants/lib/Package/Constants.pm Package::Constants ext/Package-Constants/t/01_list.t Package::Constants tests ext/PerlIO-encoding/encoding.pm PerlIO::encoding @@ -2919,8 +2921,6 @@ lib/overloading.t Tests for overloading.pm lib/overload/numbers.pm Helper for overloading pragma lib/overload.pm Module for overloading perl operators lib/overload.t See if operator overloading works -lib/Params/Check.pm Params::Check -lib/Params/Check/t/01_Params-Check.t Params::Check tests lib/parent.pm Establish an ISA relationship with base classes at compile time lib/parent/t/compile-time-file.t tests for parent.pm lib/parent/t/compile-time.t tests for parent.pm diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 8f8e6f5..61a7a89 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1255,7 +1255,7 @@ package Maintainers; # For some reason a file of this name appears within # the tarball. Russell's Paradox eat your heart out. 'EXCLUDED' => [ qw( Params-Check-0.26.tar.gz ) ], - 'FILES' => q[lib/Params/Check lib/Params/Check.pm], + 'FILES' => q[ext/Params-Check], 'CPAN' => 1, 'UPSTREAM' => 'cpan', }, diff --git a/ext/.gitignore b/ext/.gitignore index a564479..b5bef81 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -41,6 +41,7 @@ ppport.h /Object-Accessor/Makefile.PL /Opcode/Makefile.PL /Package-Constants/Makefile.PL +/Params-Check/Makefile.PL /PerlIO-encoding/Makefile.PL /PerlIO-scalar/Makefile.PL /PerlIO-via/Makefile.PL diff --git a/lib/Params/Check.pm b/ext/Params-Check/lib/Params/Check.pm similarity index 100% rename from lib/Params/Check.pm rename to ext/Params-Check/lib/Params/Check.pm diff --git a/lib/Params/Check/t/01_Params-Check.t b/ext/Params-Check/t/01_Params-Check.t similarity index 100% rename from lib/Params/Check/t/01_Params-Check.t rename to ext/Params-Check/t/01_Params-Check.t diff --git a/lib/.gitignore b/lib/.gitignore index 79a4562..a40947c 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -73,6 +73,7 @@ /Object/Accessor.pm /Opcode.pm /Package/Constants.pm +/Params/Check.pm /POSIX.pm /POSIX.pod /Pod/Plainer.pm