blob: 4e351f0ef4df457be4838c35bc20e10336205bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
|
# Maintainer: Caleb Maclennan <caleb@alerque.com>
# Contributor: Stephen Smith <stephen304@gmail.com>
_rockname=copas
pkgname=("lua-$_rockname" "lua53-$_rockname" "lua52-$_rockname" "lua51-$_rockname")
pkgver=4.7.0
_rockrel=1
pkgrel=6
pkgdesc='A dispatcher based on coroutines that can be used by TCP/IP servers'
arch=(x86_64 i686)
url="https://lunarmodules.github.io/$_rockname"
_url="https://github.com/lunarmodules/$_rockname"
license=('MIT')
_luadeps=(binaryheap
socket
timerwheel)
makedepends=(lua
lua53
lua52
lua51
luarocks)
_archive="$_rockname-$pkgver"
source=("$_url/archive/$pkgver/$_archive.tar.gz")
sha256sums=('54c16a5f56ff32f3a6c9410f5927c33156c81fde035772e5adc6404565ed3d3a')
_package() {
cd "$_archive"
luarocks --lua-version="$1" --tree="$pkgdir/usr/" \
make --deps-mode=none --no-manifest \
"rockspec/$_archive-$_rockrel.rockspec"
if [[ $1 != 5.4 ]]; then
rm -f $pkgdir/usr/bin/$_rockname
fi
}
package_lua-copas() {
depends+=("${pkgname%%-*}" "${_luadeps[@]/#/${pkgname%%-*}-}")
optdepends+=("${pkgname%%-*}-sec: secure sockets support")
_package 5.4
}
package_lua53-copas() {
depends+=("${pkgname%%-*}" "${_luadeps[@]/#/${pkgname%%-*}-}")
optdepends+=("${pkgname%%-*}-sec: secure sockets support")
_package 5.3
}
package_lua52-copas() {
depends+=("${pkgname%%-*}" "${_luadeps[@]/#/${pkgname%%-*}-}")
optdepends+=("${pkgname%%-*}-sec: secure sockets support")
_package 5.2
}
package_lua51-copas() {
depends+=("${pkgname%%-*}" "${_luadeps[@]/#/${pkgname%%-*}-}")
optdepends+=("${pkgname%%-*}-sec: secure sockets support")
depends+=(lua51-coxpcall)
_package 5.1
}
|