source: projects/specs/trunk/p/perl-String-Format/perl-String-Format-vl.spec @ 12120

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

perl-5.26 and friends

Line 
1Name:           perl-String-Format
2Version:        1.18
3Release:        1%{?_dist_release}
4Summary:        Sprintf-like string formatting capabilities with arbitrary format definitions
5
6Group:          Development/Libraries
7License:        GPLv2
8URL:            http://search.cpan.org/dist/String-Format/
9Source0:        http://www.cpan.org/authors/id/D/DA/DARREN/String-Format-%{version}.tar.gz
10
11BuildRoot:      %{_tmppath}/%{name}-%{version}-root
12BuildArch:      noarch
13BuildRequires:  perl(ExtUtils::MakeMaker)
14BuildRequires:  perl(Test::More)
15Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
16
17Vendor:         Project Vine
18Distribution:   Vine Linux
19Packager:       shaolin
20
21%description
22String::Format lets you define arbitrary printf-like format sequences
23to be expanded. This module would be most useful in configuration
24files and reporting tools, where the results of a query need to be
25formatted in a particular way.
26
27
28%prep
29%setup -q -n String-Format-%{version}
30
31
32%build
33%{__perl} Makefile.PL INSTALLDIRS=vendor
34make %{?_smp_mflags}
35
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 -empty -exec rmdir {} ';'
42chmod -R u+w ${RPM_BUILD_ROOT}/*
43
44
45%check
46make test
47
48
49%clean
50rm -rf ${RPM_BUILD_ROOT}
51
52
53%files
54%defattr(-,root,root,-)
55%doc Changes
56%{perl_vendorlib}/String/
57%{_mandir}/man3/*.3pm*
58
59
60%changelog
61* Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.18-1
62- initial build for Vine Linux.
63- rebuilt with perl-5.26.
64
65* Fri Nov 21 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.17-1
66- updated to 1.17
67- built with perl 5.16.3
68
69* Thu Mar 01 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.16-2
70- rebuild
71
72* Fri Feb 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.16-1
73- initial build for Vine Linux
74
75* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-7
76- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
77
78* Wed Jun 15 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.16-6
79- Perl mass rebuild
80
81* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.16-5
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
83
84* Wed Dec 22 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.16-4
85- 661697 rebuild for fixing problems with vendorach/lib
86
87* Thu May 06 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.16-3
88- Mass rebuild with perl-5.12.0
89
90* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 1.16-2
91- rebuild against perl 5.10.1
92
93* Wed Oct  7 2009 Stepan Kasal <skasal@redhat.com> - 1.16-1
94- new upstream release
95
96* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.15-2
97- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
98
99* Fri Mar 27 2009 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.15-1
100- Upstream update.
101
102* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.14-4
103- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
104
105* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14-3
106- Rebuild for perl 5.10 (again)
107
108* Sun Jan 13 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14-2
109- rebuild for new perl
110
111* Tue Oct 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14-1.2
112- add BR: perl(Test::More)
113
114* Tue Oct 16 2007 Tom "spot" Callaway <tcallawa@redhat.com> - 1.14-1.1
115- correct license tag
116- add BR: perl(ExtUtils::MakeMaker)
117
118* Sat Sep 16 2006 Jose Pedro Oliveira <jpo at di.uminho.pt> - 1.14-1
119- First build.
Note: See TracBrowser for help on using the repository browser.