summaryrefslogtreecommitdiff
path: root/cpan
diff options
context:
space:
mode:
authorChris 'BinGOs' Williams <chris@bingosnet.co.uk>2019-06-03 13:03:49 +0100
committerChris 'BinGOs' Williams <chris@bingosnet.co.uk>2019-06-03 13:03:49 +0100
commit8284a71c0391a9128ae3e1cbea3a4633d6f9ec7a (patch)
tree735e4e47c6a2b8488791e7850ae337958de32e82 /cpan
parentbe26e211565c83faad0abdb7f5f17d82cfdfe97d (diff)
downloadperl-8284a71c0391a9128ae3e1cbea3a4633d6f9ec7a.tar.gz
Update Compress-Raw-Zlib to CPAN version 2.086
[DELTA] 2.086 31 March 2019 * Moved source to github https://github.com/pmqs/Compress-Raw-Zlib * Add META_MERGE to Makefile.PL * Added meta-json.t & meta-yaml.t
Diffstat (limited to 'cpan')
-rw-r--r--cpan/Compress-Raw-Zlib/Makefile.PL32
-rw-r--r--cpan/Compress-Raw-Zlib/lib/Compress/Raw/Zlib.pm2
2 files changed, 28 insertions, 6 deletions
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;