Update to 0.27

- New upstream release 0.27
  - "finally" blocks are now run for all methods of leaving the try block
     (including via exit, goto) (CPAN RT#112099)
  - Switch from finalizers using an array to a hash, to resolve segfaults when
    creating a pseudofork on MSWin before perl 5.20
    (karenetheridge/Sub-Name/#3)
  - Repository moved to the github p5sagit organization (the primary is on
    shadowcat, mirrored to github)
- Simplify find command using -delete
This commit is contained in:
Paul Howarth 2016-08-16 12:03:23 +01:00
parent b9eee19ca9
commit 1939af56d7
2 changed files with 17 additions and 4 deletions

View File

@ -1,7 +1,7 @@
Name: perl-Try-Tiny
Summary: Minimal try/catch with proper localization of $@
Version: 0.24
Release: 3%{?dist}
Version: 0.27
Release: 1%{?dist}
License: MIT
URL: http://search.cpan.org/dist/Try-Tiny
Source0: http://search.cpan.org/CPAN/authors/id/E/ET/ETHER/Try-Tiny-%{version}.tar.gz
@ -22,6 +22,7 @@ BuildRequires: perl(Sub::Util)
BuildRequires: perl(warnings)
# Test Suite
BuildRequires: perl(File::Spec)
BuildRequires: perl(Module::Metadata)
BuildRequires: perl(Test::More)
# Optional Tests
BuildRequires: perl(Capture::Tiny) >= 0.12
@ -53,7 +54,7 @@ make %{?_smp_mflags}
%install
make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
find %{buildroot} -type f -name .packlist -delete
%{_fixperms} %{buildroot}
%check
@ -66,6 +67,18 @@ make test
%{_mandir}/man3/Try::Tiny.3*
%changelog
* Tue Aug 16 2016 Paul Howarth <paul@city-fan.org> - 0.27-1
- Update to 0.27
- "finally" blocks are now run for all methods of leaving the try block
(including via exit, goto) (CPAN RT#112099)
- Switch from finalizers using an array to a hash, to resolve segfaults when
creating a pseudofork on MSWin before perl 5.20
(karenetheridge/Sub-Name/#3)
- Repository moved to the github p5sagit organization (the primary is on
shadowcat, mirrored to github)
- BR: perl-generators
- Simplify find command using -delete
* Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.24-3
- Perl 5.24 rebuild

View File

@ -1 +1 @@
1a12a51cfeb7e2c301e4ae093c7ecdfb Try-Tiny-0.24.tar.gz
e6ee3bcf382d53974becf712ef9301e2 Try-Tiny-0.27.tar.gz