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