Update to 0.27

- New upstream release 0.27
  - Allow packages to be cleaned multiple times
  - Ensure the debugger workarounds are applied only when DB::sub is actively
    used (they are superfluous otherwise)
  - Work around P5#72210, resulting in fails on 5.8.8 -Duselongdouble
  - Fix incorrect name in META (CPAN RT#107813)
- BR: perl-generators where available
- Simplify find command using -delete
This commit is contained in:
Paul Howarth 2016-05-19 12:05:32 +01:00
parent 4303bee516
commit 48f060b587
2 changed files with 17 additions and 5 deletions

View File

@ -1,7 +1,7 @@
Name: perl-namespace-clean Name: perl-namespace-clean
Summary: Keep your namespace tidy Summary: Keep your namespace tidy
Version: 0.26 Version: 0.27
Release: 3%{?dist} Release: 1%{?dist}
License: GPL+ or Artistic License: GPL+ or Artistic
URL: http://search.cpan.org/dist/namespace-clean/ URL: http://search.cpan.org/dist/namespace-clean/
Source0: http://search.cpan.org/CPAN/authors/id/R/RI/RIBASUSHI/namespace-clean-%{version}.tar.gz Source0: http://search.cpan.org/CPAN/authors/id/R/RI/RIBASUSHI/namespace-clean-%{version}.tar.gz
@ -11,7 +11,9 @@ BuildRequires: coreutils
BuildRequires: findutils BuildRequires: findutils
BuildRequires: make BuildRequires: make
BuildRequires: perl >= 4:5.12 BuildRequires: perl >= 4:5.12
BuildRequires: perl(ExtUtils::CBuilder) >= 0.27 %if 0%{?fedora} > 20 || 0%{?rhel} > 7
BuildRequires: perl-generators
%endif
BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(File::Spec) BuildRequires: perl(File::Spec)
BuildRequires: perl(File::Temp) BuildRequires: perl(File::Temp)
@ -66,7 +68,7 @@ make %{?_smp_mflags}
%install %install
make pure_install DESTDIR=%{buildroot} make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} ';' find %{buildroot} -type f -name .packlist -delete
%{_fixperms} %{buildroot} %{_fixperms} %{buildroot}
%check %check
@ -78,6 +80,16 @@ make test
%{_mandir}/man3/namespace::clean.3* %{_mandir}/man3/namespace::clean.3*
%changelog %changelog
* Thu May 19 2016 Paul Howarth <paul@city-fan.org> - 0.27-1
- Update to 0.27
- Allow packages to be cleaned multiple times
- Ensure the debugger workarounds are applied only when DB::sub is actively
used (they are superfluous otherwise)
- Work around P5#72210, resulting in fails on 5.8.8 -Duselongdouble
- Fix incorrect name in META (CPAN RT#107813)
- BR: perl-generators where available
- Simplify find command using -delete
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.26-3 * Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.26-3
- Perl 5.24 rebuild - Perl 5.24 rebuild

View File

@ -1 +1 @@
c4f65abbc0916814c4c27dbf20d6d086 namespace-clean-0.26.tar.gz cba97f39ef7e594bd8489b4fdcddb662 namespace-clean-0.27.tar.gz