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 2025-10-23 16:35:21
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/perl-Scalar-List-Utils (Old)
and /work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.1980 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl-Scalar-List-Utils"
Thu Oct 23 16:35:21 2025 rev:29 rq:1312560 version:1.700.0
Changes:
--------
---
/work/SRC/openSUSE:Factory/perl-Scalar-List-Utils/perl-Scalar-List-Utils.changes
2025-04-28 16:16:31.865645283 +0200
+++
/work/SRC/openSUSE:Factory/.perl-Scalar-List-Utils.new.1980/perl-Scalar-List-Utils.changes
2025-10-23 16:35:32.645583506 +0200
@@ -1,0 +2,11 @@
+Tue Oct 14 12:23:56 UTC 2025 - Tina Müller <[email protected]>
+
+- updated to 1.700.0 (1.70)
+ see /usr/share/doc/packages/perl-Scalar-List-Utils/Changes
+
+ 1.70 -- 2025-07-30
+ [CHANGES]
+ * Reïnstate handling of apostrophy in package names, as it was added
+ back to perl at version 5.41.6
+
+-------------------------------------------------------------------
Old:
----
Scalar-List-Utils-1.69.tar.gz
New:
----
README.md
Scalar-List-Utils-1.70.tar.gz
_scmsync.obsinfo
build.specials.obscpio
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ perl-Scalar-List-Utils.spec ++++++
--- /var/tmp/diff_new_pack.8wEUux/_old 2025-10-23 16:35:34.065643435 +0200
+++ /var/tmp/diff_new_pack.8wEUux/_new 2025-10-23 16:35:34.081644110 +0200
@@ -1,7 +1,7 @@
#
# spec file for package perl-Scalar-List-Utils
#
-# Copyright (c) 2025 SUSE LLC
+# Copyright (c) 2025 SUSE LLC and contributors
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,22 +18,23 @@
%define cpan_name Scalar-List-Utils
Name: perl-Scalar-List-Utils
-Version: 1.690.0
+Version: 1.700.0
Release: 0
-# 1.69 -> normalize -> 1.690.0
-%define cpan_version 1.69
+# 1.70 -> normalize -> 1.700.0
+%define cpan_version 1.70
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}-%{cpan_version}.tar.gz
Source1: cpanspec.yml
+Source100: README.md
BuildRequires: perl
BuildRequires: perl-macros
-Provides: perl(List::Util) = 1.69
-Provides: perl(List::Util::XS) = 1.69
+Provides: perl(List::Util) = 1.70
+Provides: perl(List::Util::XS) = 1.70
Provides: perl(Scalar::List::Utils) = %{version}
-Provides: perl(Scalar::Util) = 1.69
-Provides: perl(Sub::Util) = 1.69
+Provides: perl(Scalar::Util) = 1.70
+Provides: perl(Sub::Util) = 1.70
%undefine __perllib_provides
%{perl_requires}
++++++ README.md ++++++
## Build Results
Current state of perl in openSUSE:Factory is

The current state of perl in the devel project build (devel:languages:perl)

