Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl-Scalar-List-Utils for openSUSE:Factory checked in at 2022-02-26 17:02:00 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl-Scalar-List-Utils (Old) and /work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.1958 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Scalar-List-Utils" Sat Feb 26 17:02:00 2022 rev:23 rq:957393 version:1.61 Changes: -------- --- /work/SRC/openSUSE:Factory/perl-Scalar-List-Utils/perl-Scalar-List-Utils.changes 2021-10-20 20:23:06.313334405 +0200 +++ /work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.1958/perl-Scalar-List-Utils.changes 2022-02-26 17:02:28.591539654 +0100 @@ -1,0 +2,10 @@ +Thu Feb 17 03:07:20 UTC 2022 - Tina M??ller <timueller+p...@suse.de> + +- updated to 1.61 + see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes + + 1.61 -- 2022-02-16 + [BUGFIXES} + * Fix some more signed comparison warnings (Perl5 #19429) + +------------------------------------------------------------------- Old: ---- Scalar-List-Utils-1.60.tar.gz New: ---- Scalar-List-Utils-1.61.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl-Scalar-List-Utils.spec ++++++ --- /var/tmp/diff_new_pack.JDywAI/_old 2022-02-26 17:02:29.503539799 +0100 +++ /var/tmp/diff_new_pack.JDywAI/_new 2022-02-26 17:02:29.507539799 +0100 @@ -1,7 +1,7 @@ # # spec file for package perl-Scalar-List-Utils # -# Copyright (c) 2021 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -18,10 +18,10 @@ %define cpan_name Scalar-List-Utils Name: perl-Scalar-List-Utils -Version: 1.60 +Version: 1.61 Release: 0 -Summary: Common Scalar and List utility subroutines License: Artistic-1.0 OR GPL-1.0-or-later +Summary: Common Scalar and List utility subroutines URL: https://metacpan.org/release/%{cpan_name} Source0: https://cpan.metacpan.org/authors/id/P/PE/PEVANS/%{cpan_name}-%{version}.tar.gz Source1: cpanspec.yml ++++++ Scalar-List-Utils-1.60.tar.gz -> Scalar-List-Utils-1.61.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/Changes new/Scalar-List-Utils-1.61/Changes --- old/Scalar-List-Utils-1.60/Changes 2021-10-08 13:06:34.000000000 +0200 +++ new/Scalar-List-Utils-1.61/Changes 2022-02-16 13:40:34.000000000 +0100 @@ -1,3 +1,7 @@ +1.61 -- 2022-02-16 + [BUGFIXES} + * Fix some more signed comparison warnings (Perl5 #19429) + 1.60 -- 2021-10-08 [BUGFIXES] * Quiet some -Wsign-compare warnings by using `int` instead of `UV` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/ListUtil.xs new/Scalar-List-Utils-1.61/ListUtil.xs --- old/Scalar-List-Utils-1.60/ListUtil.xs 2021-10-08 12:09:25.000000000 +0200 +++ new/Scalar-List-Utils-1.61/ListUtil.xs 2022-02-16 13:40:34.000000000 +0100 @@ -1584,10 +1584,10 @@ mesh_longest = ZIP_MESH_LONGEST mesh_shortest = ZIP_MESH_SHORTEST PPCODE: - int nlists = items; /* number of lists */ + Size_t nlists = items; /* number of lists */ AV **lists; /* inbound lists */ - int len = 0; /* length of longest inbound list = length of result */ - int i; + Size_t len = 0; /* length of longest inbound list = length of result */ + Size_t i; bool is_mesh = (ix & ZIP_MESH); ix &= ~ZIP_MESH; @@ -1628,12 +1628,12 @@ } if(is_mesh) { - int retcount = len * nlists; + SSize_t retcount = (SSize_t)(len * nlists); EXTEND(SP, retcount); for(i = 0; i < len; i++) { - int listi; + Size_t listi; for(listi = 0; listi < nlists; listi++) { SV *item = (i < av_count(lists[listi])) ? @@ -1647,10 +1647,10 @@ XSRETURN(retcount); } else { - EXTEND(SP, len); + EXTEND(SP, (SSize_t)len); for(i = 0; i < len; i++) { - int listi; + Size_t listi; AV *ret = newAV(); av_extend(ret, nlists); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/META.json new/Scalar-List-Utils-1.61/META.json --- old/Scalar-List-Utils-1.60/META.json 2021-10-08 13:08:07.000000000 +0200 +++ new/Scalar-List-Utils-1.61/META.json 2022-02-16 13:42:08.000000000 +0100 @@ -4,7 +4,7 @@ "Graham Barr <gb...@cpan.org>" ], "dynamic_config" : 0, - "generated_by" : "ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010", + "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010", "license" : [ "perl_5" ], @@ -53,6 +53,6 @@ "web" : "https://github.com/Scalar-List-Utils/Scalar-List-Utils" } }, - "version" : "1.60", - "x_serialization_backend" : "JSON::PP version 4.05" + "version" : "1.61", + "x_serialization_backend" : "JSON::PP version 4.06" } diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/META.yml new/Scalar-List-Utils-1.61/META.yml --- old/Scalar-List-Utils-1.60/META.yml 2021-10-08 13:08:07.000000000 +0200 +++ new/Scalar-List-Utils-1.61/META.yml 2022-02-16 13:42:08.000000000 +0100 @@ -8,7 +8,7 @@ configure_requires: ExtUtils::MakeMaker: '0' dynamic_config: 0 -generated_by: 'ExtUtils::MakeMaker version 7.44, CPAN::Meta::Converter version 2.150010' +generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 2.150010' license: perl meta-spec: url: http://module-build.sourceforge.net/META-spec-v1.4.html @@ -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.60' +version: '1.61' x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/lib/List/Util/XS.pm new/Scalar-List-Utils-1.61/lib/List/Util/XS.pm --- old/Scalar-List-Utils-1.60/lib/List/Util/XS.pm 2021-10-08 13:06:34.000000000 +0200 +++ new/Scalar-List-Utils-1.61/lib/List/Util/XS.pm 2022-02-16 13:40:34.000000000 +0100 @@ -3,7 +3,7 @@ use warnings; use List::Util; -our $VERSION = "1.60"; # FIXUP +our $VERSION = "1.61"; # FIXUP $VERSION =~ tr/_//d; # FIXUP 1; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/lib/List/Util.pm new/Scalar-List-Utils-1.61/lib/List/Util.pm --- old/Scalar-List-Utils-1.60/lib/List/Util.pm 2021-10-08 13:06:34.000000000 +0200 +++ new/Scalar-List-Utils-1.61/lib/List/Util.pm 2022-02-16 13:40:34.000000000 +0100 @@ -16,7 +16,7 @@ sample shuffle uniq uniqint uniqnum uniqstr zip zip_longest zip_shortest mesh mesh_longest mesh_shortest head tail pairs unpairs pairkeys pairvalues pairmap pairgrep pairfirst ); -our $VERSION = "1.60"; +our $VERSION = "1.61"; our $XS_VERSION = $VERSION; $VERSION =~ tr/_//d; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Scalar-List-Utils-1.60/lib/Scalar/Util.pm new/Scalar-List-Utils-1.61/lib/Scalar/Util.pm --- old/Scalar-List-Utils-1.60/lib/Scalar/Util.pm 2021-10-08 13:06:34.000000000 +0200 +++ new/Scalar-List-Utils-1.61/lib/Scalar/Util.pm 2022-02-16 13:40:34.000000000 +0100 @@ -17,7 +17,7 @@ dualvar isdual isvstring looks_like_number openhandle readonly set_prototype tainted ); -our $VERSION = "1.60"; +our $VERSION = "1.61"; $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.60/lib/Sub/Util.pm new/Scalar-List-Utils-1.61/lib/Sub/Util.pm --- old/Scalar-List-Utils-1.60/lib/Sub/Util.pm 2021-10-08 13:06:34.000000000 +0200 +++ new/Scalar-List-Utils-1.61/lib/Sub/Util.pm 2022-02-16 13:40:34.000000000 +0100 @@ -15,7 +15,7 @@ subname set_subname ); -our $VERSION = "1.60"; +our $VERSION = "1.61"; $VERSION =~ tr/_//d; require List::Util; # as it has the XS