perl-Try-Tiny-vl.spec 3.6 KB

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