Compare commits
24 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
|
|
d4780a0769 | ||
| aab33accc8 | |||
|
|
d0cd2cb122 | ||
|
|
d0303c4397 | ||
| 1fe49075fd | |||
| 43118a119e | |||
| 6716661ee0 | |||
| 48d72b9a87 | |||
| a4acbc6be0 | |||
| bec932bb32 | |||
| d71d2f7735 | |||
| 8b4855f618 | |||
| f7d6d9d833 | |||
| 707f6597cc | |||
| 69c664956f | |||
| c5bb542661 | |||
| 1ea4a1898e | |||
| 82161ee16c | |||
| e9136af368 | |||
| 3b7c0598f7 | |||
| 5055e1ac64 | |||
| f700a502af | |||
| bc9cd1607d | |||
| 9bb053841b |
12
README.md
Normal file
12
README.md
Normal file
@@ -0,0 +1,12 @@
|
||||
|
||||
## Build Results
|
||||
|
||||
Current state of libfabric in openSUSE:Factory is
|
||||
|
||||

|
||||
|
||||
The current state of libfabric in the devel project build (science:HPC)
|
||||
|
||||

|
||||
|
||||
|
||||
14
_constraints
Normal file
14
_constraints
Normal file
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0"?>
|
||||
<constraints>
|
||||
<overwrite>
|
||||
<conditions>
|
||||
<arch>i586</arch>
|
||||
<arch>x86_64</arch>
|
||||
</conditions>
|
||||
<hardware>
|
||||
<cpu>
|
||||
<flag>sse4_2</flag>
|
||||
</cpu>
|
||||
</hardware>
|
||||
</overwrite>
|
||||
</constraints>
|
||||
7
_service
7
_service
@@ -1,5 +1,5 @@
|
||||
<services>
|
||||
<service name="tar_scm" mode="disabled">
|
||||
<service name="tar_scm" mode="manual">
|
||||
<param name="scm">git</param>
|
||||
<param name="url">https://github.com/ofiwg/libfabric.git</param>
|
||||
<param name="package-meta">no</param>
|
||||
@@ -8,11 +8,10 @@
|
||||
<param name="versionformat">@PARENT_TAG@.@TAG_OFFSET@.%h</param>
|
||||
<param name="versionrewrite-pattern">v(.*)</param>
|
||||
<param name="versionrewrite-replacement">\1</param>
|
||||
<param name="revision">f67fad269327a1a25731d89fb94548d89ae7ae63</param>
|
||||
<param name="revision">ae02f52ef5c30e3023d399b27818876fe81763ac</param>
|
||||
</service>
|
||||
<service name="recompress" mode="disabled">
|
||||
<service name="recompress" mode="manual">
|
||||
<param name="file">libfabric*.tar</param>
|
||||
<param name="compression">bz2</param>
|
||||
</service>
|
||||
|
||||
</services>
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package fabtests
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -16,10 +16,10 @@
|
||||
#
|
||||
|
||||
|
||||
%define git_ver .0.f67fad269327
|
||||
%define git_ver .0.5a13558c2
|
||||
|
||||
Name: fabtests
|
||||
Version: 1.21.0
|
||||
Version: 2.4.0
|
||||
Release: 0
|
||||
Summary: Test suite for libfabric API
|
||||
License: BSD-2-Clause OR GPL-2.0-only
|
||||
@@ -38,9 +38,13 @@ BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Fabtests provides a set of examples that uses libfabric, a fabric software library.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n libfabric-%{version}%{git_ver}
|
||||
%autosetup -p0 -n libfabric-%{version}%{git_ver}
|
||||
|
||||
%build
|
||||
%set_build_flags
|
||||
%if 0%{?gcc_version} >= 8
|
||||
export CFLAGS="$CFLAGS --std=gnu17"
|
||||
%endif
|
||||
cd fabtests
|
||||
./autogen.sh
|
||||
%configure %{?_with_libfabric}
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:766162bc9b3fbd6d57c40d230c076f7314a64ce28bee9eadf2fb1b046355a148
|
||||
size 3463094
|
||||
BIN
libfabric-2.4.0.0.5a13558c2.tar.bz2
LFS
Normal file
BIN
libfabric-2.4.0.0.5a13558c2.tar.bz2
LFS
Normal file
Binary file not shown.
@@ -1,8 +1,18 @@
|
||||
diff --git a/configure.ac b/configure.ac
|
||||
index d137250..4e67035 100644
|
||||
--- a/configure.ac
|
||||
+++ b/configure.ac
|
||||
@@ -89,7 +89,7 @@ AC_HEADER_STDC
|
||||
commit 81de541fdd4abc77167f955f8ddd85f195888e5c
|
||||
Author: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
Date: Fri Sep 30 13:49:16 2022 +0200
|
||||
|
||||
libfabric libtool
|
||||
|
||||
Disable static libs
|
||||
|
||||
Signed-off-by: Nicolas Morey-Chaisemartin <nmoreychaisemartin@suse.com>
|
||||
|
||||
diff --git configure.ac configure.ac
|
||||
index 7dacf69c9a69..90fcdc610754 100644
|
||||
--- configure.ac
|
||||
+++ configure.ac
|
||||
@@ -193,7 +193,7 @@ m4_version_prereq([2.70],
|
||||
dnl Check for compiler features
|
||||
AC_C_TYPEOF
|
||||
|
||||
|
||||
1179
libfabric.changes
1179
libfabric.changes
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
||||
#
|
||||
# spec file for package libfabric
|
||||
#
|
||||
# Copyright (c) 2024 SUSE LLC
|
||||
# Copyright (c) 2025 SUSE LLC and contributors
|
||||
#
|
||||
# All modifications and additions to the file contributed by third parties
|
||||
# remain the property of their copyright owners, unless otherwise agreed
|
||||
@@ -17,23 +17,27 @@
|
||||
|
||||
|
||||
#
|
||||
%define git_ver .0.f67fad269327
|
||||
%define git_ver .0.5a13558c2
|
||||
|
||||
%ifarch aarch64 %power64 x86_64 s390x
|
||||
%if 0%{?suse_version} > 1530
|
||||
%ifarch aarch64 %power64 x86_64 s390x riscv64
|
||||
%if 0%{?suse_version} > 1530
|
||||
%define with_ucx 1
|
||||
%endif
|
||||
%endif
|
||||
|
||||
%ifarch x86_64 aarch64
|
||||
%define with_efa 1
|
||||
%endif
|
||||
|
||||
Name: libfabric
|
||||
Version: 1.21.0
|
||||
Version: 2.4.0
|
||||
Release: 0
|
||||
Summary: User-space RDMA Fabric Interfaces
|
||||
License: BSD-2-Clause OR GPL-2.0-only
|
||||
Group: Development/Libraries/C and C++
|
||||
Source: %{name}-%{version}%{git_ver}.tar.bz2
|
||||
Source1: baselibs.conf
|
||||
Source100: README.md
|
||||
Patch0: libfabric-libtool.patch
|
||||
URL: http://www.github.com/ofiwg/libfabric
|
||||
BuildRequires: autoconf
|
||||
@@ -79,9 +83,15 @@ libfabric provides a user-space API to access high-performance fabric
|
||||
services, such as RDMA. This package contains the development files.
|
||||
|
||||
%prep
|
||||
%autosetup -p1 -n %{name}-%{version}%{git_ver}
|
||||
%autosetup -p0 -n %{name}-%{version}%{git_ver}
|
||||
|
||||
%build
|
||||
%set_build_flags
|
||||
export CFLAGS="$CFLAGS -Wno-incompatible-pointer-types"
|
||||
%if 0%{?gcc_version} >= 8
|
||||
export CFLAGS="$CFLAGS --std=gnu17"
|
||||
%endif
|
||||
|
||||
rm -f config/libtool.m4
|
||||
autoreconf -fi
|
||||
# defaults: with-dlopen and without-valgrind can be over-rode:
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
# This script has to be run prior to a check-in if changes were done
|
||||
# to spec and/or changes
|
||||
GIT_VER=$(grep "%define git_ver" libfabric.spec)
|
||||
VERSION=$(egrep "^Version:" libfabric.spec)
|
||||
VERSION=$(grep -E "^Version:" libfabric.spec)
|
||||
sed -i -e 's/^%define git_ver.*$/'"$GIT_VER/" -e 's/^Version:.*$/'"$VERSION/" fabtests.spec
|
||||
osc service localrun format_spec_file
|
||||
osc service run format_spec_file
|
||||
|
||||
|
||||
Reference in New Issue
Block a user