summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-31 21:54:07 +0000
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2014-12-31 21:54:07 +0000
commitf660499c5fbbc20023791625e914d7662b557e85 (patch)
tree4a83f26abd18a899f0eb1960aab63c9e4c6a5dc7 /cpan
parent25941dca088b9d6133e0e5246e9741fd4d5eb59b (diff)
downloadperl-f660499c5fbbc20023791625e914d7662b557e85.tar.gz
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
Diffstat (limited to 'cpan')
-rw-r--r--cpan/ExtUtils-Manifest/lib/ExtUtils/MANIFEST.SKIP1
-rw-r--r--cpan/ExtUtils-Manifest/lib/ExtUtils/Manifest.pm15
-rw-r--r--cpan/ExtUtils-Manifest/t/Manifest.t2
3 files changed, 12 insertions, 6 deletions
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' });