diff options
Diffstat (limited to 'Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm')
-rw-r--r-- | Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm | 38 |
1 files changed, 19 insertions, 19 deletions
diff --git a/Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm b/Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm index 5394ec899df..5a35e018a68 100644 --- a/Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm +++ b/Master/tlpkg/tlperl/lib/IO/Uncompress/Unzip.pm @@ -6,22 +6,22 @@ require 5.006 ; use strict ; use warnings; -#use bytes; +use bytes; use IO::File; -use IO::Uncompress::RawInflate 2.069 ; -use IO::Compress::Base::Common 2.069 qw(:Status ); -use IO::Uncompress::Adapter::Inflate 2.069 ; -use IO::Uncompress::Adapter::Identity 2.069 ; -use IO::Compress::Zlib::Extra 2.069 ; -use IO::Compress::Zip::Constants 2.069 ; +use IO::Uncompress::RawInflate 2.074 ; +use IO::Compress::Base::Common 2.074 qw(:Status ); +use IO::Uncompress::Adapter::Inflate 2.074 ; +use IO::Uncompress::Adapter::Identity 2.074 ; +use IO::Compress::Zlib::Extra 2.074 ; +use IO::Compress::Zip::Constants 2.074 ; -use Compress::Raw::Zlib 2.069 () ; +use Compress::Raw::Zlib 2.074 () ; BEGIN { eval{ require IO::Uncompress::Adapter::Bunzip2 ; - import IO::Uncompress::Adapter::Bunzip2 } ; + import IO::Uncompress::Adapter::Bunzip2 } ; eval{ require IO::Uncompress::Adapter::UnLzma ; import IO::Uncompress::Adapter::UnLzma } ; } @@ -31,10 +31,10 @@ require Exporter ; our ($VERSION, @ISA, @EXPORT_OK, %EXPORT_TAGS, $UnzipError, %headerLookup); -$VERSION = '2.069_001'; +$VERSION = '2.074'; $UnzipError = ''; -@ISA = qw(Exporter IO::Uncompress::RawInflate); +@ISA = qw(IO::Uncompress::RawInflate Exporter); @EXPORT_OK = qw( $UnzipError unzip ); %EXPORT_TAGS = %IO::Uncompress::RawInflate::EXPORT_TAGS ; push @{ $EXPORT_TAGS{all} }, @EXPORT_OK ; @@ -1839,21 +1839,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 @@ -1861,7 +1861,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. |