blob: 02524e1768bffb7a682d7cc03a79b1072da80b9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
|
# Maintainer: Bin Jin <bjin@protonmail.com>
# Maintainer: Niccolò Belli <niccolo.belli@linuxsystems.it>
# Contributor: Kevin Stolp <kevinstolp@gmail.com>
# Contributor: Eli Schwartz <eschwartz@archlinux.org>
# Contributor: Iacopo Isimbaldi <isiachi@rhye.it>
_pkgname=zfs
_git_repo=https://github.com/openzfs/zfs.git
if command -v git > /dev/null; then
_git_branch="$(git ls-remote -h --sort=-v:refname "${_git_repo}" 'zfs-*-staging' | head -n 1)"
_git_branch=${_git_branch##*/}
_staging_ver=${_git_branch#zfs-}
_staging_ver=${_staging_ver%-staging}
if git ls-remote -t --exit-code "${_git_repo}" "zfs-${_staging_ver}" >/dev/null; then
_git_branch="tag=zfs-${_staging_ver}"
_base_ver="${_staging_ver}"
else
_git_branch="branch=${_git_branch}"
_base_ver="$(git ls-remote -t --sort=-v:refname "${_git_repo}" "zfs-${_staging_ver%.*}.*[0-9]" | grep -F '.99' -v | head -n 1)"
_base_ver="${_base_ver##*/zfs-}"
_base_ver="${_base_ver:=${_staging_ver%.*}.$((${_staging_ver##*.}-1))}"
fi
else
# We are probably inside a clean chroot environment, use fixed version info instead
_git_branch="branch=zfs-2.3.4-staging"
_staging_ver="2.3.4"
_base_ver="2.3.3"
fi
pkgname=${_pkgname}-dkms-staging-git
pkgver=2.3.3.r0.g1af41fd203
pkgrel=1
pkgdesc="Kernel modules for the Zettabyte File System (release staging branch) with compatibility patches for latest stable kernel."
arch=('any')
url="https://zfsonlinux.org/"
license=('CDDL-1.0')
groups=('zfs-staging-git')
provides=("ZFS-MODULE" "SPL-MODULE" "zfs-dkms" "zfs")
conflicts=("zfs-dkms")
makedepends=("git")
source=("${_pkgname}::git+${_git_repo}#${_git_branch}"
"0001-only-build-the-module-in-dkms.conf.patch"
"69-zfs-dkms-check.hook"
"zfs-dkms-check")
sha256sums=('SKIP'
'3039da5ecb6fe5f7dbaab8492f73d59bcafb8b22bd267f9d72a3ce5e70f82113'
'6c793cdbcf0c758b7bc78dcac85d116052b7a66416e4c54179cb0955687b3875'
'59656435058e41620f15b5691ef1f753355fe81c01a562d92b7c8028aa527b1f')
prepare() {
cd "${srcdir}/${_pkgname}"
msg2 "Staging branch set to ${_git_branch}"
local -a patches
patches=($(printf '%s\n' "${source[@]}" | grep -F '.patch'))
patches=("${patches[@]%%::*}")
patches=("${patches[@]##*/}")
for patch in "${patches[@]}"; do
if patch -p1 -R -i "../$patch" --dry-run -sf >/dev/null; then
msg2 "Ignoring patch $patch..."
else
msg2 "Applying patch $patch..."
patch -p1 -N -i "../$patch"
fi
done
# remove unneeded sections from module build
sed -ri "/AC_CONFIG_FILES/,/]\)/{
/AC_CONFIG_FILES/n
/]\)/n
/^\s*(module\/.*|${_pkgname}.release|Makefile)/!d
}" configure.ac
sed -i -e "s/Version:[[:print:]]*/Version: ${pkgver}/" META
sed -i -e "s/Release:[[:print:]]*/Release: ${pkgrel}/" META
autoreconf -fi
}
pkgver() {
cd "${srcdir}/${_pkgname}"
printf "%s.r%s.g%s" "${_base_ver}" "$(git rev-list zfs-${_base_ver}..HEAD --count)" "$(git rev-parse --short HEAD)"
}
build() {
cd "${srcdir}/${_pkgname}"
./scripts/dkms.mkconf -n ${_pkgname} -v "${pkgver}" -f dkms.conf
printf '#define\tZFS_META_GITREV "zfs-%s"\n' "${pkgver}" >include/zfs_gitrev.h
# ignore "Linux-Maximum" section in META file
sed -i '/^PRE_BUILD=/a\ --enable-linux-experimental' dkms.conf
}
package() {
depends=("zfs-utils>=${_base_ver}" "zfs-utils<=${_staging_ver}" 'dkms')
cd "${srcdir}/${_pkgname}"
dkmsdir="${pkgdir}/usr/src/${_pkgname}-${pkgver}"
install -d "${dkmsdir}"/{config,scripts}
cp -a configure dkms.conf Makefile.in META ${_pkgname}_config.h.in ${_pkgname}.release.in include/ module/ "${dkmsdir}"/
cp config/compile config/config.* config/missing config/*sh "${dkmsdir}"/config/
cp scripts/dkms.postbuild "${dkmsdir}"/scripts/
install -D -m755 -t "${pkgdir}/usr/share/libalpm/scripts" ../zfs-dkms-check
install -D -m644 -t "${pkgdir}/usr/share/libalpm/hooks" ../69-zfs-dkms-check.hook
}
|