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

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

perl-5.26 and friends

Line 
1Name:           perl-Text-Diff
2Version:        1.45
3Release:        1%{?_dist_release}
4Summary:        Perform diffs on files and record sets
5License:        GPL+ or Artistic
6Group:          Development/Libraries
7URL:            http://search.cpan.org/dist/Text-Diff/
8Source0:        http://search.cpan.org/CPAN/authors/id/O/OV/OVID/Text-Diff-%{version}.tar.gz
9
10Vendor:        Project Vine
11Distribution:  Vine Linux
12
13BuildRoot:      %{_tmppath}/%{name}-%{version}-root
14BuildArch:      noarch
15BuildRequires:  perl(constant)
16BuildRequires:  perl(Algorithm::Diff)
17BuildRequires:  perl(Carp)
18BuildRequires:  perl(Data::Dumper)
19BuildRequires:  perl(ExtUtils::MakeMaker)
20BuildRequires:  perl(Exporter)
21BuildRequires:  perl(IO::File)
22BuildRequires:  perl(Test)
23BuildRequires:  perl(Test::More)
24Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
25
26%{?perl_default_filter}
27
28%description
29Text::Diff provides a basic set of services akin to the GNU diff utility.
30It is not anywhere near as feature complete as GNU diff, but it is better
31integrated with Perl and available on all platforms. It is often faster
32than shelling out to a system's diff executable for small files, and
33generally slower on larger files.
34
35%prep
36%setup -q -n Text-Diff-%{version}
37
38%build
39perl Makefile.PL INSTALLDIRS=vendor
40make %{?_smp_mflags}
41
42%install
43rm -rf %{buildroot}
44make pure_install PERL_INSTALL_ROOT=%{buildroot}
45find %{buildroot} -type f -name .packlist -exec rm -f {} \;
46find %{buildroot} -depth -type d -exec rmdir {} 2>/dev/null \;
47%{_fixperms} %{buildroot}/*
48
49%check
50make test
51
52%clean
53rm -rf %{buildroot}
54
55%files
56%doc Changes LICENSE README
57%{perl_vendorlib}/*
58%{_mandir}/man3/*
59
60%changelog
61* Sun May 19 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> - 1.45-1
62- new upstream release.
63- rebuilt with perl-5.26.
64
65* Sat Nov 15 2014 Ryoichi INAGAKI <ryo1@toki.waseda.jp> - 1.41-2
66- rebuilt with perl 5.16.3
67
68* Fri Mar 09 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.41-1
69- initial build for Vine Linux
70
71* Fri Jan 27 2012 Petr Šabata <contyk@redhat.com> - 1.41-1
72- 1.41 bump, spec modernization and cleanup
73- Update Source URL
74
75* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37-8
76- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
77
78* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 1.37-7
79- Perl mass rebuild
80
81* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.37-6
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
83
84* Thu Dec 23 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.37-5
85- 661697 rebuild for fixing problems with vendorach/lib
86
87* Fri May 07 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.37-4
88- Mass rebuild with perl-5.12.0
89
90* Fri Dec  4 2009 Stepan Kasal <skasal@redhat.com> - 1.37-3
91- rebuild against perl 5.10.1
92
93* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.37-2
94- add Test::More as a BR (rt#50040)
95
96* Sun Sep 27 2009 Chris Weyl <cweyl@alumni.drew.edu> 1.37-1
97- add filtering
98- auto-update to 1.37 (by cpan-spec-update 0.01)
99- altered br on perl(Algorithm::Diff) (0 => 1.19)
100- added a new br on perl(Exporter) (version 0)
101- added a new br on perl(Test) (version 0)
102
103* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.35-8
104- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
105
106* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.35-7
107- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
108
109* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.35-6
110- Rebuild for perl 5.10 (again)
111
112* Thu Jan 24 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.35-5
113- rebuild for new perl
114
115* Wed Apr 18 2007 Steven Pritchard <steve@kspei.com> 0.35-4
116- Use fixperms macro instead of our own chmod incantation.
117- BR ExtUtils::MakeMaker.
118
119* Mon Aug 28 2006 Steven Pritchard <steve@kspei.com> 0.35-3
120- Improve Summary, description, and Source0 URL.
121- Fix find option ordering.
122- Don't generate license texts.
123
124* Fri Sep 16 2005 Steven Pritchard <steve@kspei.com> 0.35-2
125- Minor spec cleanup.
126
127* Sat Aug 27 2005 Steven Pritchard <steve@kspei.com> 0.35-1
128- Specfile autogenerated.
Note: See TracBrowser for help on using the repository browser.