1
0
forked from pool/perl-DateTime
Pascal Bleser 2011-04-25 20:38:07 +00:00 committed by Git OBS Bridge
parent 1efde00542
commit 62e49655f5
4 changed files with 29 additions and 6 deletions

View File

@ -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
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:f70d6657c1474045cf6bed3e489ad9bec118ba593677168200b10909bcbf9ce4
size 134227

View File

@ -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

View File

@ -19,8 +19,8 @@
%bcond_with pod
Name: perl-DateTime
Version: 0.66
Release: 2
Version: 0.68
Release: 1
License: Artistic 2.0
%define cpan_name DateTime
Summary: A date and time object
@ -48,12 +48,14 @@ BuildRequires: perl(DateTime::TimeZone) >= 1.09
BuildRequires: perl(Params::Validate) >= 0.76
BuildRequires: perl(Scalar::Util)
BuildRequires: perl(Test::Exception)
BuildRequires: perl(Math::Round)
#
Requires: perl(DateTime::Locale) >= 0.41
Requires: perl(DateTime::TimeZone) >= 1.09
Requires: perl(Params::Validate) >= 0.76
Requires: perl(Scalar::Util)
Requires: perl(Time::Local) >= 1.04
Requires: perl(Math::Round)
%description
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
%clean
%{__rm} -rf %{buildroot}
%{?buildroot:%__rm -rf "%{buildroot}"}
%files -f %{name}.files
%defattr(644,root,root,755)