Update to 0.236

- New upstream release 0.236
  - Add Travis test configuration
  - Make test for PMC availability more reliable
  - Disable benchmark test rt62341.t as it runs out of memory on many smoker
    systems (CPAN RT#118310)
- Simplify find command using -delete
This commit is contained in:
Paul Howarth 2016-10-10 14:22:19 +01:00
parent 94a4e0b544
commit 44ecf7523d
2 changed files with 19 additions and 10 deletions

View File

@ -1,7 +1,7 @@
Name: perl-parent
Epoch: 1
Version: 0.234
Release: 365%{?dist}
Version: 0.236
Release: 1%{?dist}
Summary: Establish an ISA relationship with base classes at compile time
License: GPL+ or Artistic
Group: Development/Libraries
@ -9,16 +9,20 @@ URL: http://search.cpan.org/dist/parent/
Source0: http://search.cpan.org/CPAN/authors/id/C/CO/CORION/parent-%{version}.tar.gz
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
BuildArch: noarch
# Build:
# Module Build
BuildRequires: coreutils
BuildRequires: findutils
BuildRequires: make
BuildRequires: perl
BuildRequires: perl-generators
BuildRequires: perl(ExtUtils::MakeMaker)
# Run-time:
# Module Runtime
BuildRequires: perl(strict)
BuildRequires: perl(vars)
# Tests:
# Test Suite
BuildRequires: perl(lib)
BuildRequires: perl(Test::More) >= 0.4
# Dependencies
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
%description
@ -37,9 +41,6 @@ from those modules at the same time. Mostly similar in effect to:
%prep
%setup -q -n parent-%{version}
# Remove spurious exec permissions
chmod -c -x Changes lib/parent.pm
%build
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
@ -47,7 +48,7 @@ make %{?_smp_mflags}
%install
rm -rf %{buildroot}
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
find %{buildroot} -type f -name .packlist -delete
%{_fixperms} %{buildroot}
%check
@ -62,6 +63,14 @@ rm -rf %{buildroot}
%{_mandir}/man3/parent.3*
%changelog
* Mon Oct 10 2016 Paul Howarth <paul@city-fan.org> - 1:0.236-1
- Update to 0.236
- Add Travis test configuration
- Make test for PMC availability more reliable
- Disable benchmark test rt62341.t as it runs out of memory on many smoker
systems (CPAN RT#118310)
- Simplify find command using -delete
* Sat May 14 2016 Jitka Plesnikova <jplesnik@redhat.com> - 1:0.234-365
- Increase release to favour standalone package

View File

@ -1 +1 @@
b02fccccc0e7f9b74de42e60816c38be parent-0.234.tar.gz
c8650f1063f6050f856f854d1dac389d parent-0.236.tar.gz