Compare commits

...

6 Commits

Author SHA1 Message Date
474b488bd0 Import from AlmaLinux stable repository 2024-05-31 17:47:46 +00:00
CentOS Sources
3832708966 import libfabric-1.17.0-3.el8.1 2023-05-17 01:59:32 +00:00
CentOS Sources
5374ceb1ab import libfabric-1.15.1-1.el8 2022-11-08 13:20:09 +00:00
CentOS Sources
98d97864ef import libfabric-1.14.0-1.el8 2022-05-10 10:42:10 +00:00
CentOS Sources
9a41a8c4e5 import libfabric-1.12.1-1.el8 2021-11-09 10:13:07 +00:00
CentOS Sources
81110558de import libfabric-1.11.2-1.el8 2021-09-09 20:10:51 +00:00
3 changed files with 57 additions and 11 deletions

2
.gitignore vendored
View File

@ -1 +1 @@
SOURCES/libfabric-1.10.0.tar.bz2
SOURCES/libfabric-1.18.0.tar.bz2

View File

@ -1 +0,0 @@
1352168973611327ee9f48ca89b682693a39f3fc SOURCES/libfabric-1.10.0.tar.bz2

View File

@ -1,13 +1,21 @@
%global __remake_config 1
Name: libfabric
Version: 1.10.0
Version: 1.18.0
Release: 1%{?dist}
Summary: Open Fabric Interfaces
License: BSD or GPLv2
URL: http://ofiwg.github.io/libfabric/
Source0: https://github.com/ofiwg/libfabric/releases/download/v%{version}/libfabric-%{version}.tar.bz2
URL: https://github.com/ofiwg/libfabric
Source0: https://github.com/ofiwg/%{name}/releases/download/v%{version}/%{name}-%{version}.tar.bz2
%if %{__remake_config}
BuildRequires: automake
BuildRequires: autoconf
BuildRequires: libtool
%endif
BuildRequires: gcc
BuildRequires: make
BuildRequires: libnl3-devel
# RDMA not available on 32-bit ARM: #1484155
%ifnarch %{arm}
@ -15,12 +23,13 @@ BuildRequires: libibverbs-devel
BuildRequires: librdmacm-devel
%endif
%ifarch x86_64
%if 0%{?fedora} || ( 0%{?rhel} >= 6 && 0%{?rhel} <= 7 )
%if 0%{?fedora} || 0%{?rhel} == 7
BuildRequires: infinipath-psm-devel
%endif
%if 0%{?fedora} >= 25 || 0%{?rhel} >= 7
%if 0%{?fedora} || 0%{?rhel} >= 7
BuildRequires: libpsm2-devel
%endif
BuildRequires: numactl-devel
%endif
%description
@ -46,9 +55,12 @@ developing applications that use %{name}.
%prep
%setup -q
%autosetup -p1 -n %{name}-%{version}
%build
%if %{__remake_config}
./autogen.sh
%endif
%configure --disable-static --disable-silent-rules
%make_build
@ -58,9 +70,7 @@ developing applications that use %{name}.
find %{buildroot} -name '*.la' -exec rm -f {} ';'
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%ldconfig_scriptlets
%files
@ -84,6 +94,43 @@ find %{buildroot} -name '*.la' -exec rm -f {} ';'
%changelog
* Thu Jun 01 2023 Kamal Heib <kheib@redhat.com> - 1.18.0-1
- Update to upstream release 1.18.0
- Add gating tests
- Resolves: rhbz#2153009
* Wed Feb 08 2023 Michal Schmidt <mschmidt@redhat.com> - 1.17.0-3.1
- Re-enable autotools remake to fix unwanted rpath in binaries.
- Resolves: rhbz#2168098
* Wed Feb 08 2023 Michal Schmidt <mschmidt@redhat.com> - 1.17.0-3
- Update to upstream release 1.17.0
- Resolves: rhbz#2168098
* Wed Aug 17 2022 Michal Schmidt <mschmidt@redhat.com> - 1.15.1-1
- Update to upstream release 1.15.1
- Disable LTO on x86_64 due to memory issues (copied from Fedora)
- Resolves: rhbz#2040450
* Thu Nov 25 2021 Honggang Li <honli@redhat.com> - 1.14.0-1
- Rebase to upstream release v1.14.0
- Resolves: bz1970601
* Thu May 13 2021 Honggang Li <honli@redhat.com> - 1.12.1-1
- Rebase to upstream release v1.12.1
- Enable psm3 support
- Resolves: bz1921238
* Tue Dec 22 2020 Honggang Li <honli@redhat.com> - 1.11.2-1
- Rebase to upstream release v1.11.2
- Fix "shm" segfault issue
- Resolves: bz1904291
* Tue Nov 17 2020 Honggang Li <honli@redhat.com> - 1.11.1-1
- Rebase to upstream release v1.11.1
- EFA Support requires libfabric
- Resolves: bz1831145, bz1852636
* Sat Apr 25 2020 Honggang Li <honli@redhat.com> - 1.10.0-1
- Rebase to upstream release v1.10.0
- Resolves: bz1739283