Update to 0.19

- New upstream release 0.19
  - Fix checking of SvUTF8 flag
- Simplify find commands using -empty and -delete
This commit is contained in:
Paul Howarth 2016-08-19 14:06:17 +01:00
parent febcccbee0
commit a1ea8ef330
2 changed files with 9 additions and 4 deletions

View File

@ -1,7 +1,7 @@
# TODO: BR: perl(B::C) when available
Name: perl-Sub-Name
Version: 0.18
Version: 0.19
Release: 1%{?dist}
Summary: Name - or rename - a sub
License: GPL+ or Artistic
@ -55,8 +55,8 @@ make %{?_smp_mflags}
%install
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} \;
find %{buildroot} -type f -name '*.bs' -size 0 -exec rm -f {} \;
find %{buildroot} -type f -name .packlist -delete
find %{buildroot} -type f -name '*.bs' -empty -delete
%{_fixperms} %{buildroot}
%check
@ -74,6 +74,11 @@ make test
%{_mandir}/man3/Sub::Name.3*
%changelog
* Fri Aug 19 2016 Paul Howarth <paul@city-fan.org> - 0.19-1
- Update to 0.19
- Fix checking of SvUTF8 flag
- Simplify find commands using -empty and -delete
* Tue Aug 16 2016 Paul Howarth <paul@city-fan.org> - 0.18-1
- Update to 0.18
- Support binary and unicode symbol names (PR#8)

View File

@ -1 +1 @@
26da1476d699a61967e866b6309605b8 Sub-Name-0.18.tar.gz
855afebe2144247bf5f6282b648d5c3d Sub-Name-0.19.tar.gz