perl-Params-Util-vl.spec 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207
  1. Name: perl-Params-Util
  2. Version: 1.04
  3. Release: 2%{?_dist_release}
  4. Summary: Simple standalone param-checking functions
  5. License: GPL+ or Artistic
  6. Group: Development/Libraries
  7. URL: http://search.cpan.org/dist/Params-Util/
  8. Source0: http://search.cpan.org/CPAN/authors/id/A/AD/ADAMK/Params-Util-%{version}.tar.gz
  9. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  10. BuildRequires: perl(ExtUtils::MakeMaker) >= 6.52
  11. BuildRequires: perl(Test::More) >= 0.47
  12. BuildRequires: perl(File::Spec) >= 0.82
  13. BuildRequires: perl(Scalar::Util) >= 1.18
  14. Vendor: Project Vine
  15. Distribution: Vine Linux
  16. Packager: shaolin
  17. %description
  18. Params::Util provides a basic set of importable functions that
  19. makes checking parameters a hell of a lot easier.
  20. %prep
  21. %setup -q -n Params-Util-%{version}
  22. %build
  23. %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
  24. make %{?_smp_mflags}
  25. %install
  26. make pure_install DESTDIR=$RPM_BUILD_ROOT
  27. find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
  28. find $RPM_BUILD_ROOT -type f -name '*.bs' -size 0 -exec rm -f {} \;
  29. find $RPM_BUILD_ROOT -type d -depth -exec rmdir {} 2>/dev/null ';'
  30. chmod -R u+w $RPM_BUILD_ROOT/*
  31. %check
  32. make test AUTOMATED_TESTING=1
  33. %files
  34. %defattr(-,root,root,-)
  35. %doc Changes LICENSE
  36. %{perl_vendorarch}/auto/*
  37. %{perl_vendorarch}/Params
  38. %{_mandir}/man3/*
  39. %changelog
  40. * Fri Jun 27 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 1.04-2
  41. - build with Perl 5.16
  42. * Fri Feb 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.04-1
  43. - initial build for Vine Linux
  44. * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.04-3
  45. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  46. * Thu Jun 16 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.04-2
  47. - Perl mass rebuild
  48. * Fri Apr 29 2011 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.04-1
  49. - Upstream update.
  50. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.03-2
  51. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  52. * Mon Dec 06 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.03-1
  53. - Upstream update.
  54. * Wed Jun 23 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.01-2
  55. - Rebuild for perl-5.12.x.
  56. * Fri May 07 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.01-1
  57. - Upstream update.
  58. - Revert Marcela's 2010-05-04 changes.
  59. - Remove BR's on perl(Test::MinimumVersion), perl(Test::Pod),
  60. perl(Test::CPAN::Meta).
  61. (Reflect upstream having disabled tests depending on them).
  62. * Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.00-4
  63. - Mass rebuild with perl-5.12.0
  64. * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.00-3
  65. - rebuild against perl 5.10.1
  66. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00-2
  67. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  68. * Wed Jun 17 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.00-1
  69. - Upstream update.
  70. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.38-2
  71. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  72. * Thu Feb 19 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.38-1
  73. - Upstream update.
  74. * Thu Feb 12 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.37-1
  75. - Upstream update.
  76. - Pass OPTIMIZE to make.
  77. - Remove *.bs after install.
  78. - Misc. minor spec fixes.
  79. * Sat Nov 29 2008 Ralf Corsépius <corsepiu@fedoraproject.org> - 0.35-1
  80. - Upstream update.
  81. - Remove BuildArch: noarch (package now is arch'ed).
  82. - Remove testsuite hack to accept perl(Test::CPAN::Meta) != 0.07.
  83. * Tue Jul 08 2008 Ralf Corsépius <rc040203@freenet.de> - 0.33-2
  84. - Unconditionally BR: perl(Test::CPAN::Meta).
  85. * Mon Jun 02 2008 Ralf Corsépius <rc040203@freenet.de> - 0.33-1
  86. - Upstream update.
  87. - Conditionally BR: perl(Test::CPAN::Meta).
  88. - Hack testsuite to accept Test::CPAN::Meta != 0.07.
  89. * Thu Feb 28 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.31-6
  90. - Rebuild normally, second pass
  91. * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.31-5
  92. - Rebuild for perl 5.10 (again), first pass
  93. * Mon Jan 14 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.31-4
  94. - rebuild normally, second pass
  95. * Sat Jan 12 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.31-3.1
  96. - disable Test::MinimumVersion, tests for first pass
  97. * Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.31-3
  98. - rebuild for new perl
  99. * Sun Nov 25 2007 Ralf Corsépius <rc040203@freenet.de> - 0.31-2
  100. - Add BR: perl(Test::MinimumVersion).
  101. * Mon Nov 19 2007 Ralf Corsépius <rc040203@freenet.de> - 0.31-1
  102. - Upstream update.
  103. * Tue Oct 30 2007 Ralf Corsépius <rc040203@freenet.de> - 0.30-1
  104. - Upstream update.
  105. * Thu Sep 06 2007 Ralf Corsépius <rc040203@freenet.de> - 0.29-1
  106. - Upstream update.
  107. - Update licence tag.
  108. - Conditionally disable AUTOMATED_TESTING.
  109. * Sat Jul 28 2007 Ralf Corsépius <rc040203@freenet.de> - 0.26-1
  110. - Upstream update.
  111. * Wed May 30 2007 Ralf Corsépius <rc040203@freenet.de> - 0.25-1
  112. - Upstream update.
  113. * Mon May 14 2007 Ralf Corsépius <rc040203@freenet.de> - 0.24-1
  114. - Upstream update.
  115. * Mon Mar 12 2007 Ralf Corsépius <rc040203@freenet.de> - 0.23-2
  116. - BR: perl(ExtUtils::MakeMaker).
  117. * Fri Mar 02 2007 Ralf Corsépius <rc040203@freenet.de> - 0.23-1
  118. - Upstream update.
  119. * Fri Nov 03 2006 Ralf Corsépius <rc040203@freenet.de> - 0.22-1
  120. - Upstream update.
  121. * Thu Oct 19 2006 Ralf Corsépius <rc040203@freenet.de> - 0.21-1
  122. - Upstream update.
  123. * Wed Oct 04 2006 Ralf Corsépius <rc040203@freenet.de> - 0.20-1
  124. - Upstream update.
  125. * Mon Sep 18 2006 Ralf Corsépius <rc040203@freenet.de> - 0.19-1
  126. - Upstream update.
  127. - Activate AUTOMATED_TESTING (t/99_author.t).
  128. * Tue Sep 05 2006 Ralf Corsépius <rc040203@freenet.de> - 0.17-2
  129. - Mass rebuild.
  130. * Sun Aug 13 2006 Ralf Corsépius <rc040203@freenet.de> - 0.17-1
  131. - Upstream update.
  132. * Wed Jul 05 2006 Ralf Corsépius <rc040203@freenet.de> - 0.15-1
  133. - Upstream update.
  134. * Sun May 21 2006 Ralf Corsépius <rc040203@freenet.de> - 0.14-1
  135. - Upstream update.
  136. * Mon May 08 2006 Ralf Corsépius <rc040203@freenet.de> - 0.13-1
  137. - Upstream update.
  138. * Thu Apr 20 2006 Ralf Corsépius <rc040203@freenet.de> - 0.11-1
  139. - Upstream update.
  140. * Wed Mar 01 2006 Ralf Corsépius <rc040203@freenet.de> - 0.10-2
  141. - Rebuild for perl-5.8.8.
  142. * Wed Jan 18 2006 Ralf Corsépius <rc040203@freenet.de> - 0.10-1
  143. - Upstream update.
  144. * Wed Jan 11 2006 Ralf Corsépius <rc040203@freenet.de> - 0.09-1
  145. - Upstream update.
  146. * Wed Dec 21 2005 Ralf Corsépius <rc040203@freenet.de> - 0.08-1
  147. - Upstream update.
  148. * Wed Oct 12 2005 Ralf Corsepius <rc040203@freenet.de> - 0.07-1
  149. - Upstream update.