Accepting request 903004 from devel:languages:perl:autoupdate
- updated to 0.112 see /usr/share/doc/packages/perl-Data-OptList/Changes 0.112 2021-06-26 11:01:31-04:00 America/New_York - no changes since last trial release (0.111) 0.111 2021-06-20 20:55:10-04:00 America/New_York (TRIAL RELEASE) - update author contact info - add perl version support to docs - replace a "goto" deep in the guts with a sub call, for speed (thanks, Olivier Mengué and Graham Knop) OBS-URL: https://build.opensuse.org/request/show/903004 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Data-OptList?expand=0&rev=30
This commit is contained in:
parent
d3630c32a8
commit
fadad3b133
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:366117cb2966473f2559f2f4575ff6ae69e84c69a0f30a0773e1b51a457ef5c3
|
|
||||||
size 18846
|
|
3
Data-OptList-0.112.tar.gz
Normal file
3
Data-OptList-0.112.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:62c60ccaae88d5339ae36bcc8940b03388cf84adbf27828b1f8b300307103bab
|
||||||
|
size 19764
|
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Jun 27 03:07:03 UTC 2021 - Tina Müller <timueller+perl@suse.de>
|
||||||
|
|
||||||
|
- updated to 0.112
|
||||||
|
see /usr/share/doc/packages/perl-Data-OptList/Changes
|
||||||
|
|
||||||
|
0.112 2021-06-26 11:01:31-04:00 America/New_York
|
||||||
|
- no changes since last trial release (0.111)
|
||||||
|
|
||||||
|
0.111 2021-06-20 20:55:10-04:00 America/New_York (TRIAL RELEASE)
|
||||||
|
- update author contact info
|
||||||
|
- add perl version support to docs
|
||||||
|
- replace a "goto" deep in the guts with a sub call, for speed (thanks,
|
||||||
|
Olivier Mengué and Graham Knop)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Mar 29 09:13:48 UTC 2016 - coolo@suse.com
|
Tue Mar 29 09:13:48 UTC 2016 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Data-OptList
|
# spec file for package perl-Data-OptList
|
||||||
#
|
#
|
||||||
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany.
|
# Copyright (c) 2021 SUSE LLC
|
||||||
#
|
#
|
||||||
# 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
|
||||||
@ -12,24 +12,23 @@
|
|||||||
# license that conforms to the Open Source Definition (Version 1.9)
|
# license that conforms to the Open Source Definition (Version 1.9)
|
||||||
# published by the Open Source Initiative.
|
# 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-Data-OptList
|
|
||||||
Version: 0.110
|
|
||||||
Release: 0
|
|
||||||
%define cpan_name Data-OptList
|
%define cpan_name Data-OptList
|
||||||
Summary: Parse and Validate Simple Name/Value Option Pairs
|
Name: perl-Data-OptList
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
Version: 0.112
|
||||||
Group: Development/Libraries/Perl
|
Release: 0
|
||||||
Url: http://search.cpan.org/dist/Data-OptList/
|
Summary: Parse and validate simple name/value option pairs
|
||||||
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
License: Artistic-1.0 OR GPL-1.0-or-later
|
||||||
|
URL: https://metacpan.org/release/%{cpan_name}
|
||||||
|
Source0: https://cpan.metacpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
||||||
Source1: cpanspec.yml
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
BuildRequires: perl-macros
|
BuildRequires: perl-macros
|
||||||
|
BuildRequires: perl(ExtUtils::MakeMaker) >= 6.78
|
||||||
BuildRequires: perl(Params::Util)
|
BuildRequires: perl(Params::Util)
|
||||||
BuildRequires: perl(Sub::Install) >= 0.921
|
BuildRequires: perl(Sub::Install) >= 0.921
|
||||||
BuildRequires: perl(Test::More) >= 0.96
|
BuildRequires: perl(Test::More) >= 0.96
|
||||||
@ -72,14 +71,14 @@ This works by assuming that any defined scalar is a name and any reference
|
|||||||
following a name is its value.
|
following a name is its value.
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%autosetup -n %{cpan_name}-%{version}
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
perl Makefile.PL INSTALLDIRS=vendor
|
||||||
%{__make} %{?_smp_mflags}
|
%make_build
|
||||||
|
|
||||||
%check
|
%check
|
||||||
%{__make} test
|
make test
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%perl_make_install
|
%perl_make_install
|
||||||
@ -87,7 +86,7 @@ following a name is its value.
|
|||||||
%perl_gen_filelist
|
%perl_gen_filelist
|
||||||
|
|
||||||
%files -f %{name}.files
|
%files -f %{name}.files
|
||||||
%defattr(-,root,root,755)
|
%doc Changes README
|
||||||
%doc Changes LICENSE README
|
%license LICENSE
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
Loading…
x
Reference in New Issue
Block a user