Accepting request 406388 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/406388 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DateTime?expand=0&rev=70
This commit is contained in:
parent
8f2e7bc65b
commit
6ac4a6f04e
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:781a25ab7dada202c917f6c5db06f6d9e6f03d5a395e91afab478ba074e75787
|
||||
size 229774
|
3
DateTime-1.33.tar.gz
Normal file
3
DateTime-1.33.tar.gz
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:35c4fc8ab2f0dff6f4154d0f7b0e4f49a2f64f125379b805d1cae9c683bb37ec
|
||||
size 234374
|
@ -1,3 +1,56 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jul 4 12:28:49 UTC 2016 - coolo@suse.com
|
||||
|
||||
- updated to 1.33
|
||||
see /usr/share/doc/packages/perl-DateTime/Changes
|
||||
|
||||
1.33 2016-06-29
|
||||
|
||||
- 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.
|
||||
|
||||
|
||||
1.32 2016-06-28
|
||||
|
||||
- This release *does not* include any of the changes in the 1.29-1.30 TRIAL
|
||||
releases.
|
||||
|
||||
- When you pass a locale to $dt->set you will now get a warning suggesting you
|
||||
should use $dt->set_locale instead. If you have DateTime::Format::Mail
|
||||
installed you should upgrade to 0.0403 or later, since that module will
|
||||
trigger this warning.
|
||||
|
||||
- Added support for $dt->truncate( to => 'quarter' ). Implemented by Michael
|
||||
Conrad. GitHub #17.
|
||||
|
||||
|
||||
1.31 2016-06-18 (TRIAL RELEASE)
|
||||
|
||||
- When you pass a locale to $dt->set you will now get a warning suggesting you
|
||||
should use $dt->set_locale instead. The previous trial releases didn't allow
|
||||
locale to be passed at all, which broke a lot of modules. I've sent PRs, but
|
||||
for now the parameter should be allowed (but discouraged). Reported by
|
||||
Slaven Resic. RT #115420.
|
||||
|
||||
|
||||
1.30 2016-06-18 (TRIAL RELEASE)
|
||||
|
||||
- Require the latest version of Params::CheckCompiler (0.06). Tests failed
|
||||
with 0.01.
|
||||
|
||||
|
||||
1.29 2016-06-17 (TRIAL RELEASE)
|
||||
|
||||
- Replaced Params::Validate with Params::CheckCompiler and Specio. In my
|
||||
benchmarks this makes constructing a new DateTime object about 14%
|
||||
faster. However, it slows down module load time by about 100 milliseconds
|
||||
(1/10 of a second) on my desktop system with a primed cache (so really
|
||||
measuring compile time, not disk load time).
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Mon May 23 11:40:31 UTC 2016 - coolo@suse.com
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
|
||||
|
||||
Name: perl-DateTime
|
||||
Version: 1.28
|
||||
Version: 1.33
|
||||
Release: 0
|
||||
%define cpan_name DateTime
|
||||
Summary: Date and Time Object for Perl
|
||||
@ -29,15 +29,19 @@ Source1: cpanspec.yml
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl-macros
|
||||
BuildRequires: perl(DateTime::Locale) >= 0.410000
|
||||
BuildRequires: perl(DateTime::TimeZone) >= 1.74
|
||||
BuildRequires: perl(CPAN::Meta::Check) >= 0.011
|
||||
BuildRequires: perl(CPAN::Meta::Requirements)
|
||||
BuildRequires: perl(DateTime::Locale) >= 1.050000
|
||||
BuildRequires: perl(DateTime::TimeZone) >= 2.00
|
||||
BuildRequires: perl(Dist::CheckConflicts) >= 0.02
|
||||
BuildRequires: perl(Params::Validate) >= 1.03
|
||||
BuildRequires: perl(Test::Fatal)
|
||||
BuildRequires: perl(Test::More) >= 0.96
|
||||
BuildRequires: perl(Test::Warnings) >= 0.005
|
||||
BuildRequires: perl(Try::Tiny)
|
||||
Requires: perl(DateTime::Locale) >= 0.410000
|
||||
Requires: perl(DateTime::TimeZone) >= 1.74
|
||||
Requires: perl(DateTime::Locale) >= 1.050000
|
||||
Requires: perl(DateTime::TimeZone) >= 2.00
|
||||
Requires: perl(Dist::CheckConflicts) >= 0.02
|
||||
Requires: perl(Params::Validate) >= 1.03
|
||||
Requires: perl(Try::Tiny)
|
||||
%{perl_requires}
|
||||
|
Loading…
Reference in New Issue
Block a user