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,7 +1,7 @@
#
# 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
# remain the property of their copyright owners, unless otherwise agreed
@@ -17,14 +17,14 @@
Name: perl-Array-Compare
Version: 3.0.0
Version: 3.0.1
Release: 0
%define cpan_name Array-Compare
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
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
BuildArch: noarch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
@@ -70,7 +70,7 @@ either by passing and alternative to the 'new' function
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('|');
@@ -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
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
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'
method is called.