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-08-17 18:16:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Scalar-List-Utils (Old)
 and      /work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.1521 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "perl-Scalar-List-Utils"

Wed Aug 17 18:16:40 2022 rev:25 rq:997355 version:1.63

Changes:
--------
--- 
/work/SRC/openSUSE:Factory/perl-Scalar-List-Utils/perl-Scalar-List-Utils.changes
    2022-03-29 18:13:50.699041262 +0200
+++ 
/work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.1521/perl-Scalar-List-Utils.changes
  2022-08-17 18:22:41.419121264 +0200
@@ -1,0 +2,13 @@
+Tue Aug  9 03:10:33 UTC 2022 - Tina M??ller <[email protected]>
+
+- updated to 1.63
+   see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
+
+  1.63 -- 2022-08-08
+       [BUGFIXES]
+        * Fix off-by-one in stack handling of head() / tail() (RT143905)
+        * Fix documentation copy-paste error about builtin::reftype
+        * Ensure exotic_names.t will work on EBCDIC platforms
+        * Add basic Github CI workflow
+
+-------------------------------------------------------------------

Old:
----
  Scalar-List-Utils-1.62.tar.gz

New:
----
  Scalar-List-Utils-1.63.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ perl-Scalar-List-Utils.spec ++++++
--- /var/tmp/diff_new_pack.xjXDwW/_old  2022-08-17 18:22:41.879122217 +0200
+++ /var/tmp/diff_new_pack.xjXDwW/_new  2022-08-17 18:22:41.887122234 +0200
@@ -18,7 +18,7 @@
 
 %define cpan_name Scalar-List-Utils
 Name:           perl-Scalar-List-Utils
-Version:        1.62
+Version:        1.63
 Release:        0
 License:        Artistic-1.0 OR GPL-1.0-or-later
 Summary:        Common Scalar and List utility subroutines

++++++ Scalar-List-Utils-1.62.tar.gz -> Scalar-List-Utils-1.63.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/Changes 
new/Scalar-List-Utils-1.63/Changes
--- old/Scalar-List-Utils-1.62/Changes  2022-03-17 16:32:18.000000000 +0100
+++ new/Scalar-List-Utils-1.63/Changes  2022-08-08 15:50:42.000000000 +0200
@@ -1,3 +1,10 @@
+1.63 -- 2022-08-08
+       [BUGFIXES]
+        * Fix off-by-one in stack handling of head() / tail() (RT143905)
+        * Fix documentation copy-paste error about builtin::reftype
+        * Ensure exotic_names.t will work on EBCDIC platforms
+        * Add basic Github CI workflow
+
 1.62 -- 2022-03-17
        [CHANGES]
         * Prepare for perl 5.35.10 release:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/ListUtil.xs 
new/Scalar-List-Utils-1.63/ListUtil.xs
--- old/Scalar-List-Utils-1.62/ListUtil.xs      2022-02-16 13:40:34.000000000 
+0100
+++ new/Scalar-List-Utils-1.63/ListUtil.xs      2022-08-08 15:50:42.000000000 
+0200
@@ -800,12 +800,12 @@
         }
     }
 
