In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/72e37659c726e50aea5225fde1a74d69e59d3594?hp=f580afb16a13ffd21cfc77655edca8628c3e50eb>
- Log ----------------------------------------------------------------- commit 72e37659c726e50aea5225fde1a74d69e59d3594 Author: Ricardo Signes <[email protected]> Date: Mon Jan 21 17:16:03 2013 -0500 move B-Lint and File-CheckTree to ./cpan ----------------------------------------------------------------------- Summary of changes: MANIFEST | 12 ++++++------ META.yml | 2 -- Porting/Maintainers.pl | 8 ++++---- {dist => cpan}/B-Lint/lib/B/Lint.pm | 0 {dist => cpan}/B-Lint/lib/B/Lint/Debug.pm | 0 {dist => cpan}/B-Lint/t/lint.t | 0 .../B-Lint/t/pluglib/B/Lint/Plugin/Test.pm | 0 .../File-CheckTree/lib/File/CheckTree.pm | 0 {dist => cpan}/File-CheckTree/t/CheckTree.t | 0 9 files changed, 10 insertions(+), 12 deletions(-) rename {dist => cpan}/B-Lint/lib/B/Lint.pm (100%) rename {dist => cpan}/B-Lint/lib/B/Lint/Debug.pm (100%) rename {dist => cpan}/B-Lint/t/lint.t (100%) rename {dist => cpan}/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm (100%) rename {dist => cpan}/File-CheckTree/lib/File/CheckTree.pm (100%) rename {dist => cpan}/File-CheckTree/t/CheckTree.t (100%) diff --git a/MANIFEST b/MANIFEST index cc00d28..42475f4 100644 --- a/MANIFEST +++ b/MANIFEST @@ -139,6 +139,10 @@ cpan/AutoLoader/t/01AutoLoader.t See if AutoLoader works cpan/AutoLoader/t/02AutoSplit.t See if AutoSplit works cpan/B-Debug/Debug.pm Compiler Debug backend cpan/B-Debug/t/debug.t See if B::Debug works +cpan/B-Lint/lib/B/Lint/Debug.pm Adds debugging stringification to B:: +cpan/B-Lint/lib/B/Lint.pm Compiler Lint backend +cpan/B-Lint/t/lint.t See if B::Lint works +cpan/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm See if B::Lint works cpan/CGI/Changes Changelog for CGI.pm cpan/CGI/examples/caution.xbm CGI example cpan/CGI/examples/clickable_image.cgi CGI example @@ -1137,6 +1141,8 @@ cpan/ExtUtils-MakeMaker/t/VERSION_FROM.t See if MakeMaker's VERSION_FROM works cpan/ExtUtils-MakeMaker/t/WriteEmptyMakefile.t See if WriteEmptyMakefile works cpan/ExtUtils-MakeMaker/t/writemakefile_args.t See if WriteMakefile works cpan/ExtUtils-MakeMaker/t/xs.t Part of MakeMaker's test suite +cpan/File-CheckTree/lib/File/CheckTree.pm Perl module supporting wholesale file mode validation +cpan/File-CheckTree/t/CheckTree.t See if File::CheckTree works cpan/File-Fetch/lib/File/Fetch.pm File::Fetch cpan/File-Fetch/t/01_File-Fetch.t File::Fetch tests cpan/File-Fetch/t/null_subclass.t @@ -3072,10 +3078,6 @@ dist/bignum/t/ratopt_a.t See if bigrat a => X works dist/bignum/t/scope_f.t See if no bignum works dist/bignum/t/scope_i.t See if no bigint works dist/bignum/t/scope_r.t See if no bigrat works -dist/B-Lint/lib/B/Lint/Debug.pm Adds debugging stringification to B:: -dist/B-Lint/lib/B/Lint.pm Compiler Lint backend -dist/B-Lint/t/lint.t See if B::Lint works -dist/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm See if B::Lint works dist/Carp/lib/Carp/Heavy.pm Error message retired workhorse dist/Carp/lib/Carp.pm Error message extension dist/Carp/Makefile.PL makefile writer for Carp @@ -3235,8 +3237,6 @@ dist/ExtUtils-ParseXS/t/XSTest.xs Test file for ExtUtils::ParseXS tests dist/ExtUtils-ParseXS/t/XSUsage.pm ExtUtils::ParseXS tests dist/ExtUtils-ParseXS/t/XSUsage.xs ExtUtils::ParseXS tests dist/ExtUtils-ParseXS/t/XSWarn.xs ExtUtils::ParseXS tests -dist/File-CheckTree/lib/File/CheckTree.pm Perl module supporting wholesale file mode validation -dist/File-CheckTree/t/CheckTree.t See if File::CheckTree works dist/Filter-Simple/lib/Filter/Simple.pm Simple frontend to Filter::Util::Call dist/Filter-Simple/t/code_no_comments.t See if Filter::Simple works dist/Filter-Simple/t/data.t See if Filter::Simple works diff --git a/META.yml b/META.yml index 5278a6c..ea45883 100644 --- a/META.yml +++ b/META.yml @@ -15,7 +15,6 @@ no_index: - cpan - dist/Attribute-Handlers - dist/autouse - - dist/B-Lint - dist/base - dist/bignum - dist/Carp @@ -30,7 +29,6 @@ no_index: - dist/ExtUtils-Install - dist/ExtUtils-Manifest - dist/ExtUtils-ParseXS - - dist/File-CheckTree - dist/Filter-Simple - dist/I18N-Collate - dist/I18N-LangTags diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index ef659f3..c8d81b7 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -303,9 +303,9 @@ use File::Glob qw(:case); 'B::Lint' => { 'MAINTAINER' => 'jjore', 'DISTRIBUTION' => 'FLORA/B-Lint-1.14.tar.gz', - 'FILES' => q[dist/B-Lint], + 'FILES' => q[cpan/B-Lint], 'EXCLUDED' => ['t/test.pl'], - 'UPSTREAM' => 'blead', + 'UPSTREAM' => 'cpan', }, 'base' => { @@ -798,9 +798,9 @@ use File::Glob qw(:case); 'File::CheckTree' => { 'MAINTAINER' => 'p5p', 'DISTRIBUTION' => 'FLORA/File-CheckTree-4.41.tar.gz', - 'FILES' => q[dist/File-CheckTree], + 'FILES' => q[cpan/File-CheckTree], 'EXCLUDED' => [qr{^t/release-.*\.t}], - 'UPSTREAM' => 'blead', + 'UPSTREAM' => 'cpan', }, 'File::DosGlob' => { diff --git a/dist/B-Lint/lib/B/Lint.pm b/cpan/B-Lint/lib/B/Lint.pm similarity index 100% rename from dist/B-Lint/lib/B/Lint.pm rename to cpan/B-Lint/lib/B/Lint.pm diff --git a/dist/B-Lint/lib/B/Lint/Debug.pm b/cpan/B-Lint/lib/B/Lint/Debug.pm similarity index 100% rename from dist/B-Lint/lib/B/Lint/Debug.pm rename to cpan/B-Lint/lib/B/Lint/Debug.pm diff --git a/dist/B-Lint/t/lint.t b/cpan/B-Lint/t/lint.t similarity index 100% rename from dist/B-Lint/t/lint.t rename to cpan/B-Lint/t/lint.t diff --git a/dist/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm b/cpan/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm similarity index 100% rename from dist/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm rename to cpan/B-Lint/t/pluglib/B/Lint/Plugin/Test.pm diff --git a/dist/File-CheckTree/lib/File/CheckTree.pm b/cpan/File-CheckTree/lib/File/CheckTree.pm similarity index 100% rename from dist/File-CheckTree/lib/File/CheckTree.pm rename to cpan/File-CheckTree/lib/File/CheckTree.pm diff --git a/dist/File-CheckTree/t/CheckTree.t b/cpan/File-CheckTree/t/CheckTree.t similarity index 100% rename from dist/File-CheckTree/t/CheckTree.t rename to cpan/File-CheckTree/t/CheckTree.t -- Perl5 Master Repository
