diff options
author | Jakub Jirutka <jakub@jirutka.cz> | 2018-10-07 21:22:13 +0200 |
---|---|---|
committer | Jakub Jirutka <jakub@jirutka.cz> | 2018-10-07 21:24:21 +0200 |
commit | a2d8d72222c0715f87cd16157ec9d4b12deb597d (patch) | |
tree | ba37688ef62fc61a01676e7e38cc14971e8f996e /community | |
parent | 24d67bab3a7c8505fac8876207a56751b8214c47 (diff) | |
download | aports-a2d8d72222c0715f87cd16157ec9d4b12deb597d.tar.bz2 aports-a2d8d72222c0715f87cd16157ec9d4b12deb597d.tar.xz |
community/lua-http: fix wrong depend on lua5.[12]-compat5.3
Fixes #9491 (https://bugs.alpinelinux.org/issues/9491)
Diffstat (limited to 'community')
-rw-r--r-- | community/lua-http/APKBUILD | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/community/lua-http/APKBUILD b/community/lua-http/APKBUILD index b46effe6c5..787ddc59bd 100644 --- a/community/lua-http/APKBUILD +++ b/community/lua-http/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Jakub Jirutka <jakub@jirutka.cz> pkgname=lua-http pkgver=0.2 -pkgrel=0 +pkgrel=1 pkgdesc="HTTP Library for Lua that supports HTTP(S) 1.0, 1.1 and 2.0" url="https://github.com/daurnimator/lua-http" arch="noarch" @@ -51,7 +51,7 @@ _subpackage() { local rockdir="$subpkgdir/usr/lib/luarocks/rocks-$lver/$pkgname/$pkgver-1" if [ "$lver" != "5.3" ]; then - depends="$depends lua$lver-compat5.3" + depends="$depends lua$lver-compat53" fi if [ "$lver" = "5.1" ]; then depends="$depends lua5.1-bit32" |