-    if ( end < start ) {
+    if ( end <= start ) {
         XSRETURN(0);
     }
     else {
         EXTEND( SP, end - start );
-        for ( i = start; i <= end; i++ ) {
+        for ( i = start; i < end; i++ ) {
             PUSHs( sv_2mortal( newSVsv( ST(i) ) ) );
         }
         XSRETURN( end - start );
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/META.json 
new/Scalar-List-Utils-1.63/META.json
--- old/Scalar-List-Utils-1.62/META.json        2022-03-17 16:37:11.000000000 
+0100
+++ new/Scalar-List-Utils-1.63/META.json        2022-08-08 15:53:36.000000000 
+0200
@@ -4,7 +4,7 @@
       "Graham Barr <[email protected]>"
    ],
    "dynamic_config" : 0,
-   "generated_by" : "ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter 
version 2.150010",
+   "generated_by" : "ExtUtils::MakeMaker version 7.64, 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.62",
-   "x_serialization_backend" : "JSON::PP version 4.06"
+   "version" : "1.63",
+   "x_serialization_backend" : "JSON::PP version 4.07"
 }
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/META.yml 
new/Scalar-List-Utils-1.63/META.yml
--- old/Scalar-List-Utils-1.62/META.yml 2022-03-17 16:37:11.000000000 +0100
+++ new/Scalar-List-Utils-1.63/META.yml 2022-08-08 15:53:35.000000000 +0200
@@ -8,7 +8,7 @@
 configure_requires:
   ExtUtils::MakeMaker: '0'
 dynamic_config: 0
-generated_by: 'ExtUtils::MakeMaker version 7.62, CPAN::Meta::Converter version 
2.150010'
+generated_by: 'ExtUtils::MakeMaker version 7.64, 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.62'
+version: '1.63'
 x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/lib/List/Util/XS.pm 
new/Scalar-List-Utils-1.63/lib/List/Util/XS.pm
--- old/Scalar-List-Utils-1.62/lib/List/Util/XS.pm      2022-03-17 
16:32:18.000000000 +0100
+++ new/Scalar-List-Utils-1.63/lib/List/Util/XS.pm      2022-08-08 
15:50:42.000000000 +0200
@@ -3,7 +3,7 @@
 use warnings;
 use List::Util;
 
-our $VERSION = "1.62";       # FIXUP
+our $VERSION = "1.63";       # FIXUP
 $VERSION =~ tr/_//d;         # FIXUP
 
 1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/lib/List/Util.pm 
new/Scalar-List-Utils-1.63/lib/List/Util.pm
--- old/Scalar-List-Utils-1.62/lib/List/Util.pm 2022-03-17 16:32:18.000000000 
+0100
+++ new/Scalar-List-Utils-1.63/lib/List/Util.pm 2022-08-08 15:50:42.000000000 
+0200
@@ -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.62";
+our $VERSION    = "1.63";
 our $XS_VERSION = $VERSION;
 $VERSION =~ tr/_//d;
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/lib/Scalar/Util.pm 
new/Scalar-List-Utils-1.63/lib/Scalar/Util.pm
--- old/Scalar-List-Utils-1.62/lib/Scalar/Util.pm       2022-03-17 
16:32:18.000000000 +0100
+++ new/Scalar-List-Utils-1.63/lib/Scalar/Util.pm       2022-08-08 
15:50:42.000000000 +0200
@@ -17,7 +17,7 @@
   dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
   tainted
 );
-our $VERSION    = "1.62";
+our $VERSION    = "1.63";
 $VERSION =~ tr/_//d;
 
 require List::Util; # List::Util loads the XS
@@ -145,7 +145,7 @@
 C<"REGEXP"> in all capitals.
 
 I<Since Perl version 5.35.7> an equivalent function is available as
-C<builtin::refaddr>.
+C<builtin::reftype>.
 
 =head2 weaken
 
@@ -230,7 +230,7 @@
     $weak = isweak($copy);              # false
 
 I<Since Perl version 5.35.7> an equivalent function is available as
-C<builtin::isweak>.
+C<builtin::is_weak>.
 
 =head1 OTHER FUNCTIONS
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/lib/Sub/Util.pm 
new/Scalar-List-Utils-1.63/lib/Sub/Util.pm
--- old/Scalar-List-Utils-1.62/lib/Sub/Util.pm  2022-03-17 16:32:18.000000000 
+0100
+++ new/Scalar-List-Utils-1.63/lib/Sub/Util.pm  2022-08-08 15:50:42.000000000 
+0200
@@ -15,7 +15,7 @@
   subname set_subname
 );
 
-our $VERSION    = "1.62";
+our $VERSION    = "1.63";
 $VERSION =~ tr/_//d;
 
 require List::Util; # as it has the XS
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/Scalar-List-Utils-1.62/t/exotic_names.t 
new/Scalar-List-Utils-1.63/t/exotic_names.t
--- old/Scalar-List-Utils-1.62/t/exotic_names.t 2022-02-16 13:40:34.000000000 
+0100
+++ new/Scalar-List-Utils-1.63/t/exotic_names.t 2022-08-08 15:50:42.000000000 
+0200
@@ -40,8 +40,8 @@
         ),
         (
             $ord > 255                    ? unpack('H*', pack 'C0U', $ord )
-            : ($ord > 0x1f and $ord < 0x7f) ? sprintf "%c", $ord
-            :                                 sprintf '\%o', $ord
+            : (chr $ord =~ /[[:print:]]/) ? sprintf "%c", $ord
+            :                               sprintf '\%o', $ord
         ),
     );
 

Reply via email to