diff options
author | Max Rees <maxcrees@me.com> | 2020-02-24 18:31:54 -0600 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2020-02-24 18:31:54 -0600 |
commit | 8d2e00db5f387a3d8baa8961cdf6fa847ced9761 (patch) | |
tree | ef221164c7133bc59854b3703dca2963840c61b2 /user/xf86-video-ati | |
parent | f640f3f0531846f50cd7c418df170a30a22ee7fe (diff) | |
download | packages-8d2e00db5f387a3d8baa8961cdf6fa847ced9761.tar.gz packages-8d2e00db5f387a3d8baa8961cdf6fa847ced9761.tar.bz2 packages-8d2e00db5f387a3d8baa8961cdf6fa847ced9761.tar.xz packages-8d2e00db5f387a3d8baa8961cdf6fa847ced9761.zip |
user/xf86-video-*: ensure depends= on mesa-dri and not old subpackages
If depending on the old subpackages of mesa-dri, apk is not smart enough
to determine that it should replace those old subpackages with the new
unified mesa-dri package, so we change the depends= in each reverse
dependency of those old subpackage names to force apk to purge the old
packages. As usual provides=/replaces= are a mystical art.
Diffstat (limited to 'user/xf86-video-ati')
-rw-r--r-- | user/xf86-video-ati/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/user/xf86-video-ati/APKBUILD b/user/xf86-video-ati/APKBUILD index 4bce3a851..15029c507 100644 --- a/user/xf86-video-ati/APKBUILD +++ b/user/xf86-video-ati/APKBUILD @@ -1,13 +1,13 @@ # Maintainer: A. Wilcox <awilfox@adelielinux.org> pkgname=xf86-video-ati pkgver=19.1.0 -pkgrel=1 +pkgrel=2 pkgdesc="ATI video driver for X11" url="https://www.X.Org/" arch="all" options="!check" # No test suite. license="MIT" -depends="mesa-dri-ati" +depends="mesa-dri" makedepends="eudev-dev libdrm-dev libxi-dev mesa-dev pixman-dev util-macros xorg-server-dev" subpackages="$pkgname-doc" |