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