Accepting request 500381 from devel:languages:perl
1 OBS-URL: https://build.opensuse.org/request/show/500381 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/perl-DateTime-Format-Strptime?expand=0&rev=21
This commit is contained in:
commit
c4b66ff322
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ceead46b714c6baea3250b987078771f1ffbe217b501d6fc91ff3c5f2afbbc67
|
|
||||||
size 105460
|
|
3
DateTime-Format-Strptime-1.73.tar.gz
Normal file
3
DateTime-Format-Strptime-1.73.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:6d077806eb8581e5f28ffaff0bd2bb7a15114f9e745f61bd519405047765b2be
|
||||||
|
size 108454
|
@ -1,3 +1,32 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Thu May 25 07:51:17 UTC 2017 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 1.73
|
||||||
|
see /usr/share/doc/packages/perl-DateTime-Format-Strptime/Changes
|
||||||
|
|
||||||
|
1.73 2017-01-31
|
||||||
|
|
||||||
|
- The format_datetime now checks that the object it is given isa DateTime
|
||||||
|
object. Implemented by Mohammad S Anwar. GitHub #17.
|
||||||
|
|
||||||
|
|
||||||
|
1.72 2017-01-24
|
||||||
|
|
||||||
|
- Require DateTime::Locale 1.05. This fixes some test failures seen on CPAN
|
||||||
|
Testers. Also require DateTime::TimeZone 2.09 because you should really
|
||||||
|
update this on a regular basis.
|
||||||
|
|
||||||
|
- Require Specio 0.33 to fix other test failures seen on CPAN (I hope).
|
||||||
|
|
||||||
|
|
||||||
|
1.71 2017-01-24
|
||||||
|
|
||||||
|
- By default, the word boundary checks added in 1.69 are now off. You can
|
||||||
|
enable them by passing "strict => 1" to the constructor. This was reported
|
||||||
|
as an issue by Toby Corkindale as GitHub #15.
|
||||||
|
|
||||||
|
- Switched from Params::Validate to Params::ValidationCompiler.
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Mon Dec 12 06:22:16 UTC 2016 - coolo@suse.com
|
Mon Dec 12 06:22:16 UTC 2016 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-DateTime-Format-Strptime
|
# spec file for package perl-DateTime-Format-Strptime
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2017 SUSE LINUX GmbH, Nuernberg, Germany.
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@ -17,34 +17,50 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-DateTime-Format-Strptime
|
Name: perl-DateTime-Format-Strptime
|
||||||
Version: 1.70
|
Version: 1.73
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name DateTime-Format-Strptime
|
%define cpan_name DateTime-Format-Strptime
|
||||||
Summary: Parse and format strp and strf time patterns
|
Summary: Parse and format strp and strf time patterns
|
||||||
License: Artistic-2.0
|
License: Artistic-2.0
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/DateTime-Format-Strptime/
|
Url: http://search.cpan.org/dist/DateTime-Format-Strptime/
|
||||||
Source0: http://www.cpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
|
Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
BuildRequires: perl(DateTime) >= 1.00
|
BuildRequires: perl(DateTime) >= 1.00
|
||||||
BuildRequires: perl(DateTime::Locale) >= 0.450000
|
BuildRequires: perl(DateTime::Locale) >= 1.050000
|
||||||
BuildRequires: perl(DateTime::TimeZone) >= 0.79
|
BuildRequires: perl(DateTime::Locale::Base)
|
||||||
|
BuildRequires: perl(DateTime::Locale::FromData)
|
||||||
|
BuildRequires: perl(DateTime::TimeZone) >= 2.09
|
||||||
BuildRequires: perl(Package::DeprecationManager) >= 0.15
|
BuildRequires: perl(Package::DeprecationManager) >= 0.15
|
||||||
BuildRequires: perl(Params::Validate) >= 1.20
|
BuildRequires: perl(Params::ValidationCompiler)
|
||||||
|
BuildRequires: perl(Specio) >= 0.33
|
||||||
|
BuildRequires: perl(Specio::Declare)
|
||||||
|
BuildRequires: perl(Specio::Exporter)
|
||||||
|
BuildRequires: perl(Specio::Library::Builtins)
|
||||||
|
BuildRequires: perl(Specio::Library::String)
|
||||||
BuildRequires: perl(Test::Fatal)
|
BuildRequires: perl(Test::Fatal)
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
BuildRequires: perl(Test::Warnings)
|
BuildRequires: perl(Test::Warnings)
|
||||||
BuildRequires: perl(Try::Tiny)
|
BuildRequires: perl(Try::Tiny)
|
||||||
|
BuildRequires: perl(parent)
|
||||||
Requires: perl(DateTime) >= 1.00
|
Requires: perl(DateTime) >= 1.00
|
||||||
Requires: perl(DateTime::Locale) >= 0.450000
|
Requires: perl(DateTime::Locale) >= 1.050000
|
||||||
Requires: perl(DateTime::TimeZone) >= 0.79
|
Requires: perl(DateTime::Locale::Base)
|
||||||
|
Requires: perl(DateTime::Locale::FromData)
|
||||||
|
Requires: perl(DateTime::TimeZone) >= 2.09
|
||||||
Requires: perl(Package::DeprecationManager) >= 0.15
|
Requires: perl(Package::DeprecationManager) >= 0.15
|
||||||
Requires: perl(Params::Validate) >= 1.20
|
Requires: perl(Params::ValidationCompiler)
|
||||||
|
Requires: perl(Specio) >= 0.33
|
||||||
|
Requires: perl(Specio::Declare)
|
||||||
|
Requires: perl(Specio::Exporter)
|
||||||
|
Requires: perl(Specio::Library::Builtins)
|
||||||
|
Requires: perl(Specio::Library::String)
|
||||||
Requires: perl(Try::Tiny)
|
Requires: perl(Try::Tiny)
|
||||||
|
Requires: perl(parent)
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
|
|
||||||
%description
|
%description
|
||||||
@ -70,6 +86,7 @@ and a pattern and returns the 'DateTime' object associated.
|
|||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%defattr(-,root,root,755)
|
||||||
%doc bench Changes CONTRIBUTING.md LICENSE README.md
|
%doc bench Changes CONTRIBUTING.md README.md
|
||||||
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
Reference in New Issue
Block a user