blob: c014588660885ee8031ee32907de61d9ff406bca (
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
|
# Maintainer: AlphaJack <alphajack at tuta dot io>
# Contributor: ValHue <vhuelamo at gmail dot com>
# Contributor: korjjj <korjjj+aur[at]gmail[dot]com>
_name="ws4py"
pkgname="python-${_name}"
pkgver=0.6.0
pkgrel=1
pkgdesc="WebSocket client and server library for Python"
url="https://github.com/Lawouach/WebSocket-for-Python"
license=("BSD")
arch=("any")
depends=("python")
makedepends=("python-build" "python-installer" "python-wheel" "python-setuptools")
provides=("$_name" "$pkgname")
source=("$_name-$pkgver.tar.gz::$url/archive/$pkgver.tar.gz")
b2sums=('d5dde49408a0d2384e3225ab5d4f741b887dca6979ee9ece75edc0251920a5075e07c3642c3bd24dbce130fc8a833bfbe5aebc4bb7771b267191587c9c88ff6e')
prepare(){
cd "WebSocket-for-Python-$pkgver"
# installation warning
sed -i "setup.py" \
-e "s|distutils|setuptools|g"
# https://github.com/Lawouach/WebSocket-for-Python/issues/250
IFS=$'\n' fileList=($(grep -rnl "asyncio.async"))
for file in "${fileList[@]}"; do
sed -i "$file" \
-e "s|asyncio.async|asyncio.ensure_future|g"
done
}
build(){
cd "WebSocket-for-Python-$pkgver"
python -m build --wheel --no-isolation
}
package(){
cd "WebSocket-for-Python-$pkgver"
python -m installer --destdir="$pkgdir" dist/*.whl
}
# vim:set ts=4 sw=4 ft=sh et:
|