diff options
author | Vijay Marcel <vijaymarcel@outlook.com> | 2024-02-22 21:35:36 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2024-02-23 16:25:04 +0700 |
commit | 4c91a03c5d203e6d458d685741181564e2214dd0 (patch) | |
tree | 5ab0ebef9a7501915314ab8542557feac6ac726c /libraries | |
parent | 44a87713db0d8a132d08e43f57e2078397816552 (diff) |
libraries/libfabric: Updated for version 1.20.1.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'libraries')
-rw-r--r-- | libraries/libfabric/changelog | 4 | ||||
-rw-r--r-- | libraries/libfabric/libfabric.SlackBuild | 12 | ||||
-rw-r--r-- | libraries/libfabric/libfabric.info | 8 |
3 files changed, 12 insertions, 12 deletions
diff --git a/libraries/libfabric/changelog b/libraries/libfabric/changelog index a8571b0fb4e8d..0e7e63095c4be 100644 --- a/libraries/libfabric/changelog +++ b/libraries/libfabric/changelog @@ -14,3 +14,7 @@ libfabric slackbuild script fixed by B.Watson Updated to version 1.18.0 From this build onwards it will only build on x86_64 platform only. + +19/02/2024: + +Updated to version 1.20.1 diff --git a/libraries/libfabric/libfabric.SlackBuild b/libraries/libfabric/libfabric.SlackBuild index 366c30f1077f6..196598c58a541 100644 --- a/libraries/libfabric/libfabric.SlackBuild +++ b/libraries/libfabric/libfabric.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for libfabric -# Copyright 2022-2023 Vijay Marcel +# Copyright 2022-2024 Vijay Marcel # All rights reserved. # @@ -26,7 +26,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=libfabric -VERSION=${VERSION:-1.18.0} +VERSION=${VERSION:-1.20.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -37,9 +37,6 @@ case "$sys_arch" in *) echo "This program will not build on $sys_arch platform" && exit 1 ;; esac -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -74,10 +71,9 @@ find -L . \ \( -perm 666 -o -perm 664 -o -perm 640 -o -perm 600 -o -perm 444 \ -o -perm 440 -o -perm 400 \) -exec chmod 644 {} \; +./autogen.sh CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ - -./autogen.sh ./configure \ --prefix=/usr \ --libdir=/usr/lib${LIBDIRSUFFIX} \ @@ -95,7 +91,7 @@ make install DESTDIR=$PKG rm -f $PKG/{,usr/}lib${LIBDIRSUFFIX}/*.la find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" \ - | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true + | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded --remove-section=.comment --remove-section=.note 2> /dev/null || true find $PKG/usr/man -type f -exec gzip -9 {} \; for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done diff --git a/libraries/libfabric/libfabric.info b/libraries/libfabric/libfabric.info index ca203a43b019b..8462d1dc4e810 100644 --- a/libraries/libfabric/libfabric.info +++ b/libraries/libfabric/libfabric.info @@ -1,10 +1,10 @@ PRGNAM="libfabric" -VERSION="1.18.0" -HOMEPAGE="http://libfabric.org/" +VERSION="1.20.1" +HOMEPAGE="https://libfabric.org/" DOWNLOAD="UNSUPPORTED" MD5SUM="" -DOWNLOAD_x86_64="https://github.com/ofiwg/libfabric/archive/v1.18.0/libfabric-1.18.0.tar.gz" -MD5SUM_x86_64="91c0cf6c3c4c56e5de0bb1b798a407e7" +DOWNLOAD_x86_64="https://github.com/ofiwg/libfabric/archive/v1.20.1/libfabric-1.20.1.tar.gz" +MD5SUM_x86_64="1d94cdfea3bcbac8cd9fc49496c48af4" REQUIRES="numactl rdma-core valgrind" MAINTAINER="Vijay Marcel" EMAIL="vijaymarcel@outlook.com" |