merged
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DateTime?expand=0&rev=28
This commit is contained in:
parent
1efde00542
commit
62e49655f5
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:cfd463bab87a8377dbf0c65560ababcd1bac9ae9ea5baf6828b1d08ba334d666
|
|
||||||
size 133414
|
|
3
DateTime-0.68.tar.bz2
Normal file
3
DateTime-0.68.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:f70d6657c1474045cf6bed3e489ad9bec118ba593677168200b10909bcbf9ce4
|
||||||
|
size 134227
|
@ -1,3 +1,24 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Mon Apr 25 20:25:12 UTC 2011 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
- update to 0.68:
|
||||||
|
* the tests for %N in the last release relied on the vagaries of floating
|
||||||
|
point math on a 64-bit system; now the from_epoch() method just uses string
|
||||||
|
operations to separate the epoch into an integer value and a mantissa; this
|
||||||
|
avoids floating point insanity (RT#67736)
|
||||||
|
|
||||||
|
- changes from 0.67:
|
||||||
|
* the %N strftime specifier simply truncated nanoseconds, rather than
|
||||||
|
rounding them (RT#66744)
|
||||||
|
* the %U strftime specifier was off by one in years where January 1st was a
|
||||||
|
Sunday (RT#67631)
|
||||||
|
* the %W strftime specifier was off by one in years where January 1st was a
|
||||||
|
Sunday or Monday (RT#67631)
|
||||||
|
* some small optimizations; the biggest impact is for calculating
|
||||||
|
week_of_month, week_number, and week_year
|
||||||
|
* now requires Perl 5.8.1+ (it implicitly did this anyway now that
|
||||||
|
Params::Validate is 5.8.1+)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Thu Mar 31 09:17:28 UTC 2011 - pascal.bleser@opensuse.org
|
Thu Mar 31 09:17:28 UTC 2011 - pascal.bleser@opensuse.org
|
||||||
|
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
%bcond_with pod
|
%bcond_with pod
|
||||||
|
|
||||||
Name: perl-DateTime
|
Name: perl-DateTime
|
||||||
Version: 0.66
|
Version: 0.68
|
||||||
Release: 2
|
Release: 1
|
||||||
License: Artistic 2.0
|
License: Artistic 2.0
|
||||||
%define cpan_name DateTime
|
%define cpan_name DateTime
|
||||||
Summary: A date and time object
|
Summary: A date and time object
|
||||||
@ -48,12 +48,14 @@ BuildRequires: perl(DateTime::TimeZone) >= 1.09
|
|||||||
BuildRequires: perl(Params::Validate) >= 0.76
|
BuildRequires: perl(Params::Validate) >= 0.76
|
||||||
BuildRequires: perl(Scalar::Util)
|
BuildRequires: perl(Scalar::Util)
|
||||||
BuildRequires: perl(Test::Exception)
|
BuildRequires: perl(Test::Exception)
|
||||||
|
BuildRequires: perl(Math::Round)
|
||||||
#
|
#
|
||||||
Requires: perl(DateTime::Locale) >= 0.41
|
Requires: perl(DateTime::Locale) >= 0.41
|
||||||
Requires: perl(DateTime::TimeZone) >= 1.09
|
Requires: perl(DateTime::TimeZone) >= 1.09
|
||||||
Requires: perl(Params::Validate) >= 0.76
|
Requires: perl(Params::Validate) >= 0.76
|
||||||
Requires: perl(Scalar::Util)
|
Requires: perl(Scalar::Util)
|
||||||
Requires: perl(Time::Local) >= 1.04
|
Requires: perl(Time::Local) >= 1.04
|
||||||
|
Requires: perl(Math::Round)
|
||||||
|
|
||||||
%description
|
%description
|
||||||
DateTime is a class for the representation of date/time combinations, and
|
DateTime is a class for the representation of date/time combinations, and
|
||||||
@ -95,7 +97,7 @@ For infinite datetimes, please see the DateTime::Infinite module.
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
%{__rm} -rf %{buildroot}
|
%{?buildroot:%__rm -rf "%{buildroot}"}
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(644,root,root,755)
|
%defattr(644,root,root,755)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user