From: Nicholas Clark Date: Mon, 28 Sep 2009 12:49:33 +0000 (+0100) Subject: Move constant from ext/ to dist/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f2d32da304293624412eaca03324da35a39c9f5e;p=p5sagit%2Fp5-mst-13.2.git Move constant from ext/ to dist/ --- diff --git a/MANIFEST b/MANIFEST index 5b5b034..dde998e 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1031,6 +1031,8 @@ dist/base/t/lib/HasSigDie.pm Module for testing base.pm dist/base/t/sigdie.t See if base works with SIGDIE dist/base/t/version.t See if base works with versions dist/base/t/warnings.t See if base works with warnings +dist/constant/lib/constant.pm For "use constant" +dist/constant/t/constant.t See if compile-time constants work djgpp/config.over DOS/DJGPP port djgpp/configure.bat DOS/DJGPP port djgpp/djgpp.c DOS/DJGPP port @@ -1256,8 +1258,6 @@ ext/Compress-Raw-Zlib/zlib-src/zlib.h Compress::Raw::Zlib ext/Compress-Raw-Zlib/zlib-src/zutil.c Compress::Raw::Zlib ext/Compress-Raw-Zlib/zlib-src/zutil.h Compress::Raw::Zlib ext/Compress-Raw-Zlib/Zlib.xs Compress::Raw::Zlib -ext/constant/lib/constant.pm For "use constant" -ext/constant/t/constant.t See if compile-time constants work ext/Data-Dumper/Changes Data pretty printer, changelog ext/Data-Dumper/Dumper.pm Data pretty printer, module ext/Data-Dumper/Dumper.xs Data pretty printer, externals diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 7df498c..1405de4 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -354,7 +354,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'saper', 'DISTRIBUTION' => 'SAPER/constant-1.17.tar.gz', - 'FILES' => q[ext/constant], + 'FILES' => q[dist/constant], 'EXCLUDED' => [ qw( t/00-load.t t/more-tests.t t/pod-coverage.t diff --git a/ext/constant/lib/constant.pm b/dist/constant/lib/constant.pm similarity index 100% rename from ext/constant/lib/constant.pm rename to dist/constant/lib/constant.pm diff --git a/ext/constant/t/constant.t b/dist/constant/t/constant.t similarity index 100% rename from ext/constant/t/constant.t rename to dist/constant/t/constant.t