source: projects/specs/trunk/p/perl-Test-Tester/perl-Test-Tester-vl.spec @ 9081

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

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


Line 
1Name:           perl-Test-Tester
2Version:        0.109
3Release:        1%{?_dist_release}
4Summary:        Ease testing test modules built with Test::Builder
5License:        GPL or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Test-Tester/
8Source0:        http://www.cpan.org/authors/id/F/FD/FDALY/Test-Tester-%{version}.tar.gz
9BuildRoot:      %{_tmppath}/%{name}-%{version}-root
10BuildArch:      noarch
11BuildRequires:  perl(ExtUtils::MakeMaker)
12BuildRequires:  perl(Test::Builder)
13Requires:       perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
14
15Vendor:         Project Vine
16Distribution:   Vine Linux
17
18%description
19If you have written a test module based on Test::Builder then Test::Tester
20allows you to test it with the minimum of effort.
21
22%prep
23%setup -q -n Test-Tester-%{version}
24
25%build
26%{__perl} Makefile.PL INSTALLDIRS=vendor
27make %{?_smp_mflags}
28
29%install
30rm -rf $RPM_BUILD_ROOT
31
32make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
33
34find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
35find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
36
37%{_fixperms} $RPM_BUILD_ROOT/*
38
39%check
40make test
41
42%clean
43rm -rf $RPM_BUILD_ROOT
44
45%files
46%defattr(-,root,root,-)
47%doc ARTISTIC CHANGES README TODO
48%{perl_vendorlib}/*
49%{_mandir}/man3/*
50
51%changelog
52* Wed Nov 12 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> 0.109-1
53- updated to 0.109
54- built with perl 5.16.3
55- added Vendor and Distribution tag
56
57* Sat Apr 30 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 0.107-2
58- rebuild with perl-5.12.3
59
60* Sat Nov  8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.107-1
61- new upstream release
62- applied new versioning policy
63
64* Tue Sep 25 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 0.106-1vl1
65- initial build for Vine Linux
66
67* Tue Sep 18 2007 Steven Pritchard <steve@kspei.com> 0.106-1
68- Update to 0.106.
69- BR Test::Builder.
70
71* Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.104-2
72- BR ExtUtils::MakeMaker.
73
74* Tue Dec 26 2006 Steven Pritchard <steve@kspei.com> 0.104-1
75- Update to 0.104.
76- Use fixperms macro instead of our own chmod incantation.
77
78* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.103-2
79- Fix find option order.
80
81* Sat Apr 08 2006 Steven Pritchard <steve@kspei.com> 0.103-1
82- Specfile autogenerated by cpanspec 1.64.
83- Fix License.
Note: See TracBrowser for help on using the repository browser.