source: projects/specs/branches/6/p/perl-Test-Manifest/perl-Test-Manifest-vl.spec @ 521

Revision 521, 3.5 KB checked in by daisuke, 14 years ago (diff)

import VineSeed package specs

Line 
1Name:           perl-Test-Manifest
2Version:        1.22
3Release:        6%{?_dist_release}
4Summary:        Test case module for Perl
5
6Group:          Development/Libraries
7License:        GPL+ or Artistic
8URL:            http://search.cpan.org/dist/Test-Manifest/
9Source0:        http://www.cpan.org/authors/id/B/BD/BDFOY/Test-Manifest-%{version}.tar.gz
10BuildRoot:      %{_tmppath}/%{name}-%{version}-root
11
12BuildArch:      noarch
13BuildRequires:  perl(Test::Pod)
14BuildRequires:  perl(Test::Pod::Coverage)
15BuildRequires:  perl(ExtUtils::MakeMaker), perl(Test::More)
16Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
17
18%description
19MakeMaker assumes that you want to run all of the .t files in the t/
20directory in ascii-betical order during make test unless you say
21otherwise. This leads to some interesting naming schemes for test
22files to get them in the desired order.
23You can specify any order or any files that you like, though, with the
24test directive to WriteMakefile.
25Test::Manifest looks in the t/test_manifest file to find out which
26tests you want to run and the order in which you want to run them. It
27constructs the right value for MakeMaker to do the right thing.
28
29
30%prep
31%setup -q -n Test-Manifest-%{version}
32
33%build
34%{__perl} Makefile.PL INSTALLDIRS=vendor
35make %{?_smp_mflags}
36
37%install
38rm -rf $RPM_BUILD_ROOT
39make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
40find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} ';'
41find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null ';'
42chmod -R u+w $RPM_BUILD_ROOT/*
43
44%check
45make test
46
47%clean
48rm -rf $RPM_BUILD_ROOT
49
50
51%files
52%defattr(-,root,root,-)
53%doc Changes
54%{perl_vendorlib}/Test/
55%{_mandir}/man3/*.3*
56
57
58%changelog
59* Thu Nov 11 2009 Ryoichi INAGAKI <ryo1@bc.wakwak.com> - 1.22-6
60- initial build for Vine Linux
61
62* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.22-5
63- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
64
65* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.22-4
66- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
67
68* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.22-3
69- Rebuild for perl 5.10 (again)
70
71* Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.22-2
72- rebuild for new perl
73
74* Wed Dec 19 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.22-1
75- 1.22
76- license fix
77
78* Fri Feb 23 2007 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.17-1
79- Update to 1.17.
80
81* Fri Sep  8 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-5
82- Rebuild for FC6.
83
84* Mon Feb 20 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-4
85- Rebuild for FC5 (perl 5.8.8).
86
87* Thu May 12 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-3
88- Add dist tag.
89
90* Fri Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net> - 1.14-2
91- rebuilt
92
93* Tue Mar 29 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-1
94- Update to 1.14.
95
96* Wed Mar 23 2005 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.13-1
97- Update to 1.13.
98
99* Sat Oct 30 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.11-1
100- Update to 1.11.
101
102* Sun Jun 13 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:0.93-0.fdr.2
103- Bring up to date with current fedora.us perl spec template.
104- Require perl >= 2:5.8.0 for vendor install dir support
105  (also resolves the ExtUtils::MakeMaker version problem).
106
107* Sun Mar 14 2004 Ville Skyttä <ville.skytta at iki.fi> - 0:0.93-0.fdr.1
108- Update to 0.93.
109- Reduce directory ownership bloat.
110
111* Sun Oct 12 2003 Ville Skyttä <ville.skytta at iki.fi> - 0:0.92-0.fdr.1
112- First build.
Note: See TracBrowser for help on using the repository browser.