From: Chris Williams Date: Fri, 11 Sep 2009 21:51:30 +0000 (+0100) Subject: Moved Tie-RefHash from lib/ to ext/ X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=c8b2e1ec57bbd1dd6f321315c13ca73f37ce1caa;p=p5sagit%2Fp5-mst-13.2.git Moved Tie-RefHash from lib/ to ext/ --- diff --git a/MANIFEST b/MANIFEST index 70f894d..2f1d8eb 100644 --- a/MANIFEST +++ b/MANIFEST @@ -2501,6 +2501,11 @@ ext/Tie-File/t/41_heap.t Unit tests for Tie::File::Heap ext/Tie-File/t/42_offset.t Unit tests for the offset method ext/Tie-Memoize/lib/Tie/Memoize.pm Base class for memoized tied hashes ext/Tie-Memoize/t/Tie-Memoize.t Test for Tie::Memoize +ext/Tie-RefHash/lib/Tie/RefHash.pm Base class for tied hashes with references as keys +ext/Tie-RefHash/t/rebless.t Test for Tie::RefHash with rebless +ext/Tie-RefHash/t/refhash.t Test for Tie::RefHash and Tie::RefHash::Nestable +ext/Tie-RefHash/t/storable.t Test for Tie::RefHash with storable +ext/Tie-RefHash/t/threaded.t Test for Tie::RefHash with threads ext/Time-HiRes/Changes Time::HiRes extension ext/Time-HiRes/fallback/const-c.inc Time::HiRes extension ext/Time-HiRes/fallback/const-xs.inc Time::HiRes extension @@ -3425,11 +3430,6 @@ lib/Tie/Handle/stdhandle_from_handle.t Test for Tie::StdHandle/Handle backwards lib/Tie/Handle/stdhandle.t Test for Tie::StdHandle lib/Tie/Hash/NamedCapture.pm Implements %- and %+ behaviour lib/Tie/Hash.pm Base class for tied hashes -lib/Tie/RefHash.pm Base class for tied hashes with references as keys -lib/Tie/RefHash/rebless.t Test for Tie::RefHash with rebless -lib/Tie/RefHash/refhash.t Test for Tie::RefHash and Tie::RefHash::Nestable -lib/Tie/RefHash/storable.t Test for Tie::RefHash with storable -lib/Tie/RefHash/threaded.t Test for Tie::RefHash with threads lib/Tie/Scalar.pm Base class for tied scalars lib/Tie/Scalar.t See if Tie::Scalar works lib/Tie/StdHandle.pm Tie::StdHandle diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index f99bcab..d262761 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -1678,10 +1678,7 @@ use File::Glob qw(:case); { 'MAINTAINER' => 'nuffin', 'DISTRIBUTION' => 'NUFFIN/Tie-RefHash-1.38.tar.gz', - 'FILES' => q[lib/Tie/RefHash.pm lib/Tie/RefHash], - 'MAP' => { 'lib/' => 'lib/', - 't/' => 'lib/Tie/RefHash/', - }, + 'FILES' => q[ext/Tie-RefHash], 'CPAN' => 1, 'UPSTREAM' => 'cpan', }, diff --git a/ext/.gitignore b/ext/.gitignore index afe0639..95f700d 100644 --- a/ext/.gitignore +++ b/ext/.gitignore @@ -86,6 +86,7 @@ ppport.h /Thread-Semaphore/Makefile.PL /Tie-File/Makefile.PL /Tie-Memoize/Makefile.PL +/Tie-RefHash/Makefile.PL # ignore all vim swap files but the one bundled in Module::Pluggable for testing *.swp diff --git a/lib/Tie/RefHash.pm b/ext/Tie-RefHash/lib/Tie/RefHash.pm similarity index 100% rename from lib/Tie/RefHash.pm rename to ext/Tie-RefHash/lib/Tie/RefHash.pm diff --git a/lib/Tie/RefHash/rebless.t b/ext/Tie-RefHash/t/rebless.t similarity index 100% rename from lib/Tie/RefHash/rebless.t rename to ext/Tie-RefHash/t/rebless.t diff --git a/lib/Tie/RefHash/refhash.t b/ext/Tie-RefHash/t/refhash.t similarity index 100% rename from lib/Tie/RefHash/refhash.t rename to ext/Tie-RefHash/t/refhash.t diff --git a/lib/Tie/RefHash/storable.t b/ext/Tie-RefHash/t/storable.t similarity index 100% rename from lib/Tie/RefHash/storable.t rename to ext/Tie-RefHash/t/storable.t diff --git a/lib/Tie/RefHash/threaded.t b/ext/Tie-RefHash/t/threaded.t similarity index 100% rename from lib/Tie/RefHash/threaded.t rename to ext/Tie-RefHash/t/threaded.t diff --git a/lib/.gitignore b/lib/.gitignore index 58ac8be..f00a192 100644 --- a/lib/.gitignore +++ b/lib/.gitignore @@ -314,6 +314,7 @@ /Thread /Tie/File.pm /Tie/Memoize.pm +/Tie/RefHash.pm /Time/HiRes.pm /Time/Piece.pm /Time/Seconds.pm diff --git a/t/TEST b/t/TEST index 7b0f0eb..8c86d0e 100755 --- a/t/TEST +++ b/t/TEST @@ -34,6 +34,7 @@ my %temp_no_core = '../ext/Math-BigRat' => 1, '../ext/MIME-Base64' => 1, '../ext/Parse-CPAN-Meta' => 1, + '../ext/Tie-RefHash' => 1, '../ext/Time-HiRes' => 1, '../ext/Unicode-Normalize' => 1, );