source: projects/specs/trunk/p/perl-Test-Base/perl-Test-Base-vl.spec @ 12120

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

perl-5.26 and friends

Line 
1Name:           perl-Test-Base
2Version:        0.89
3Release:        1%{?_dist_release}
4Summary:        Data Driven Testing Framework
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Test-Base/
8Source0:        http://www.cpan.org/authors/id/I/IN/INGY/Test-Base-%{version}.tar.gz
9
10Vendor:        Project Vine
11Distribution:  Vine Linux
12
13BuildArch:      noarch
14BuildRequires:  perl(ExtUtils::MakeMaker)
15BuildRequires:  perl(Spiffy)
16BuildRequires:  perl(Test::Deep)
17BuildRequires:  perl(Test::More)
18BuildRequires:  perl(Test::Tester)
19BuildRequires:  perl(Text::Diff)
20BuildRequires:  perl(YAML)
21Requires:       perl(Text::Diff)
22Requires:       perl(LWP::Simple)
23Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
24
25%description
26Testing is usually the ugly part of Perl module authoring. Perl gives you a
27standard way to run tests with Test::Harness, and basic testing primitives
28with Test::More. After that you are pretty much on your own to develop a
29testing framework and philosophy. Test::More encourages you to make your
30own framework by subclassing Test::Builder, but that is not trivial.
31
32%prep
33%setup -q -n Test-Base-%{version}
34
35%build
36%{__perl} Makefile.PL INSTALLDIRS=vendor
37make %{?_smp_mflags}
38
39%install
40rm -rf %{buildroot}
41make pure_install PERL_INSTALL_ROOT=%{buildroot}
42
43find %{buildroot} -type f -name .packlist -exec rm -f {} \;
44find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
45
46%{_fixperms} %{buildroot}/*
47
48%check
49make test
50
51%clean
52rm -rf %{buildroot}
53
54%files
55%doc Changes README
56%{perl_vendorlib}/*
57%{_mandir}/man3/*
58
59%changelog
60* Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 0.89-1
61- new upstream release.
62- rebuilt with perl-5.26.
63
64* Wed Nov 19 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 0.88-1
65- updated to 0.88
66- built with perl 5.16.3
67
68* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.60-1
69- initial build for Vine Linux
70
71* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.60-3
72- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
73
74* Wed Jun 29 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.60-2
75- Perl mass rebuild
76
77* Sat May 14 2011 Iain Arnell <iarnell@gmail.com> 0.60-1
78- update to latest upstream version
79- clean up spec for modern rpmbuild
80
81* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.59-3
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
83
84* Wed Dec 22 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.59-2
85- 661697 rebuild for fixing problems with vendorach/lib
86
87* Mon Dec 13 2010 Steven Pritchard <steve@kspei.com> 0.59-1
88- Update to 0.59.
89
90* Thu May 06 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.58-4
91- Mass rebuild with perl-5.12.0
92
93* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 0.58-3
94- rebuild against perl 5.10.1
95
96* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.58-2
97- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
98
99* Sun May 17 2009 Steven Pritchard <steve@kspei.com> 0.58-1
100- Update to 0.58.
101- BR Test::Deep and Test::Tester.
102
103* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.55-2
104- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
105
106* Wed Dec 10 2008 Steven Pritchard <steve@kspei.com> 0.55-1
107- Update to 0.55.
108- Explicitly BR Test::More >= 0.62.
109- BR YAML.
110
111* Thu Mar 06 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.54-3
112- Rebuild for new perl
113
114* Sat Jul 07 2007 Steven Pritchard <steve@kspei.com> 0.54-2
115- BR Test::More.
116
117* Mon Jul 02 2007 Steven Pritchard <steve@kspei.com> 0.54-1
118- Update to 0.54.
119
120* Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.53-2
121- BR ExtUtils::MakeMaker.
122
123* Sat Dec 09 2006 Steven Pritchard <steve@kspei.com> 0.53-1
124- Update to 0.53.
125- Use fixperms macro instead of our own chmod incantation.
126
127* Sat Sep 16 2006 Steven Pritchard <steve@kspei.com> 0.52-2
128- Fix find option order.
129
130* Sat Jul 01 2006 Steven Pritchard <steve@kspei.com> 0.52-1
131- Update to 0.52.
132
133* Mon May 08 2006 Steven Pritchard <steve@kspei.com> 0.50-2
134- Add explicit dependencies for Text::Diff and LWP::Simple.
135
136* Thu May 04 2006 Steven Pritchard <steve@kspei.com> 0.50-1
137- Specfile autogenerated by cpanspec 1.65.
138- Remove explicit BR: perl and Requires: perl(Spiffy).
Note: See TracBrowser for help on using the repository browser.