Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl for openSUSE:Factory checked in at 2026-07-20 09:56:43 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl (Old) and /work/SRC/openSUSE:Factory/.perl.new.24530 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl" Mon Jul 20 09:56:43 2026 rev:144 rq:1366325 version:5.44.0 Changes: -------- --- /work/SRC/openSUSE:Factory/perl/perl.changes 2026-05-04 12:48:14.292439174 +0200 +++ /work/SRC/openSUSE:Factory/.perl.new.24530/perl.changes 2026-07-20 09:56:47.106971672 +0200 @@ -1,0 +2,11 @@ +Thu Jul 16 11:04:28 CEST 2026 - Michael Schroeder <[email protected]> + +- update to 5.44.0 + * support named parameters in signatures + * support aliased refs in mult-var foreach + * enhanced /xx regexp pattern modifier + * unicode 17.0 is supported + * use of getentropy() for PRNG initialization + * refreshed patches: perl-HiRes.t-timeout.diff + +------------------------------------------------------------------- Old: ---- perl-5.42.1.tar.xz New: ---- perl-5.44.0.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl.spec ++++++ --- /var/tmp/diff_new_pack.9QHGtI/_old 2026-07-20 09:56:48.299011784 +0200 +++ /var/tmp/diff_new_pack.9QHGtI/_new 2026-07-20 09:56:48.303011919 +0200 @@ -25,11 +25,11 @@ %define versionlist_provides() %{lua:for i, n in ipairs(arg) do ; print(" perl(:MODULE_COMPAT_"..n..")") ; end} -%define pversion 5.42.1 +%define pversion 5.44.0 # set to nil when equal to pversion -%global versionlist 5.42.0 +%global versionlist %nil Name: perl%{?name_suffix} -Version: 5.42.1 +Version: 5.44.0 Release: 0 Summary: The Perl interpreter License: Artistic-1.0 OR GPL-1.0-or-later @@ -138,7 +138,7 @@ %patch -P 9 -p1 %patch -P 12 -p1 %patch -P 18 -%patch -P20 -p1 +%patch -P 20 -p1 %build %define _lto_cflags %{nil} ++++++ _scmsync.obsinfo ++++++ --- /var/tmp/diff_new_pack.9QHGtI/_old 2026-07-20 09:56:48.367014073 +0200 +++ /var/tmp/diff_new_pack.9QHGtI/_new 2026-07-20 09:56:48.371014207 +0200 @@ -1,6 +1,6 @@ -mtime: 1773061683 -commit: f6d15c75dc68db254387d8eb3e252cbf02e10d07ab98ce25226d4bb3a6da96ed +mtime: 1784193943 +commit: 342567f6f5d8a69e4b781c9442913fbf214d24ab19f000ff3e8abf363e28a73e url: https://src.opensuse.org/perl/perl -revision: f6d15c75dc68db254387d8eb3e252cbf02e10d07ab98ce25226d4bb3a6da96ed +revision: 342567f6f5d8a69e4b781c9442913fbf214d24ab19f000ff3e8abf363e28a73e projectscmsync: https://src.opensuse.org/perl/_ObsPrj ++++++ build.specials.obscpio ++++++ ++++++ 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 2026-07-16 11:25:43.000000000 +0200 @@ -0,0 +1 @@ +.osc ++++++ perl-5.42.1.tar.xz -> perl-5.44.0.tar.xz ++++++ /work/SRC/openSUSE:Factory/perl/perl-5.42.1.tar.xz /work/SRC/openSUSE:Factory/.perl.new.24530/perl-5.44.0.tar.xz differ: char 15, line 1 ++++++ perl-HiRes.t-timeout.diff ++++++ --- /var/tmp/diff_new_pack.9QHGtI/_old 2026-07-20 09:56:48.571020937 +0200 +++ /var/tmp/diff_new_pack.9QHGtI/_new 2026-07-20 09:56:48.575021072 +0200 @@ -1,5 +1,5 @@ ---- ./dist/Time-HiRes/t/alarm.t.orig 2020-06-14 23:01:25.000000000 +0000 -+++ ./dist/Time-HiRes/t/alarm.t 2020-10-27 10:52:36.824741858 +0000 +--- dist/Time-HiRes/t/alarm.t.orig 2026-06-22 14:48:00.000000000 +0000 ++++ dist/Time-HiRes/t/alarm.t 2026-07-16 09:05:28.465359987 +0000 @@ -8,7 +8,7 @@ BEGIN { require_ok "Time::HiRes"; } use Config; @@ -8,9 +8,9 @@ +my $limit = 0.60; # 25% is acceptable slosh for testing timers my $xdefine = ''; - if (open(XDEFINE, "<", "xdefine")) { ---- ./dist/Time-HiRes/t/clock.t.orig 2020-06-14 23:01:25.000000000 +0000 -+++ ./dist/Time-HiRes/t/clock.t 2020-10-27 10:52:36.824741858 +0000 + if (open(my $fh, "<", "xdefine")) { +--- dist/Time-HiRes/t/clock.t.orig 2026-06-22 14:48:00.000000000 +0000 ++++ dist/Time-HiRes/t/clock.t 2026-07-16 09:05:28.465359987 +0000 @@ -29,7 +29,7 @@ printf("# have_clock = %d\n", # completes fine with (say) 30% slosh, and fail otherwise. If you do that, # consider changing over to test.pl at the same time. @@ -20,8 +20,8 @@ SKIP: { skip "no clock_gettime", 1 ---- ./dist/Time-HiRes/t/itimer.t.orig 2020-06-14 23:01:25.000000000 +0000 -+++ ./dist/Time-HiRes/t/itimer.t 2020-10-27 10:52:36.824741858 +0000 +--- dist/Time-HiRes/t/itimer.t.orig 2026-06-22 14:48:00.000000000 +0000 ++++ dist/Time-HiRes/t/itimer.t 2026-07-16 09:05:28.465359987 +0000 @@ -29,7 +29,7 @@ use Test::More tests => 2; BEGIN { push @INC, '.' } use t::Watchdog; @@ -31,8 +31,8 @@ my $i = 3; my $r = [Time::HiRes::gettimeofday()]; ---- ./dist/Time-HiRes/t/usleep.t.orig 2020-06-14 23:01:25.000000000 +0000 -+++ ./dist/Time-HiRes/t/usleep.t 2020-10-27 10:52:36.824741858 +0000 +--- dist/Time-HiRes/t/usleep.t.orig 2026-06-22 14:48:00.000000000 +0000 ++++ dist/Time-HiRes/t/usleep.t 2026-07-16 09:05:28.465359987 +0000 @@ -16,7 +16,7 @@ eval { Time::HiRes::usleep(-2) }; like $@, qr/::usleep\(-2\): negative time not invented yet/, "negative time error";
