1 |
Name: perl-Regexp-Common |
2 |
Version: 2016020301 |
3 |
Release: 1%{?dist} |
4 |
Summary: Provide commonly requested regular expressions |
5 |
License: MIT |
6 |
Group: Development/Libraries |
7 |
URL: http://search.cpan.org/dist/Regexp-Common/ |
8 |
Source0: http://www.cpan.org/authors/id/A/AB/ABIGAIL/Regexp-Common-%{version}.tar.gz |
9 |
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n) |
10 |
BuildArch: noarch |
11 |
BuildRequires: perl >= 0:5.00473 |
12 |
BuildRequires: perl(ExtUtils::MakeMaker) |
13 |
BuildRequires: perl(Test::More) |
14 |
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version)) |
15 |
|
16 |
%description |
17 |
By default, this module exports a single hash (%RE) that stores or |
18 |
generates commonly needed regular expressions (see "List of available |
19 |
patterns"). |
20 |
|
21 |
%prep |
22 |
%setup -q -n Regexp-Common-%{version} |
23 |
|
24 |
%build |
25 |
%{__perl} Makefile.PL INSTALLDIRS=vendor |
26 |
make %{?_smp_mflags} |
27 |
|
28 |
%install |
29 |
rm -rf $RPM_BUILD_ROOT |
30 |
|
31 |
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT |
32 |
|
33 |
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \; |
34 |
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \; |
35 |
|
36 |
%{_fixperms} $RPM_BUILD_ROOT/* |
37 |
|
38 |
%check |
39 |
make test |
40 |
|
41 |
%clean |
42 |
rm -rf $RPM_BUILD_ROOT |
43 |
|
44 |
%files |
45 |
%defattr(-,root,root,-) |
46 |
%doc Changes COPYRIGHT COPYRIGHT.AL COPYRIGHT.AL2 COPYRIGHT.BSD COPYRIGHT.MIT META.json README TODO |
47 |
%{perl_vendorlib}/* |
48 |
%{_mandir}/man3/* |
49 |
|
50 |
%changelog |
51 |
* Thu May 5 2016 Daniel Berteaud <daniel@firewall-services.com> 2016020301-1 |
52 |
- First build using cpanspec |