Hello community,

here is the log from the commit of package openmpi2 for openSUSE:Leap:15.2 
checked in at 2020-04-08 12:48:14
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/openmpi2 (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.openmpi2.new.3248 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "openmpi2"

Wed Apr  8 12:48:14 2020 rev:54 rq:790992 version:2.1.6

Changes:
--------
--- /work/SRC/openSUSE:Leap:15.2/openmpi2/openmpi2.changes      2020-01-15 
15:36:59.567009507 +0100
+++ /work/SRC/openSUSE:Leap:15.2/.openmpi2.new.3248/openmpi2.changes    
2020-04-08 12:48:49.618356104 +0200
@@ -1,0 +2,12 @@
+Thu Mar 19 08:23:09 UTC 2020 - Nicolas Morey-Chaisemartin 
<[email protected]>
+
+- Drop different package string between SLES and Leap (jsc#SLE-11846)
+
+-------------------------------------------------------------------
+Wed Dec  4 15:57:47 UTC 2019 - Michel Normand <[email protected]>
+
+- Add openmpi_disable_opal_fifo_test_issue5470.patch
+  as long as upstream issue#5470 not solved for PowerPC
+  https://github.com/open-mpi/ompi/issues/5470
+
+-------------------------------------------------------------------

New:
----
  openmpi_disable_opal_fifo_test_issue5470.patch

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

Other differences:
------------------
++++++ openmpi2.spec ++++++
--- /var/tmp/diff_new_pack.eVF1F8/_old  2020-04-08 12:48:50.426356524 +0200
+++ /var/tmp/diff_new_pack.eVF1F8/_new  2020-04-08 12:48:50.430356527 +0200
@@ -1,7 +1,7 @@
 #
 # spec file for package openmpi2
 #
-# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany.
+# Copyright (c) 2020 SUSE LLC
 # Copyright (c) 2004-2005 The Trustees of Indiana University and Indiana
 #                         University Research and Technology
 #                         Corporation.  All rights reserved.
@@ -133,7 +133,7 @@
 Summary:        An implementation of MPI/SHMEM
 License:        BSD-3-Clause
 Group:          Development/Libraries/Parallel
-Url:            http://www.open-mpi.org/
+URL:            http://www.open-mpi.org/
 Source0:        openmpi-%{version}%{git_ver}.tar.bz2
 Source2:        openmpi2-rpmlintrc
 Source3:        macros.hpc-openmpi
@@ -142,6 +142,7 @@
 Patch0:         fix-rdma-component-selection.patch
 Patch1:         reproducible.patch
 Patch2:         add-gen-p5-chip-pci-id-to-ini-file.patch
+Patch3:         openmpi_disable_opal_fifo_test_issue5470.patch
 Provides:       mpi
 BuildRoot:      %{_tmppath}/%{name}-%{version}-build
 BuildRequires:  autoconf
@@ -404,6 +405,7 @@
 %endif
 %patch1 -p1
 %patch2
+%patch3 -p1
 # Live patch the VERSION file
 sed -i -e 's/^greek=.*$/greek=%{git_ver}/' -e 
's/^repo_rev=.*$/repo_rev=%{version}%{git_ver}/' \
        -e 's/^date=.*$/date="OpenMPI %{version} Distribution for SUSE"/' 
VERSION
@@ -452,7 +454,7 @@
 %endif
            --disable-silent-rules \
            --enable-mpirun-prefix-by-default \
-           --with-package-string="Open MPI Distribution for 
%{?is_opensuse:openSUSE}%{!?is_opensuse:SLE}"  \
+           --with-package-string="Open MPI Distribution for SUSE"  \
            --disable-wrapper-rpath
 make %{?_smp_mflags}
 

++++++ openmpi_disable_opal_fifo_test_issue5470.patch ++++++
From: Michel Normand <[email protected]>
Subject: openmpi disable opal fifo test issue5470
Date: Wed, 04 Dec 2019 16:55:45 +0100

openmpi disable opal fifo test for PowerPC as per upstream issue
https://github.com/open-mpi/ompi/issues/5470

Signed-off-by: Michel Normand <[email protected]>
---
 test/class/opal_fifo.c |    6 ++++++
 1 file changed, 6 insertions(+)

Index: openmpi-2.1.6.0.d9b9e59e5c5a/test/class/opal_fifo.c
===================================================================
--- openmpi-2.1.6.0.d9b9e59e5c5a.orig/test/class/opal_fifo.c
+++ openmpi-2.1.6.0.d9b9e59e5c5a/test/class/opal_fifo.c
@@ -121,6 +121,12 @@ int main (int argc, char *argv[]) {
     double timing;
     int rc;
 
+#ifdef __powerpc64__
+    printf ("disable test that hang as 
per\nhttps://github.com/open-mpi/ompi/issues/5470\n";);
+    test_success ();
+    return test_finalize ();
+#endif
+
     rc = opal_init_util (&argc, &argv);
     test_verify_int(OPAL_SUCCESS, rc);
     if (OPAL_SUCCESS != rc) {

Reply via email to