source: projects/specs/trunk/p/perl-Taint-Runtime/perl-Taint-Runtime-vl.spec @ 12120

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

perl-5.26 and friends

Line 
1Name:           perl-Taint-Runtime
2Version:        0.03
3Release:        3%{?_dist_release}
4Summary:        Runtime enable taint checking
5Group:          Development/Libraries
6License:        GPL+ or Artistic
7URL:            http://search.cpan.org/dist/Taint-Runtime
8Source0:        http://search.cpan.org/CPAN/authors/id/R/RH/RHANDOM/Taint-Runtime-%{version}.tar.gz
9BuildRoot:      %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
10BuildRequires:  libxcrypt-devel
11BuildRequires:  perl(Test::More)
12Requires:       perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
13
14Vendor:         Project Vine
15Distribution:   Vine Linux
16
17%description
18This module enables runtime taint checking, for cases where the -T
19switch on the commandline is not appropriate or viable. There are
20a somewhat limited number of legitimate use cases where you should
21use this module instead of the -T switch. Unless you have a specific and
22good reason for not using the -T option, you should use the -T option.
23
24%prep
25%setup -q -n Taint-Runtime-%{version}
26chmod +x is_taint_bench.pl
27
28%build
29%{__perl} Makefile.PL INSTALLDIRS=vendor OPTIMIZE="${RPM_OPT_FLAGS}"
30make %{?_smp_mflags}
31
32%install
33rm -rf ${RPM_BUILD_ROOT}
34make pure_install DESTDIR=${RPM_BUILD_ROOT}
35find ${RPM_BUILD_ROOT} -type f -name .packlist -exec rm -f {} ';'
36find ${RPM_BUILD_ROOT} -type f -name '*.bs' -a -size 0 -exec rm -f {} ';'
37find ${RPM_BUILD_ROOT} -type d -depth -exec rmdir {} 2>/dev/null ';'
38chmod -R u+w ${RPM_BUILD_ROOT}/*
39
40%check
41make test
42
43%clean
44rm -rf ${RPM_BUILD_ROOT}
45
46%files
47%defattr(-,root,root,-)
48%doc Changes README
49%{perl_vendorarch}/auto/Taint/
50%{perl_vendorarch}/Taint/
51%{_mandir}/man3/*.3*
52
53%changelog
54* Fri May 17 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 0.03-3
55- rebuilt with perl-5.26.
56- added BR:libxcrypt-devel.
57
58* Fri Jun 27 2014 IWAI, Masaharu <iwaim.sub@gmail.com> 0.03-2
59- build with Perl 5.16
60
61* Fri Feb 24 2012 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 0.03-1
62- initial build for Vine Linux
63
64* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-14
65- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
66
67* Fri Jun 17 2011 Marcela Mašláňová <mmaslano@redhat.com> - 0.03-13
68- Perl mass rebuild
69
70* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-12
71- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
72
73* Wed Dec 22 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.03-11
74- 661697 rebuild for fixing problems with vendorach/lib
75
76* Thu May 06 2010 Marcela Maslanova <mmaslano@redhat.com> - 0.03-10
77- Mass rebuild with perl-5.12.0
78
79* Thu Feb 25 2010 Marcela Mašláňová <mmaslano@redhat.com> - 0.03-9
80- add readme
81
82* Mon Dec  7 2009 Stepan Kasal <skasal@redhat.com> - 0.03-8
83- rebuild against perl 5.10.1
84
85* Sun Jul 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-7
86- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
87
88* Thu Feb 26 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.03-6
89- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
90
91* Wed Feb 27 2008 Tom "spot" Callaway <tcallawa@redhat.com> - 0.03-5
92- Rebuild for perl 5.10 (again)
93
94* Tue Feb 19 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.03-4
95- Autorebuild for GCC 4.3
96
97* Fri Jan 11 2008 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-3
98- rebuild for new perl
99
100* Sun Aug 26 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-2
101- license tag fix, rebuild for ppc32
102
103* Tue Jul 24 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-1.1
104- BR: perl(Test::More)
105
106* Thu Jul 19 2007 Tom "spot" Callaway <tcallawa@redhat.com> 0.03-1
107- bump to 0.03
108
109* Fri Sep 15 2006 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-2
110- bump for FC-6
111
112* Fri Mar 31 2006 Tom "spot" Callaway <tcallawa@redhat.com> 0.02-1
113- Initial package for Fedora Extras
Note: See TracBrowser for help on using the repository browser.