source: projects/specs/trunk/p/perl-Text-Reform/perl-Text-Reform-vl.spec @ 12120

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

perl-5.26 and friends

Line 
1Name:           perl-Text-Reform
2Version:        1.20
3Release:        3%{?_dist_release}
4Summary:        Manual text wrapping and reformatting
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Text-Reform/
8Source0:        http://www.cpan.org/authors/id/C/CH/CHORNY/Text-Reform-%{version}.tar.gz
9
10BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
11BuildArch:      noarch
12BuildRequires:  perl(Module::Build)
13BuildRequires:  perl(Test::More)
14BuildRequires:  perl(Test::Pod)
15BuildRequires:  perl(version)
16
17Requires:       perl(TeX::Hyphen)
18Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
19
20Vendor:         Project Vine
21Distribution:   Vine Linux
22
23%description
24The module supplies a re-entrant, highly configurable replacement for the
25built-in Perl format() mechanism.
26
27%prep
28%setup -q -n Text-Reform-%{version}
29chmod 644 Changes README lib/Text/*.pm
30
31%build
32%{__perl} Build.PL installdirs=vendor
33./Build
34
35%install
36rm -rf %{buildroot}
37
38./Build install destdir=%{buildroot} create_packlist=0
39
40find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
41
42%{_fixperms} %{buildroot}/*
43
44%check
45# the testsuite fails for locales with decimal point != ".", i.e. it
46# fails for almost all European languages except en
47LC_NUMERIC=C ./Build test
48
49%clean
50rm -rf %{buildroot}
51
52%files
53%defattr(-,root,root,-)
54%doc Changes README demo/
55%{perl_vendorlib}/*
56%{_mandir}/man3/*
57
58%changelog
59* Sat May 18 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.20-3
60- rebuilt with perl-5.26.
61
62* Sun Nov  9 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.20-2
63- rebuilt with perl 5.16.3
64
65* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.20-1
66- initial build for Vine Linux
67
68* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20-4
69- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
70
71* Sun Jun 19 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.20-3
72- Perl mass rebuild
73
74* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.20-2
75- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
76
77* Wed Dec 08 2010 Steven Pritchard <steve@kspei.com> 1.20-1
78- Update to 1.20.
79- Update Source0 URL.
80- BR Module::Build and build with it.
81- Add demo directory to docs.
82
83* Fri May 14 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.12.2-11
84- Bump release for perl-5.12.0.
85
86* Fri May 07 2010 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.12.2-10
87- Add BR: perl(version) (Fix perl-5.12.x build breakdown).
88- Add BR: perl(Test::Pod).
89
90* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.12.2-9
91- Mass rebuild with perl-5.12.0
92
93* Wed Feb 17 2010 Stepan Kasal <skasal@redhat.com> - 1.12.2-8
94- fix check for non-English languages
95
96* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 1.12.2-7
97- rebuild against perl 5.10.1
98
99* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.2-6
100- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
101
102* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.12.2-5
103- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
104
105* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 1.12.2-4
106- Rebuild for perl 5.10 (again)
107
108* Tue Jan 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.12.2-3
109- BR: Test::More
110
111* Tue Jan 22 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.12.2-2
112- retag
113
114* Sun Jan 20 2008 Tom "spot" Callaway <tcallawa@redhat.com> 1.12.2-1
115- rebuild for new perl
116- drop demo*.pl scripts
117- Upstream license changed to GPL+ or Artistic
118
119* Tue Apr 17 2007 Steven Pritchard <steve@kspei.com> 1.11-7
120- BR ExtUtils::MakeMaker.
121- Use fixperms macro instead of our own chmod incantation.
122
123* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 0.11-6
124- Minor spec cleanup to more closely resemble current cpanspec output.
125
126* Mon Sep 05 2005 Steven Pritchard <steve@kspei.com> 0.11-5
127- Minor spec cleanup.
128- Add Artistic.
129
130* Thu Apr  7 2005 Michael Schwendt <mschwendt[AT]users.sf.net>
131- rebuilt
132
133* Wed Jul 14 2004 Jose Pedro Oliveira <jpo at di.uminho.pt> - 0:1.11-0.fdr.3
134- Better summary info (bug 1353 comment #4).
135- Canonical source URL (bug 1353 comment #4).
136- Missing requirement: TeX::Hyphen (bug 1353 comment #4).
137- Replaced /usr/bin/perl by %%{__perl} (bug 1353 comment #4).
138- Corrected file permissions (bug 1353 comment #4).
139
140* Wed Jun 09 2004 Steven Pritchard <steve@kspei.com> 0:1.11-0.fdr.2
141- Fix License (Artistic only, not GPL or Artistic).
142
143* Wed Jun 09 2004 Steven Pritchard <steve@kspei.com> 0:1.11-0.fdr.1
144- Specfile autogenerated.
Note: See TracBrowser for help on using the repository browser.