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

Revision 9104, 4.1 KB checked in by inagaki, 9 years ago (diff)

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

  • perl-B-Keywords, perl-PadWalker?, perl-Test-{Base, Differences, Taint}, perl-Text-Autoformat, perl-YAML-Tiny: updated
  • perl-Pod-Spell: rebuilt
  • perl-Capture-Tiny: NEW


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