diff options
-rwxr-xr-x | Porting/Maintainers.pl | 2 | ||||
-rw-r--r-- | cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP | 1 | ||||
-rw-r--r-- | cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm | 15 | ||||
-rw-r--r-- | 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 22c346c97f..a5a126521f 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 51f994468e..65592fb83d 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 45fd1e847d..4163c933ab 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<andreas.koenig@anima.de> -Maintained by Michael G Schwern C<schwern@pobox.com> within the -ExtUtils-MakeMaker package and, as a separate CPAN package, by -Randy Kobes C<r.kobes@uwinnipeg.ca>. +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 67cc5a11a0..830a78633d 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' }); |