Script 'mail_helper' called by obssrc
Hello community,

here is the log from the commit of package openmpi5 for openSUSE:Factory 
checked in at 2026-06-03 20:21:40
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/openmpi5 (Old)
 and      /work/SRC/openSUSE:Factory/.openmpi5.new.1937 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openmpi5"

Wed Jun  3 20:21:40 2026 rev:19 rq:1356802 version:5.0.10

Changes:
--------
--- /work/SRC/openSUSE:Factory/openmpi5/openmpi5.changes        2026-02-27 
17:08:35.312828415 +0100
+++ /work/SRC/openSUSE:Factory/.openmpi5.new.1937/openmpi5.changes      
2026-06-03 20:22:43.789953458 +0200
@@ -1,0 +2,7 @@
+Tue Jun  2 15:49:47 UTC 2026 - Josef Melcr <[email protected]>
+
+- Backport upstream patches for GCC16 support
+  - gcc16-initializers.patch
+  - gcc16-inline.patch
+
+-------------------------------------------------------------------

New:
----
  gcc16-initializers.patch
  gcc16-inline.patch

----------(New B)----------
  New:- Backport upstream patches for GCC16 support
  - gcc16-initializers.patch
  - gcc16-inline.patch
  New:  - gcc16-initializers.patch
  - gcc16-inline.patch
----------(New E)----------

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ openmpi5.spec ++++++
--- /var/tmp/diff_new_pack.oHiesE/_old  2026-06-03 20:22:45.206012202 +0200
+++ /var/tmp/diff_new_pack.oHiesE/_new  2026-06-03 20:22:45.206012202 +0200
@@ -87,6 +87,8 @@
 Source5:        mpivars.csh
 Source100:      README.md
 Patch1:         romio341-backport-fixes-from-mpich.patch
+Patch2:         gcc16-inline.patch
+Patch3:         gcc16-initializers.patch
 Provides:       mpi
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 # Exclude 32b archs
@@ -306,7 +308,7 @@
 #############################################################################
 %prep
 echo FLAVOR %{flavor}
-%autosetup -p0 -n openmpi-%{version}
+%autosetup -p1 -n openmpi-%{version}
 
 # Live patch the VERSION file
 sed -i -e 's/^greek=.*$/greek=/' -e 's/^repo_rev=.*$/repo_rev=%{version}/' \

++++++ _scmsync.obsinfo ++++++
--- /var/tmp/diff_new_pack.oHiesE/_old  2026-06-03 20:22:45.270014857 +0200
+++ /var/tmp/diff_new_pack.oHiesE/_new  2026-06-03 20:22:45.274015023 +0200
@@ -1,6 +1,6 @@
-mtime: 1772043322
-commit: 62a32846312ac273d8ac9824cdde2e9c2d81f1701bce46d7fcb93084e8542aca
-url: https://src.opensuse.org/HPC/openmpi5.git
-revision: 62a32846312ac273d8ac9824cdde2e9c2d81f1701bce46d7fcb93084e8542aca
+mtime: 1780415463
+commit: 043fae3243b7470ac43058fb9873253eb64c213d38482b355dc230c16f81278a
+url: https://src.opensuse.org/HPC/openmpi5
+revision: 043fae3243b7470ac43058fb9873253eb64c213d38482b355dc230c16f81278a
 projectscmsync: https://src.opensuse.org/HPC/_ObsPrj
 

++++++ build.specials.obscpio ++++++

++++++ build.specials.obscpio ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/.gitignore new/.gitignore
--- old/.gitignore      1970-01-01 01:00:00.000000000 +0100
+++ new/.gitignore      2026-06-02 17:51:03.000000000 +0200
@@ -0,0 +1 @@
+.osc

++++++ gcc16-initializers.patch ++++++
>From b878c7d974dae767246ad20ef9124a331d0f59a4 Mon Sep 17 00:00:00 2001
From: Orion Poplawski <[email protected]>
Date: Thu, 5 Mar 2026 08:48:12 -0700
Subject: [PATCH] Fix brace initialization (fixes #13757)

Signed-off-by: Orion Poplawski <[email protected]>
---
 oshmem/mca/memheap/base/memheap_base_frame.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/oshmem/mca/memheap/base/memheap_base_frame.c 
b/oshmem/mca/memheap/base/memheap_base_frame.c
index 53a71b27a9e..82658e09791 100644
--- a/oshmem/mca/memheap/base/memheap_base_frame.c
+++ b/oshmem/mca/memheap/base/memheap_base_frame.c
@@ -33,9 +33,9 @@
 
 int mca_memheap_base_output = -1;
 int mca_memheap_base_key_exchange = 1;
-opal_list_t mca_memheap_base_components_opened = {{0}};
+opal_list_t mca_memheap_base_components_opened = {};
 int mca_memheap_base_already_opened = 0;
-mca_memheap_map_t mca_memheap_base_map = {{{{0}}}};
+mca_memheap_map_t mca_memheap_base_map = {};
 int mca_memheap_num_segments_warn = 32;
 
 static int mca_memheap_base_register(mca_base_register_flag_t flags)


++++++ gcc16-inline.patch ++++++
>From aa024ac73d624611cfe3af6f541b5d28dedf07bb Mon Sep 17 00:00:00 2001
From: Orion Poplawski <[email protected]>
Date: Thu, 5 Mar 2026 08:32:13 -0700
Subject: [PATCH] Drop __opal_attribute_always_inline__ for
 mca_part_persist_start (fixes #13721)

Signed-off-by: Orion Poplawski <[email protected]>
---
 ompi/mca/part/persist/part_persist.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ompi/mca/part/persist/part_persist.h 
b/ompi/mca/part/persist/part_persist.h
index ccc8f8f1971..86fb9bac42d 100644
--- a/ompi/mca/part/persist/part_persist.h
+++ b/ompi/mca/part/persist/part_persist.h
@@ -490,7 +490,7 @@ mca_part_persist_psend_init(const void* buf,
     return err;
 }
 
-__opal_attribute_always_inline__ static inline int
+static inline int
 mca_part_persist_start(size_t count, ompi_request_t** requests)
 {
     int err = OMPI_SUCCESS;


++++++ romio341-backport-fixes-from-mpich.patch ++++++
--- /var/tmp/diff_new_pack.oHiesE/_old  2026-06-03 20:22:45.510024814 +0200
+++ /var/tmp/diff_new_pack.oHiesE/_new  2026-06-03 20:22:45.514024980 +0200
@@ -8,10 +8,10 @@
     
     Signed-off-by: Nicolas Morey <[email protected]>
 
-diff --git 3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c 
3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c
+diff --git a/3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c 
b/3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c
 index c0e991c68d85..147bffad799d 100644
---- 3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c
-+++ 3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c
+--- a/3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c
++++ b/3rd-party/romio341/mpl/src/sock/mpl_sockaddr.c
 @@ -140,6 +140,7 @@ int MPL_get_sockaddr_direct(int type, MPL_sockaddr_t * 
p_addr)
          return 0;
      } else {

Reply via email to