summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Severance2020-06-21 20:59:28 -0400
committerChris Severance2020-06-21 20:59:28 -0400
commit8a2a8b2c6f623a3e27c9d2796da22578cca9662a (patch)
treeb99fa4f64c382a418cbc8bed116efd5ca45f3149
parent430e5d55cf6f235c886db4d403e068d5fb41ba5b (diff)
downloadaur-8a2a8b2c6f623a3e27c9d2796da22578cca9662a.tar.gz
autu: Update to 0.8.0.r858.g1c08fa8b5-1
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD20
2 files changed, 11 insertions, 13 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 1681af036343..bc160543b47c 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
# Generated by mksrcinfo v8
-# Tue Apr 7 01:46:22 UTC 2020
+# Mon Jun 22 00:59:28 UTC 2020
pkgbase = zfs-linux-git
- pkgver = 0.8.0.r710.g4a21ec056
+ pkgver = 0.8.0.r858.g1c08fa8b5
pkgrel = 1
url = https://zfsonlinux.org/
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index c530ab898e52..f6c4ed451f47 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -28,7 +28,7 @@ fi
if [ "${_opt_UTIL}" -eq 1 ]; then
pkgname+=("zfs-utils${_opt_git}")
fi
-pkgver=0.8.0.r710.g4a21ec056
+pkgver=0.8.0.r858.g1c08fa8b5
pkgrel=1
_pkgver="${pkgver%%.r*}"
#_commit="#branch=zfs-${_pkgver%.*}-release"
@@ -120,16 +120,13 @@ prepare() {
set -u
cd "${_srcdir}"
- local _f
- for _f in "${source[@]}"; do
- _f="${_f%%::*}"
- _f="${_f##*/}"
- case "${_f}" in
- *.patch)
- set +u; msg2 "Patch ${_f}"; set +u
- patch -Nup1 -i "${srcdir}/${_f}"
- ;;
- esac
+ local _pt
+ for _pt in "${source[@]%%::*}"; do
+ _pt="${_pt##*/}"
+ if [[ "${_pt}" = *.patch ]]; then
+ set +u; msg2 "Patch ${_pt}"; set -u
+ patch -Nup1 -i "${srcdir}/${_pt}"
+ fi
done
# DKMS install customized all the way back to autoconf
@@ -316,6 +313,7 @@ _del_modules() {
package_zfs-utils-git() {
set -u
pkgdesc='Userspace utilities for the Zettabyte File System.'
+ depends=('systemd')
optdepends=(
'python: for arcstat/arc_summary/dbufstat'
)