Compare commits

...

10 Commits

Author SHA1 Message Date
openeuler-ci-bot
a46085f8db
!30 update to version 5.0.3 for fix remote execution command of openmpi
From: @wk333 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2024-12-27 00:42:31 +00:00
wk333
f4c028d9dc update to version 5.0.3 for fix remote execution command of openmpi 2024-12-26 20:09:50 +08:00
openeuler-ci-bot
ab3fd9081d
!27 update package to version 4.2.9
From: @Venland 
Reviewed-by: @dillon_chen 
Signed-off-by: @dillon_chen
2024-02-27 09:32:40 +00:00
lwg
618dae9f70 update package to version 4.2.9
Signed-off-by: lwg <liweiganga@uniontech.com>
2024-02-23 16:10:53 +08:00
openeuler-ci-bot
ad5aa3a5d3
!24 Add Obsoletes pmix-pmi pmix-pmi-devel
From: @lyn1001 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2023-09-21 11:49:43 +00:00
lyn1001
ef6934bcda Add Obsoletes pmix-pmi pmix-pmi-devel 2023-09-21 19:17:37 +08:00
openeuler-ci-bot
a2a65dc2c2
!15 Update to 4.2.6 for fix CVE-2023-41915
From: @starlet-dx 
Reviewed-by: @caodongxia 
Signed-off-by: @caodongxia
2023-09-18 12:06:05 +00:00
starlet-dx
ece6f20c33 Update to 4.2.6 for fix CVE-2023-41915 2023-09-18 15:23:47 +08:00
openeuler-ci-bot
40ffcef6b2
!14 Update to 4.2.4
From: @starlet-dx 
Reviewed-by: @Lostwayzxc, @caodongxia 
Signed-off-by: @caodongxia
2023-07-27 03:48:37 +00:00
starlet-dx
7746b4f798 Update to 4.2.4 2023-07-26 10:45:51 +08:00
4 changed files with 58 additions and 2 deletions

View File

@ -0,0 +1,35 @@
From 37384a0e2b00262eb380f5f0fb29aa5c94002dc1 Mon Sep 17 00:00:00 2001
From: Wenduo Wang <wenduwan@amazon.com>
Date: Wed, 21 Aug 2024 02:03:20 +0000
Subject: [PATCH] mca/pif: fix pmix_found_linux typo
This typo causes linux_ipv6 module to be skipped during configure.
It has been replaced with the OAC equivalent.
Signed-off-by: Wenduo Wang <wenduwan@amazon.com>
---
src/mca/pif/linux_ipv6/configure.m4 | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/mca/pif/linux_ipv6/configure.m4 b/src/mca/pif/linux_ipv6/configure.m4
index 1b7d21bf2f..2fd0da247e 100644
--- a/src/mca/pif/linux_ipv6/configure.m4
+++ b/src/mca/pif/linux_ipv6/configure.m4
@@ -5,6 +5,8 @@
# and Technology (RIST). All rights reserved.
# Copyright (c) 2016 Intel, Inc. All rights reserved.
# Copyright (c) 2023 Nanook Consulting. All rights reserved.
+# Copyright (c) 2024 Amazon.com, Inc. or its affiliates.
+# All Rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@@ -29,7 +31,7 @@ AC_DEFUN([MCA_pmix_pif_linux_ipv6_CONFIG], [
AC_MSG_CHECKING([if we are on Linux with TCP])
# If we have struct sockaddr and we're on Linux, then we're
# happy.
- AS_IF([test "$pmix_found_sockaddr" = "yes" && test "$pmix_found_linux" = "yes"],
+ AS_IF([test "$pmix_found_sockaddr" = "yes" && test "$oac_found_linux" = "yes"],
[AC_MSG_RESULT([yes])
$1],
[AC_MSG_RESULT([no])

Binary file not shown.

BIN
pmix-5.0.3.tar.bz2 Normal file

Binary file not shown.

View File

@ -1,11 +1,13 @@
Name: pmix
Version: 4.1.2
Version: 5.0.3
Release: 1
Summary: Process Management Interface Exascale (PMIx)
License: BSD
URL: https://pmix.org
Source0: https://github.com/openpmix/openpmix/releases/download/v%{version}/pmix-%{version}.tar.bz2
Patch0: fix-pmix_found_linux-typo.patch
BuildRequires: autoconf automake flex hwloc-devel libevent-devel libtool munge-devel perl-interpreter zlib-devel
Obsoletes: pmix-pmi < 4.1.2 pmix-pmi-devel < 4.1.2
%description
PMI has been used for quite some time as a means of exchanging wireup information needed
@ -48,19 +50,23 @@ find src -name \*.l -print -exec touch --no-create {} \;
%postun devel -p /sbin/ldconfig
%files
%doc LICENSE README
%doc LICENSE README.md
%dir %{_datadir}/pmix
%dir %{_libdir}/pmix
%dir %{_sysconfdir}/pmix
%config(noreplace) %{_sysconfdir}/pmix/*.conf
%{_datadir}/pmix/*.txt
%{_datadir}/doc/pmix/html/
%{_libdir}/libpmix.so.2*
%{_libdir}/pmix/*.so
%{_mandir}/man1/*.1*
%{_mandir}/man3/*.3*
%{_mandir}/man5/*.5*
%files devel
%{_datadir}/pmix/*.supp
%{_includedir}/pmix*.h
%{_includedir}/pmix/src/*
%{_libdir}/libpmix.so
%{_libdir}/pkgconfig/*.pc
@ -68,6 +74,21 @@ find src -name \*.l -print -exec touch --no-create {} \;
%{_bindir}/*
%changelog
* Thu Dec 26 2024 wangkai <13474090681@163.com> - 5.0.3-1
- update to version 5.0.3 for fix remote execution command of openmpi
* Fri Feb 23 2024 liweigang <izmirvii@gmail.com> - 4.2.9-1
- update to version 4.2.9
* Thu Sep 21 2023 liyanan <thistleslyn@163.com> - 4.2.6-2
- Add Obsoletes pmix-pmi pmix-pmi-devel
* Mon Sep 18 2023 yaoxin <yao_xin001@hoperun.com> - 4.2.6-1
- Update to 4.2.6 for fix CVE-2023-41915
* Wed Jul 26 2023 yaoxin <yao_xin001@hoperun.com> - 4.2.4-1
- Update to 4.2.4
* Thu May 19 2022 liyanan <liyanan32@h-partners.com> - 4.1.2-1
- Update to 4.1.2