Update to 1.33

- New upstream release 1.33
  - When you pass a locale to $dt->set you will now get a warning suggesting
    you should use $dt->set_locale instead (CPAN RT#115420)
  - Added support for $dt->truncate( to => 'quarter' ) (GH#17)
  - Fixed the $dt->set docs to say that you cannot pass a locale (even though
    you can but you'll get a warning) and added more docs for $dt->set_locale
  - Require DateTime::Locale 1.05
  - Require DateTime::TimeZone 2.00
- Take advantage of NO_PACKLIST option in recent EU:MM
This commit is contained in:
Paul Howarth 2016-06-29 10:19:38 +01:00
parent f89d0f05ff
commit 63188e3731
2 changed files with 20 additions and 7 deletions

View File

@ -1,6 +1,6 @@
Name: perl-DateTime Name: perl-DateTime
Epoch: 2 Epoch: 2
Version: 1.28 Version: 1.33
Release: 1%{?dist} Release: 1%{?dist}
Summary: Date and time object for Perl Summary: Date and time object for Perl
License: Artistic 2.0 License: Artistic 2.0
@ -14,13 +14,14 @@ BuildRequires: make
BuildRequires: perl BuildRequires: perl
BuildRequires: perl-devel BuildRequires: perl-devel
BuildRequires: perl-generators BuildRequires: perl-generators
BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::MakeMaker) >= 6.76
# Run-time: # Run-time:
BuildRequires: perl(base) BuildRequires: perl(base)
BuildRequires: perl(Carp) BuildRequires: perl(Carp)
BuildRequires: perl(constant) BuildRequires: perl(constant)
BuildRequires: perl(DateTime::Locale) >= 0.41 BuildRequires: perl(DateTime::Locale) >= 1.05
BuildRequires: perl(DateTime::TimeZone) >= 1.74 BuildRequires: perl(DateTime::TimeZone) >= 2.00
BuildRequires: perl(Dist::CheckConflicts) >= 0.02
BuildRequires: perl(integer) BuildRequires: perl(integer)
BuildRequires: perl(overload) BuildRequires: perl(overload)
BuildRequires: perl(Params::Validate) >= 1.03 BuildRequires: perl(Params::Validate) >= 1.03
@ -34,6 +35,8 @@ BuildRequires: perl(warnings::register)
# Optional Run-time: # Optional Run-time:
BuildRequires: perl(XSLoader) BuildRequires: perl(XSLoader)
# Tests: # Tests:
BuildRequires: perl(CPAN::Meta::Check) >= 0.011
BuildRequires: perl(CPAN::Meta::Requirements)
BuildRequires: perl(ExtUtils::MakeMaker) BuildRequires: perl(ExtUtils::MakeMaker)
BuildRequires: perl(File::Spec) BuildRequires: perl(File::Spec)
BuildRequires: perl(Test::Fatal) BuildRequires: perl(Test::Fatal)
@ -66,12 +69,11 @@ believed to be the birth of Jesus Christ.
%setup -q -n DateTime-%{version} %setup -q -n DateTime-%{version}
%build %build
perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" perl Makefile.PL INSTALLDIRS=vendor OPTIMIZE="%{optflags}" NO_PACKLIST=1
make %{?_smp_mflags} make %{?_smp_mflags}
%install %install
make pure_install DESTDIR=%{buildroot} make pure_install DESTDIR=%{buildroot}
find %{buildroot} -type f -name .packlist -delete
find %{buildroot} -type f -name '*.bs' -empty -delete find %{buildroot} -type f -name '*.bs' -empty -delete
%{_fixperms} %{buildroot} %{_fixperms} %{buildroot}
@ -90,6 +92,17 @@ make test
%{_mandir}/man3/DateTime::LeapSecond.3* %{_mandir}/man3/DateTime::LeapSecond.3*
%changelog %changelog
* Wed Jun 29 2016 Paul Howarth <paul@city-fan.org> - 2:1.33-1
- Update to 1.33
- When you pass a locale to $dt->set you will now get a warning suggesting
you should use $dt->set_locale instead (CPAN RT#115420)
- Added support for $dt->truncate( to => 'quarter' ) (GH#17)
- Fixed the $dt->set docs to say that you cannot pass a locale (even though
you can but you'll get a warning) and added more docs for $dt->set_locale
- Require DateTime::Locale 1.05
- Require DateTime::TimeZone 2.00
- Take advantage of NO_PACKLIST option in recent EU:MM
* Sun May 22 2016 Paul Howarth <paul@city-fan.org> - 2:1.28-1 * Sun May 22 2016 Paul Howarth <paul@city-fan.org> - 2:1.28-1
- Update to 1.28 - Update to 1.28
- Fixed handling of some floating point epochs; since DateTime treated the - Fixed handling of some floating point epochs; since DateTime treated the

View File

@ -1 +1 @@
28d8a46cc8f6724bb039987339b42aaf DateTime-1.28.tar.gz fcbb54d95f31d143be26e0253457e5eb DateTime-1.33.tar.gz