Accepting request 684732 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/684732
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-DateTime-Format-Builder?expand=0&rev=14
This commit is contained in:
Stephan Kulow 2019-03-14 10:43:35 +00:00 committed by Git OBS Bridge
parent f5c74c9cbf
commit 97be832cf7
5 changed files with 58 additions and 25 deletions

View File

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

View File

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

28
cpanspec.yml Normal file
View File

@ -0,0 +1,28 @@
---
#description_paragraphs: 3
#description: |-
# override description from CPAN
#summary: override summary from CPAN
#no_testing: broken upstream
#sources:
# - source1
# - source2
#patches:
# foo.patch: -p1
# bar.patch:
#preamble: |-
# BuildRequires: gcc-c++
#post_prep: |-
# hunspell=`pkg-config --libs hunspell | sed -e 's,-l,,; s, *,,g'`
# sed -i -e "s,hunspell-X,$hunspell," t/00-prereq.t Makefile.PL
#post_build: |-
# rm unused.files
#post_install: |-
# sed on %{name}.files
#license: SUSE-NonFree
#skip_noarch: 1
#custom_build: |-
#./Build build flags=%{?_smp_mflags} --myflag
#custom_test: |-
#startserver && make test
#ignore_requires: Bizarre::Module

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Wed Mar 13 15:56:41 UTC 2019 - Stephan Kulow <coolo@suse.com>
- updated to 0.82
see /usr/share/doc/packages/perl-DateTime-Format-Builder/Changes
0.82 2019-03-03
- Removed use of Class::Factory::Util. That distro is poorly maintained (by
me) and it has some issues with its use of Module::Build. This distro
(DateTime-Format-Builder) really doesn't need to use Class::Factory::Util.
-------------------------------------------------------------------
Tue Jun 4 08:14:57 UTC 2013 - coolo@suse.com

View File

@ -1,7 +1,7 @@
#
# spec file for package perl-DateTime-Format-Builder
#
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@ -12,38 +12,33 @@
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
# Please submit bugfixes or comments via https://bugs.opensuse.org/
#
Name: perl-DateTime-Format-Builder
Version: 0.81
Version: 0.82
Release: 0
%define cpan_name DateTime-Format-Builder
Summary: Create DateTime parser classes and objects.
Summary: Create DateTime parser classes and objects
License: Artistic-2.0
Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/DateTime-Format-Builder/
Source: http://www.cpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
Url: https://metacpan.org/release/%{cpan_name}
Source0: https://cpan.metacpan.org/authors/id/D/DR/DROLSKY/%{cpan_name}-%{version}.tar.gz
Source1: cpanspec.yml
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
BuildRequires: perl
BuildRequires: perl-macros
BuildRequires: perl(Class::Factory::Util) >= 1.6
BuildRequires: perl(DateTime) >= 1.00
BuildRequires: perl(DateTime::Format::Strptime) >= 1.04
BuildRequires: perl(Params::Validate) >= 0.72
BuildRequires: perl(Test::More) >= 0.88
#BuildRequires: perl(DateTime::Format::Builder)
#BuildRequires: perl(DateTime::Format::Builder::Parser)
#BuildRequires: perl(DateTime::Format::Builder::Parser::generic)
#BuildRequires: perl(DateTime::Format::HTTP)
#BuildRequires: perl(DateTime::Format::IBeat)
#BuildRequires: perl(DateTime::Format::Mail)
Requires: perl(Class::Factory::Util) >= 1.6
BuildRequires: perl(Test::More) >= 0.96
BuildRequires: perl(parent)
Requires: perl(DateTime) >= 1.00
Requires: perl(DateTime::Format::Strptime) >= 1.04
Requires: perl(Params::Validate) >= 0.72
Requires: perl(parent)
%{perl_requires}
%description
@ -57,18 +52,15 @@ at least rarely need. They're provided more for exposing of the module's
innards to any subclasses, or for when you need to do something slightly
beyond what I expected.
This creates the end methods. Coderefs die on bad parses, return 'DateTime'
objects on good parse.
%prep
%setup -q -n %{cpan_name}-%{version}
%build
%{__perl} Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags}
perl Makefile.PL INSTALLDIRS=vendor
make %{?_smp_mflags}
%check
%{__make} test
make test
%install
%perl_make_install
@ -77,6 +69,7 @@ objects on good parse.
%files -f %{name}.files
%defattr(-,root,root,755)
%doc Changes examples LICENSE README
%doc Changes CODE_OF_CONDUCT.md CONTRIBUTING.md examples README.md
%license LICENSE
%changelog