Accepting request 43314 from devel:languages:perl
Copy from devel:languages:perl/perl-DateTime based on submit request 43314 from user computersalat OBS-URL: https://build.opensuse.org/request/show/43314 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-DateTime?expand=0&rev=4
This commit is contained in:
parent
aff263445e
commit
f23b3c868a
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:85b55b438983d27d659721ba5fe9549fa36cf585c1b9cfa65f4e3b4863bebb54
|
||||
size 133189
|
3
DateTime-0.60.tar.bz2
Normal file
3
DateTime-0.60.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:ccc851fcecdfa4575f0450b73125d51193363dfcb279dd28abb63d6c503cf0d4
|
||||
size 132321
|
@ -1,5 +1,38 @@
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 11 21:50:08 UTC 2010 - chris@computersalat.de
|
||||
Thu Jul 8 16:25:10 UTC 2010 - chris@computersalat.de
|
||||
|
||||
- update to 0.60
|
||||
- By default, Dist::Zilla generates a Build.PL that requires Module::Build
|
||||
0.3601+, but this distro really doesn't need any particular version.
|
||||
- hence removed MB patch
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Fri Jul 2 12:15:13 UTC 2010 - chris@computersalat.de
|
||||
|
||||
- update to 0.59
|
||||
- More packaging fixes. This release makes sure that POD only shows up in the
|
||||
right files. In 0.56 through 0.58, some POD in the wrong place confused the
|
||||
search.cpan.org POD display code, and the main module's documentation wasn't
|
||||
viewable.
|
||||
- 0.58 2010-06-28
|
||||
- Versions 0.56 and 0.57 did not build XS properly when installing.
|
||||
- 0.57 2010-06-26
|
||||
- Make DateTime::LeapSecond have the same $VERSION as every other .pm file.
|
||||
- 0.56 2010-06-26
|
||||
- The set_formatter() method did not return the DateTime object, and did not
|
||||
actually validate the value provided for the formatter. Based on a patch by
|
||||
Andrew Whatson. RT #58506.
|
||||
- Improved docs on floating time zone. Based on suggestions by Michael
|
||||
Svoboda. RT #56389.
|
||||
- Added mention of end-of-month algorithms to docs on DateTime math. Based on
|
||||
a patch by Michael R. Davis. RT #58533.
|
||||
- License is now Artistic 2.0.
|
||||
- added MB patch
|
||||
o Author Requires Module::Build >= 0.3601
|
||||
but 1120 does not provide it, and builds just fine with Module::Build 0.280801
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 11 21:55:08 UTC 2010 - chris@computersalat.de
|
||||
|
||||
- update to 0.55
|
||||
- Get all tests passing on 5.6.2. Thanks to Zefram for help spotting the
|
||||
@ -25,7 +58,17 @@ Sun Apr 11 21:50:08 UTC 2010 - chris@computersalat.de
|
||||
Patch by Michael Schwern. RT #55453.
|
||||
- Allow passing end_of_month setting to $duration->inverse(). Requested by
|
||||
John Siracusa. RT #53985.
|
||||
- 0.53 2009-12-06
|
||||
- fixed deps
|
||||
- perl-macros < 1120
|
||||
- perl(Test::Exception)
|
||||
- perl(Test::More) >= 0.88
|
||||
- perl(DateTime::TimeZone) >= 1.09
|
||||
- split package to DateTime_0_53 for suse_version < 1120
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sun Apr 11 21:50:08 UTC 2010 - chris@computersalat.de
|
||||
|
||||
- update to 0.53
|
||||
- Added Test::Exception to build_requires.
|
||||
- 0.52 2009-12-05
|
||||
- Numeric to ->new() are now all validated to make sure they are
|
||||
@ -45,11 +88,6 @@ Sun Apr 11 21:50:08 UTC 2010 - chris@computersalat.de
|
||||
o removed useless comments
|
||||
o fixed Header
|
||||
o update License, Url, description
|
||||
o fixed deps
|
||||
- perl-macros < 1120
|
||||
- perl(Test::Exception)
|
||||
- perl(Test::More) >= 0.88
|
||||
- perl(DateTime::TimeZone) >= 1.09
|
||||
o moved changelog to changes file
|
||||
o macro usage
|
||||
o Makefile.PL > Build.PL
|
||||
|
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package perl-DateTime (Version 0.55)
|
||||
# spec file for package perl-DateTime (Version 0.60)
|
||||
#
|
||||
# Copyright (c) 2010 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -17,27 +17,32 @@
|
||||
|
||||
# norootforbuild
|
||||
|
||||
%bcond_with test
|
||||
|
||||
Name: perl-DateTime
|
||||
%define cpan_name %( echo %{name} | %{__sed} -e 's,perl-,,' )
|
||||
Summary: A date and time object
|
||||
Version: 0.55
|
||||
Version: 0.60
|
||||
Release: 1
|
||||
License: GPL v1 or later, Artistic License
|
||||
License: Artistic License 2.0
|
||||
Group: Development/Libraries/Perl
|
||||
Url: http://search.cpan.org/dist/DateTime
|
||||
Source: %{cpan_name}-%{version}.tar.bz2
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
BuildRequires: perl
|
||||
BuildRequires: perl(Module::Build)
|
||||
%if 0%{?suse_version} < 1120
|
||||
BuildRequires: perl-macros
|
||||
%endif
|
||||
BuildRequires: perl(Scalar::Util)
|
||||
BuildRequires: perl(Pod::Man) >= 1.14
|
||||
BuildRequires: perl(Test::Exception)
|
||||
BuildRequires: perl(Test::More) >= 0.88
|
||||
# for testsuite
|
||||
%if %{with test}
|
||||
BuildRequires: perl(Test::Pod::Coverage) >= 1.08
|
||||
BuildRequires: perl(Test::Pod) >= 1.14
|
||||
BuildRequires: perl(Pod::Man) >= 1.14
|
||||
%endif
|
||||
# other not perl || perl-base
|
||||
BuildRequires: perl(DateTime::Locale) >= 0.41
|
||||
BuildRequires: perl(DateTime::TimeZone) >= 1.09
|
||||
|
Loading…
Reference in New Issue
Block a user