summaryrefslogtreecommitdiff
path: root/cpan/IO-Compress/lib/IO/Uncompress/Base.pm
diff options
context:
space:
mode:
authorJames E Keenan <jkeenan@cpan.org>2017-03-10 11:46:48 -0500
committerJames E Keenan <jkeenan@cpan.org>2017-03-10 13:01:36 -0500
commit5173674b1cb46b59301b559929904bc67fa15056 (patch)
treeaa895d9d79b8344405f48d062bdaee0333056e37 /cpan/IO-Compress/lib/IO/Uncompress/Base.pm
parentdd3e0aede631748ae44b03c249f710d87e9ab194 (diff)
downloadperl-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/IO/Uncompress/Base.pm')
-rw-r--r--cpan/IO-Compress/lib/IO/Uncompress/Base.pm12
1 files changed, 6 insertions, 6 deletions
diff --git a/cpan/IO-Compress/lib/IO/Uncompress/Base.pm b/cpan/IO-Compress/lib/IO/Uncompress/Base.pm
index 86a8040763..4ba3efab16 100644
--- a/cpan/IO-Compress/lib/IO/Uncompress/Base.pm
+++ b/cpan/IO-Compress/lib/IO/Uncompress/Base.pm
@@ -3,18 +3,18 @@ package IO::Uncompress::Base ;
use strict ;
use warnings;
-#use bytes;
+use bytes;
our (@ISA, $VERSION, @EXPORT_OK, %EXPORT_TAGS);
-@ISA = qw(Exporter IO::File);
+@ISA = qw(IO::File Exporter);
-$VERSION = '2.069_01';
+$VERSION = '2.074';
use constant G_EOF => 0 ;
use constant G_ERR => -1 ;
-use IO::Compress::Base::Common 2.069 ;
+use IO::Compress::Base::Common 2.074 ;
use IO::File ;
use Symbol;
@@ -1541,7 +1541,7 @@ L<IO::Zlib|IO::Zlib>
=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
@@ -1549,7 +1549,7 @@ See the Changes file.
=head1 COPYRIGHT AND LICENSE
-Copyright (c) 2005-2015 Paul Marquess. All rights reserved.
+Copyright (c) 2005-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.