Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package openucx for openSUSE:Factory checked in at 2023-03-07 16:48:49 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/openucx (Old) and /work/SRC/openSUSE:Factory/.openucx.new.31432 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "openucx" Tue Mar 7 16:48:49 2023 rev:25 rq:1069629 version:1.13.1 Changes: -------- --- /work/SRC/openSUSE:Factory/openucx/openucx.changes 2023-01-17 17:34:59.653069853 +0100 +++ /work/SRC/openSUSE:Factory/.openucx.new.31432/openucx.changes 2023-03-07 16:49:04.421186507 +0100 @@ -1,0 +2,5 @@ +Mon Mar 6 12:18:52 UTC 2023 - Martin Liška <mli...@suse.cz> + +- Add upstream gcc13-fix.patch fix. + +------------------------------------------------------------------- New: ---- gcc13-fix.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ openucx.spec ++++++ --- /var/tmp/diff_new_pack.NEHTCr/_old 2023-03-07 16:49:05.565192527 +0100 +++ /var/tmp/diff_new_pack.NEHTCr/_new 2023-03-07 16:49:05.569192549 +0100 @@ -30,6 +30,7 @@ Patch1: openucx-s390x-support.patch Patch2: ucm-fix-UCX_MEM_MALLOC_RELOC.patch Patch3: UCS-DEBUG-replace-PTR-with-void.patch +Patch4: gcc13-fix.patch BuildRequires: autoconf >= 2.63 BuildRequires: automake >= 1.10 BuildRequires: binutils-devel @@ -139,6 +140,7 @@ %endif %patch2 %patch3 +%patch4 -p1 %build autoreconf -fi ++++++ gcc13-fix.patch ++++++ >From 8f70e898b43d1bde1ff3fae56bf0ac5aac285997 Mon Sep 17 00:00:00 2001 From: Sam James <s...@gentoo.org> Date: Fri, 9 Sep 2022 11:35:03 +0100 Subject: [PATCH] TEST/SOCKADDR: Add missing <cstdint> include for GCC 13 Closes: https://github.com/openucx/ucx/issues/8347 Signed-off-by: Sam James <s...@gentoo.org> --- test/apps/sockaddr/sa_util.h | 1 + 1 file changed, 1 insertion(+) diff --git a/test/apps/sockaddr/sa_util.h b/test/apps/sockaddr/sa_util.h index 90c9649443f..c77ccc9a849 100644 --- a/test/apps/sockaddr/sa_util.h +++ b/test/apps/sockaddr/sa_util.h @@ -7,6 +7,7 @@ #ifndef SA_UTIL_H_ #define SA_UTIL_H_ +#include <cstdint> #include <iostream> #include <sstream> #include <string>