Update to 2.067
- New upstream release 2.067 - IO::Compress::RawDeflate unnecessarily loads IO::Seekable (CPAN RT#100257) - Classify buildreqs by usage
This commit is contained in:
parent
3d5d5f5631
commit
3c75848a47
@ -2,7 +2,7 @@
|
|||||||
%{?perl_default_filter}
|
%{?perl_default_filter}
|
||||||
|
|
||||||
Name: perl-IO-Compress
|
Name: perl-IO-Compress
|
||||||
Version: 2.066
|
Version: 2.067
|
||||||
Release: 1%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Read and write compressed data
|
Summary: Read and write compressed data
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
@ -10,30 +10,48 @@ Group: Development/Libraries
|
|||||||
URL: http://search.cpan.org/dist/IO-Compress/
|
URL: http://search.cpan.org/dist/IO-Compress/
|
||||||
Source0: http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-%{version}.tar.gz
|
Source0: http://search.cpan.org/CPAN/authors/id/P/PM/PMQS/IO-Compress-%{version}.tar.gz
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
# Module Build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 5.16
|
||||||
|
BuildRequires: perl(File::Copy)
|
||||||
|
BuildRequires: perl(File::Spec::Functions)
|
||||||
|
# Module Runtime
|
||||||
|
BuildRequires: perl(bytes)
|
||||||
BuildRequires: perl(Carp)
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(Compress::Raw::Bzip2) >= %{version}
|
BuildRequires: perl(Compress::Raw::Bzip2) >= %{version}
|
||||||
BuildRequires: perl(Compress::Raw::Zlib) >= %{version}
|
BuildRequires: perl(Compress::Raw::Zlib) >= %{version}
|
||||||
|
BuildRequires: perl(Config)
|
||||||
BuildRequires: perl(constant)
|
BuildRequires: perl(constant)
|
||||||
BuildRequires: perl(Encode)
|
BuildRequires: perl(Encode)
|
||||||
BuildRequires: perl(Exporter)
|
BuildRequires: perl(Exporter)
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(Fcntl)
|
||||||
BuildRequires: perl(File::Path)
|
BuildRequires: perl(File::Glob)
|
||||||
BuildRequires: perl(File::Spec)
|
BuildRequires: perl(File::Spec)
|
||||||
BuildRequires: perl(File::Temp)
|
|
||||||
BuildRequires: perl(IO::File)
|
BuildRequires: perl(IO::File)
|
||||||
BuildRequires: perl(IO::Handle)
|
BuildRequires: perl(IO::Handle)
|
||||||
BuildRequires: perl(IO::Seekable)
|
|
||||||
BuildRequires: perl(lib)
|
|
||||||
BuildRequires: perl(List::Util)
|
BuildRequires: perl(List::Util)
|
||||||
|
BuildRequires: perl(overload)
|
||||||
|
BuildRequires: perl(POSIX)
|
||||||
BuildRequires: perl(Scalar::Util)
|
BuildRequires: perl(Scalar::Util)
|
||||||
|
BuildRequires: perl(strict)
|
||||||
|
BuildRequires: perl(Symbol)
|
||||||
|
BuildRequires: perl(utf8)
|
||||||
|
BuildRequires: perl(warnings)
|
||||||
|
# Test Suite
|
||||||
|
BuildRequires: perl(File::Path)
|
||||||
|
BuildRequires: perl(File::Temp)
|
||||||
|
BuildRequires: perl(lib)
|
||||||
# Dual-lived module needs building early in the boot process
|
# Dual-lived module needs building early in the boot process
|
||||||
%if !%{defined perl_bootstrap}
|
%if !%{defined perl_bootstrap}
|
||||||
BuildRequires: perl(Test::NoWarnings)
|
BuildRequires: perl(Test::NoWarnings)
|
||||||
BuildRequires: perl(Test::Pod) >= 1.00
|
BuildRequires: perl(Test::Pod) >= 1.00
|
||||||
%endif
|
%endif
|
||||||
|
BuildRequires: perl(threads::shared)
|
||||||
|
# Runtime
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
# this is wrapper for different Compress modules
|
Requires: perl(File::Glob)
|
||||||
|
|
||||||
|
# This is wrapper for different Compress modules
|
||||||
Obsoletes: perl-Compress-Zlib < %{version}-%{release}
|
Obsoletes: perl-Compress-Zlib < %{version}-%{release}
|
||||||
Provides: perl-Compress-Zlib = %{version}-%{release}
|
Provides: perl-Compress-Zlib = %{version}-%{release}
|
||||||
Obsoletes: perl-IO-Compress-Base < %{version}-%{release}
|
Obsoletes: perl-IO-Compress-Base < %{version}-%{release}
|
||||||
@ -103,12 +121,17 @@ make test %{?with_long_tests:COMPRESS_ZLIB_RUN_ALL=1}
|
|||||||
%{perl_privlib}/IO/Compress/Zlib/
|
%{perl_privlib}/IO/Compress/Zlib/
|
||||||
%{perl_privlib}/IO/Uncompress/
|
%{perl_privlib}/IO/Uncompress/
|
||||||
%{_mandir}/man1/zipdetails.1*
|
%{_mandir}/man1/zipdetails.1*
|
||||||
%{_mandir}/man3/Compress::Zlib.3pm*
|
%{_mandir}/man3/Compress::Zlib.3*
|
||||||
%{_mandir}/man3/File::GlobMapper.3pm*
|
%{_mandir}/man3/File::GlobMapper.3*
|
||||||
%{_mandir}/man3/IO::Compress::*.3pm*
|
%{_mandir}/man3/IO::Compress::*.3*
|
||||||
%{_mandir}/man3/IO::Uncompress::*.3pm*
|
%{_mandir}/man3/IO::Uncompress::*.3*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Tue Dec 9 2014 Paul Howarth <paul@city-fan.org> - 2.067-1
|
||||||
|
- Update to 2.067
|
||||||
|
- IO::Compress::RawDeflate unnecessarily loads IO::Seekable (CPAN RT#100257)
|
||||||
|
- Classify buildreqs by usage
|
||||||
|
|
||||||
* Mon Sep 22 2014 Paul Howarth <paul@city-fan.org> - 2.066-1
|
* Mon Sep 22 2014 Paul Howarth <paul@city-fan.org> - 2.066-1
|
||||||
- Update to 2.066
|
- Update to 2.066
|
||||||
- IO::Uncompress::Gzip
|
- IO::Uncompress::Gzip
|
||||||
|
Loading…
Reference in New Issue
Block a user