From e02c0ac8b08388f2c70711aac0abf6f0d8f71a13 Mon Sep 17 00:00:00 2001 From: Vijay Marcel Date: Wed, 17 May 2023 22:06:46 +0100 Subject: system/memkind: Remove 32bit support. Signed-off-by: bedlam Signed-off-by: Willy Sudiarto Raharjo --- system/memkind/changelog | 12 ++++++++++++ system/memkind/memkind.SlackBuild | 25 ++++++++----------------- system/memkind/memkind.info | 8 ++++---- 3 files changed, 24 insertions(+), 21 deletions(-) create mode 100644 system/memkind/changelog diff --git a/system/memkind/changelog b/system/memkind/changelog new file mode 100644 index 000000000000..83f8e060ab03 --- /dev/null +++ b/system/memkind/changelog @@ -0,0 +1,12 @@ +Changelog for memkind SlackBuild Script +-------------------------------------------------------------------- + +03/09/2022: + +Added to slackbuilds.org + +15/05/2023: + +Updated to version 1.13.0 +From this build onwards it will only build +on x86_64 platform only. diff --git a/system/memkind/memkind.SlackBuild b/system/memkind/memkind.SlackBuild index 9cb3a0550e15..10cddee6d1de 100644 --- a/system/memkind/memkind.SlackBuild +++ b/system/memkind/memkind.SlackBuild @@ -2,7 +2,7 @@ # Slackware build script for memkind -# Copyright 2022 Vijay Marcel +# Copyright 2022-2023 Vijay Marcel # All rights reserved. # # Redistribution and use of this script, with or without modification, is @@ -29,14 +29,12 @@ VERSION=${VERSION:-1.14.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} +sys_arch=${sys_arch:-$(uname -m)} -if [ -z "$ARCH" ]; then -case "$( uname -m )" in - i?86) ARCH=i586 ;; - arm*) ARCH=arm ;; - *) ARCH=$( uname -m ) ;; +case "$sys_arch" in + x86_64) export ARCH=x86_64 ;; + *) echo "This program will not build on $sys_arch platform" && exit 1 ;; esac -fi # 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 @@ -50,18 +48,11 @@ TMP=${TMP:-/tmp/SBo} PKG=$TMP/package-$PRGNAM OUTPUT=${OUTPUT:-/tmp} -if [ "$ARCH" = "i586" ]; then - SLKCFLAGS="-O2 -march=i586 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "i686" ]; then - SLKCFLAGS="-O2 -march=i686 -mtune=i686" - LIBDIRSUFFIX="" -elif [ "$ARCH" = "x86_64" ]; then - SLKCFLAGS="-O2 -fPIC" +if [ "$ARCH" = "x86_64" ]; then + SLKCFLAGS="-march=x86-64 -mtune=native -pipe -O2 -fPIC" LIBDIRSUFFIX="64" else - SLKCFLAGS="-O2" - LIBDIRSUFFIX="" + echo "This program will not build on $sys_arch platform" && exit 1 fi set -e diff --git a/system/memkind/memkind.info b/system/memkind/memkind.info index 53f1ed668b9a..94052893553c 100644 --- a/system/memkind/memkind.info +++ b/system/memkind/memkind.info @@ -1,10 +1,10 @@ PRGNAM="memkind" VERSION="1.14.0" HOMEPAGE="https://pmem.io/memkind/" -DOWNLOAD="https://github.com/memkind/memkind/archive/v1.14.0/memkind-1.14.0.tar.gz" -MD5SUM="252ee2458d7830774ee0ac003f2140a1" -DOWNLOAD_x86_64="" -MD5SUM_x86_64="" +DOWNLOAD="UNSUPPORTED" +MD5SUM="" +DOWNLOAD_x86_64="https://github.com/memkind/memkind/archive/v1.14.0/memkind-1.14.0.tar.gz" +MD5SUM_x86_64="252ee2458d7830774ee0ac003f2140a1" REQUIRES="numactl pandoc-bin" MAINTAINER="Vijay Marcel" EMAIL="vijaymarcel@outlook.com" -- cgit v1.2.3