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