perl-XML-LibXSLT-vl.spec 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. %{!?perl_vendorarch: %define perl_vendorarch %(eval "`%{__perl} -V:installvendorarch`"; echo $installvendorarch)}
  2. Name: perl-XML-LibXSLT
  3. # NOTE: also update perl-XML-LibXML to a compatible version. See below why.
  4. Version: 1.96
  5. Release: 1%{?_dist_release}
  6. Summary: Perl module for interfacing to GNOME libxslt library
  7. Summary(ja): libxslt ライブラリへの Perl インターフェース
  8. Group: Development/Libraries
  9. License: GPL+ or Artistic
  10. URL: http://search.cpan.org/dist/XML-LibXSLT/
  11. Source0: http://search.cpan.org/CPAN/authors/id/P/PA/PAJAS/XML-LibXSLT-%{version}.tar.gz
  12. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  13. BuildRequires: gdbm-devel
  14. BuildRequires: libgcrypt-devel
  15. BuildRequires: libgpg-error-devel
  16. BuildRequires: libxslt-devel >= 1.1.28
  17. BuildRequires: libxcrypt-devel
  18. BuildRequires: perl(Data::Dumper)
  19. BuildRequires: perl(ExtUtils::MakeMaker)
  20. BuildRequires: perl(Test::More)
  21. Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
  22. BuildRequires: perl(XML::LibXML)
  23. Requires: perl(XML::LibXML)
  24. Distribution: Vine Linux
  25. Vendor: Project Vine
  26. Packager: munepi
  27. %description
  28. This module is a fast XSLT library, based on the Gnome libxslt engine
  29. that you can find at http://www.xmlsoft.org/XSLT/
  30. %{?perl_default_filter}
  31. %prep
  32. %setup -q -n XML-LibXSLT-%{version}
  33. %build
  34. %{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="$RPM_OPT_FLAGS"
  35. %__make %{?_smp_mflags}
  36. %install
  37. %__rm -rf $RPM_BUILD_ROOT
  38. %__make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
  39. find $RPM_BUILD_ROOT -type f -name .packlist -exec %__rm -f {} ';'
  40. find $RPM_BUILD_ROOT -type f -name '*.bs' -a -size 0 -exec %__rm -f {} ';'
  41. find $RPM_BUILD_ROOT -type d -depth -exec %__rmdir {} 2>/dev/null ';'
  42. %__chmod -R u+w $RPM_BUILD_ROOT/*
  43. %check
  44. %__make test
  45. %clean
  46. %__rm -rf $RPM_BUILD_ROOT
  47. %files
  48. %defattr(-,root,root,-)
  49. %doc Changes README example
  50. %{perl_vendorarch}/auto/*
  51. %{perl_vendorarch}/XML
  52. %{_mandir}/man3/*.3*
  53. %changelog
  54. * Mon May 13 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.96-1
  55. - new upstream release.
  56. - added BR:libxcrypt-devel.
  57. * Sun Nov 30 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.92-1
  58. - new upstream release
  59. - built with perl 5.16.3 and perl-XML-LibXML 2.0117
  60. * Sun Apr 03 2011 Munehiro Yamamoto <munepi@vinelinux.org> - 1.70-2
  61. - rebuilt with perl-5.12.3
  62. * Thu Aug 12 2010 Munehiro Yamamoto <munepi@vinelinux.org> - 1.70-1
  63. - initial build
  64. * Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.70-4
  65. - Mass rebuild with perl-5.12.0
  66. * Thu Mar 11 2010 Paul Howarth <paul@city-fan.org> - 1.70-3
  67. - rebuild for new gdbm
  68. * Mon Dec 7 2009 Stepan Kasal <skasal@redhat.com> - 1.70-2
  69. - rebuild against perl 5.10.1
  70. * Fri Nov 20 2009 Marcela Mašláňová <mmaslano@redhat.com> - 1:1.70-1
  71. - update to fix 539102
  72. * Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.68-4
  73. - rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
  74. * Wed Mar 18 2009 Stepan Kasal <skasal@redhat.com> - 1.68-3
  75. - patch to fix a refcounting bug leading to segfaults (#490781)
  76. * Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.68-2
  77. - rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
  78. * Sat Dec 20 2008 Paul Howarth <paul@city-fan.org> - 1.68-1
  79. - update to 1.68
  80. - relax hard version requirement on XML::LibXML, which is at 1.69 upstream
  81. but 1.67 or above will suffice (care will still have to be taken to keep
  82. the packages in sync, particularly when XML::LibXML is updated)
  83. - specify $RPM_OPT_FLAGS once rather than twice
  84. - drop historical perl version requirement, which is met even by EL-3
  85. - explicitly buildreq ExtUtils::MakeMaker rather than just perl-devel
  86. * Mon Nov 3 2008 Stepan Kasal <skasal@redhat.com> - 1.66-2
  87. - require XML::LibXML of the same version
  88. * Fri Aug 8 2008 Zing <zing@fastmail.fm> - 1.66-1
  89. - update to 1.66
  90. * Sat May 31 2008 Zing <zing@fastmail.fm> - 1.63-6
  91. - rpm check stage barfs on || :
  92. * Mon Mar 3 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.63-5
  93. - rebuild for new perl (again)
  94. * Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 1.63-4
  95. - Autorebuild for GCC 4.3
  96. * Fri Feb 8 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.63-3
  97. - rebuild for new perl
  98. * Sat Jan 19 2008 Zing <zing@fastmail.fm> - 1.63-2
  99. - build requires gdbm-devel
  100. * Fri Jan 18 2008 Zing <zing@fastmail.fm> - 1.63-1
  101. - update to 1.63
  102. * Sat Aug 11 2007 Zing <zing@fastmail.fm> - 1.62-2
  103. - require perl-devel
  104. * Tue Aug 7 2007 Zing <zing@fastmail.fm> - 1.62-1
  105. - update to 1.62
  106. - Conform to Fedora Licensing Guideline
  107. * Fri Sep 8 2006 Zing <zing@fastmail.fm> - 1.58-3
  108. - rebuild for FE6
  109. * Tue Feb 14 2006 Zing <shishz@hotpop.com> - 1.58-2
  110. - rebuild for FE5
  111. * Wed Aug 17 2005 Zing <shishz@hotpop.com> - 1.58-1
  112. - new upstream
  113. - use dist macro
  114. * Thu Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
  115. - rebuilt
  116. * Sat Mar 5 2005 Ville Skyttä <ville.skytta at iki.fi> - 1.57-3
  117. - Drop pre-FC2 LD_RUN_PATH hack.
  118. - Install benchmark.pl only as %%doc.
  119. * Sat Feb 26 2005 Zing <shishz@hotpop.com> - 1.57-2
  120. - QA from Ville Skyttä
  121. - BuildRequires XML::LibXML >= 1.57
  122. - BuildRequires libxslt-devel
  123. - put benchmark.pl in %%doc
  124. * Fri Feb 25 2005 Zing <shishz@hotpop.com> - 1.57-1
  125. - First build.