Compare commits

...

2 Commits

Author SHA1 Message Date
eabdullin 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
3 changed files with 18 additions and 13 deletions

2
.gitignore vendored
View File

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

View File

@ -1 +0,0 @@
0ca001d826b8af7aa6c6cbb0bd90220d45b0933d SOURCES/libfabric-1.15.1.tar.bz2

View File

@ -1,12 +1,7 @@
%global __remake_config 1
# LTO is running out of memory when building on x86_64
%ifarch x86_64
%global _lto_cflags %{nil}
%endif
Name: libfabric
Version: 1.15.1
Version: 1.18.0
Release: 1%{?dist}
Summary: Open Fabric Interfaces
@ -19,8 +14,8 @@ BuildRequires: automake
BuildRequires: autoconf
BuildRequires: libtool
%endif
BuildRequires: make
BuildRequires: gcc
BuildRequires: make
BuildRequires: libnl3-devel
# RDMA not available on 32-bit ARM: #1484155
%ifnarch %{arm}
@ -60,7 +55,7 @@ developing applications that use %{name}.
%prep
%setup -q -n %{name}-%{version}
%autosetup -p1 -n %{name}-%{version}
%build
%if %{__remake_config}
@ -75,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
@ -101,6 +94,19 @@ 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)