Accepting request 590880 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/590880
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Array-Compare?expand=0&rev=22
This commit is contained in:
Stephan Kulow
2018-04-04 10:14:50 +00:00
committed by Git OBS Bridge
parent 4671b282b3
commit 7d18c71ff4
4 changed files with 20 additions and 9 deletions

View File

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

View File

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

View File

@@ -1,3 +1,14 @@
-------------------------------------------------------------------
Sun Mar 25 05:04:21 UTC 2018 - coolo@suse.com
- updated to 3.0.1
see /usr/share/doc/packages/perl-Array-Compare/Changes
3.0.1 2018-03-24
- Various code fixes recommended by kritika.io
- Applied doc patch from Debian (thanks Wesley Schwengle)
------------------------------------------------------------------- -------------------------------------------------------------------
Wed Dec 14 06:03:22 UTC 2016 - coolo@suse.com Wed Dec 14 06:03:22 UTC 2016 - coolo@suse.com

View File

@@ -1,7 +1,7 @@
# #
# spec file for package perl-Array-Compare # spec file for package perl-Array-Compare
# #
# Copyright (c) 2016 SUSE LINUX GmbH, Nuernberg, Germany. # Copyright (c) 2018 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,14 @@
Name: perl-Array-Compare Name: perl-Array-Compare
Version: 3.0.0 Version: 3.0.1
Release: 0 Release: 0
%define cpan_name Array-Compare %define cpan_name Array-Compare
Summary: Perl extension for comparing arrays Summary: Perl extension for comparing 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-Compare/ Url: http://search.cpan.org/dist/Array-Compare/
Source0: http://www.cpan.org/authors/id/D/DA/DAVECROSS/%{cpan_name}-v%{version}.tar.gz Source0: https://cpan.metacpan.org/authors/id/D/DA/DAVECROSS/%{cpan_name}-v%{version}.tar.gz
Source1: cpanspec.yml Source1: cpanspec.yml
BuildArch: noarch BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -70,7 +70,7 @@ either by passing and alternative to the 'new' function
my $comp = Array::Compare->new(Sep => '|'); my $comp = Array::Compare->new(Sep => '|');
or by changing the seperator for an existing comparator object or by changing the separator for an existing comparator object
$comp->Sep('|'); $comp->Sep('|');
@@ -107,7 +107,7 @@ full comparison which returns a list containing the indexes of elements
which differ between the two arrays. If the arrays are the same it returns which differ between the two arrays. If the arrays are the same it returns
an empty list. In scalar context the full comparison returns the length of an empty list. In scalar context the full comparison returns the length of
this list (i.e. the number of elements that differ). You can access the this list (i.e. the number of elements that differ). You can access the
full comparision in two ways. Firstly, there is a 'DefFull' attribute. If full comparison in two ways. Firstly, there is a 'DefFull' attribute. If
this is 'true' then a full comparison if carried out whenever the 'compare' this is 'true' then a full comparison if carried out whenever the 'compare'
method is called. method is called.