perl-ExtUtils-Depends-vl.spec 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. Summary: Easily build XS extensions that depend on XS extensions
  2. Name: perl-ExtUtils-Depends
  3. Version: 0.8001
  4. Release: 1%{?_dist_release}
  5. Vendor: Project Vine
  6. Distribution: Vine Linux
  7. License: GPL+ or Artistic
  8. Group: programming
  9. URL: https://metacpan.org/pod/ExtUtils::Depends
  10. Source0: https://cpan.metacpan.org/authors/id/X/XA/XAOC/ExtUtils-Depends-%{version}.tar.gz
  11. BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
  12. BuildArch: noarch
  13. BuildRequires: perl(ExtUtils::MakeMaker)
  14. BuildRequires: perl(Test::More)
  15. Requires: perl
  16. %description
  17. This module tries to make it easy to build Perl extensions that use
  18. functions and typemaps provided by other perl extensions. This means that a
  19. perl extension is treated like a shared library that provides also a C and
  20. an XS interface besides the perl one.
  21. %prep
  22. %setup -q -n ExtUtils-Depends-%{version}
  23. %build
  24. %{__perl} Makefile.PL INSTALLDIRS=vendor
  25. make %{?_smp_mflags}
  26. %install
  27. rm -rf $RPM_BUILD_ROOT
  28. make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
  29. find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
  30. find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
  31. %{_fixperms} $RPM_BUILD_ROOT/*
  32. %check
  33. make test
  34. %clean
  35. rm -rf $RPM_BUILD_ROOT
  36. %files
  37. %defattr(-,root,root,-)
  38. %doc Changes README
  39. %{perl_vendorlib}/*
  40. %{_mandir}/man3/*
  41. %changelog
  42. * Wed Nov 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.8001-1
  43. - new upstream release.
  44. - built with perl-5.34.0.
  45. * Thu May 16 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.8000-1
  46. - new upstream release.
  47. - rebuilt with perl-5.26.
  48. * Fri Jun 27 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 0.304-2
  49. - build with Perl 5.16
  50. * Mon Mar 28 2011 IWAI, Masaharu <iwai@alib.jp> 0.304-1
  51. - new upstream release
  52. - add Vendor and Distribution tags
  53. * Mon Jul 07 2008 Daisuke SUZUKI <daisuke@linux.or.jp> 0.300-1
  54. - new upstream release
  55. - build on perl-5.10
  56. * Wed Aug 22 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 0.205-5vl1
  57. - Initial build for Vine
  58. * Fri Sep 8 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.205-5
  59. - Rebuild for FC6.
  60. * Wed Feb 15 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.205-4
  61. - Rebuild for FC5 (perl 5.8.8).
  62. * Thu Dec 29 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0.205-3
  63. - Dist tag.
  64. * Thu Apr 7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 0.205-2
  65. - rebuilt
  66. * Tue Feb 15 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.205-1
  67. - Update to 0.205.
  68. * Sun Oct 3 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.204-0.fdr.1
  69. - Update to 0.204.
  70. * Sun Jul 18 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.202-0.fdr.1
  71. - First build.