summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author Matt Egger <bru.barwal@sdf.org>2023-12-06 10:20:25 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2023-12-06 11:14:18 +0700
commit9d31fe827ce55a2ef3ab08e2022b9f6d584574e5 (patch)
tree9e2967d017e21f390a8da5bccc77f56ea6160778
parent21e851837ef6bf37dc30696356eef99d22fca814 (diff)
downloadslackbuilds-9d31fe827ce55a2ef3ab08e2022b9f6d584574e5.tar.gz
slackbuilds-9d31fe827ce55a2ef3ab08e2022b9f6d584574e5.tar.xz
system/openzfs: Updated for version 2.2.2.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--system/openzfs/README2
-rw-r--r--system/openzfs/openzfs.SlackBuild5
-rw-r--r--system/openzfs/openzfs.info10
3 files changed, 10 insertions, 7 deletions
diff --git a/system/openzfs/README b/system/openzfs/README
index 671c2cfdc9..d99aed9e57 100644
--- a/system/openzfs/README
+++ b/system/openzfs/README
@@ -11,3 +11,5 @@ from that of the build machine, e.g. `export KERNEL=5.15.116`.
Dracut support is compiled in if dracut is installed at the time of
building.
+
+NOTE for Slackware-x86: this build requires i686, i586 will fail.
diff --git a/system/openzfs/openzfs.SlackBuild b/system/openzfs/openzfs.SlackBuild
index e7e629770b..4ea4c8d822 100644
--- a/system/openzfs/openzfs.SlackBuild
+++ b/system/openzfs/openzfs.SlackBuild
@@ -32,7 +32,7 @@ cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=openzfs
SRCNAM=zfs
-VERSION=${VERSION:-2.2.1}
+VERSION=${VERSION:-2.2.2}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -42,7 +42,8 @@ PKGVER="$(printf %s "${VERSION}_${KERNEL}" | tr - _)"
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
- i?86) ARCH=i586 ;;
+ i586) ARCH=i586 ;;
+ i686) ARCH=i686 ;;
arm*) ARCH=arm ;;
*) ARCH=$( uname -m ) ;;
esac
diff --git a/system/openzfs/openzfs.info b/system/openzfs/openzfs.info
index 91b526f0fb..016d6e11cd 100644
--- a/system/openzfs/openzfs.info
+++ b/system/openzfs/openzfs.info
@@ -1,10 +1,10 @@
PRGNAM="openzfs"
-VERSION="2.2.1"
+VERSION="2.2.2"
HOMEPAGE="https://openzfs.org"
-DOWNLOAD="UNSUPPORTED"
-MD5SUM=""
-DOWNLOAD_x86_64="https://github.com/openzfs/zfs/releases/download/zfs-2.2.1/zfs-2.2.1.tar.gz"
-MD5SUM_x86_64="02ebe39b7001b45efd68249c5fd125c7"
+DOWNLOAD="https://github.com/openzfs/zfs/releases/download/zfs-2.2.2/zfs-2.2.2.tar.gz"
+MD5SUM="bbfea5e8d22e7484150038668d0d410a"
+DOWNLOAD_x86_64=""
+MD5SUM_x86_64=""
REQUIRES=""
MAINTAINER="Matt Egger"
EMAIL="bru.barwal@sdf.org"