Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package perl for openSUSE:Factory checked in at 2025-06-23 14:50:36 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/perl (Old) and /work/SRC/openSUSE:Factory/.perl.new.7067 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "perl" Mon Jun 23 14:50:36 2025 rev:141 rq:1287018 version:5.40.2 Changes: -------- --- /work/SRC/openSUSE:Factory/perl/perl.changes 2025-06-10 08:59:35.873295843 +0200 +++ /work/SRC/openSUSE:Factory/.perl.new.7067/perl.changes 2025-06-23 14:50:39.101213714 +0200 @@ -1,0 +2,6 @@ +Mon Jun 9 12:15:01 UTC 2025 - Bernhard Wiedemann <bwiedem...@suse.com> + +- Replace usage of %jobs for reproducible builds (boo#1237231) +- Add perl-fixed-uname.patch to not store kernel version (boo#1230137) + +------------------------------------------------------------------- New: ---- perl-fixed-uname.patch ----------(New B)---------- New:- Replace usage of %jobs for reproducible builds (boo#1237231) - Add perl-fixed-uname.patch to not store kernel version (boo#1230137) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ perl.spec ++++++ --- /var/tmp/diff_new_pack.o0O3Cy/_old 2025-06-23 14:50:40.001251371 +0200 +++ /var/tmp/diff_new_pack.o0O3Cy/_new 2025-06-23 14:50:40.005251538 +0200 @@ -56,6 +56,7 @@ # PATCH-FIX-UPSTREAM unmerged https://www.nntp.perl.org/group/perl.perl5.porters/2018/12/msg253240.html Patch18: perl-reproducible2.patch Patch19: perl-dirdup.diff +Patch20: perl-fixed-uname.patch BuildRequires: gdbm-devel BuildRequires: libbz2-devel BuildRequires: ncurses-devel @@ -138,6 +139,7 @@ %patch -P 12 -p1 %patch -P 18 %patch -P 19 +%patch -P20 -p1 %build %define _lto_cflags %{nil} @@ -181,7 +183,8 @@ echo 'print "1..0\n";' > t/op/magic.t %endif %if "%{name}" == "perl-testsuite" -TEST_JOBS="%{jobs}" make %{?_smp_mflags} test +export TEST_JOBS="$(echo %{?_smp_mflags} | cut -c 3-)" +make %{?_smp_mflags} test %endif %install ++++++ perl-fixed-uname.patch ++++++ diff --git a/Configure b/Configure index 72c3794..7c2edf6 100755 --- a/Configure +++ b/Configure @@ -3541,7 +3541,7 @@ EOM ;; linux) osname=linux case "$3" in - *) osvers="$3" ;; + *) osvers="6.14.0" ;; esac $test -f /system/lib/libandroid.so && osname=linux-android ;;