From: Nicholas Clark Date: Fri, 2 Oct 2009 16:42:02 +0000 (+0100) Subject: Move ExtUtils::Constant from ext/ to cpan/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=610892605b3814cdf4f5f2215ee00d25d7ffba45;p=p5sagit%2Fp5-mst-13.2.git Move ExtUtils::Constant from ext/ to cpan/ --- diff --git a/MANIFEST b/MANIFEST index ac198e4..7803b70 100644 --- a/MANIFEST +++ b/MANIFEST @@ -920,6 +920,12 @@ cpan/ExtUtils-Command/lib/ExtUtils/Command.pm Utilities for Make on non-UNIX pla cpan/ExtUtils-Command/t/cp.t See if ExtUtils::Command works cpan/ExtUtils-Command/t/eu_command.t See if ExtUtils::Command works cpan/ExtUtils-Command/t/lib/TieOut.pm Testing library to capture prints +cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm generate XS code to import C header constants +cpan/ExtUtils-Constant/lib/ExtUtils/Constant.pm generate XS code to import C header constants +cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm generate XS code for proxy constants +cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm generate XS code to import C header constants +cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm generate XS code to import C header constants +cpan/ExtUtils-Constant/t/Constant.t See if ExtUtils::Constant works cpan/ExtUtils-MakeMaker/bin/instmodsh Give information about installed extensions cpan/ExtUtils-MakeMaker/Changes MakeMaker change log cpan/ExtUtils-MakeMaker/lib/ExtUtils/Command/MM.pm Calling MM functions from the cmd line @@ -2884,12 +2890,6 @@ ext/Errno/ChangeLog Errno changes ext/Errno/Errno_pm.PL Errno perl module create script ext/Errno/Makefile.PL Errno extension makefile writer ext/Errno/t/Errno.t See if Errno works -ext/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm generate XS code to import C header constants -ext/ExtUtils-Constant/lib/ExtUtils/Constant.pm generate XS code to import C header constants -ext/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm generate XS code for proxy constants -ext/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm generate XS code to import C header constants -ext/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm generate XS code to import C header constants -ext/ExtUtils-Constant/t/Constant.t See if ExtUtils::Constant works ext/Fcntl/Fcntl.pm Fcntl extension Perl module ext/Fcntl/Fcntl.xs Fcntl extension external subroutines ext/Fcntl/Makefile.PL Fcntl extension makefile writer diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 8938a87..1697f76 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -575,7 +575,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'nwclark', 'DISTRIBUTION' => 'NWCLARK/ExtUtils-Constant-0.16.tar.gz', - 'FILES' => q[ext/ExtUtils-Constant], + 'FILES' => q[cpan/ExtUtils-Constant], 'EXCLUDED' => [ qw{ lib/ExtUtils/Constant/Aaargh56Hash.pm examples/perl_keyword.pl examples/perl_regcomp_posix_keyword.pl diff --git a/ext/ExtUtils-Constant/lib/ExtUtils/Constant.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant.pm similarity index 100% rename from ext/ExtUtils-Constant/lib/ExtUtils/Constant.pm rename to cpan/ExtUtils-Constant/lib/ExtUtils/Constant.pm diff --git a/ext/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm similarity index 100% rename from ext/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm rename to cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Base.pm diff --git a/ext/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm similarity index 100% rename from ext/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm rename to cpan/ExtUtils-Constant/lib/ExtUtils/Constant/ProxySubs.pm diff --git a/ext/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm similarity index 100% rename from ext/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm rename to cpan/ExtUtils-Constant/lib/ExtUtils/Constant/Utils.pm diff --git a/ext/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm b/cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm similarity index 100% rename from ext/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm rename to cpan/ExtUtils-Constant/lib/ExtUtils/Constant/XS.pm diff --git a/ext/ExtUtils-Constant/t/Constant.t b/cpan/ExtUtils-Constant/t/Constant.t similarity index 100% rename from ext/ExtUtils-Constant/t/Constant.t rename to cpan/ExtUtils-Constant/t/Constant.t