summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xPorting/Maintainers.pl4
-rw-r--r--cpan/Compress-Raw-Zlib/Makefile.PL32
-rw-r--r--cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm2
3 files changed, 31 insertions, 7 deletions
diff --git a/Porting/Maintainers.pl b/Porting/Maintainers.pl
index 43bc3d569a..dfefff7334 100755
--- a/Porting/Maintainers.pl
+++ b/Porting/Maintainers.pl
@@ -211,6 +211,7 @@ use File::Glob qw(:case);
'FILES' => q[cpan/Compress-Raw-Bzip2],
'EXCLUDED' => [
qr{^t/Test/},
+ qr{^t/meta},
'bzip2-src/bzip2-const.patch',
'bzip2-src/bzip2-cpp.patch',
'bzip2-src/bzip2-unsigned.patch',
@@ -218,11 +219,12 @@ use File::Glob qw(:case);
},
'Compress::Raw::Zlib' => {
- 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.084.tar.gz',
+ 'DISTRIBUTION' => 'PMQS/Compress-Raw-Zlib-2.086.tar.gz',
'FILES' => q[cpan/Compress-Raw-Zlib],
'EXCLUDED' => [
qr{^examples/},
qr{^t/Test/},
+ qr{^t/meta},
qw( t/000prereq.t
t/99pod.t
),
diff --git a/cpan/Compress-Raw-Zlib/Makefile.PL b/cpan/Compress-Raw-Zlib/Makefile.PL
index 31f3197be8..67c28d606f 100644
--- a/cpan/Compress-Raw-Zlib/Makefile.PL
+++ b/cpan/Compress-Raw-Zlib/Makefile.PL
@@ -94,11 +94,33 @@ WriteMakefile(
INSTALLDIRS => ($] >= 5.009 && $] < 5.011 ? 'perl' : 'site'),
- META_MERGE => {
- no_index => {
- directory => [ 't', 'private' ],
- },
- },
+ ( eval { ExtUtils::MakeMaker->VERSION(6.46) }
+ ? ( META_MERGE => {
+
+ "meta-spec" => { version => 2 },
+
+ no_index => {
+ directory => [ 't', 'private' ],
+ },
+
+ resources => {
+
+ bugtracker => {
+ web => 'https://github.com/pmqs/Compress-Raw-Zlib/issues'
+ },
+
+ homepage => 'https://github.com/pmqs/Compress-Raw-Zlib',
+
+ repository => {
+ type => 'git',
+ url => 'git://github.com/pmqs/Compress-Raw-Zlib.git',
+ web => 'https://github.com/pmqs/Compress-Raw-Zlib',
+ },
+ },
+ }
+ )
+ : ()
+ ),
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),
diff --git a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
index 4c36973898..de537a6afb 100644
--- a/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
+++ b/cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm
@@ -10,7 +10,7 @@ use warnings ;
use bytes ;
our ($VERSION, $XS_VERSION, @ISA, @EXPORT, %EXPORT_TAGS, @EXPORT_OK, $AUTOLOAD, %DEFLATE_CONSTANTS, @DEFLATE_CONSTANTS);
-$VERSION = '2.084';
+$VERSION = '2.086';
$XS_VERSION = $VERSION;
$VERSION = eval $VERSION;