In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/f660499c5fbbc20023791625e914d7662b557e85?hp=25941dca088b9d6133e0e5246e9741fd4d5eb59b>

- Log -----------------------------------------------------------------
commit f660499c5fbbc20023791625e914d7662b557e85
Author: Chris 'BinGOs' Williams <[email protected]>
Date:   Wed Dec 31 21:54:07 2014 +0000

    Update ExtUtils-Manifest to CPAN version 1.70
    
      [DELTA]
    
    1.70  2014-12-31
      - also skip _eumm, an artifact of ExtUtils::MakeMaker 7.05*
      - avoid unreliable permissions tests on cygwin
-----------------------------------------------------------------------

Summary of changes:
 Porting/Maintainers.pl                            |  2 +-
 cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP |  1 +
 cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm   | 15 ++++++++++-----
 cpan/ExtUtils-Manifest/t/Manifest.t               |  2 +-
 4 files changed, 13 insertions(+), 7 deletions(-)

diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 22c346c..a5a1265 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -482,7 +482,7 @@ use File::Glob qw(:case);
     },
 
     'ExtUtils::Manifest' => {
-        'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.69.tar.gz',
+        'DISTRIBUTION' => 'ETHER/ExtUtils-Manifest-1.70.tar.gz',
         'FILES'        => q[cpan/ExtUtils-Manifest],
         'EXCLUDED'     => [
             qr(^t/00-report-prereqs),
diff --git a/cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP 
b/cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP
index 51f9944..65592fb 100644
--- a/cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP
+++ b/cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP
@@ -22,6 +22,7 @@
 \bpm_to_blib\.ts$
 \bpm_to_blib$
 \bblibdirs\.ts$         # 6.18 through 6.25 generated this
+\b_eumm/                # 7.05_05 and above
 
 # Avoid Module::Build generated and utility files.
 \bBuild$
diff --git a/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm 
b/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm
index 45fd1e8..4163c93 100644
--- a/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm
+++ b/cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm
@@ -10,7 +10,7 @@ use Carp;
 use strict;
 use warnings;
 
-our $VERSION = '1.69';
+our $VERSION = '1.70';
 our @ISA = ('Exporter');
 our @EXPORT_OK = qw(mkmanifest
                 manicheck  filecheck  fullcheck  skipcheck
@@ -65,7 +65,7 @@ ExtUtils::Manifest - utilities to write and check a MANIFEST 
file
 
 =head1 VERSION
 
-version 1.69
+version 1.70
 
 =head1 SYNOPSIS
 
@@ -897,9 +897,14 @@ L<ExtUtils::MakeMaker> which has handy targets for most of 
the functionality.
 
 Andreas Koenig C<[email protected]>
 
-Maintained by Michael G Schwern C<[email protected]> within the
-ExtUtils-MakeMaker package and, as a separate CPAN package, by
-Randy Kobes C<[email protected]>.
+Currently maintained by the Perl Toolchain Gang.
+
+=head1 COPYRIGHT AND LICENSE
+
+This software is copyright (c) 1996- by Andreas Koenig.
+
+This is free software; you can redistribute it and/or modify it under
+the same terms as the Perl 5 programming language system itself.
 
 =cut
 
diff --git a/cpan/ExtUtils-Manifest/t/Manifest.t 
b/cpan/ExtUtils-Manifest/t/Manifest.t
index 67cc5a1..830a786 100644
--- a/cpan/ExtUtils-Manifest/t/Manifest.t
+++ b/cpan/ExtUtils-Manifest/t/Manifest.t
@@ -456,7 +456,7 @@ is_deeply( $files, \%expect, 'maniadd() vs MANIFEST without 
trailing newline');
 
 SKIP: {
     chmod( 0400, 'MANIFEST' );
-    skip "Can't make MANIFEST read-only", 2 if -w 'MANIFEST';
+    skip "Can't make MANIFEST read-only", 2 if -w 'MANIFEST' or 
$Config{osname} eq 'cygwin';
 
     eval {
         maniadd({ 'foo' => 'bar' });

--
Perl5 Master Repository

Reply via email to