source: projects/specs/trunk/p/perl-Try-Tiny/perl-Try-Tiny-vl.spec @ 8671

Revision 8671, 3.2 KB checked in by iwaim, 10 years ago (diff)

perl-Try-Tiny 0.11-2

Line 
1Name:           perl-Try-Tiny
2Summary:        Minimal try/catch with proper localization of $@
3Version:        0.11
4Release:        2%{?_dist_release}
5License:        MIT
6Group:          Development/Libraries
7Source0:        http://search.cpan.org/CPAN/authors/id/D/DO/DOY/Try-Tiny-%{version}.tar.gz
8URL:            http://search.cpan.org/dist/Try-Tiny
9Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
10BuildArch:      noarch
11
12BuildRequires:  perl(ExtUtils::MakeMaker)
13BuildRequires:  perl(Test::More)
14
15# obsolete/provide old tests subpackage
16# can be removed during F19 development cycle
17Obsoletes:      %{name}-tests < 0.11-3
18Provides:       %{name}-tests = %{version}-%{release}
19
20Vendor:         Project Vine
21Distribution:   Vine Linux
22Packager:       shaolin
23
24%{?perl_default_filter}
25
26%description
27The main focus of this module is to provide simple and reliable error
28handling for those having a hard time installing TryCatch, but who still
29want to write correct 'eval' blocks without 5 lines of boilerplate each
30time.
31
32%prep
33%setup -q -n Try-Tiny-%{version}
34
35%build
36%{__perl} Makefile.PL INSTALLDIRS=vendor
37make %{?_smp_mflags}
38
39%install
40rm -rf %{buildroot}
41make pure_install DESTDIR=%{buildroot}
42find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
43find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null ';'
44
45%{_fixperms} %{buildroot}/*
46
47%check
48make test
49
50%clean
51rm -rf %{buildroot}
52
53%files
54%doc Changes t/
55%{perl_vendorlib}/Try/
56%{_mandir}/man3/Try::Tiny.3pm*
57
58%changelog
59* Mon Jun 30 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 0.11-2
60- build with Perl 5.16
61
62* Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.11-1
63- initial build for Vine Linux
64
65* Sun Jan 22 2012 Iain Arnell <iarnell@gmail.com> 0.11-3
66- drop tests subpackage; move tests to main package documentation
67
68* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.11-2
69- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
70
71* Sun Oct 02 2011 Iain Arnell <iarnell@gmail.com> 0.11-1
72- update to latest upstream version
73
74* Wed Jun 15 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.09-2
75- Perl mass rebuild
76
77* Fri Mar 18 2011 Iain Arnell <iarnell@gmail.com> 0.09-1
78- update to latest upstream version
79- clean up spec for modern rpmbuild
80
81* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.07-2
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
83
84* Mon Nov  1 2010 Paul Howarth <paul@city-fan.org> 0.07-1
85- update to 0.07:
86  - allow multiple finally blocks
87  - pass the error, if any, to finally blocks when called
88  - documentation fixes and clarifications
89- this release by RJBS -> update source URL
90
91* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.04-2
92- Mass rebuild with perl-5.12.0
93
94* Tue Mar 02 2010 Chris Weyl <cweyl@alumni.drew.edu> 0.04-1
95- update by Fedora::App::MaintainerTools 0.004
96- PERL_INSTALL_ROOT => DESTDIR
97- updating to latest GA CPAN version (0.04)
98
99* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 0.02-2
100- rebuild against perl 5.10.1
101
102* Tue Sep 15 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.02-1
103- submission
104
105* Tue Sep 15 2009 Chris Weyl <cweyl@alumni.drew.edu> 0.02-0
106- initial RPM packaging
107- generated with cpan2dist (CPANPLUS::Dist::RPM version 0.0.8)
Note: See TracBrowser for help on using the repository browser.