system/openzfs: Updated for version 2.2.2.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Matt Egger 2023-12-06 10:20:25 +07:00 committed by Willy Sudiarto Raharjo
parent 21e851837e
commit 9d31fe827c
3 changed files with 10 additions and 7 deletions

View File

@ -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.

View File

@ -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

View File

@ -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"