648081
# Run time expensive tests
648081
%bcond_without long_tests
648081
# Run optional test
648081
%if ! (0%{?rhel})
648081
%bcond_without perl_IO_Compress_enables_optional_test
648081
%else
648081
%bcond_with perl_IO_Compress_enables_optional_test
648081
%endif
648081
648081
%{?perl_default_filter}
648081
648081
Name:           perl-IO-Compress
648081
Version:        2.096
648081
Release:        1%{?dist}
648081
Summary:        Read and write compressed data
648081
License:        GPL+ or Artistic
648081
URL:            https://metacpan.org/release/IO-Compress
648081
Source0:        https://cpan.metacpan.org/modules/by-module/IO/IO-Compress-%{version}.tar.gz
648081
BuildArch:      noarch
648081
# Module Build
648081
BuildRequires:  coreutils
648081
BuildRequires:  findutils
648081
BuildRequires:  make
648081
BuildRequires:  perl-generators
648081
BuildRequires:  perl-interpreter
648081
BuildRequires:  perl(Config)
648081
BuildRequires:  perl(ExtUtils::MakeMaker) >= 6.76
648081
BuildRequires:  perl(File::Copy)
648081
BuildRequires:  perl(File::Spec::Functions)
648081
# Module Runtime
648081
BuildRequires:  perl(bytes)
648081
BuildRequires:  perl(Carp)
648081
BuildRequires:  perl(Compress::Raw::Bzip2) >= %{version}
648081
BuildRequires:  perl(Compress::Raw::Zlib) >= %{version}
648081
BuildRequires:  perl(constant)
648081
BuildRequires:  perl(Encode)
648081
BuildRequires:  perl(Exporter)
648081
BuildRequires:  perl(Fcntl)
648081
BuildRequires:  perl(File::Glob)
648081
BuildRequires:  perl(File::Spec)
648081
BuildRequires:  perl(IO::File)
648081
BuildRequires:  perl(IO::Handle)
648081
BuildRequires:  perl(List::Util)
648081
BuildRequires:  perl(POSIX)
648081
BuildRequires:  perl(Scalar::Util)
648081
BuildRequires:  perl(strict)
648081
BuildRequires:  perl(Symbol)
648081
BuildRequires:  perl(utf8)
648081
BuildRequires:  perl(warnings)
648081
# Test Suite
648081
BuildRequires:  perl(File::Path)
648081
BuildRequires:  perl(lib)
648081
BuildRequires:  perl(threads::shared)
648081
%if %{with perl_IO_Compress_enables_optional_test}
648081
# Optional Tests
648081
BuildRequires:  perl(bytes)
648081
BuildRequires:  perl(Data::Dumper)
648081
BuildRequires:  perl(File::Temp)
648081
BuildRequires:  perl(overload)
648081
# Dual-lived module needs building early in the boot process
648081
%if !%{defined perl_bootstrap}
648081
BuildRequires:  perl(Test::NoWarnings)
648081
BuildRequires:  perl(Test::Pod) >= 1.00
648081
%endif
648081
%endif
648081
# Runtime
648081
Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
648081
Requires:       perl(File::Glob)
648081
648081
# This is wrapper for different Compress modules
648081
Obsoletes:      perl-Compress-Zlib < %{version}-%{release}
648081
Provides:       perl-Compress-Zlib = %{version}-%{release}
648081
Obsoletes:      perl-IO-Compress-Base < %{version}-%{release}
648081
Provides:       perl-IO-Compress-Base = %{version}-%{release}
648081
Obsoletes:      perl-IO-Compress-Bzip2 < %{version}-%{release}
648081
Provides:       perl-IO-Compress-Bzip2 = %{version}-%{release}
648081
Obsoletes:      perl-IO-Compress-Zlib < %{version}-%{release}
648081
Provides:       perl-IO-Compress-Zlib = %{version}-%{release}
648081
648081
%description
648081
This distribution provides a Perl interface to allow reading and writing of
648081
compressed data created with the zlib and bzip2 libraries.
648081
648081
IO-Compress supports reading and writing of bzip2, RFC 1950, RFC 1951,
648081
RFC 1952 (i.e. gzip) and zip files/buffers.
648081
648081
The following modules used to be distributed separately, but are now
648081
included with the IO-Compress distribution:
648081
* Compress-Zlib
648081
* IO-Compress-Zlib
648081
* IO-Compress-Bzip2
648081
* IO-Compress-Base
648081
648081
%prep
648081
%setup -q -n IO-Compress-%{version}
648081
648081
# Remove spurious exec permissions
648081
chmod -c -x lib/IO/Uncompress/{Adapter/Identity,RawInflate}.pm
648081
find examples -type f -exec chmod -c -x {} \;
648081
648081
# Fix shellbangs in examples
648081
perl -MConfig -pi -e 's|^#!/usr/local/bin/perl\b|$Config{startperl}|' examples/io/anycat \
648081
        examples/io/bzip2/* examples/io/gzip/* examples/compress-zlib/*
648081
648081
%build
648081
perl Makefile.PL NO_PACKLIST=1
648081
make %{?_smp_mflags}
648081
648081
%install
648081
make pure_install DESTDIR=%{buildroot} INSTALLDIRS=perl
648081
%{_fixperms} -c %{buildroot}
648081
648081
%check
648081
# Build using "--without long_tests" to avoid very long tests
648081
# (full suite can take nearly an hour on an i7 920)
648081
make test COMPRESS_ZLIB_RUN_%{?with_long_tests:ALL}%{!?with_long_tests:MOST}=1
648081
648081
%files
648081
%doc Changes README examples/*
648081
%{_bindir}/streamzip
648081
%{_bindir}/zipdetails
648081
%{perl_privlib}/Compress/
648081
%{perl_privlib}/File/
648081
%dir %{perl_privlib}/IO/
648081
%dir %{perl_privlib}/IO/Compress/
648081
%doc %{perl_privlib}/IO/Compress/FAQ.pod
648081
%{perl_privlib}/IO/Compress/Adapter/
648081
%{perl_privlib}/IO/Compress/Base/
648081
%{perl_privlib}/IO/Compress/Base.pm
648081
%{perl_privlib}/IO/Compress/Bzip2.pm
648081
%{perl_privlib}/IO/Compress/Deflate.pm
648081
%{perl_privlib}/IO/Compress/Gzip/
648081
%{perl_privlib}/IO/Compress/Gzip.pm
648081
%{perl_privlib}/IO/Compress/RawDeflate.pm
648081
%{perl_privlib}/IO/Compress/Zip/
648081
%{perl_privlib}/IO/Compress/Zip.pm
648081
%{perl_privlib}/IO/Compress/Zlib/
648081
%{perl_privlib}/IO/Uncompress/
648081
%{_mandir}/man1/streamzip.1*
648081
%{_mandir}/man1/zipdetails.1*
648081
%{_mandir}/man3/Compress::Zlib.3*
648081
%{_mandir}/man3/File::GlobMapper.3*
648081
%{_mandir}/man3/IO::Compress::*.3*
648081
%{_mandir}/man3/IO::Uncompress::*.3*
648081
648081
%changelog
648081
* Sat Aug  1 2020 Paul Howarth <paul@city-fan.org> - 2.096-1
648081
- 2.096 bump
648081
648081
* Tue Jul 28 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.095-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild
648081
648081
* Tue Jul 21 2020 Petr Pisar <ppisar@redhat.com> - 2.095-1
648081
- 2.095 bump
648081
648081
* Tue Jul 14 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.094-1
648081
- 2.094 bump
648081
648081
* Fri Jun 26 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.093-457
648081
- Perl 5.32 re-rebuild of bootstrapped packages
648081
648081
* Mon Jun 22 2020 Jitka Plesnikova <jplesnik@redhat.com> - 2.093-456
648081
- Increase release to favour standalone package
648081
648081
* Thu Jan 30 2020 Fedora Release Engineering <releng@fedoraproject.org> - 2.093-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild
648081
648081
* Sun Dec  8 2019 Paul Howarth <paul@city-fan.org> - 2.093-1
648081
- 2.093 bump
648081
648081
* Thu Dec 05 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.092-1
648081
- 2.092 bump
648081
648081
* Sun Nov 24 2019 Paul Howarth <paul@city-fan.org> - 2.091-1
648081
- 2.091 bump
648081
648081
* Sun Nov 10 2019 Paul Howarth <paul@city-fan.org> - 2.090-1
648081
- 2.090 bump
648081
648081
* Sun Nov  3 2019 Paul Howarth <paul@city-fan.org> - 2.089-1
648081
- 2.089 bump
648081
648081
* Sun Nov  3 2019 Paul Howarth <paul@city-fan.org> - 2.088-1
648081
- 2.088 bump
648081
648081
* Mon Aug 12 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.087-1
648081
- 2.087 bump
648081
648081
* Fri Jul 26 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.086-4
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild
648081
648081
* Sun Jun 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-3
648081
- Perl 5.30 re-rebuild of bootstrapped packages
648081
648081
* Thu May 30 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-2
648081
- Perl 5.30 rebuild
648081
648081
* Mon Apr 01 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.086-1
648081
- 2.086 bump
648081
648081
* Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 2.084-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
648081
648081
* Mon Jan  7 2019 Paul Howarth <paul@city-fan.org> - 2.084-1
648081
- 2.084 bump
648081
648081
* Wed Jan 02 2019 Jitka Plesnikova <jplesnik@redhat.com> - 2.083-1
648081
- 2.083 bump
648081
648081
* Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.081-5
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
648081
648081
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-4
648081
- Perl 5.28 re-rebuild of bootstrapped packages
648081
648081
* Sat Jun 30 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-3
648081
- Perl 5.28 re-rebuild of bootstrapped packages
648081
648081
* Wed Jun 27 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-2
648081
- Perl 5.28 rebuild
648081
648081
* Mon Apr 09 2018 Jitka Plesnikova <jplesnik@redhat.com> - 2.081-1
648081
- 2.081 bump
648081
648081
* Wed Apr  4 2018 Paul Howarth <paul@city-fan.org> - 2.080-1
648081
- 2.080 bump
648081
648081
* Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-397
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
648081
648081
* Mon Dec 18 2017 Petr Pisar <ppisar@redhat.com> - 2.074-396
648081
- Rewrite shell bangs using running perl
648081
648081
* Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 2.074-395
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
648081
648081
* Wed Jun 07 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-394
648081
- Perl 5.26 re-rebuild of bootstrapped packages
648081
648081
* Sat Jun 03 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-393
648081
- Perl 5.26 rebuild
648081
648081
* Mon Feb 20 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.074-1
648081
- 2.074 bump
648081
648081
* Mon Feb 13 2017 Jitka Plesnikova <jplesnik@redhat.com> - 2.072-1
648081
- 2.072 bump
648081
648081
* Fri Feb 10 2017 Petr Pisar <ppisar@redhat.com> - 2.070-2
648081
- Adjust tests to zlib-1.2.11 (bug #1420012)
648081
648081
* Thu Dec 29 2016 Paul Howarth <paul@city-fan.org> - 2.070-1
648081
- Update to 2.070
648081
  - Fix prototype errors while lazy loading File::GlobMapper (CPAN RT#117675)
648081
  - zipdetails: Avoid loading optional modules from default . (CPAN RT#116538,
648081
    CVE-2016-1238)
648081
- Simplify find command using -delete
648081
648081
* Tue Aug 02 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-367
648081
- Avoid loading optional modules from default . (CVE-2016-1238)
648081
648081
* Wed May 18 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-366
648081
- Perl 5.24 re-rebuild of bootstrapped packages
648081
648081
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 2.069-365
648081
- Increase release to favour standalone package
648081
648081
* Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 2.069-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
648081
648081
* Sun Sep 27 2015 Paul Howarth <paul@city-fan.org> - 2.069-1
648081
- Update to 2.069
648081
  - IO::Compress::FAQ - Added a section on bgzip (CPAN RT#103295)
648081
  - IO::Compress::Zip - Zip64 needs to be first in extra field to work around
648081
    a Windows Explorer bug (see
648081
    http://www.info-zip.org/phpBB3/viewtopic.php?f=3&t=440 for details)
648081
648081
* Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.068-347
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
648081
648081
* Wed Jun 10 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.068-346
648081
- Perl 5.22 re-rebuild of bootstrapped packages
648081
648081
* Thu Jun 04 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.068-345
648081
- Increase release to favour standalone package
648081
648081
* Wed Jun 03 2015 Jitka Plesnikova <jplesnik@redhat.com> - 2.068-2
648081
- Perl 5.22 rebuild
648081
648081
* Wed Dec 24 2014 Paul Howarth <paul@city-fan.org> - 2.068-1
648081
- Update to 2.068
648081
  - Disable running of some of the slower test harnesses by default;
648081
    COMPRESS_ZLIB_RUN_MOST needs to be set to run them, which makes life more
648081
    bearable on legacy platforms
648081
648081
* Tue Dec  9 2014 Paul Howarth <paul@city-fan.org> - 2.067-1
648081
- Update to 2.067
648081
  - IO::Compress::RawDeflate unnecessarily loads IO::Seekable (CPAN RT#100257)
648081
- Classify buildreqs by usage
648081
648081
* Mon Sep 22 2014 Paul Howarth <paul@city-fan.org> - 2.066-1
648081
- Update to 2.066
648081
  - IO::Uncompress::Gzip
648081
    - Documentation of ExtraFlags stated the XFL values for BEST_COMPRESSION
648081
      and BEST_SPEED use the values 2 and 4 respectively; they should be 4 and
648081
      2 (code for setting XFL was correct)
648081
  - IO::Uncompress::Gunzip
648081
    - Fix regression preventing gunzip to in-memory file handle (CPAN RT#95494)
648081
648081
* Sun Sep 07 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.064-311
648081
- Perl 5.20 re-rebuild of bootstrapped packages
648081
648081
* Wed Sep 03 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.064-310
648081
- Increase release to favour standalone package
648081
648081
* Tue Aug 26 2014 Jitka Plesnikova <jplesnik@redhat.com> - 2.064-3
648081
- Perl 5.20 rebuild
648081
648081
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.064-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
648081
648081
* Sun Feb  2 2014 Paul Howarth <paul@city-fan.org> - 2.064-1
648081
- Update to 2.064
648081
  - Use android-compatible flags when calling gzip in
648081
    IO-Compress/t/050interop-gzip.t (CPAN RT#90216)
648081
648081
* Sun Nov  3 2013 Paul Howarth <paul@city-fan.org> - 2.063-1
648081
- Update to 2.063
648081
  - Typo in Compress::Zlib _combine function documentation (CPAN RT#89305)
648081
648081
* Wed Aug 14 2013 Jitka Plesnikova <jplesnik@redhat.com> - 2.062-2
648081
- Perl 5.18 re-rebuild of bootstrapped packages
648081
648081
* Mon Aug 12 2013 Paul Howarth <paul@city-fan.org> - 2.062-1
648081
- Update to 2.062
648081
  - Fix up tests for imminent bleadperl changes (CPAN RT#87335)
648081
  - Typo fixes (CPAN RT#84647)
648081
  - IO::Compress::Gzip test t/100generic-bzip2.t hung on Cygwin (CPAN RT#86814)
648081
648081
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.061-3
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
648081
648081
* Fri Jul 12 2013 Petr Pisar <ppisar@redhat.com> - 2.061-2
648081
- Perl 5.18 rebuild
648081
648081
* Mon May 27 2013 Paul Howarth <paul@city-fan.org> - 2.061-1
648081
- Update to 2.061
648081
  - zipdetails (1.06)
648081
    - Get it to cope with Android 'zipalign' non-standard extra fields; these
648081
      are used to make sure that a non-compressed member starts on a 4 byte
648081
      boundary
648081
  - unzip example with IO::Uncompress::Unzip (CPAN RT#84647)
648081
648081
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.060-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
648081
648081
* Tue Jan  8 2013 Paul Howarth <paul@city-fan.org> - 2.060-1
648081
- Update to 2.060
648081
  - Updated POD
648081
    - CPAN RT#82138: Example code not clear - gunzip() takes filenames!
648081
  - IO::Compress::Base
648081
    - Remove the flush call when opening a filehandle
648081
648081
* Sun Dec 16 2012 Paul Howarth <paul@city-fan.org> - 2.059-1
648081
- Update to 2.059
648081
  - IO::Compress::Base
648081
    - Added "Encode" option (fixes the encoding half of CPAN RT#42656)
648081
648081
* Mon Nov 26 2012 Petr Šabata <contyk@redhat.com> - 2.058-2
648081
- Add missing File::* buildtime dependencies
648081
648081
* Tue Nov 13 2012 Paul Howarth <paul@city-fan.org> - 2.058-1
648081
- Update to 2.058
648081
  - IO::Compress::Zip
648081
    - Allow member name and Zip Comment to be "0"
648081
  - IO::Compress::Base::Common
648081
    - Remove "-r" test - the file open will catch this
648081
    - IO::Compress::Base::Common returned that it could not read readable files
648081
      in NFS (CPAN RT#80855)
648081
  - Install to 'site' instead of 'perl' when perl version is 5.11+
648081
    (CPAN RT#79820)
648081
  - General performance improvements
648081
  - Fix failing 01misc.t subtest introduced in 2.057 (CPAN RT#81119)
648081
- Explicitly install to 'perl' directories
648081
648081
* Mon Aug  6 2012 Paul Howarth <paul@city-fan.org> - 2.055-1
648081
- Update to 2.055
648081
  - FAQ: added a few paragraphs on how to deal with pbzip2 files
648081
    (CPAN RT#77743)
648081
  - Compress::Zip: speed up compress, uncompress, memGzip and memGunzip
648081
    (CPAN RT#77350)
648081
- BR: perl(lib)
648081
- Drop BR: perl(Test::Builder) and perl(Test::More) as they're bundled
648081
- Drop BR: perl(Config), perl(Fcntl), perl(File::Copy), perl(File::Glob),
648081
  perl(POSIX) and perl(Symbol) as they're not dual-lived
648081
- Drop redundant explicit require for perl(Exporter)
648081
- Don't use macros for commands
648081
648081
* Fri Jul 20 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.052-5
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
648081
648081
* Tue Jul 10 2012 Petr Pisar <ppisar@redhat.com> - 2.052-4
648081
- Perl 5.16 re-rebuild of bootstrapped packages
648081
648081
* Wed Jun 06 2012 Petr Pisar <ppisar@redhat.com> - 2.052-3
648081
- Perl 5.16 rebuild
648081
648081
* Fri Jun 01 2012 Petr Pisar <ppisar@redhat.com> - 2.052-2
648081
- Omit optional Test::Pod and Test::NoWarnings tests on bootstrap
648081
648081
* Sun Apr 29 2012 Paul Howarth <paul@city-fan.org> - 2.052-1
648081
- Update to 2.052
648081
  - IO::Compress::Zip: force a ZIP64 archive when it contains ≥ 0xFFFF entries
648081
  - Fix typo in POD (CPAN RT#76130)
648081
- Don't need to remove empty directories from buildroot
648081
648081
* Sat Feb 18 2012 Paul Howarth <paul@city-fan.org> - 2.049-1
648081
- Update to 2.049
648081
  - IO::Compress::Zip:
648081
    - Error in t/cz-03zlib-v1.t that caused warnings with 5.15 (Perl RT#110736)
648081
648081
* Sun Jan 29 2012 Paul Howarth <paul@city-fan.org> - 2.048-1
648081
- Update to 2.048
648081
  - Set minimum Perl version to 5.6
648081
  - Set minimum zlib version to 1.2.0
648081
  - IO::Compress::Zip:
648081
    - In one-shot zip, set the Text Flag if "-T" thinks the file is a text file
648081
    - In one-shot mode, wrote mod time and access time in wrong order in the
648081
      "UT" extended field
648081
  - IO::Compress test suite fails with Compress::Raw::Zlib 2.047 and zlib < 1.2.4
648081
    (CPAN RT#74503)
648081
- Resync Compress::Raw::* dependency versions
648081
- Add buildreqs for core perl modules, which might be dual-lived
648081
- Don't use macros for commands
648081
648081
* Tue Jan 10 2012 Paul Howarth <paul@city-fan.org> - 2.046-2
648081
- Fedora 17 mass rebuild
648081
648081
* Mon Dec 19 2011 Paul Howarth <paul@city-fan.org> - 2.046-1
648081
- Update to 2.046
648081
  - Minor update to bin/zipdetails
648081
  - Typo in name of IO::Compress::FAQ.pod
648081
  - IO::Uncompress::Unzip:
648081
    - Example for walking a zip file used eof to control the outer loop; this
648081
      is wrong
648081
  - IO::Compress::Zip:
648081
    - Change default for CanonicalName to false (CPAN RT#72974)
648081
- Freeze Compress::Raw::* dependency versions until next synchronized release
648081
648081
* Sun Dec  4 2011 Paul Howarth <paul@city-fan.org> - 2.045-1
648081
- Update to 2.045
648081
  - Restructured IO::Compress::FAQ.pod
648081
648081
* Sun Dec  4 2011 Paul Howarth <paul@city-fan.org> - 2.044-1
648081
- Update to 2.044
648081
  - Moved FAQ.pod under the lib directory so it can get installed
648081
  - Added bin/zipdetails
648081
  - In IO::Compress::Zip, in one-shot mode, enable Zip64 mode if the input
648081
    file/buffer ≥ 0xFFFFFFFF bytes
648081
  - Update IO::Compress::FAQ
648081
648081
* Mon Nov 21 2011 Paul Howarth <paul@city-fan.org> - 2.043-1
648081
- Update to 2.043
648081
  - IO::Compress::Base:
648081
    - Fixed issue that with handling of Zip files with two (or more) entries
648081
      that were STORED; symptom is the first is uncompressed ok but the next
648081
      will terminate early if the size of the file is greater than BlockSize
648081
      (CPAN RT#72548)
648081
648081
* Fri Nov 18 2011 Paul Howarth <paul@city-fan.org> - 2.042-1
648081
- Update to 2.042
648081
  - IO::Compress::Zip:
648081
    - Added exUnixN option to allow creation of the "ux" extra field, which
648081
      allows 32-bit UID/GID to be stored
648081
    - In one-shot mode use exUnixN rather than exUnix2 for the UID/GID
648081
  - IO::Compress::Zlib::Extra::parseExtraField:
648081
    - Fixed bad test for length of ID field (CPAN RT#72329, CPAN RT#72505)
648081
648081
* Sat Oct 29 2011 Paul Howarth <paul@city-fan.org> - 2.040-1
648081
- Update to 2.040
648081
  - IO::Compress::Zip:
648081
    - Added CanonicalName option (note this option is set to true by default)
648081
    - Added FilterName option
648081
    - ExtAttr now populates MSDOS attributes
648081
  - IO::Uncompress::Base:
648081
    - Fixed issue where setting $\ would corrupt the uncompressed data
648081
  - t/050interop-*.t:
648081
    - Handle case when external command contains a whitespace (CPAN RT#71335)
648081
  - t/105oneshot-zip-only.t:
648081
    - CanonicalName test failure on Windows (CPAN RT#68926)
648081
648081
* Wed Jun 22 2011 Paul Howarth <paul@city-fan.org> - 2.037-2
648081
- Perl mass rebuild
648081
648081
* Wed Jun 22 2011 Paul Howarth <paul@city-fan.org> - 2.037-1
648081
- Update to 2.037 (support streamed stored content in IO::Uncompress::Unzip)
648081
648081
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 2.036-2
648081
- Perl mass rebuild
648081
648081
* Mon Jun 20 2011 Petr Sabata <contyk@redhat.com> - 2.036-1
648081
- 2.036 bump (Zip/Unzip enhancements)
648081
648081
* Sat May  7 2011 Paul Howarth <paul@city-fan.org> - 2.035-1
648081
- Update to 2.035 (fix test failure on Windows - CPAN RT#67931)
648081
648081
* Tue May  3 2011 Petr Sabata <psabata@redhat.com> - 2.034-1
648081
- 2.034 bump
648081
- Buildroot and defattr cleanup
648081
- Correcting BRs/Rs
648081
648081
* Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 2.033-2
648081
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
648081
648081
* Thu Jan 13 2011 Paul Howarth <paul@city-fan.org> - 2.033-1
648081
- Update to 2.033 (fixed typos and spelling errors - Perl RT#81816)
648081
- Use more explicit %%files list
648081
- Simplify inclusion of IO::Compress::FAQ
648081
- Drop redundant explicit requires of Compress::Raw::{Bzip2,Zlib}
648081
- Drop installdirs patch, not needed with perl 5.12
648081
- Default installdirs are perl, so no need to specify it explicitly
648081
- Make %%summary less generic
648081
648081
* Fri Jan 07 2011 Petr Pisar <ppisar@redhat.com> - 2.032-1
648081
- 2.032 bump
648081
- Small improvements in spec file
648081
648081
* Fri Dec 17 2010 Marcela Maslanova <mmaslano@redhat.com> - 2.030-4
648081
- 661697 rebuild for fixing problems with vendorach/lib
648081
648081
* Tue Sep 21 2010 Paul Howarth <paul@city-fan.org> 2.030-3
648081
- Turn long-running tests back on and support build --without long_tests
648081
  to skip them
648081
648081
* Thu Sep 16 2010 Ville Skyttä <ville.skytta@iki.fi> - 2.030-2
648081
- Install IO::Compress::FAQ into usual POD and man dirs (#634722)
648081
648081
* Mon Jul 26 2010 Petr Sabata <psabata@redhat.com> 2.030-1
648081
- 2.030 version bump
648081
648081
* Thu May 06 2010 Marcela Mašláňová <mmaslano@redhat.com> 2.027-1
648081
- update
648081
648081
* Mon Apr 12 2010 Marcela Mašláňová <mmaslano@redhat.com> 2.024-3
648081
- few fixes in specfile 573932
648081
648081
* Tue Mar 16 2010 Marcela Mašláňová <mmaslano@redhat.com> 2.024-2
648081
- Specfile autogenerated by cpanspec 1.78.
648081
- thanks with fixes of specfile to Paul Howarth
648081