8
0

Accepting request 702525 from devel:languages:perl:autoupdate

automatic update

OBS-URL: https://build.opensuse.org/request/show/702525
OBS-URL: https://build.opensuse.org/package/show/devel:languages:perl/perl-Array-Diff?expand=0&rev=11
This commit is contained in:
Stephan Kulow
2019-05-18 07:02:02 +00:00
committed by Git OBS Bridge
parent 6386ad80ab
commit c57b100aca
4 changed files with 19 additions and 6 deletions

View File

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

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

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

View File

@@ -1,3 +1,13 @@
-------------------------------------------------------------------
Mon May 13 05:02:35 UTC 2019 - Stephan Kulow <coolo@suse.com>
- updated to 0.09
see /usr/share/doc/packages/perl-Array-Diff/Changes
0.09 2019-05-10 NEILB
- Set minimum Perl version in metadata. PR from MANWAR.
- Clarified in the doc that the arrays must be sorted. RT#39184
-------------------------------------------------------------------
Thu May 9 05:02:31 UTC 2019 - Stephan Kulow <coolo@suse.com>

View File

@@ -17,7 +17,7 @@
Name: perl-Array-Diff
Version: 0.08
Version: 0.09
Release: 0
%define cpan_name Array-Diff
Summary: Find the differences between two arrays
@@ -37,8 +37,11 @@ Requires: perl(Class::Accessor::Fast)
%{perl_requires}
%description
This module compares two arrays and returns the added or deleted elements
in two separate arrays. It's a simple wrapper around Algorithm::Diff.
This module compares two *pre-sorted* arrays and returns the added or
deleted elements in two separate arrays. It's a simple wrapper around
Algorithm::Diff.
*Note*: the arrays must be sorted before you call 'diff'.
And if you need more complex array tools, check Array::Compare.