perl-PAR-Dist-vl.spec 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. Name: perl-PAR-Dist
  2. Version: 0.49
  3. Release: 1%{?_dist_release}
  4. Summary: Toolkit for creating and manipulating Perl PAR distributions
  5. License: GPL+ or Artistic
  6. Group: Development/Libraries
  7. URL: http://search.cpan.org/dist/PAR-Dist/
  8. Source0: http://www.cpan.org/authors/id/S/SM/SMUELLER/PAR-Dist-%{version}.tar.gz
  9. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  10. BuildArch: noarch
  11. BuildRequires: perl(Archive::Zip)
  12. BuildRequires: perl(ExtUtils::MakeMaker)
  13. BuildRequires: perl(Test::More)
  14. BuildRequires: perl(Test::Pod)
  15. BuildRequires: perl(Test::Pod::Coverage)
  16. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  17. Vendor: Project Vine
  18. Distribution: Vine Linux
  19. Packager: shaolin
  20. %description
  21. This module creates and manipulates PAR distributions. They are architecture-
  22. specific PAR files, containing everything under blib/ of CPAN distributions
  23. after their make or Build stage, a META.yml describing metadata of the
  24. original CPAN distribution, and a MANIFEST detailing all files within it.
  25. Digitally signed PAR distributions will also contain a SIGNATURE file.
  26. %prep
  27. %setup -q -n PAR-Dist-%{version}
  28. %build
  29. %{__perl} Makefile.PL INSTALLDIRS=vendor
  30. make %{?_smp_mflags}
  31. %install
  32. rm -rf $RPM_BUILD_ROOT
  33. make pure_install PERL_INSTALL_ROOT=${RPM_BUILD_ROOT}
  34. find ${RPM_BUILD_ROOT} -type f -name .packlist -exec rm -f {} \;
  35. find ${RPM_BUILD_ROOT} -depth -type d -exec rmdir {} 2>/dev/null \;
  36. %{_fixperms} ${RPM_BUILD_ROOT}/*
  37. %check
  38. make test PERL_TEST_POD=1
  39. %clean
  40. rm -rf $RPM_BUILD_ROOT
  41. %files
  42. %defattr(-,root,root,-)
  43. %doc Changes README
  44. %{perl_vendorlib}/*
  45. %{_mandir}/man3/*
  46. %changelog
  47. * Wed Nov 19 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.49-1
  48. - updated to 0.49
  49. - built with perl 5.16.3
  50. * Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.47-2
  51. - rebuild
  52. * Fri Feb 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.47-1
  53. - initial build for Vine Linux
  54. * Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.47-4
  55. - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
  56. * Wed Jul 20 2011 Petr Sabata <contyk@redhat.com> - 0.47-3
  57. - Perl mass rebuild
  58. * Tue Feb 08 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.47-2
  59. - Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
  60. * Tue Dec 21 2010 Steven Pritchard <steve@kspei.com> 0.47-1
  61. - Update to 0.47.
  62. * Tue Dec 21 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.46-4
  63. - 661697 rebuild for fixing problems with vendorach/lib
  64. * Tue May 04 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.46-3
  65. - Mass rebuild with perl-5.12.0
  66. * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 0.46-2
  67. - rebuild against perl 5.10.1
  68. * Mon Sep 21 2009 Stepan Kasal <skasal@redhat.com> - 0.46-1
  69. - new upstream version
  70. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.43-3
  71. - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  72. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.43-2
  73. - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  74. * Mon Feb 02 2009 Steven Pritchard <steve@kspei.com> 0.43-1
  75. - Update to 0.43.
  76. - Explicitly require Archive::Zip and YAML::Tiny.
  77. * Fri Jan 16 2009 Steven Pritchard <steve@kspei.com> 0.42-1
  78. - Update to 0.42.
  79. * Mon Dec 15 2008 Steven Pritchard <steve@kspei.com> 0.40-1
  80. - Update to 0.40.
  81. - BR Archive::Zip and YAML::Tiny for t/03merge_meta.
  82. * Thu Sep 25 2008 Marcela Maslanova <mmaslano@redhat.com> 0.34-2
  83. - forgot apply source
  84. * Thu Sep 25 2008 Marcela Maslanova <mmaslano@redhat.com> 0.34-1
  85. - update to 0.34 -> it was needed for perl-PAR
  86. * Sat May 31 2008 Steven Pritchard <steve@kspei.com> 0.31-1
  87. - Update to 0.31.
  88. - BR Test::Pod and Test::Pod::Coverage.
  89. * Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.29-2
  90. - Rebuild for perl 5.10 (again)
  91. * Thu Feb 21 2008 Steven Pritchard <steve@kspei.com> 0.29-1
  92. - Update to 0.29.
  93. - Use fixperms macro instead of our own chmod incantation.
  94. - Reformat to match cpanspec output.
  95. * Thu Jan 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.25-4
  96. - rebuild (again) for new perl
  97. * Thu Jan 10 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.25-3
  98. - rebuild for new perl
  99. * Mon Aug 6 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.25-2
  100. - License: GPL+ or Artistic
  101. * Mon Jul 30 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.25-1
  102. - 0.25.
  103. * Sun Jul 22 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.24-1
  104. - 0.24.
  105. * Mon Jun 25 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.23-1
  106. - 0.23.
  107. * Sun May 6 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.22-1
  108. - 0.22.
  109. * Tue Apr 17 2007 Ville Skyttä <ville.skytta at iki.fi> - 0.21-2
  110. - BuildRequire perl(ExtUtils::MakeMaker) and perl(Test::More).
  111. * Sun Oct 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.21-1
  112. - 0.21.
  113. * Thu Oct 12 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.20-1
  114. - 0.20.
  115. * Sun Sep 17 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.19-1
  116. - 0.19.
  117. * Mon Aug 28 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.18-1
  118. - 0.18.
  119. * Tue Aug 15 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.16-1
  120. - 0.16.
  121. * Sat Jul 29 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.15-1
  122. - 0.15.
  123. * Sun Jul 23 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.14-1
  124. - 0.14.
  125. * Thu Jul 20 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.11-1
  126. - 0.11.
  127. - Fix order of options to find(1) in %%install.
  128. * Thu Jun 8 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.10-1
  129. - 0.10.
  130. * Fri Feb 24 2006 Ville Skyttä <ville.skytta at iki.fi> - 0.08-1
  131. - 0.08.
  132. - Specfile cleanups.
  133. * Thu Mar 17 2005 Ville Skyttä <ville.skytta at iki.fi> - 0.07-3
  134. - Avoid running signature test during build.
  135. - Sync with fedora-rpmdevtools' Perl spec template.
  136. * Sun Apr 25 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.07-0.fdr.2
  137. - Require perl(:MODULE_COMPAT_*).
  138. * Sat Mar 27 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.07-0.fdr.1
  139. - First build.