perl-PAR-Dist-vl.spec 5.8 KB

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