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