Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package apr for openSUSE:Factory checked in at 2026-07-02 20:06:20 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/apr (Old) and /work/SRC/openSUSE:Factory/.apr.new.1982 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "apr" Thu Jul 2 20:06:20 2026 rev:21 rq:1362671 version:1.7.6 Changes: -------- --- /work/SRC/openSUSE:Factory/apr/apr.changes 2025-07-03 12:11:46.496970704 +0200 +++ /work/SRC/openSUSE:Factory/.apr.new.1982/apr.changes 2026-07-02 20:07:13.076734896 +0200 @@ -1,0 +2,7 @@ +Wed Jun 3 12:19:29 UTC 2026 - Marcus Meissner <[email protected]> + +- Fixed state being reinitialized to NULL every loop, which the + test does not expect. + apr-fix-autoinit.patch + +------------------------------------------------------------------- New: ---- apr-fix-autoinit.patch ----------(New B)---------- New: test does not expect. apr-fix-autoinit.patch ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ apr.spec ++++++ --- /var/tmp/diff_new_pack.MiCVnx/_old 2026-07-02 20:07:15.380814534 +0200 +++ /var/tmp/diff_new_pack.MiCVnx/_new 2026-07-02 20:07:15.384814672 +0200 @@ -1,7 +1,7 @@ # # spec file for package apr # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2026 SUSE LLC and contributors # Copyright (c) 2025 Andreas Stieger <[email protected]> # # All modifications and additions to the file contributed by third parties @@ -31,6 +31,7 @@ Source0: https://www.apache.org/dist/apr/apr-%{version}.tar.bz2 Source1: https://www.apache.org/dist/apr/apr-%{version}.tar.bz2.asc Source2: https://downloads.apache.org/apr/KEYS#/%{name}.keyring +Patch1: apr-fix-autoinit.patch Patch5: apr-visibility.patch Patch9: apr-proc-mutex-map-anon.patch # prevent random failures of the testsuite (sendfile test) ++++++ apr-fix-autoinit.patch ++++++ Index: apr-1.7.6/test/teststr.c =================================================================== --- apr-1.7.6.orig/test/teststr.c +++ apr-1.7.6/test/teststr.c @@ -68,11 +68,11 @@ static void test_strtok(abts_case *tc, v } }; int curtc; + char *state; for (curtc = 0; curtc < sizeof cases / sizeof cases[0]; curtc++) { char *retval1, *retval2; char *str1, *str2; - char *state; str1 = apr_pstrdup(p, cases[curtc].input); str2 = apr_pstrdup(p, cases[curtc].input);
