8
0

Accepting request 701669 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/701669
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Array-Diff?expand=0&rev=10
This commit is contained in:
Lars Vogdt
2019-05-12 12:51:47 +00:00
committed by Git OBS Bridge
parent 70b5a57d8c
commit 6386ad80ab
5 changed files with 68 additions and 18 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:78e7d3a3374c74e117b7198f8e6649367a2906561b8a485d3870f242fa8f8346
size 52126

3
Array-Diff-0.08.tar.gz Normal file
View File

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

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,26 @@
-------------------------------------------------------------------
Thu May 9 05:02:31 UTC 2019 - Stephan Kulow <coolo@suse.com>
- updated to 0.08
see /usr/share/doc/packages/perl-Array-Diff/Changes
0.08 2019-05-08 NEILB
- First non-developer release since switching to Dist::Zilla
0.07_03 2019-05-08 NEILB
- Added Array::Compare to SEE ALSO
- Added List::Compare to SEE ALSO
- Really just making another developer release, as PAUSE and then
CPAN Testers had issues, so previous dev releases didn't get much
testing.
0.07_02 2019-05-07 NEILB
- Added a bunch of entries to SEE ALSO.
0.07_01 2019-05-06 NEILB
- Added version dependency for Algorithm::Diff in Array/Diff.pm
- Switched to Dist::Zilla
------------------------------------------------------------------- -------------------------------------------------------------------
Sun Oct 7 12:24:47 UTC 2018 - Dirk Stoecker <opensuse@dstoecker.de> Sun Oct 7 12:24:47 UTC 2018 - Dirk Stoecker <opensuse@dstoecker.de>

View File

@@ -1,7 +1,7 @@
# #
# spec file for package perl-Array-Diff # spec file for package perl-Array-Diff
# #
# Copyright (c) 2015 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2019 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
@@ -12,47 +12,45 @@
# 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-Array-Diff Name: perl-Array-Diff
Version: 0.07 Version: 0.08
Release: 0 Release: 0
%define cpan_name Array-Diff %define cpan_name Array-Diff
Summary: Find the differences between two arrays Summary: Find the differences between two arrays
License: Artistic-1.0 or GPL-1.0+ License: Artistic-1.0 OR GPL-1.0-or-later
Group: Development/Libraries/Perl Group: Development/Libraries/Perl
Url: http://search.cpan.org/dist/Array-Diff/ Url: https://metacpan.org/release/%{cpan_name}
Source: http://www.cpan.org/authors/id/T/TY/TYPESTER/%{cpan_name}-%{version}.tar.gz Source0: https://cpan.metacpan.org/authors/id/N/NE/NEILB/%{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
BuildRequires: perl-macros BuildRequires: perl-macros
BuildRequires: perl(Algorithm::Diff) >= 1.19 BuildRequires: perl(Algorithm::Diff) >= 1.19
BuildRequires: perl(Class::Accessor::Fast) BuildRequires: perl(Class::Accessor::Fast)
BuildRequires: perl(Module::Install)
Requires: perl(Algorithm::Diff) >= 1.19 Requires: perl(Algorithm::Diff) >= 1.19
Requires: perl(Class::Accessor::Fast) Requires: perl(Class::Accessor::Fast)
Recommends: perl(Algorithm::Diff::XS)
%{perl_requires} %{perl_requires}
%description %description
This module compares two arrays and returns the added or deleted elements This module compares two arrays and returns the added or deleted elements
in two separate arrays. It's a simple wrapper around the Algorithm::Diff in two separate arrays. It's a simple wrapper around Algorithm::Diff.
manpage.
And if you need more complex array tools, check the Array::Compare manpage. And if you need more complex array tools, check Array::Compare.
%prep %prep
%setup -q -n %{cpan_name}-%{version} %setup -q -n %{cpan_name}-%{version}
%build %build
%{__perl} Makefile.PL INSTALLDIRS=vendor perl Makefile.PL INSTALLDIRS=vendor
%{__make} %{?_smp_mflags} make %{?_smp_mflags}
%check %check
%{__make} test make test
%install %install
%perl_make_install %perl_make_install
@@ -61,6 +59,7 @@ And if you need more complex array tools, check the Array::Compare manpage.
%files -f %{name}.files %files -f %{name}.files
%defattr(-,root,root,755) %defattr(-,root,root,755)
%doc Changes LICENSE README %doc Changes README
%license LICENSE
%changelog %changelog