68 lines
1.9 KiB
RPMSpec
68 lines
1.9 KiB
RPMSpec
Name: perl-HTTP-Date
|
|
Version: 6.02
|
|
Release: 2%{?dist}
|
|
Summary: Date conversion routines
|
|
License: GPL+ or Artistic
|
|
Group: Development/Libraries
|
|
URL: http://search.cpan.org/dist/HTTP-Date/
|
|
Source0: http://www.cpan.org/authors/id/G/GA/GAAS/HTTP-Date-%{version}.tar.gz
|
|
BuildArch: noarch
|
|
BuildRequires: perl(ExtUtils::MakeMaker)
|
|
# Run-time
|
|
BuildRequires: perl(Exporter)
|
|
BuildRequires: perl(Time::Local)
|
|
BuildRequires: perl(Time::Zone)
|
|
# Tests only:
|
|
BuildRequires: perl(Test)
|
|
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
|
# Strongly recommended:
|
|
Requires: perl(Time::Zone)
|
|
Conflicts: perl-libwww-perl < 6
|
|
|
|
%description
|
|
This module provides functions that deal the date formats used by the HTTP
|
|
protocol (and then some more). Only the first two functions, time2str() and
|
|
str2time(), are exported by default.
|
|
|
|
%prep
|
|
%setup -q -n HTTP-Date-%{version}
|
|
|
|
%build
|
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
|
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
|
find $RPM_BUILD_ROOT -depth -type d -exec rmdir {} 2>/dev/null \;
|
|
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
|
|
%check
|
|
make test
|
|
|
|
%files
|
|
%doc Changes README
|
|
%{perl_vendorlib}/*
|
|
%{_mandir}/man3/*
|
|
|
|
%changelog
|
|
* Mon Jun 11 2012 Petr Pisar <ppisar@redhat.com> - 6.02-2
|
|
- Perl 5.16 rebuild
|
|
|
|
* Mon Apr 02 2012 Petr Pisar <ppisar@redhat.com> - 6.02-1
|
|
- 6.02 bump
|
|
|
|
* Thu Feb 16 2012 Petr Pisar <ppisar@redhat.com> - 6.01-1
|
|
- 6.01 bump
|
|
|
|
* Fri Jan 13 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 6.00-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Mon Jun 20 2011 Marcela Mašláňová <mmaslano@redhat.com> - 6.00-2
|
|
- Perl mass rebuild
|
|
|
|
* Wed Mar 16 2011 Petr Pisar <ppisar@redhat.com> 6.00-1
|
|
- Specfile autogenerated by cpanspec 1.78.
|
|
- Remove BuildRoot stuff
|
|
- Conflict with perl-libwww-perl-5* and older
|