Hello community,
here is the log from the commit of package perl-Scalar-List-Utils for
openSUSE:Factory checked in at 2019-08-24 18:39:44
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Scalar-List-Utils (Old)
and /work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.7948 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Scalar-List-Utils"
Sat Aug 24 18:39:44 2019 rev:16 rq:724782 version:1.52
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Scalar-List-Utils/perl-Scalar-List-Utils.changes
2019-08-15 15:42:59.983201006 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.7948/perl-Scalar-List-Utils.changes
2019-08-24 18:39:45.169795720 +0200
@@ -1,0 +2,11 @@
+Sun Aug 18 05:28:15 UTC 2019 - Stephan Kulow <[email protected]>
+
+- updated to 1.52
+ see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
+
+ 1.52 -- 2019-08-17 19:08:18
+ [BUGFIXES]
+ * Fix uniqnum() on large stringified integers on long- and
+ quad-double perls (thanks ilmari)
+
+-------------------------------------------------------------------
Old:
----
Scalar-List-Utils-1.51.tar.gz
New:
----
Scalar-List-Utils-1.52.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Scalar-List-Utils.spec ++++++
--- /var/tmp/diff_new_pack.ScQdXS/_old 2019-08-24 18:39:46.541795589 +0200
+++ /var/tmp/diff_new_pack.ScQdXS/_new 2019-08-24 18:39:46.545795588 +0200
@@ -17,7 +17,7 @@
Name: perl-Scalar-List-Utils
-Version: 1.51
+Version: 1.52
Release: 0
%define cpan_name Scalar-List-Utils
Summary: Common Scalar and List utility subroutines
++++++ Scalar-List-Utils-1.51.tar.gz -> Scalar-List-Utils-1.52.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/Changes
new/Scalar-List-Utils-1.52/Changes
--- old/Scalar-List-Utils-1.51/Changes 2019-08-08 15:33:06.000000000 +0200
+++ new/Scalar-List-Utils-1.52/Changes 2019-08-17 20:08:46.000000000 +0200
@@ -1,3 +1,8 @@
+1.52 -- 2019-08-17 19:08:18
+ [BUGFIXES]
+ * Fix uniqnum() on large stringified integers on long- and
+ quad-double perls (thanks ilmari)
+
1.51 -- 2019-08-08 14:31:32
[CHANGES]
* Add TO_JSON to List::Util::_Pair (thanks ilmari)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/ListUtil.xs
new/Scalar-List-Utils-1.52/ListUtil.xs
--- old/Scalar-List-Utils-1.51/ListUtil.xs 2019-08-06 14:12:28.000000000
+0200
+++ new/Scalar-List-Utils-1.52/ListUtil.xs 2019-08-17 20:07:00.000000000
+0200
@@ -1177,8 +1177,13 @@
/* clone the value so we don't invoke magic again */
arg = sv_mortalcopy(arg);
- if(SvOK(arg) && !(SvUOK(arg) || SvIOK(arg) || SvNOK(arg)))
- SvNV(arg); /* sets SVf_IOK/SVf_UOK if it's an integer */
+ if(SvOK(arg) && !(SvUOK(arg) || SvIOK(arg) || SvNOK(arg))) {
+#if PERL_VERSION >= 8
+ SvIV(arg); /* sets SVf_IOK/SVf_IsUV if it's an integer */
+#else
+ SvNV(arg); /* SvIV() sets SVf_IOK even on floats on 5.6 */
+#endif
+ }
if(!SvOK(arg) || SvUOK(arg))
sv_setpvf(keysv, "%" UVuf, SvUV(arg));
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/META.json
new/Scalar-List-Utils-1.52/META.json
--- old/Scalar-List-Utils-1.51/META.json 2019-08-08 15:34:32.000000000
+0200
+++ new/Scalar-List-Utils-1.52/META.json 2019-08-17 20:09:51.000000000
+0200
@@ -49,6 +49,6 @@
"web" : "https://github.com/Scalar-List-Utils/Scalar-List-Utils"
}
},
- "version" : "1.51",
+ "version" : "1.52",
"x_serialization_backend" : "JSON::PP version 2.97001"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/META.yml
new/Scalar-List-Utils-1.52/META.yml
--- old/Scalar-List-Utils-1.51/META.yml 2019-08-08 15:34:32.000000000 +0200
+++ new/Scalar-List-Utils-1.52/META.yml 2019-08-17 20:09:51.000000000 +0200
@@ -23,5 +23,5 @@
resources:
bugtracker:
https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils
repository: https://github.com/Scalar-List-Utils/Scalar-List-Utils.git
-version: '1.51'
+version: '1.52'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/lib/List/Util/XS.pm
new/Scalar-List-Utils-1.52/lib/List/Util/XS.pm
--- old/Scalar-List-Utils-1.51/lib/List/Util/XS.pm 2019-08-08
15:33:37.000000000 +0200
+++ new/Scalar-List-Utils-1.52/lib/List/Util/XS.pm 2019-08-17
20:08:56.000000000 +0200
@@ -3,7 +3,7 @@
use warnings;
use List::Util;
-our $VERSION = "1.51"; # FIXUP
+our $VERSION = "1.52"; # FIXUP
$VERSION =~ tr/_//d; # FIXUP
1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/lib/List/Util.pm
new/Scalar-List-Utils-1.52/lib/List/Util.pm
--- old/Scalar-List-Utils-1.51/lib/List/Util.pm 2019-08-08 15:33:37.000000000
+0200
+++ new/Scalar-List-Utils-1.52/lib/List/Util.pm 2019-08-17 20:08:56.000000000
+0200
@@ -15,7 +15,7 @@
all any first min max minstr maxstr none notall product reduce sum sum0
shuffle uniq uniqnum uniqstr
head tail pairs unpairs pairkeys pairvalues pairmap pairgrep pairfirst
);
-our $VERSION = "1.51";
+our $VERSION = "1.52";
our $XS_VERSION = $VERSION;
$VERSION =~ tr/_//d;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/lib/Scalar/Util.pm
new/Scalar-List-Utils-1.52/lib/Scalar/Util.pm
--- old/Scalar-List-Utils-1.51/lib/Scalar/Util.pm 2019-08-08
15:33:37.000000000 +0200
+++ new/Scalar-List-Utils-1.52/lib/Scalar/Util.pm 2019-08-17
20:08:56.000000000 +0200
@@ -17,7 +17,7 @@
dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
tainted
);
-our $VERSION = "1.51";
+our $VERSION = "1.52";
$VERSION =~ tr/_//d;
require List::Util; # List::Util loads the XS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.51/lib/Sub/Util.pm
new/Scalar-List-Utils-1.52/lib/Sub/Util.pm
--- old/Scalar-List-Utils-1.51/lib/Sub/Util.pm 2019-08-08 15:33:37.000000000
+0200
+++ new/Scalar-List-Utils-1.52/lib/Sub/Util.pm 2019-08-17 20:08:56.000000000
+0200
@@ -15,7 +15,7 @@
subname set_subname
);
-our $VERSION = "1.51";
+our $VERSION = "1.52";
$VERSION =~ tr/_//d;
require List::Util; # as it has the XS