See NEWS for details
This commit is contained in:
parent
6e28af8f5d
commit
c34d554310
1
.gitignore
vendored
1
.gitignore
vendored
@ -1 +1,2 @@
|
|||||||
/ucx-1.2.2.tar.gz
|
/ucx-1.2.2.tar.gz
|
||||||
|
/ucx-1.3.1.tar.gz
|
||||||
|
2
sources
2
sources
@ -1 +1 @@
|
|||||||
SHA512 (ucx-1.2.2.tar.gz) = b72c87c2a25f083b7fc3df51c4be522c0164cbf4e0f2f696c3c77e9e1b20bed6434986b33e025f1370bc50b3021adac27d9db76c2f8d3803c1b537b7935387c7
|
SHA512 (ucx-1.3.1.tar.gz) = f4aef43a4eb3ec66356a1f811c6d179d68d8fd30aa24442d9120e911f580718b5dadf8a2216915916466dd7fcb2766dc21335da3c6703fc01aa3559cf044222b
|
||||||
|
57
ucx.spec
57
ucx.spec
@ -1,17 +1,14 @@
|
|||||||
%{!?configure_options: %global configure_options %{nil}}
|
%{!?configure_options: %global configure_options %{nil}}
|
||||||
%{!?_pkgdocdir: %global _pkgdocdir %{_docdir}/%{name}}
|
|
||||||
%{!?make_build: %define make_build %{__make} %{?_smp_mflags}}
|
|
||||||
%{!?make_install: %define make_install %{__make} install DESTDIR=%{?buildroot}}
|
|
||||||
|
|
||||||
Name: ucx
|
Name: ucx
|
||||||
Version: 1.2.2
|
Version: 1.3.1
|
||||||
Release: 3%{?dist}
|
Release: 1%{?dist}
|
||||||
Summary: A communication library implementing high-performance messaging
|
Summary: UCX is a communication library implementing high-performance messaging
|
||||||
Group: System Environment/Libraries
|
Group: System Environment/Libraries
|
||||||
|
|
||||||
License: BSD
|
License: BSD
|
||||||
URL: http://www.openucx.org
|
URL: http://www.openucx.org
|
||||||
Source: https://github.com/openucx/%{name}/releases/download/v1.2.2/ucx-1.2.2.tar.gz
|
Source: https://github.com/openucx/%{name}/releases/download/v1.3.1/ucx-1.3.1.tar.gz
|
||||||
|
|
||||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||||
|
|
||||||
@ -19,12 +16,7 @@ BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|||||||
ExclusiveArch: aarch64 ppc64le x86_64
|
ExclusiveArch: aarch64 ppc64le x86_64
|
||||||
|
|
||||||
BuildRequires: numactl-devel libibverbs-devel
|
BuildRequires: numactl-devel libibverbs-devel
|
||||||
BuildRequires: gcc
|
BuildRequires: automake autoconf libtool gcc-c++
|
||||||
|
|
||||||
Provides: bundled(sglib) = 1.0.4
|
|
||||||
# UCX doesn’t use glibc’s malloc because it is modifying ptmalloc library
|
|
||||||
# to notify UCX about memory map/unmap events
|
|
||||||
Provides: bundled(ptmalloc) = 2.8.6
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
UCX stands for Unified Communication X. It requires either RDMA-capable device
|
UCX stands for Unified Communication X. It requires either RDMA-capable device
|
||||||
@ -32,15 +24,13 @@ UCX stands for Unified Communication X. It requires either RDMA-capable device
|
|||||||
Future versions will support also TCP for inter-node, to lift that hardware
|
Future versions will support also TCP for inter-node, to lift that hardware
|
||||||
dependency.
|
dependency.
|
||||||
In addition, the library can be used for intra-node communication by leveraging
|
In addition, the library can be used for intra-node communication by leveraging
|
||||||
the following shared memory mechanisms: posix, sysv, cma, knem, xpmem.
|
the following shared memory mechanisms: posix. sysv, cma, knem, xpmem.
|
||||||
|
|
||||||
%package devel
|
%package devel
|
||||||
Requires: %{name}%{?_isa} = %{version}-%{release}
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
||||||
Summary: Header files required to develop with UCX
|
Summary: Header files required to develop with UCX
|
||||||
Group: Development/Libraries
|
Group: Development/Libraries
|
||||||
|
|
||||||
# UCX ships both static and dynamic libs to support different use-cases like
|
|
||||||
# performance benefits.
|
|
||||||
%package static
|
%package static
|
||||||
Requires: %{name}-devel = %{version}-%{release}
|
Requires: %{name}-devel = %{version}-%{release}
|
||||||
Summary: Static libraries required to develop with UCX
|
Summary: Static libraries required to develop with UCX
|
||||||
@ -61,30 +51,28 @@ Provides static libraries required for development with UCX.
|
|||||||
--disable-debug \
|
--disable-debug \
|
||||||
--disable-assertions \
|
--disable-assertions \
|
||||||
--disable-params-check \
|
--disable-params-check \
|
||||||
--docdir=%{_pkgdocdir} \
|
|
||||||
CXXFLAGS="%{optflags} -fno-exceptions" \
|
CXXFLAGS="%{optflags} -fno-exceptions" \
|
||||||
%{?configure_options}
|
%{?configure_options}
|
||||||
%make_build V=1
|
make %{?_smp_mflags} V=1
|
||||||
|
|
||||||
%install
|
%install
|
||||||
%make_install
|
make DESTDIR=%{buildroot} install
|
||||||
rm -f %{buildroot}%{_libdir}/*.la
|
rm -f %{buildroot}%{_libdir}/*.la
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%{_libdir}/lib*.so.*
|
%{_libdir}/lib*.so.*
|
||||||
%{_bindir}/uc*
|
%{_bindir}/uc*
|
||||||
%{_pkgdocdir}
|
%{_datadir}/ucx
|
||||||
%exclude %{_pkgdocdir}/examples
|
%exclude %{_datadir}/ucx/examples
|
||||||
%if "%{?_licensedir}" != ""
|
%doc README AUTHORS NEWS
|
||||||
|
%{!?_licensedir:%global license %%doc}
|
||||||
%license LICENSE
|
%license LICENSE
|
||||||
%exclude %{_pkgdocdir}/LICENSE
|
|
||||||
%endif
|
|
||||||
|
|
||||||
%files devel
|
%files devel
|
||||||
%{_includedir}/uc*
|
%{_includedir}/uc*
|
||||||
%{_libdir}/lib*.so
|
%{_libdir}/lib*.so
|
||||||
%{_libdir}/pkgconfig/ucx.pc
|
%{_libdir}/pkgconfig/ucx.pc
|
||||||
%{_pkgdocdir}/examples
|
%{_datadir}/ucx/examples
|
||||||
|
|
||||||
%files static
|
%files static
|
||||||
%{_libdir}/lib*.a
|
%{_libdir}/lib*.a
|
||||||
@ -93,20 +81,13 @@ rm -f %{buildroot}%{_libdir}/*.la
|
|||||||
%postun -p /sbin/ldconfig
|
%postun -p /sbin/ldconfig
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
* Sat Jul 14 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-3
|
* Mon Aug 20 2018 Andrey Maslennikov <andreyma@mellanox.com> 1.3.1-1
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild
|
- See NEWS for details
|
||||||
|
* Thu Aug 16 2018 Andrey Maslennikov <andreyma@mellanox.com> 1.3.0-1
|
||||||
* Fri Feb 09 2018 Fedora Release Engineering <releng@fedoraproject.org> - 1.2.2-2
|
- Explicitly set gcc-c++ as requirements
|
||||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild
|
* Wed Mar 7 2018 Andrey Maslennikov <andreyma@mellanox.com> 1.3.0-1
|
||||||
|
- See NEWS for details
|
||||||
* Thu Nov 11 2017 Andrey Maslennikov <andreyma@mellanox.com> 1.2.2-1
|
|
||||||
- Spec file: changes to get approval on Fedora review
|
|
||||||
|
|
||||||
* Thu Oct 12 2017 Andrey Maslennikov <andreyma@mellanox.com> 1.2.1-1
|
|
||||||
- Spec file: new Source link, set default BuildRoot
|
|
||||||
|
|
||||||
* Mon Aug 21 2017 Andrey Maslennikov <andreyma@mellanox.com> 1.2.1-1
|
* Mon Aug 21 2017 Andrey Maslennikov <andreyma@mellanox.com> 1.2.1-1
|
||||||
- Spec file now complies with Fedora guidelines
|
- Spec file now complies with Fedora guidelines
|
||||||
|
|
||||||
* Mon Jul 3 2017 Andrey Maslennikov <andreyma@mellanox.com> 1.2.0-1
|
* Mon Jul 3 2017 Andrey Maslennikov <andreyma@mellanox.com> 1.2.0-1
|
||||||
- Fedora package created
|
- Fedora package created
|
||||||
|
Loading…
Reference in New Issue
Block a user