Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package dapl for openSUSE:Factory checked in at 2025-07-11 21:31:09 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/dapl (Old) and /work/SRC/openSUSE:Factory/.dapl.new.7373 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "dapl" Fri Jul 11 21:31:09 2025 rev:14 rq:1292065 version:2.1.10 Changes: -------- --- /work/SRC/openSUSE:Factory/dapl/dapl.changes 2024-09-06 17:18:36.448047114 +0200 +++ /work/SRC/openSUSE:Factory/.dapl.new.7373/dapl.changes 2025-07-11 21:33:41.893935848 +0200 @@ -1,0 +2,5 @@ +Fri Jul 11 06:32:56 UTC 2025 - Nicolas Morey <nicolas.mo...@suse.com> + +- Add GCC15-C23-support.patch to fix compilation with GCC >= 15. + +------------------------------------------------------------------- New: ---- GCC15-C23-support.patch ----------(New B)---------- New: - Add GCC15-C23-support.patch to fix compilation with GCC >= 15. ----------(New E)---------- ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ dapl.spec ++++++ --- /var/tmp/diff_new_pack.I4rlu5/_old 2025-07-11 21:33:42.633966288 +0200 +++ /var/tmp/diff_new_pack.I4rlu5/_new 2025-07-11 21:33:42.633966288 +0200 @@ -1,7 +1,7 @@ # -# spec file +# spec file for package dapl # -# Copyright (c) 2024 SUSE LLC +# Copyright (c) 2025 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -41,6 +41,7 @@ Patch7: ucm-mcm-fix-backlog-parameter-for-socket.patch Patch8: reproducible.patch Patch9: openib-add-missing-include.patch +Patch10: GCC15-C23-support.patch URL: http://www.openfabrics.org BuildRoot: %{_tmppath}/%{name}-%{version}-build BuildRequires: autoconf @@ -61,7 +62,7 @@ %endif # Requires(post): /sbin/ldconfig -Requires(postun):/sbin/ldconfig +Requires(postun): /sbin/ldconfig Requires(post): sed Requires(post): coreutils ++++++ GCC15-C23-support.patch ++++++ commit ba8260733e4929383c447c38c6a7a755b20a43a9 Author: Nicolas Morey <nmo...@suse.com> Date: Fri Jul 11 08:30:59 2025 +0200 GCC15 C23 support diff --git test/dapltest/mdep/linux/dapl_mdep_user.h test/dapltest/mdep/linux/dapl_mdep_user.h index 2eeed9119adc..78fa4183d29c 100755 --- test/dapltest/mdep/linux/dapl_mdep_user.h +++ test/dapltest/mdep/linux/dapl_mdep_user.h @@ -52,11 +52,13 @@ /* Default Device Name */ #define DT_MdepDeviceName "ofa-v2-ib0" +#if __STDC_VERSION__ < 202300L /* Boolean */ typedef int bool; #define true (1) #define false (0) +#endif #ifndef __BASE_FILE__ #define __BASE_FILE__ __FILE__