0.36 bump
This commit is contained in:
parent
80bee3694a
commit
dc4bf94bc5
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
||||
Clone-0.31.tar.gz
|
||||
/Clone-0.34.tar.gz
|
||||
/Clone-0.36.tar.gz
|
||||
|
||||
@ -1,25 +1,29 @@
|
||||
Name: perl-Clone
|
||||
Version: 0.34
|
||||
Release: 5%{?dist}
|
||||
Version: 0.36
|
||||
Release: 1%{?dist}
|
||||
Summary: Recursively copy perl data types
|
||||
Group: Development/Libraries
|
||||
License: GPL+ or Artistic
|
||||
URL: http://search.cpan.org/dist/Clone
|
||||
Source: http://search.cpan.org/CPAN/authors/id/G/GA/GARU/Clone-%{version}.tar.gz
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
# Run-time:
|
||||
BuildRequires: perl(AutoLoader)
|
||||
BuildRequires: perl(Carp)
|
||||
BuildRequires: perl(Data::Dumper)
|
||||
BuildRequires: perl(DynaLoader)
|
||||
BuildRequires: perl(Exporter)
|
||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
BuildRequires: perl(strict)
|
||||
BuildRequires: perl(Taint::Runtime)
|
||||
BuildRequires: perl(vars)
|
||||
# Tests:
|
||||
BuildRequires: perl(Test::More)
|
||||
BuildRequires: perl(utf8)
|
||||
BuildRequires: perl(vars)
|
||||
BuildRequires: perl(warnings)
|
||||
# Optional tests:
|
||||
BuildRequires: perl(Data::Dumper)
|
||||
BuildRequires: perl(Hash::Util::FieldHash)
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
BuildRequires: perl(Taint::Runtime)
|
||||
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||
|
||||
%{?perl_default_filter}
|
||||
@ -35,7 +39,7 @@ arrays or hashes, pass them in by reference.
|
||||
|
||||
%prep
|
||||
%setup -q -n Clone-%{version}
|
||||
find . -type f -exec chmod -c -x {} ';'
|
||||
find . -type f -exec chmod -c -x {} +
|
||||
|
||||
%build
|
||||
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}"
|
||||
@ -43,9 +47,9 @@ make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
make pure_install DESTDIR=%{buildroot}
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
|
||||
find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
|
||||
chmod -R u+w %{buildroot}/*
|
||||
find %{buildroot} -type f -name .packlist -exec rm -f {} +
|
||||
find %{buildroot} -type f -name '*.bs' -a -size 0 -exec rm -f {} +
|
||||
%{_fixperms} %{buildroot}/*
|
||||
|
||||
%check
|
||||
make test
|
||||
@ -57,6 +61,9 @@ make test
|
||||
%{_mandir}/man3/*.3*
|
||||
|
||||
%changelog
|
||||
* Mon Feb 03 2014 Petr Pisar <ppisar@redhat.com> - 0.36-1
|
||||
- 0.36 bump
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.34-5
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user