In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/4d25f022879459bbce407d5dff37fc799b7dcd68?hp=9cff81c36694ed2ce5b74269ebef3e685b8a5e63>
- Log ----------------------------------------------------------------- commit 4d25f022879459bbce407d5dff37fc799b7dcd68 Author: Steve Hay <[email protected]> Date: Sun Dec 28 14:26:04 2014 +0000 Fix various "CPAN only" warnings for cpan/ modules in Porting/Maintainers.pl ----------------------------------------------------------------------- Summary of changes: Porting/Maintainers.pl | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl index ac814af..221249d 100755 --- a/Porting/Maintainers.pl +++ b/Porting/Maintainers.pl @@ -17,9 +17,9 @@ use File::Glob qw(:case); @IGNORABLE = qw( .cvsignore .dualLivedDiffConfig .gitignore .perlcriticrc .perltidyrc - ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL + .travis.yml ANNOUNCE Announce Artistic AUTHORS BENCHMARK BUGS Build.PL CHANGELOG ChangeLog Changelog CHANGES Changes CONTRIBUTING CONTRIBUTING.mkdn - COPYING Copying cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.skip + COPYING Copying cpanfile CREDITS dist.ini GOALS HISTORY INSTALL INSTALL.SKIP LICENSE Makefile.PL MANIFEST MANIFEST.SKIP META.json META.yml MYMETA.json MYMETA.yml NEW NEWS NOTES perlcritic.rc ppport.h README README.PATCHING SIGNATURE THANKS TODO Todo VERSION WHATSNEW @@ -433,7 +433,7 @@ use File::Glob qw(:case); 'ExtUtils::Command' => { 'DISTRIBUTION' => 'BINGOS/ExtUtils-Command-1.19.tar.gz', 'FILES' => q[cpan/ExtUtils-Command], - 'EXCLUDED' => [qr{^t/release-}], + 'EXCLUDED' => [qr{^xt/}], }, 'ExtUtils::Constant' => { @@ -484,7 +484,10 @@ use File::Glob qw(:case); 'ExtUtils::Manifest' => { 'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.69.tar.gz', 'FILES' => q[cpan/ExtUtils-Manifest], - 'EXCLUDED' => [qr(^xt/)], + 'EXCLUDED' => [ + qr(^t/00-report-prereqs), + qr(^xt/) + ], }, 'ExtUtils::ParseXS' => { @@ -822,7 +825,6 @@ use File::Glob qw(:case); 'DISTRIBUTION' => 'SMPETERS/Net-Ping-2.41.tar.gz', 'FILES' => q[dist/Net-Ping], 'EXCLUDED' => [ - qr{^.travis.yml}, qr{^README.md}, ], }, @@ -868,10 +870,9 @@ use File::Glob qw(:case); 'DISTRIBUTION' => 'ETHER/perlfaq-5.0150046.tar.gz', 'FILES' => q[cpan/perlfaq], 'EXCLUDED' => [ - qw( t/release-pod-syntax.t - t/release-eol.t - t/release-no-tabs.t - ) + qw( inc/CreateQuestionList.pm + t/00-compile.t), + qr{^xt/}, ], }, -- Perl5 Master Repository
