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