1.82 bump
This commit is contained in:
parent
6b94a14e92
commit
a59f4d2efd
1
.gitignore
vendored
1
.gitignore
vendored
@ -5,3 +5,4 @@ Archive-Tar-1.64.tar.gz
|
||||
/Archive-Tar-1.76.tar.gz
|
||||
/Archive-Tar-1.78.tar.gz
|
||||
/Archive-Tar-1.80.tar.gz
|
||||
/Archive-Tar-1.82.tar.gz
|
||||
|
||||
@ -1,19 +1,24 @@
|
||||
Name: perl-Archive-Tar
|
||||
Version: 1.80
|
||||
Version: 1.82
|
||||
Release: 1%{?dist}
|
||||
Summary: A module for Perl manipulation of .tar files
|
||||
|
||||
Group: Development/Libraries
|
||||
License: GPL+ or Artistic
|
||||
URL: http://search.cpan.org/dist/Archive-Tar/
|
||||
Source0: http://www.cpan.org/authors/id/B/BI/BINGOS/Archive-Tar-%{version}.tar.gz
|
||||
|
||||
BuildArch: noarch
|
||||
# Most of the BRS are needed only for tests, compression support at run-time
|
||||
# is optional soft dependency.
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Compress::Zlib) >= 2.015
|
||||
BuildRequires: perl(constant)
|
||||
BuildRequires: perl(Cwd)
|
||||
BuildRequires: perl(Data::Dumper)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Required only by Makefile.PL, ask upstream to remove it
|
||||
BuildRequires: perl(File::Spec)
|
||||
BuildRequires: perl(File::Spec::Unix)
|
||||
BuildRequires: perl(File::Path)
|
||||
BuildRequires: perl(IO::Compress::Base) >= 2.015
|
||||
BuildRequires: perl(IO::Compress::Bzip2) >= 2.015
|
||||
BuildRequires: perl(IO::Compress::Gzip) >= 2.015
|
||||
@ -24,7 +29,8 @@ BuildRequires: perl(Test::Harness) >= 2.26
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(Test::Pod)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
||||
Requires: perl(Compress::Zlib) >= 2.015, perl(IO::Zlib) >= 1.01
|
||||
Requires: perl(Compress::Zlib) >= 2.015
|
||||
Requires: perl(IO::Zlib) >= 1.01
|
||||
|
||||
%description
|
||||
Archive::Tar provides an object oriented mechanism for handling tar
|
||||
@ -33,7 +39,6 @@ while also allowing for the creation of tar file objects for custom
|
||||
manipulation. If you have the IO::Zlib module installed, Archive::Tar
|
||||
will also support compressed or gzipped tar files.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q -n Archive-Tar-%{version}
|
||||
|
||||
@ -42,15 +47,14 @@ will also support compressed or gzipped tar files.
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
|
||||
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
|
||||
chmod -R u+w $RPM_BUILD_ROOT/*
|
||||
make pure_install PERL_INSTALL_ROOT=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
|
||||
chmod -R u+w %{buildroot}/*
|
||||
|
||||
%check
|
||||
make test
|
||||
|
||||
|
||||
%files
|
||||
%doc CHANGES README
|
||||
%{_bindir}/*
|
||||
@ -60,6 +64,9 @@ make test
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Nov 22 2011 Petr Šabata <contyk@redhat.com> - 1.82-1
|
||||
- 1.82 bump
|
||||
|
||||
* Fri Oct 14 2011 Petr Sabata <contyk@redhat.com> - 1.80-1
|
||||
- 1.80 bump
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user