diff --git a/.gitignore b/.gitignore index 13d1c22..fefe0ea 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,4 @@ /ucx-1.13.1.tar.gz /ucx-1.14.1.tar.gz /ucx-1.15.0.tar.gz +/ucx-1.17.0.tar.gz diff --git a/UCS-TIME-Fix-undeclared-INFINITY-error-in-ucs_time_u.patch b/UCS-TIME-Fix-undeclared-INFINITY-error-in-ucs_time_u.patch new file mode 100644 index 0000000..f6dd8de --- /dev/null +++ b/UCS-TIME-Fix-undeclared-INFINITY-error-in-ucs_time_u.patch @@ -0,0 +1,29 @@ +From b0a275a5492125a13020cd095fe9934e0b5e7c6a Mon Sep 17 00:00:00 2001 +From: Aboorva Devarajan +Date: Wed, 19 Jun 2024 13:47:14 -0400 +Subject: [PATCH] UCS/TIME: Fix undeclared INFINITY error in + ucs_time_units_to_sec() + +Included in ucs_time_units_to_sec() to resolve compilation +errors due to missing INFINITY constant. + +Signed-off-by: Aboorva Devarajan +--- + src/ucs/time/time.h | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/src/ucs/time/time.h b/src/ucs/time/time.h +index cff9810cdad8..c51362273f8d 100644 +--- a/src/ucs/time/time.h ++++ b/src/ucs/time/time.h +@@ -11,6 +11,7 @@ + #include + #include + #include ++#include + + BEGIN_C_DECLS + +-- +2.47.0 + diff --git a/sources b/sources index 54e15ac..9299f72 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (ucx-1.15.0.tar.gz) = 8ad9d4bc09a890ffae74c71496221d6ad710116e25531e867f78a84ff90808fe8859d856e261f536e89fba8d7d1b6ed3f7cf5054b6e34edee1bea19d5fdd1e0b +SHA512 (ucx-1.17.0.tar.gz) = 1033959bd223d1b4507b2a159e6ce65e76c1c5f231afc166bb0ed2e5c6c4aaa3db96b7c35c97c8b332e6e11f4ab24deb66d484009b7dc2af52b73981c1e72a25 diff --git a/ucx.spec b/ucx.spec index ef3f205..c96457b 100644 --- a/ucx.spec +++ b/ucx.spec @@ -11,8 +11,8 @@ %bcond_with vfs Name: ucx -Version: 1.15.0 -Release: 4%{?dist} +Version: 1.17.0 +Release: 1%{?dist} Summary: UCX is a communication library implementing high-performance messaging License: BSD-3-Clause AND MIT AND CC-PDDC AND (BSD-3-Clause OR Apache-2.0) @@ -31,6 +31,7 @@ Source: https://github.com/openucx/%{name}/releases/download/v%{version}/ucx-%{v # BUILD/CONFIG: Keep CFLAGS and CXXFLAGS separate # Fixes build for https://fedoraproject.org/wiki/Changes/PortingToModernC Patch0: https://github.com/openucx/%{name}/pull/9558.patch +Patch1: UCS-TIME-Fix-undeclared-INFINITY-error-in-ucs_time_u.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) Prefix: %{_prefix} @@ -98,6 +99,7 @@ Provides header files and examples for developing with UCX. %prep %setup -q %patch -P0 -p1 +%patch -P1 -p1 autoreconf -fiv %build @@ -135,6 +137,7 @@ rm -f %{buildroot}%{_libdir}/ucx/lib*.a %{_libdir}/lib*.so.* %{_bindir}/ucx_info %{_bindir}/ucx_perftest +%{_bindir}/ucx_perftest_daemon %{_bindir}/ucx_read_profile %{_bindir}/io_demo %{_datadir}/ucx @@ -142,6 +145,7 @@ rm -f %{buildroot}%{_libdir}/ucx/lib*.a %doc README AUTHORS NEWS %{!?_licensedir:%global license %%doc} %license LICENSE +%{_sysconfdir}/ucx/ucx.conf %files devel %{_includedir}/uc* @@ -317,6 +321,10 @@ status, and more. %endif %changelog +* Wed Nov 13 2024 Kamal Heib - 1.17.0-1 +- Update to upstream release 1.17.0 + Resolves: RHEL-24811 + * Tue Oct 29 2024 Troy Dawson - 1.15.0-4 - Bump release for October 2024 mass rebuild: Resolves: RHEL-64018