diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2018-11-13 14:11:38 -0500 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2018-11-13 14:11:38 -0500 |
commit | d6e26984bcfb5deea8aaa4b72b0997c2bf768a7a (patch) | |
tree | 62e911badbba10652fc3309322ee8311cbffac65 | |
parent | rm unneeded files (diff) | |
download | zfs-dkms-d6e26984bcfb5deea8aaa4b72b0997c2bf768a7a.tar.xz |
upgpkg: zfs-dkms 0.7.12-1
upstream release
Move versioned spl and utils dependencies to package() in order to allow
the package to build with mismatched dependencies. In order to install
the resulting packages, the dependent packages will need to be installed
in the same transaction, but without the build-time dependency, it is no
longer necessary to uninstall the package set for as a prerequisite to
building the updated packages.
-rw-r--r-- | .SRCINFO | 12 | ||||
-rw-r--r-- | PKGBUILD | 7 |
2 files changed, 10 insertions, 9 deletions
@@ -1,16 +1,13 @@ pkgbase = zfs-dkms pkgdesc = Kernel modules for the Zettabyte File System. - pkgver = 0.7.11 - pkgrel = 2 + pkgver = 0.7.12 + pkgrel = 1 url = https://zfsonlinux.org/ arch = any license = CDDL makedepends = git - depends = spl-dkms=0.7.11 - depends = zfs-utils=0.7.11 - depends = dkms provides = zfs - source = git+https://github.com/zfsonlinux/zfs.git#tag=zfs-0.7.11?signed + source = git+https://github.com/zfsonlinux/zfs.git#tag=zfs-0.7.12?signed source = 0001-only-build-the-module-in-dkms.conf.patch validpgpkeys = 4F3BA9AB6D1F8D683DC2DFB56AD860EED4598027 validpgpkeys = C33DF142657ED1F7C328A2960AB9E991C6AF658B @@ -18,4 +15,7 @@ pkgbase = zfs-dkms sha256sums = 780e590383fb00389c5e02ac15709b7a476d9e07d3c4935ed9eb67c951a88409 pkgname = zfs-dkms + depends = spl-dkms=0.7.12 + depends = zfs-utils=0.7.12 + depends = dkms @@ -2,13 +2,12 @@ # Contributor: Iacopo Isimbaldi <isiachi@rhye.it> pkgname=zfs-dkms -pkgver=0.7.11 -pkgrel=2 +pkgver=0.7.12 +pkgrel=1 pkgdesc="Kernel modules for the Zettabyte File System." arch=('any') url="https://zfsonlinux.org/" license=('CDDL') -depends=("spl-dkms=${pkgver}" "zfs-utils=${pkgver}" 'dkms') makedepends=('git') provides=("${pkgname%-dkms}") source=("git+https://github.com/zfsonlinux/zfs.git#tag=zfs-${pkgver}?signed" @@ -34,6 +33,8 @@ prepare() { } package() { + depends=("spl-dkms=${pkgver}" "zfs-utils=${pkgver}" 'dkms') + cd "${srcdir}"/${pkgname%-dkms} dkmsdir="${pkgdir}/usr/src/${pkgname%-dkms}-${pkgver}" |