++++++ Scalar-List-Utils-1.69.tar.gz -> Scalar-List-Utils-1.70.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/Changes
new/Scalar-List-Utils-1.70/Changes
--- old/Scalar-List-Utils-1.69/Changes 2025-04-01 21:54:29.000000000 +0200
+++ new/Scalar-List-Utils-1.70/Changes 2025-07-30 10:23:39.000000000 +0200
@@ -1,3 +1,8 @@
+1.70 -- 2025-07-30
+ [CHANGES]
+ * Reïnstate handling of apostrophy in package names, as it was added
+ back to perl at version 5.41.6
+
1.69 -- 2025-04-01
[CHANGES]
* Always allow `isvstring` to be exported even on Perl 5.6, where it
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/ListUtil.xs
new/Scalar-List-Utils-1.70/ListUtil.xs
--- old/Scalar-List-Utils-1.69/ListUtil.xs 2025-04-01 21:54:29.000000000
+0200
+++ new/Scalar-List-Utils-1.70/ListUtil.xs 2025-07-30 10:20:00.000000000
+0200
@@ -1951,7 +1951,7 @@
STRLEN namelen;
const char* nameptr = SvPV(name, namelen);
int utf8flag = SvUTF8(name);
-#if PERL_VERSION_LT(5, 41, 3)
+#if PERL_VERSION_LT(5, 41, 3) || PERL_VERSION_GT(5, 41, 5)
int quotes_seen = 0;
bool need_subst = FALSE;
#endif
@@ -1977,12 +1977,12 @@
if (s > nameptr && *s == ':' && s[-1] == ':') {
end = s - 1;
begin = ++s;
-#if PERL_VERSION_LT(5, 41, 3)
+#if PERL_VERSION_LT(5, 41, 3) || PERL_VERSION_GT(5, 41, 5)
if (quotes_seen)
need_subst = TRUE;
#endif
}
-#if PERL_VERSION_LT(5, 41, 3)
+#if PERL_VERSION_LT(5, 41, 3) || PERL_VERSION_GT(5, 41, 5)
else if (s > nameptr && *s != '\0' && s[-1] == '\'') {
end = s - 1;
begin = s;
@@ -1993,7 +1993,7 @@
}
s--;
if (end) {
-#if PERL_VERSION_LT(5, 41, 3)
+#if PERL_VERSION_LT(5, 41, 3) || PERL_VERSION_GT(5, 41, 5)
SV* tmp;
if (need_subst) {
STRLEN length = end - nameptr + quotes_seen - (*end == '\'' ? 1 :
0);
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/META.json
new/Scalar-List-Utils-1.70/META.json
--- old/Scalar-List-Utils-1.69/META.json 2025-04-01 21:58:49.000000000
+0200
+++ new/Scalar-List-Utils-1.70/META.json 2025-07-30 10:23:58.000000000
+0200
@@ -53,6 +53,6 @@
"web" : "https://github.com/Dual-Life/Scalar-List-Utils"
}
},
- "version" : "1.69",
+ "version" : "1.70",
"x_serialization_backend" : "JSON::PP version 4.16"
}
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/META.yml
new/Scalar-List-Utils-1.70/META.yml
--- old/Scalar-List-Utils-1.69/META.yml 2025-04-01 21:58:49.000000000 +0200
+++ new/Scalar-List-Utils-1.70/META.yml 2025-07-30 10:23:58.000000000 +0200
@@ -23,5 +23,5 @@
resources:
bugtracker:
https://rt.cpan.org/Public/Dist/Display.html?Name=Scalar-List-Utils
repository: https://github.com/Dual-Life/Scalar-List-Utils.git
-version: '1.69'
+version: '1.70'
x_serialization_backend: 'CPAN::Meta::YAML version 0.018'
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/lib/List/Util/XS.pm
new/Scalar-List-Utils-1.70/lib/List/Util/XS.pm
--- old/Scalar-List-Utils-1.69/lib/List/Util/XS.pm 2025-04-01
21:54:29.000000000 +0200
+++ new/Scalar-List-Utils-1.70/lib/List/Util/XS.pm 2025-07-30
10:23:39.000000000 +0200
@@ -3,7 +3,7 @@
use warnings;
use List::Util;
-our $VERSION = "1.69"; # FIXUP
+our $VERSION = "1.70"; # FIXUP
$VERSION =~ tr/_//d; # FIXUP
1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/lib/List/Util.pm
new/Scalar-List-Utils-1.70/lib/List/Util.pm
--- old/Scalar-List-Utils-1.69/lib/List/Util.pm 2025-04-01 21:54:29.000000000
+0200
+++ new/Scalar-List-Utils-1.70/lib/List/Util.pm 2025-07-30 10:23:39.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.69";
+our $VERSION = "1.70";
our $XS_VERSION = $VERSION;
$VERSION =~ tr/_//d;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/lib/Scalar/List/Utils.pm
new/Scalar-List-Utils-1.70/lib/Scalar/List/Utils.pm
--- old/Scalar-List-Utils-1.69/lib/Scalar/List/Utils.pm 2025-04-01
21:54:29.000000000 +0200
+++ new/Scalar-List-Utils-1.70/lib/Scalar/List/Utils.pm 2025-07-30
10:23:39.000000000 +0200
@@ -2,7 +2,7 @@
use strict;
use warnings;
-our $VERSION = "1.69";
+our $VERSION = "1.70";
$VERSION =~ tr/_//d;
1;
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/Scalar-List-Utils-1.69/lib/Scalar/Util.pm
new/Scalar-List-Utils-1.70/lib/Scalar/Util.pm
--- old/Scalar-List-Utils-1.69/lib/Scalar/Util.pm 2025-04-01
21:54:29.000000000 +0200
+++ new/Scalar-List-Utils-1.70/lib/Scalar/Util.pm 2025-07-30
10:23:39.000000000 +0200
@@ -17,7 +17,7 @@
dualvar isdual isvstring looks_like_number openhandle readonly set_prototype
tainted
);
-our $VERSION = "1.69";
+our $VERSION = "1.70";
$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.69/lib/Sub/Util.pm
new/Scalar-List-Utils-1.70/lib/Sub/Util.pm
--- old/Scalar-List-Utils-1.69/lib/Sub/Util.pm 2025-04-01 21:54:29.000000000
+0200
+++ new/Scalar-List-Utils-1.70/lib/Sub/Util.pm 2025-07-30 10:23:39.000000000
+0200
@@ -15,7 +15,7 @@
subname set_subname
);
-our $VERSION = "1.69";
+our $VERSION = "1.70";
$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.69/t/exotic_names.t
new/Scalar-List-Utils-1.70/t/exotic_names.t
--- old/Scalar-List-Utils-1.69/t/exotic_names.t 2024-09-19 22:08:01.000000000
+0200
+++ new/Scalar-List-Utils-1.70/t/exotic_names.t 2025-07-30 10:20:00.000000000
+0200
@@ -45,7 +45,7 @@
),
);
- $expected =~ s/'/::/g if $] < 5.041_003;
+ $expected =~ s/'/::/g if $] < 5.041_003 || $] >= 5.041_006;
# this is apparently how things worked before 5.16
utf8::encode($expected) if $] < 5.016 and $ord > 255;
@@ -71,8 +71,8 @@
# 5.14 is the first perl to start properly handling \0 in identifiers
($] >= 5.014 ? ( 0 ) : ()),
1 .. 38,
- # single quote ' separators are deprecated in 5.37.9
- ($] < 5.037009 ? ( 39 ) : ()),
+ # single quote ' separators are deprecated in 5.37.9, removed in 5.41.3,
readded in 5.41.6
+ ($] < 5.037_009 || $] >= 5.041_006 ? ( 39 ) : ()),
40 .. 255,
# Unicode in 5.6 is not sane (crashes etc)
($] >= 5.008 ? (
@@ -85,7 +85,7 @@
my $legal_ident_char = join('',
"A-Z_a-z0-9",
- ($] < 5.037009 ? q['] : ()),
+ ($] < 5.037_009 || $] >= 5.041_006 ? q['] : ()),
($] > 5.008 ? (
map chr, 0x100, 0x498
) : ()),
++++++ _scmsync.obsinfo ++++++
mtime: 1760444636
commit: 7026e7ad22ef0a52fa439eecd5d551aee6ec1387882d9ead5f01f59bd6e664e8
url: https://src.opensuse.org/perl/perl-Scalar-List-Utils.git
revision: 7026e7ad22ef0a52fa439eecd5d551aee6ec1387882d9ead5f01f59bd6e664e8
projectscmsync: https://src.opensuse.org/perl/_ObsPrj
++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore 1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore 2025-10-14 16:19:51.000000000 +0200
@@ -0,0 +1 @@
+.osc