source: projects/specs/trunk/p/perl-ExtUtils-Depends/perl-ExtUtils-Depends-vl.spec @ 12120

Revision 12120, 2.6 KB checked in by tomop, 5 years ago (diff)

perl-5.26 and friends

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