mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-02-17 05:42:27 +01:00
78 lines
2.9 KiB
Plaintext
78 lines
2.9 KiB
Plaintext
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
|
|
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
|
|
pkgname=lua-http
|
|
pkgver=0.4
|
|
pkgrel=2
|
|
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"
|
|
license="MIT"
|
|
depends="lua-binaryheap lua-cqueues lua-basexx lua-fifo lua-lpeg lua-lpeg_patterns>=0.5 lua-ossl"
|
|
makedepends="lua-bit32 lua-compat53"
|
|
checkdepends="lua-busted lua5.1-compat53 lua5.2-compat53 lua5.1-bit32 luajit"
|
|
source="$pkgname-$pkgver.tar.gz::https://github.com/daurnimator/lua-http/archive/v$pkgver.tar.gz
|
|
fix-cookie-spec-test.patch
|
|
$pkgname-fix-tls-test.patch::https://github.com/daurnimator/lua-http/commit/169c1a7586d39be1bf0d98b69934e8e8b08a87cd.patch
|
|
fix-tests-key-too-small.patch
|
|
fix-request-spec.patch
|
|
CVE-2023-4540.patch
|
|
"
|
|
|
|
# secfixes:
|
|
# 0.4-r2:
|
|
# - CVE-2023-4540
|
|
|
|
case "$CARCH" in
|
|
# FIXME: Some tests fail with "Address not available".
|
|
# ppc64le hangs, riscv64, loongarch64 doesn't have luajit
|
|
aarch64|arm*|ppc64le|riscv64|loongarch64) options="!check";;
|
|
esac
|
|
|
|
_luaversions="5.1 5.2 5.3"
|
|
for _v in $_luaversions; do
|
|
checkdepends="$checkdepends lua$_v lua$_v-busted"
|
|
subpackages="$subpackages lua$_v-${pkgname#lua-}:_subpackage"
|
|
done
|
|
|
|
check() {
|
|
local lver; for lver in $_luaversions jit; do
|
|
msg "Testing on lua$lver"
|
|
lua$lver /usr/bin/busted
|
|
done
|
|
}
|
|
|
|
package() {
|
|
mkdir -p "$pkgdir"
|
|
}
|
|
|
|
_subpackage() {
|
|
local lver="${subpkgname:3:3}"
|
|
pkgdesc="$pkgdesc (for Lua $lver)"
|
|
depends="lua$lver ${depends//lua-/lua$lver-}"
|
|
install_if="$pkgname=$pkgver-r$pkgrel lua$lver"
|
|
local lmod_dir="$subpkgdir/usr/share/lua/$lver"
|
|
local rockdir="$subpkgdir/usr/lib/luarocks/rocks-$lver/$pkgname/$pkgver-1"
|
|
|
|
if [ "$lver" != "5.3" ]; then
|
|
depends="$depends lua$lver-compat53"
|
|
fi
|
|
if [ "$lver" = "5.1" ]; then
|
|
depends="$depends lua5.1-bit32"
|
|
fi
|
|
|
|
mkdir -p "$lmod_dir"
|
|
cp -r "$builddir"/http "$lmod_dir"/
|
|
|
|
mkdir -p "$rockdir"
|
|
echo 'rock_manifest = {}' > "$rockdir"/rock_manifest
|
|
}
|
|
|
|
sha512sums="
|
|
3933c36e2d439c81ba4506d3ab1dd53a85ba3cd641abbd945210bdc6b6edb3e01516adb473cf59c5c194d9f45e7de9196e31265318d01c5b7684bb5e87dbd26a lua-http-0.4.tar.gz
|
|
32208d4389d4f1930a2e3b73868ab3070940e4e4819624556050356624718bbcb71b2da4fd9334ed2171eb14c3ed134d2ce201600948fd2372afca09ea2104b5 fix-cookie-spec-test.patch
|
|
01d558cb2f900bf751557652c04f651326cb352d975c4be1aaeff9126d2c4aebebf61b89327f3508f90df66ba8086a4704ba63000a1ea5a854bb1e08853b94dd lua-http-fix-tls-test.patch
|
|
28e7b37d272664fa4ce49ea815444d4b6668279005ea5f0d97c9b841ff6ea505c7dd778d4c531e7839b27c0e6a8c6f0151d26d534146dd59ac4c07d7474a3a8e fix-tests-key-too-small.patch
|
|
a9f98c2428dc595a595beb522a2d725696c8080331cb6326da07ad79148a5482c725a22a753752eab94121e62e4647f3fe9b99ebc5954e142ccedaf631c38673 fix-request-spec.patch
|
|
6cc7b0c63f508e141492c2d72e49cc6e91f0a2efb16d3616d03f8ae56a1d1a9a97d68c837a6215505b191c70e5f6c5247946bffaafee85d7d09c895bc1feafe3 CVE-2023-4540.patch
|
|
"
|