diff options
author | James E Keenan <jkeenan@cpan.org> | 2017-03-10 11:46:48 -0500 |
---|---|---|
committer | James E Keenan <jkeenan@cpan.org> | 2017-03-10 13:01:36 -0500 |
commit | 5173674b1cb46b59301b559929904bc67fa15056 (patch) | |
tree | aa895d9d79b8344405f48d062bdaee0333056e37 /cpan/IO-Compress/lib/Compress/Zlib.pm | |
parent | dd3e0aede631748ae44b03c249f710d87e9ab194 (diff) | |
download | perl-5173674b1cb46b59301b559929904bc67fa15056.tar.gz |
Sync IO-Compress with CPAN version 2.074.
CUSTOMIZED array no longer needed in this distro's entry in
Porting/Maintainers.pl; removed.
lib/File/GlobMapper.pm lacks a $VERSION; compensate for that by adding an
entry in Porting/cmpVERSION.pl.
From Changes file (since last version distributed with core):
2.074 19 Feb 2017
* Fix bad 2.073 release
2.073 18 Feb 2017
* #120239: [PATCH] ISA fixes for c3
2.072 12 Feb 2017
* Makefile.PL
#120084: Need Fix for Makefile.PL depending on . in @INC
2.070 28 Dec 2016
* File::GlobMapper
#117675: Fix prototype errors while lazy loading the module
* zipdetails
#116538: CVE-2016-1238: avoid loading optional modules from default .
Diffstat (limited to 'cpan/IO-Compress/lib/Compress/Zlib.pm')
-rw-r--r-- | cpan/IO-Compress/lib/Compress/Zlib.pm | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/cpan/IO-Compress/lib/Compress/Zlib.pm b/cpan/IO-Compress/lib/Compress/Zlib.pm index 092740cc6d..86da8340ff 100644 --- a/cpan/IO-Compress/lib/Compress/Zlib.pm +++ b/cpan/IO-Compress/lib/Compress/Zlib.pm @@ -7,17 +7,17 @@ use Carp ; use IO::Handle ; use Scalar::Util qw(dualvar); -use IO::Compress::Base::Common 2.069 ; -use Compress::Raw::Zlib 2.069 ; -use IO::Compress::Gzip 2.069 ; -use IO::Uncompress::Gunzip 2.069 ; +use IO::Compress::Base::Common 2.074 ; +use Compress::Raw::Zlib 2.074 ; +use IO::Compress::Gzip 2.074 ; +use IO::Uncompress::Gunzip 2.074 ; use strict ; use warnings ; use bytes ; our ($VERSION, $XS_VERSION, @ISA, @EXPORT, @EXPORT_OK, %EXPORT_TAGS); -$VERSION = '2.069_01'; +$VERSION = '2.074'; $XS_VERSION = $VERSION; $VERSION = eval $VERSION; @@ -461,7 +461,7 @@ sub inflate package Compress::Zlib ; -use IO::Compress::Gzip::Constants 2.069 ; +use IO::Compress::Gzip::Constants 2.074 ; sub memGzip($) { @@ -1478,21 +1478,21 @@ L<Archive::Tar|Archive::Tar>, L<IO::Zlib|IO::Zlib> For RFC 1950, 1951 and 1952 see -F<http://www.faqs.org/rfcs/rfc1950.html>, -F<http://www.faqs.org/rfcs/rfc1951.html> and -F<http://www.faqs.org/rfcs/rfc1952.html> +L<http://www.faqs.org/rfcs/rfc1950.html>, +L<http://www.faqs.org/rfcs/rfc1951.html> and +L<http://www.faqs.org/rfcs/rfc1952.html> The I<zlib> compression library was written by Jean-loup Gailly -F<gzip@prep.ai.mit.edu> and Mark Adler F<madler@alumni.caltech.edu>. +C<gzip@prep.ai.mit.edu> and Mark Adler C<madler@alumni.caltech.edu>. The primary site for the I<zlib> compression library is -F<http://www.zlib.org>. +L<http://www.zlib.org>. -The primary site for gzip is F<http://www.gzip.org>. +The primary site for gzip is L<http://www.gzip.org>. =head1 AUTHOR -This module was written by Paul Marquess, F<pmqs@cpan.org>. +This module was written by Paul Marquess, C<pmqs@cpan.org>. =head1 MODIFICATION HISTORY @@ -1500,7 +1500,7 @@ See the Changes file. =head1 COPYRIGHT AND LICENSE -Copyright (c) 1995-2015 Paul Marquess. All rights reserved. +Copyright (c) 1995-2017 Paul Marquess. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |