Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package qpid-proton for openSUSE:Factory checked in at 2026-06-02 16:01:27 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/qpid-proton (Old) and /work/SRC/openSUSE:Factory/.qpid-proton.new.1937 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "qpid-proton" Tue Jun 2 16:01:27 2026 rev:30 rq:1356389 version:0.38.0 Changes: -------- --- /work/SRC/openSUSE:Factory/qpid-proton/qpid-proton.changes 2026-05-30 22:54:40.035731965 +0200 +++ /work/SRC/openSUSE:Factory/.qpid-proton.new.1937/qpid-proton.changes 2026-06-02 16:01:57.993075563 +0200 @@ -1,0 +2,7 @@ +Mon Jun 1 12:06:32 UTC 2026 - Josef Melcr <[email protected]> + +- Added patch: + * gcc16.patch + + Fix build with GCC 16 (bsc#1256981) + +------------------------------------------------------------------- New: ---- gcc16.patch ----------(New B)---------- New:- Added patch: * gcc16.patch + Fix build with GCC 16 (bsc#1256981) ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ qpid-proton.spec ++++++ --- /var/tmp/diff_new_pack.1lApTB/_old 2026-06-02 16:01:58.913113725 +0200 +++ /var/tmp/diff_new_pack.1lApTB/_new 2026-06-02 16:01:58.917113891 +0200 @@ -39,6 +39,7 @@ # PATCH-FIX-OPENSUSE qpid-pythonbuild.patch -- disable compiling with wrong interpreter Patch1: qpid-pythonbuild.patch Patch2: qpid-proton-fix_linking.patch +Patch3: gcc16.patch BuildRequires: %{python_module devel} BuildRequires: %{python_module setuptools} BuildRequires: %{python_module xml} ++++++ gcc16.patch ++++++ Index: qpid-proton-0.38.0/cpp/examples/flow_control.cpp =================================================================== --- qpid-proton-0.38.0.orig/cpp/examples/flow_control.cpp +++ qpid-proton-0.38.0/cpp/examples/flow_control.cpp @@ -63,6 +63,7 @@ class flow_sender : public proton::messa void send_available_messages(proton::sender &s) { for (int i = sequence; available && s.credit() > 0; i++) { + (void)i; std::ostringstream mbody; mbody << "flow_sender message " << sequence++; proton::message m(mbody.str());
