From: Nicholas Clark Date: Sun, 30 Aug 2009 11:43:28 +0000 (+0100) Subject: Break out B::Debug into its own directory in ext. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a65b57ffe58c7e9daa34b18e13c8a127e7e499f2;p=p5sagit%2Fp5-mst-13.2.git Break out B::Debug into its own directory in ext. --- diff --git a/MANIFEST b/MANIFEST index 38d30a2..dc14925 100644 --- a/MANIFEST +++ b/MANIFEST @@ -82,12 +82,13 @@ ext/Attribute-Handlers/t/multi.t See if Attribute::Handlers works ext/attributes/attributes.pm For "sub foo : attrlist" ext/attributes/attributes.xs For "sub foo : attrlist" ext/B/B/Concise.pm Compiler Concise backend -ext/B/B/Debug.pm Compiler Debug backend ext/B/B.pm Compiler backend support functions and methods ext/B/B/Showlex.pm Compiler Showlex backend ext/B/B/Terse.pm Compiler Terse backend ext/B/B/Xref.pm Compiler Xref backend ext/B/B.xs Compiler backend external subroutines +ext/B-Debug/Debug.pm Compiler Debug backend +ext/B-Debug/t/debug.t See if B::Debug works ext/B/defsubs_h.PL Generator for constant subroutines ext/B-Deparse/Deparse.pm Compiler Deparse backend ext/B-Deparse/t/deparse.t See if B::Deparse works @@ -102,7 +103,6 @@ ext/B/O.pm Compiler front-end module (-MO=...) ext/B/t/b.t See if B works ext/B/t/concise.t See whether B::Concise works ext/B/t/concise-xs.t See whether B::Concise recognizes XS functions -ext/B/t/debug.t See if B::Debug works ext/B/t/f_map code from perldoc -f map ext/B/t/f_map.t converted to optreeCheck()s ext/B/t/f_sort optree test raw material diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index 4fab2dd..9d5be2d 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -252,11 +252,8 @@ package Maintainers; { 'MAINTAINER' => 'rurban', 'DISTRIBUTION' => 'RURBAN/B-Debug-1.11.tar.gz', - 'FILES' => q[ext/B/B/Debug.pm ext/B/t/debug.t], + 'FILES' => q[ext/B-Debug], 'EXCLUDED' => [ qw( t/coverage.html t/pod.t ) ], - 'MAP' => { 'Debug.pm' => 'ext/B/B/Debug.pm', - 't/debug.t'=> 'ext/B/t/debug.t', - }, 'CPAN' => 1, 'UPSTREAM' => undef, 'UPSTREAM' => 'blead', diff --git a/ext/B/B/Debug.pm b/ext/B-Debug/Debug.pm similarity index 100% rename from ext/B/B/Debug.pm rename to ext/B-Debug/Debug.pm diff --git a/ext/B/t/debug.t b/ext/B-Debug/t/debug.t similarity index 100% rename from ext/B/t/debug.t rename to ext/B-Debug/t/debug.t diff --git a/t/TEST b/t/TEST index 470d6f1..1a8e835 100755 --- a/t/TEST +++ b/t/TEST @@ -26,6 +26,7 @@ my %dir_to_switch = my %temp_no_core = ('../ext/Attribute-Handlers' => 1, '../ext/B' => 'fixme', + '../ext/B-Debug' => 1, '../ext/Compress-Raw-Bzip2' => 1, '../ext/Compress-Raw-Zlib' => 1, '../ext/Data-Dumper' => 'fixme',