Update to 1.54 (rpm version 1.5400 to maintain upgrade path)
- New upstream release 1.54 - Packaging cleanup, including listing Test::More as a test prereq, not a runtime prereq (CPAN RT#76128) - Shut up "unescaped braces in regex" warning from 5.17.0 (CPAN RT#77514) - A fix in DateTime.pm 1.00 broke a test in this distro (CPAN RT#84371) - Require DateTime.pm 1.00 because without it tests will break - Specify all dependencies - This release by DROLSKY -> update source URL - Drop %defattr, redundant since rpm 4.4 - Don't need to remove empty directories from the buildroot - Don't use macros for commands - Make %files list more explicit
This commit is contained in:
parent
3a3baa5cfc
commit
f5510b8b0b
3
.gitignore
vendored
3
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
DateTime-Format-Strptime-1.2000.tar.gz
|
/DateTime-Format-Strptime-[0-9.]*.tar.gz
|
||||||
/DateTime-Format-Strptime-1.5000.tar.gz
|
|
||||||
|
@ -1,21 +1,26 @@
|
|||||||
|
# RPM and CPAN versioning don't match
|
||||||
|
%global cpanversion 1.54
|
||||||
|
|
||||||
Name: perl-DateTime-Format-Strptime
|
Name: perl-DateTime-Format-Strptime
|
||||||
Version: 1.5000
|
Version: 1.5400
|
||||||
Release: 8%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: Parse and format strp and strf time patterns
|
Summary: Parse and format strp and strf time patterns
|
||||||
License: GPL+ or Artistic
|
License: GPL+ or Artistic
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
URL: http://search.cpan.org/dist/DateTime-Format-Strptime/
|
URL: http://search.cpan.org/dist/DateTime-Format-Strptime/
|
||||||
Source0: http://www.cpan.org/authors/id/R/RI/RICKM/DateTime-Format-Strptime-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/D/DR/DROLSKY/DateTime-Format-Strptime-%{cpanversion}.tar.gz
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(id -nu)
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
|
BuildRequires: perl(Carp)
|
||||||
BuildRequires: perl(Class::ISA)
|
BuildRequires: perl(Class::ISA)
|
||||||
BuildRequires: perl(DateTime) >= 0.44
|
BuildRequires: perl(DateTime) >= 1.00
|
||||||
BuildRequires: perl(DateTime::Locale) >= 0.45
|
BuildRequires: perl(DateTime::Locale) >= 0.45
|
||||||
BuildRequires: perl(DateTime::TimeZone) >= 0.79
|
BuildRequires: perl(DateTime::TimeZone) >= 0.79
|
||||||
BuildRequires: perl(ExtUtils::MakeMaker)
|
BuildRequires: perl(Exporter)
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.30
|
||||||
BuildRequires: perl(Params::Validate) >= 0.64
|
BuildRequires: perl(Params::Validate) >= 0.64
|
||||||
BuildRequires: perl(Test::More)
|
BuildRequires: perl(Test::More) >= 0.88
|
||||||
Requires: perl(:MODULE_COMPAT_%(eval "`%{__perl} -V:version`"; echo $version))
|
Requires: perl(:MODULE_COMPAT_%(eval "`perl -V:version`"; echo $version))
|
||||||
|
|
||||||
%description
|
%description
|
||||||
This module implements most of strptime(3), the POSIX function that is the
|
This module implements most of strptime(3), the POSIX function that is the
|
||||||
@ -24,21 +29,17 @@ pattern and returns a string, strptime takes a string and a pattern and
|
|||||||
returns the DateTime object associated.
|
returns the DateTime object associated.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n DateTime-Format-Strptime-%{version}
|
%setup -q -n DateTime-Format-Strptime-%{cpanversion}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
make %{?_smp_mflags}
|
make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
make pure_install PERL_INSTALL_ROOT=$RPM_BUILD_ROOT
|
||||||
|
|
||||||
find $RPM_BUILD_ROOT -type f -name .packlist -exec rm -f {} \;
|
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
|
||||||
|
|
||||||
%{_fixperms} $RPM_BUILD_ROOT/*
|
|
||||||
|
|
||||||
%check
|
%check
|
||||||
make test
|
make test
|
||||||
@ -47,12 +48,25 @@ make test
|
|||||||
rm -rf $RPM_BUILD_ROOT
|
rm -rf $RPM_BUILD_ROOT
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root,-)
|
|
||||||
%doc Changes LICENSE README
|
%doc Changes LICENSE README
|
||||||
%{perl_vendorlib}/*
|
%{perl_vendorlib}/DateTime/
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/DateTime::Format::Strptime.3pm*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Wed Apr 3 2013 Paul Howarth <paul@city-fan.org> - 1.5400-1
|
||||||
|
- Update to 1.54 (rpm version 1.5400 to maintain upgrade path)
|
||||||
|
- Packaging cleanup, including listing Test::More as a test prereq, not a
|
||||||
|
runtime prereq (CPAN RT#76128)
|
||||||
|
- Shut up "unescaped braces in regex" warning from 5.17.0 (CPAN RT#77514)
|
||||||
|
- A fix in DateTime.pm 1.00 broke a test in this distro (CPAN RT#84371)
|
||||||
|
- Require DateTime.pm 1.00 because without it tests will break
|
||||||
|
- Specify all dependencies
|
||||||
|
- This release by DROLSKY -> update source URL
|
||||||
|
- Drop %%defattr, redundant since rpm 4.4
|
||||||
|
- Don't need to remove empty directories from the buildroot
|
||||||
|
- Don't use macros for commands
|
||||||
|
- Make %%files list more explicit
|
||||||
|
|
||||||
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5000-8
|
* Thu Feb 14 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.5000-8
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
|
||||||
|
|
||||||
@ -78,7 +92,7 @@ rm -rf $RPM_BUILD_ROOT
|
|||||||
- Update to 1.5000.
|
- Update to 1.5000.
|
||||||
|
|
||||||
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2000-3
|
* Thu Dec 16 2010 Marcela Maslanova <mmaslano@redhat.com> - 1.2000-3
|
||||||
- 661697 rebuild for fixing problems with vendorach/lib
|
- Rebuild to fix problems with vendorarch/lib (#661697)
|
||||||
|
|
||||||
* Tue Jun 15 2010 Petr Sabata <psabata@redhat.com> - 1.2000-1
|
* Tue Jun 15 2010 Petr Sabata <psabata@redhat.com> - 1.2000-1
|
||||||
- Update to the latest upstream release
|
- Update to the latest upstream release
|
||||||
|
Loading…
Reference in New Issue
Block a user