perl-Module-Build-Tiny-vl.spec 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263
  1. Summary: A tiny replacement for Module::Build
  2. Name: perl-Module-Build-Tiny
  3. Version: 0.039
  4. Release: 13%{?_dist_release}
  5. License: GPL+ or Artistic
  6. URL: https://github.com/Leont/module-build-tiny
  7. Source0: http://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-Tiny-%{version}.tar.gz
  8. Vendor: Project Vine
  9. Distribution: Vine Linux
  10. BuildArch: noarch
  11. # Module Build
  12. BuildRequires: perl >= 2:5.26.2
  13. # Module
  14. BuildRequires: perl(CPAN::Meta)
  15. BuildRequires: perl(DynaLoader)
  16. BuildRequires: perl(Exporter)
  17. BuildRequires: perl(ExtUtils::CBuilder)
  18. BuildRequires: perl(ExtUtils::Config)
  19. BuildRequires: perl(ExtUtils::Helpers)
  20. BuildRequires: perl(ExtUtils::Install)
  21. BuildRequires: perl(ExtUtils::InstallPaths)
  22. BuildRequires: perl(ExtUtils::ParseXS)
  23. BuildRequires: perl(File::Path)
  24. BuildRequires: perl(File::Spec::Functions)
  25. BuildRequires: perl(Getopt::Long)
  26. BuildRequires: perl(JSON::PP)
  27. BuildRequires: perl(Pod::Man)
  28. BuildRequires: perl(TAP::Harness::Env)
  29. # Test
  30. BuildRequires: perl(blib)
  31. BuildRequires: perl(Carp)
  32. BuildRequires: perl(Cwd)
  33. BuildRequires: perl(Data::Dumper)
  34. BuildRequires: perl(File::ShareDir)
  35. BuildRequires: perl(File::Spec)
  36. BuildRequires: perl(File::Temp)
  37. BuildRequires: perl(IO::File)
  38. BuildRequires: perl(IO::Handle)
  39. BuildRequires: perl(IPC::Open2)
  40. BuildRequires: perl(IPC::Open3)
  41. BuildRequires: perl(Test::More)
  42. BuildRequires: perl(Test::Pod)
  43. BuildRequires: perl(XSLoader)
  44. # Runtime
  45. Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
  46. Requires: perl(DynaLoader)
  47. Requires: perl(ExtUtils::CBuilder)
  48. Requires: perl(ExtUtils::ParseXS)
  49. Requires: perl(Pod::Man)
  50. Requires: perl(TAP::Harness::Env)
  51. %description
  52. Many Perl distributions use a Build.PL file instead of a Makefile.PL file to
  53. drive distribution configuration, build, test and installation. Traditionally,
  54. Build.PL uses Module::Build as the underlying build system. This module
  55. provides a simple, lightweight, drop-in replacement.
  56. Whereas Module::Build has over 6,700 lines of code; this module has less than
  57. 70, yet supports the features needed by most pure-Perl distributions.
  58. %prep
  59. %setup -q -n Module-Build-Tiny-%{version}
  60. %build
  61. perl Build.PL --installdirs=vendor
  62. ./Build
  63. %install
  64. ./Build install --destdir=%{buildroot} --create_packlist=0
  65. %check
  66. AUTHOR_TESTING=1 RELEASE_TESTING=1 ./Build test
  67. %files
  68. %license LICENSE
  69. %doc Changes README Todo
  70. %{perl_vendorlib}/Module/
  71. %{_mandir}/man3/Module::Build::Tiny.3pm*
  72. %changelog
  73. * Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.039-13
  74. - initial build for Vine Linux.
  75. * Fri Feb 01 2019 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-12
  76. - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild
  77. * Fri Jul 13 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-11
  78. - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
  79. * Fri Jun 29 2018 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-10
  80. - Perl 5.28 rebuild
  81. * Thu Feb 08 2018 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-9
  82. - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
  83. * Thu Jul 27 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-8
  84. - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild
  85. * Sun Jun 04 2017 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-7
  86. - Perl 5.26 rebuild
  87. * Sat Feb 11 2017 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-6
  88. - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild
  89. * Sun May 15 2016 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-5
  90. - Perl 5.24 rebuild
  91. * Thu Feb 04 2016 Fedora Release Engineering <releng@fedoraproject.org> - 0.039-4
  92. - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild
  93. * Thu Jun 18 2015 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.039-3
  94. - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild
  95. * Fri Jun 05 2015 Jitka Plesnikova <jplesnik@redhat.com> - 0.039-2
  96. - Perl 5.22 rebuild
  97. * Mon Oct 13 2014 Paul Howarth <paul@city-fan.org> - 0.039-1
  98. - Update to 0.039
  99. - Supply basename to *.PL files as its args
  100. * Mon Sep 22 2014 Paul Howarth <paul@city-fan.org> - 0.038-1
  101. - Update to 0.038
  102. - Scrub PERL_MB_OPT in tests too
  103. * Wed Aug 27 2014 Jitka Plesnikova <jplesnik@redhat.com> - 0.037-2
  104. - Perl 5.20 rebuild
  105. * Mon Jul 28 2014 Paul Howarth <paul@city-fan.org> - 0.037-1
  106. - Update to 0.037
  107. - Scrub environment variable in tests
  108. - Use %%license
  109. * Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.036-2
  110. - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
  111. * Fri May 2 2014 Paul Howarth <paul@city-fan.org> - 0.036-1
  112. - Update to 0.036
  113. - Add --jobs argument to MBT
  114. - Add xs directory to include list
  115. * Tue Feb 18 2014 Paul Howarth <paul@city-fan.org> - 0.035-1
  116. - Update to 0.035
  117. - Fix install test in absence of a compiler
  118. * Wed Jan 22 2014 Paul Howarth <paul@city-fan.org> - 0.034-1
  119. - Update to 0.034
  120. - Make install tests more platform independent
  121. * Tue Jan 21 2014 Paul Howarth <paul@city-fan.org> - 0.033-1
  122. - Update to 0.033
  123. - Require Getopt::Long 2.36
  124. - Add install tests
  125. * Mon Jan 20 2014 Paul Howarth <paul@city-fan.org> - 0.032-1
  126. - Update to 0.032
  127. - Process argument sources separately
  128. - Use mod2fname appropriately
  129. - BR:/R: perl(DynaLoader)
  130. - BR: perl(GetOpt::Long) ≥ 2.36 for GetOptionsFromArray
  131. - Drop dependencies on TAP::Harness as we only use TAP::Harness::Env
  132. * Fri Oct 11 2013 Paul Howarth <paul@city-fan.org> - 0.030-1
  133. - Update to 0.030
  134. - Respect harness environmental variables
  135. - Add main dir to include path
  136. - 'include_dirs' must be a list ref, not just a string (CPAN RT#54606)
  137. - BR:/R: perl(TAP::Harness) ≥ 3.29
  138. * Mon Sep 30 2013 Paul Howarth <paul@city-fan.org> - 0.028-1
  139. - Update to 0.028
  140. - Revert "Removed clean and realclean actions"
  141. - Build .c and .o in temp/ instead of lib
  142. - Got rid of IO layers
  143. - Separate libdoc and bindoc checks
  144. * Mon Sep 9 2013 Paul Howarth <paul@city-fan.org> - 0.027-1
  145. - Update to 0.027
  146. - Various documentation updates
  147. * Tue Aug 20 2013 Paul Howarth <paul@city-fan.org> - 0.026-1
  148. - Update to 0.026
  149. - Safe PERL_MB_OPT during configuration stage
  150. * Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.025-3
  151. - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
  152. * Wed Jul 24 2013 Petr Pisar <ppisar@redhat.com> - 0.025-2
  153. - Perl 5.18 rebuild
  154. * Fri Jul 12 2013 Paul Howarth <paul@city-fan.org> - 0.025-1
  155. - Update to 0.025
  156. - Use local tempdir
  157. * Sun Jun 30 2013 Paul Howarth <paul@city-fan.org> - 0.024-1
  158. - Update to 0.024
  159. - Generate man pages in the correct section
  160. * Wed Jun 12 2013 Paul Howarth <paul@city-fan.org> - 0.023-1
  161. - Update to 0.023
  162. - Implement --pureperl-only
  163. - Skip compilation test when not having a compiler
  164. * Sat Jun 1 2013 Paul Howarth <paul@city-fan.org> - 0.022-1
  165. - Update to 0.022
  166. - Fix dirname code for toplevel XS modules
  167. * Mon May 27 2013 Paul Howarth <paul@city-fan.org> - 0.021-1
  168. - Update to 0.021
  169. - Add XS support
  170. - Only manify if really installable
  171. - BR:/R: perl(ExtUtils::CBuilder) and perl(ExtUtils::ParseXS)
  172. - BR: perl(XSLoader) for the test suite
  173. * Mon May 20 2013 Paul Howarth <paul@city-fan.org> - 0.020-1
  174. - Update to 0.020
  175. - Accept a --create_packlist argument
  176. * Tue Apr 30 2013 Paul Howarth <paul@city-fan.org> - 0.019-1
  177. - Update to 0.019
  178. - Accept --pureperl-only
  179. - Bump perl(ExtUtils::Helpers) version requirement to 0.020
  180. * Thu Apr 25 2013 Paul Howarth <paul@city-fan.org> - 0.018-1
  181. - Update to 0.018
  182. - Lazily load Pod::Man and TAP::Harness
  183. - Don't manify unless necessary
  184. - Bump perl(ExtUtils::Helpers) version requirement to 0.019
  185. - Explicitly require perl(Pod::Man) and perl(TAP::Harness) ≥ 3.0
  186. * Tue Apr 23 2013 Paul Howarth <paul@city-fan.org> - 0.017-2
  187. - Updates following package review (#947455)
  188. - BR: perl(ExtUtils::Config) for module
  189. - BR: perl(File::ShareDir) for test suite
  190. - Drop BR: perl(File::Basename) and perl(File::Find), not dual-lived
  191. * Mon Apr 15 2013 Paul Howarth <paul@city-fan.org> - 0.017-1
  192. - Update to 0.017
  193. - Switched back from JSON to JSON::PP
  194. - Remove dependency on File::Find::Rule
  195. - Switched back to ExtUtils::Helpers for detildefy
  196. - Drop .modulebuildrc support per Lancaster consensus
  197. - Fix loading of File::Find
  198. - Fix redefined warning for find
  199. - Drop BR: perl(ExtUtils::BuildRC), perl(File::Find::Rule), perl(File::HomeDir),
  200. perl(File::pushd)
  201. - BR: perl(JSON::PP) rather than perl(JSON), and perl(Pod::Man)
  202. - Bump perl(ExtUtils::Helpers) version requirement to 0.017 to avoid the need
  203. for a workaround for misplaced manpage
  204. * Thu Apr 4 2013 Paul Howarth <paul@city-fan.org> - 0.014-1
  205. - Update to 0.014
  206. - Added sharedir support
  207. - Fixed Synopsis
  208. - Make blib/arch, to satisfy blib.pm
  209. - Removed dependencies on Test::Exception, Capture::Tiny and File::Slurp
  210. * Mon Apr 1 2013 Paul Howarth <paul@city-fan.org> - 0.013-2
  211. - Sanitize for Fedora submission
  212. * Mon Apr 1 2013 Paul Howarth <paul@city-fan.org> - 0.013-1
  213. - Initial RPM version