Update to 0.07

- New upstream release 0.07:
  - Allow multiple finally blocks
  - Pass the error, if any, to finally blocks when called
  - Documentation fixes and clarifications
- This release by RJBS -> update source URL
This commit is contained in:
Paul Howarth 2010-11-06 13:21:51 +00:00
parent 7ecfffd9b6
commit 6665e725e0
3 changed files with 21 additions and 12 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
Try-Tiny-0.02.tar.gz /Try-Tiny-0.07.tar.gz

View File

@ -1,10 +1,10 @@
Name: perl-Try-Tiny Name: perl-Try-Tiny
Summary: Minimal try/catch with proper localization of $@ Summary: Minimal try/catch with proper localization of $@
Version: 0.04 Version: 0.07
Release: 1%{?dist} Release: 1%{?dist}
License: MIT License: MIT
Group: Development/Libraries Group: Development/Libraries
Source0: http://search.cpan.org/CPAN/authors/id/N/NU/NUFFIN/Try-Tiny-%{version}.tar.gz Source0: http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/Try-Tiny-%{version}.tar.gz
URL: http://search.cpan.org/dist/Try-Tiny URL: http://search.cpan.org/dist/Try-Tiny
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
@ -13,7 +13,6 @@ BuildArch: noarch
BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(Test::More) BuildRequires: perl(Test::More)
%{?perl_default_filter} %{?perl_default_filter}
%{?perl_default_subpackage_tests} %{?perl_default_subpackage_tests}
@ -43,15 +42,25 @@ find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
make test make test
%clean %clean
rm -rf %{buildroot} rm -rf %{buildroot}
%files %files
%defattr(-,root,root,-) %defattr(-,root,root,-)
%doc Changes %doc Changes
%{perl_vendorlib}/* %{perl_vendorlib}/Try/
%{_mandir}/man3/*.3* %{_mandir}/man3/Try::Tiny.3pm*
%changelog %changelog
* Mon Nov 1 2010 Paul Howarth <paul@city-fan.org> 0.07-1
- update to 0.07:
- allow multiple finally blocks
- pass the error, if any, to finally blocks when called
- documentation fixes and clarifications
- this release by RJBS -> update source URL
* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.04-2
- Mass rebuild with perl-5.12.0
* Tue Mar 02 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.04-1 * Tue Mar 02 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.04-1
- update by Fedora::App::MaintainerTools 0.004 - update by Fedora::App::MaintainerTools 0.004
- PERL_INSTALL_ROOT => DESTDIR - PERL_INSTALL_ROOT => DESTDIR

View File

@ -1 +1 @@
e15730ec7540c40cdd8f8e088c6e6a6c Try-Tiny-0.04.tar.gz a7a7645da6248f862855cd80bf67e29d Try-Tiny-0.07.tar.gz