Accepting request 381006 from devel:languages:perl:autoupdate
automatic update OBS-URL: https://build.opensuse.org/request/show/381006 OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Data-OptList?expand=0&rev=28
This commit is contained in:
parent
ba0cf720c5
commit
d3630c32a8
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:1cd7c781c4c102810e4e0c878da3746fe8df46b49d01c4d6c034dfab45cd84c8
|
|
||||||
size 16110
|
|
3
Data-OptList-0.110.tar.gz
Normal file
3
Data-OptList-0.110.tar.gz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:366117cb2966473f2559f2f4575ff6ae69e84c69a0f30a0773e1b51a457ef5c3
|
||||||
|
size 18846
|
28
cpanspec.yml
Normal file
28
cpanspec.yml
Normal 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
|
@ -1,3 +1,12 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 29 09:13:48 UTC 2016 - coolo@suse.com
|
||||||
|
|
||||||
|
- updated to 0.110
|
||||||
|
see /usr/share/doc/packages/perl-Data-OptList/Changes
|
||||||
|
|
||||||
|
0.110 2016-03-24 21:20:54-04:00 America/New_York
|
||||||
|
- major optimization to mkopt (thanks, Olivier Mengué)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Wed Dec 18 10:43:22 UTC 2013 - coolo@suse.com
|
Wed Dec 18 10:43:22 UTC 2013 - coolo@suse.com
|
||||||
|
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package perl-Data-OptList
|
# spec file for package perl-Data-OptList
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
# Copyright (c) 2016 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,14 +17,15 @@
|
|||||||
|
|
||||||
|
|
||||||
Name: perl-Data-OptList
|
Name: perl-Data-OptList
|
||||||
Version: 0.109
|
Version: 0.110
|
||||||
Release: 0
|
Release: 0
|
||||||
%define cpan_name Data-OptList
|
%define cpan_name Data-OptList
|
||||||
Summary: parse and validate simple name/value option pairs
|
Summary: Parse and Validate Simple Name/Value Option Pairs
|
||||||
License: Artistic-1.0 or GPL-1.0+
|
License: Artistic-1.0 or GPL-1.0+
|
||||||
Group: Development/Libraries/Perl
|
Group: Development/Libraries/Perl
|
||||||
Url: http://search.cpan.org/dist/Data-OptList/
|
Url: http://search.cpan.org/dist/Data-OptList/
|
||||||
Source: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
Source0: http://www.cpan.org/authors/id/R/RJ/RJBS/%{cpan_name}-%{version}.tar.gz
|
||||||
|
Source1: cpanspec.yml
|
||||||
BuildArch: noarch
|
BuildArch: noarch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
BuildRequires: perl
|
BuildRequires: perl
|
||||||
@ -32,7 +33,6 @@ BuildRequires: perl-macros
|
|||||||
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
|
||||||
|
|
||||||
Requires: perl(Params::Util)
|
Requires: perl(Params::Util)
|
||||||
Requires: perl(Sub::Install) >= 0.921
|
Requires: perl(Sub::Install) >= 0.921
|
||||||
%{perl_requires}
|
%{perl_requires}
|
||||||
@ -73,12 +73,6 @@ following a name is its value.
|
|||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q -n %{cpan_name}-%{version}
|
%setup -q -n %{cpan_name}-%{version}
|
||||||
# MANUAL
|
|
||||||
%if 0%{?suse_version} < 1120
|
|
||||||
for i in `find t -type f` ; do
|
|
||||||
sed -i -e "s@^\s*use\s\s*Test::More@use lib '%{perl_vendorlib}';\nuse Test::More@" $i
|
|
||||||
done
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
%{__perl} Makefile.PL INSTALLDIRS=vendor
|
||||||
|
Loading…
Reference in New Issue
Block a user