Port details |
- libfabric Open Fabric Interfaces
- 1.15.1_2 net =3 1.15.1_2Version of this port present on the latest quarterly branch.
- Maintainer: yuri@FreeBSD.org
- Port Added: 2018-11-08 06:54:44
- Last Update: 2024-01-29 19:54:15
- Commit Hash: 6838a69
- People watching this port, also watch:: libXdamage, libevent, xcb-util-image, woff2, xorg-docs
- License: BSD2CLAUSE
- WWW:
- https://ofiwg.github.io/libfabric/
- Description:
- OpenFabrics Interfaces (OFI) is a framework focused on exporting fabric
communication services to applications. OFI is best described as a collection
of libraries and applications used to export fabric services. The key components
of OFI are: application interfaces, provider libraries, kernel services,
daemons, and test applications.
Libfabric is a core component of OFI. It is the library that defines and exports
the user-space API of OFI, and is typically the only software that applications
deal with directly. It works in conjunction with provider libraries, which are
often integrated directly into libfabric.
- ¦ ¦ ¦ ¦
- Manual pages:
- FreshPorts has no man page information for this port.
- pkg-plist: as obtained via:
make generate-plist - Dependency lines:
-
- libfabric>0:net/libfabric
- To install the port:
- cd /usr/ports/net/libfabric/ && make install clean
- To add the package, run one of these commands:
- pkg install net/libfabric
- pkg install libfabric
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.- PKGNAME: libfabric
- Flavors: there is no flavor information for this port.
- distinfo:
- TIMESTAMP = 1658878617
SHA256 (libfabric-1.15.1.tar.bz2) = cafa3005a9dc86064de179b0af4798ad30b46b2f862fe0268db03d13943e10cd
SIZE (libfabric-1.15.1.tar.bz2) = 2226238
Packages (timestamps in pop-ups are UTC):
- Dependencies
- NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
- Build dependencies:
-
- bash : shells/bash
- gmake>=4.3 : devel/gmake
- pkgconf>=1.3.0_1 : devel/pkgconf
- Library dependencies:
-
- libepoll-shim.so : devel/libepoll-shim
- This port is required by:
- for Libraries
-
- math/dihydrogen
- math/scorec-core
- misc/adios2
- net/mpich
- science/chrono
Configuration Options:
- ===> The following configuration options are available for libfabric-1.15.1_2:
====> Providers to build:: you have to choose at least one of them
RXD=on: 'rxd' provider
RXM=on: 'rxm' provider
SOCKETS=on: 'sockets' provider
TCP=on: 'tcp' provider
UDP=on: 'udp' provider
VERBS=on: 'verbs' provider
===> Use 'make config' to modify these settings
- Options name:
- net_libfabric
- USES:
- gmake libtool pkgconfig tar:bz2
- FreshPorts was unable to extract/find any pkg message
- Master Sites:
|
Commit History - (may be incomplete: for full details, see links to repositories near top of page) |
Commit | Credits | Log message |
1.15.1_2 29 Jan 2024 19:54:15 |
Muhammad Moinur Rahman (bofh) |
net/libfabric: Moved man to share/man
Approved by: portmgr (blanket) |
1.15.1_1 20 May 2023 20:02:45 |
Dimitry Andric (dim) |
net/libfabric: fix build with clang 16
Clang 16 has a new error about incompatible function types, which shows
up when building net/libfabric (on i386):
prov/hook/src/hook_domain.c:124:12: error: incompatible function pointer types
passing 'ssize_t (struct fid_ep *, size_t)' (aka 'int (struct fid_ep *, unsigned
int)') to parameter of type 'ssize_t (*)(struct fid_ep *, uint64_t)' (aka 'int
(*)(struct fid_ep *, unsigned long long)')
[-Wincompatible-function-pointer-types]
hook_credit_handler);
^~~~~~~~~~~~~~~~~~~
prov/hook/src/hook_domain.c:150:17: error: incompatible function pointer types
initializing 'void (*)(struct fid_ep *, uint64_t)' (aka 'void (*)(struct fid_ep
*, unsigned long long)') with an expression of type 'void (struct fid_ep *,
size_t)' (aka 'void (struct fid_ep *, unsigned int)')
[-Wincompatible-function-pointer-types]
.add_credits = hook_add_credits,
^~~~~~~~~~~~~~~~
prov/hook/src/hook_domain.c:152:22: error: incompatible function pointer types
initializing 'void (*)(struct fid_domain *, ssize_t (*)(struct fid_ep *,
uint64_t))' (aka 'void (*)(struct fid_domain *, int (*)(struct fid_ep *,
unsigned long long))') with an expression of type 'void (struct fid_domain *,
ssize_t (*)(struct fid_ep *, size_t))' (aka 'void (struct fid_domain *, int
(*)(struct fid_ep *, unsigned int))') [-Wincompatible-function-pointer-types]
.set_send_handler = hook_set_send_handler,
^~~~~~~~~~~~~~~~~~~~~
The problem is that the 'credits' parameter used in these functions is
size_t in some cases, but uint64_t in other cases. On LP64 architectures
this does not result in any errors, but on e.g. i386 you get the above.
Make the 'credits' parameter uint64_t everywhere to fix this issue.
PR: 271537
Approved by: yuri (maintainer)
MFH: 2023Q2 |
07 Sep 2022 21:58:51 |
Stefan Eßer (se) |
Remove WWW entries moved into port Makefiles
Commit b7f05445c00f has added WWW entries to port Makefiles based on
WWW: lines in pkg-descr files.
This commit removes the WWW: lines of moved-over URLs from these
pkg-descr files.
Approved by: portmgr (tcberner) |
1.15.1 07 Sep 2022 21:10:59 |
Stefan Eßer (se) |
Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.
Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.
There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.
(Only the first 15 lines of the commit message are shown above ) |
1.15.1 27 Aug 2022 17:53:10 |
Yuri Victorovich (yuri) |
net/libfabric: Revert commit "Broken on riscv64"
... it is only broken in quarterly.
This reverts commit 37338cf4029ebe930b6e8c665e86ae130bf0a3d9. |
1.15.1 27 Aug 2022 15:14:04 |
Yuri Victorovich (yuri) |
net/libfabric: Broken on riscv64
Reported by: fallout |
1.15.1 04 Aug 2022 08:07:43 |
Yuri Victorovich (yuri) |
net/libfabric: Not broken on riskv64
It was only breaking in the quarterly branch. |
1.15.1 04 Aug 2022 07:58:41 |
Yuri Victorovich (yuri) |
net/libfabric: Broken on riskv64
Reported by: fallout |
1.15.1 26 Jul 2022 23:45:27 |
Yuri Victorovich (yuri) |
net/libfabric: Update 1.14.0 -> 1.15.1 |
1.14.0 26 Jan 2022 08:43:22 |
Yuri Victorovich (yuri) Author: Daniel Engberg |
net/libfabric: Use upstream release archive |
1.14.0 29 Nov 2021 17:25:49 |
Yuri Victorovich (yuri) |
net/libfabric: Update 1.13.2 -> 1.14.0
PR: 260103 |
1.13.2 16 Oct 2021 22:21:13 |
Yuri Victorovich (yuri) |
net/libfabric: Update 1.13.1 -> 1.13.2 |
1.13.1 30 Sep 2021 21:23:30 |
Rene Ladan (rene) |
cleanup: drop support for EOL FreeBSD 11.X
Search criteria used:
- 11.4
- OSREL*
- OSVER*
- *_FreeBSD_11
Input from:
- adridg: devel/qca-legacy
- jbeich: _WITH_DPRINTF, _WITH_GETLINE, GNU bfd workarounds
- sunpoet: security/p5-*OpenSSL*
Reviewed by: doceng, kde, multimedia, perl, python, ruby, rust
Differential Revision: https://reviews.freebsd.org/D32008
Test Plan: make index |
1.13.1 26 Aug 2021 05:38:54 |
Yuri Victorovich (yuri) |
net/libfabric: Update 1.13.0 -> 1.13.1
Reported by: portscout |
1.13.0 06 Jul 2021 15:21:20 |
Yuri Victorovich (yuri) |
net/libfabric: Update 1.12.1 -> 1.13.0 |
1.12.1 11 May 2021 04:48:11 |
Yuri Victorovich (yuri) |
net/libfabric: Update 1.11.2 -> 1.12.1 |
1.11.2 07 Apr 2021 08:09:01 |
Mathieu Arnold (mat) |
One more small cleanup, forgotten yesterday.
Reported by: lwhsu |
1.11.2 06 Apr 2021 14:31:07 |
Mathieu Arnold (mat) |
Remove # $FreeBSD$ from Makefiles. |
1.11.2 17 Dec 2020 20:43:22 |
yuri |
net/libfabric: Update 1.11.1 -> 1.11.2
Reported by: portscout |
1.11.1 12 Oct 2020 01:09:31 |
yuri |
net/libfabric: Update 1.11.0 -> 1.11.1
Reported by: portscout |
1.11.0 17 Aug 2020 21:07:51 |
yuri |
net/libfabric: Update 1.10.1 -> 1.11.0
Reported by: portscout |
1.10.1 11 May 2020 05:52:47 |
yuri |
net/libfabric: Update 1.9.1 -> 1.10.1
Reported by: portscout |
1.9.1 07 Mar 2020 18:32:51 |
yuri |
net/libfabric: Update 1.8.1 -> 1.9.1
Reported by: portscout |
1.8.1 14 Feb 2020 12:20:26 |
jbeich |
net/libfabric: unbreak build after r525983
src/fabric.c:683:7: error: no member named 'epoll_shim_close' in 'fi_ops'
FI_CHECK_OP(info->nic->fid.ops, struct fi_ops, close)) {
^ ~~~~~
./include/rdma/fabric.h:555:23: note: expanded from macro 'FI_CHECK_OP'
(ops && (ops->size > offsetof(opstype, op)) && ops->op)
^ ~~
/usr/include/stddef.h:73:31: note: expanded from macro 'offsetof'
#define offsetof(type, field) __offsetof(type, field)
^ ~~~~~
/usr/include/sys/cdefs.h:487:34: note: expanded from macro '__offsetof'
#define __offsetof(type, field) __builtin_offsetof(type, field)
^ ~~~~~
src/fabric.c:683:54: error: no member named 'epoll_shim_close' in 'struct
fi_ops' (Only the first 15 lines of the commit message are shown above ) |
1.8.1 13 Oct 2019 07:59:19 |
yuri |
net/libfabric: Update 1.8.0 -> 1.8.1
Reported by: portscout |
1.8.0 29 Jun 2019 08:36:54 |
yuri |
net/libfabric: Update 1.7.2 -> 1.8.0
Reported by: portscout |
1.7.2 15 Jun 2019 19:41:10 |
yuri |
net/libfabric: Update 1.7.1 -> 1.7.2
Reported by: portscout |
1.7.1 11 Apr 2019 05:04:03 |
yuri |
net/libfabric: Update 1.7.0rc3-281 -> 1.7.1
Reported by: portscout |
1.7.0.r3.281 26 Feb 2019 05:24:11 |
yuri |
net/libfabric: Update 1.6.2 -> 1.7.0rc3-281
Reported by: portscout |
1.6.2_1 08 Nov 2018 08:54:36 |
yuri |
net/libfabric: Add port options for individual providers; Enclose the VERBS
option in .if/.else
Requested by: mat (VERBS option .if/.else enclosure) |
1.6.2 08 Nov 2018 06:51:51 |
yuri |
New port: net/libfabric: Open Fabric Interfaces |