source: projects/specs/trunk/p/perl-ExtUtils-AutoInstall/perl-ExtUtils-AutoInstall-vl.spec @ 9081

Revision 9081, 2.1 KB checked in by inagaki, 9 years ago (diff)

2014-11-12 Ryoichi INAGAKI <ryo1@…>


Line 
1Name:           perl-ExtUtils-AutoInstall
2Version:        0.63
3Release:        3%{?_dist_release}
4Summary:        Automatic install of dependencies via CPAN
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/ExtUtils-AutoInstall/
8Source:         http://search.cpan.org/CPAN/authors/id/A/AU/AUTRIJUS/ExtUtils-AutoInstall-%{version}.tar.gz
9Patch0:         eai.patch
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildArch:      noarch
13BuildRequires:  perl(CPANPLUS) >= 0.043
14BuildRequires:  perl(ExtUtils::MakeMaker)
15BuildRequires:  perl(Sort::Versions) >= 1.2
16BuildRequires:  perl(LWP::Simple)
17BuildRequires:  perl(CPAN)
18Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
19
20Vendor:         Project Vine
21Distribution:   Vine Linux
22
23%description
24ExtUtils::AutoInstall lets module writers specify a more sophisticated
25form of dependency information than the PREREQ_PM option offered by
26ExtUtils::MakeMaker.
27
28%prep
29%setup -q -n ExtUtils-AutoInstall-%{version}
30%patch0 -p1
31
32%build
33%{__perl} Makefile.PL INSTALLDIRS=vendor --defaultdeps
34make %{?_smp_mflags}
35
36%install
37rm -rf %{buildroot}
38make pure_install PERL_INSTALL_ROOT=%{buildroot}
39find %{buildroot} -type f -name .packlist -exec rm -f {} ';'
40find %{buildroot} -type d -depth -exec rmdir {} 2>/dev/null ';'
41chmod -R u+w %{buildroot}/*
42
43%clean
44rm -rf %{buildroot}
45
46%check
47make test
48
49%files
50%defattr(-,root,root,-)
51# For license text(s), see the perl package
52%doc Changes AUTHORS README TODO META.yml SIGNATURE
53%{perl_vendorlib}/ExtUtils
54%{_mandir}/man3/*
55
56%changelog
57* Wed Nov 12 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.63-3
58- rebuilt with perl 5.16.3
59
60* Thu Mar 08 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.63-2
61- spec overhauled
62
63* Wed Mar 30 2011 IWAI, Masaharu <iwai@alib.jp> 0.63-1
64- build with perl 5.12.3
65- apply new versioning policy
66
67* Fri Feb 16 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.63-0vl1
68- new upstream release
69- changed Group to Development/Libraries
70
71* Sat Dec  4 2004 IWAI, Masaharu <iwai@alib.jp> 0.61-0vl1
72- new upstream release
73- build on perl-5.8.6-0vl1
74
75* Sun Jul  6 2003 IWAI Masaharu <iwai@alib.jp> 0.52-0vl1
76- first build for Vine Linux
Note: See TracBrowser for help on using the repository browser.