diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-26 15:34:20 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2018-11-26 15:35:03 +0000 |
commit | 8643f032e7444b5278ff8de99fa059726c440b94 (patch) | |
tree | 6d56a786a8b2c6a9b1b2f4cd35c6f333d2b17430 | |
parent | 8dc0e43d5a410a6f173c14caaa625adaf45f11f4 (diff) | |
download | aports-8643f032e7444b5278ff8de99fa059726c440b94.tar.bz2 aports-8643f032e7444b5278ff8de99fa059726c440b94.tar.xz |
main/acf-core: update lua-json4 depends
commit 66573786035d (main/lua-json4: install into lua/common, remove
subpkgs, add rock_manifest) renamed the lua5.x-json4 packages and added
a provides for backwards compatibility. But the build time dependencies
does not resolve the provides so builder will fail figure out the build
time order.
We work aorund this by adding an explicit depend of lua-json4, without
the lua version, so we no longer depend on proper provides resolving.
-rw-r--r-- | main/acf-core/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/main/acf-core/APKBUILD b/main/acf-core/APKBUILD index 2793a09559..35be35999b 100644 --- a/main/acf-core/APKBUILD +++ b/main/acf-core/APKBUILD @@ -3,14 +3,14 @@ _luaversion="5.2" pkgname=acf-core pkgver=0.21.1 -pkgrel=0 +pkgrel=1 pkgdesc="A web-based system administration interface framework" url="https://git.alpinelinux.org/cgit/acf/acf-core" arch="noarch" license="GPL-2.0" install="$pkgname.post-upgrade" depends="acf-jquery acf-lib acf-skins haserl-lua$_luaversion lua$_luaversion - lua$_luaversion-posix lua$_luaversion-md5 lua$_luaversion-json4 + lua$_luaversion-posix lua$_luaversion-md5 lua-json4 lua$_luaversion-subprocess" source="https://dev.alpinelinux.org/archive/$pkgname/$pkgname-$pkgver.tar.xz" |