Compare commits
6 Commits
imports/c8
...
c8
Author | SHA1 | Date | |
---|---|---|---|
474b488bd0 | |||
|
3832708966 | ||
|
5374ceb1ab | ||
|
98d97864ef | ||
|
9a41a8c4e5 | ||
|
81110558de |
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1 @@
|
||||
SOURCES/libfabric-1.10.0.tar.bz2
|
||||
SOURCES/libfabric-1.18.0.tar.bz2
|
||||
|
@ -1 +0,0 @@
|
||||
1352168973611327ee9f48ca89b682693a39f3fc SOURCES/libfabric-1.10.0.tar.bz2
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user