2019-03-25 12:51:36 +00:00
|
|
|
# Maintainer: Morten Linderud <foxboron@archlinux.org>
|
|
|
|
# Maintainer: Chih-Hsuan Yen <yan12125@archlinux.org>
|
|
|
|
# Maintainer: Anatol Pomozov
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - removed AUTOBAHN_USE_NVX=1 from python build/install commands
|
|
|
|
|
|
|
|
pkgname=python-autobahn
|
2019-08-02 12:38:31 +00:00
|
|
|
pkgver=19.8.1
|
2019-03-25 12:51:36 +00:00
|
|
|
pkgrel=1
|
|
|
|
pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
|
|
|
|
arch=(x86_64)
|
|
|
|
url='https://crossbar.io/autobahn/'
|
|
|
|
license=(MIT)
|
2019-06-05 12:49:04 +00:00
|
|
|
depends=(python-cffi python-twisted python-six python-txaio python-wsaccel
|
|
|
|
python-setuptools python-cryptography)
|
2019-05-12 15:59:04 +00:00
|
|
|
makedepends=(python-argon2_cffi python-cbor python-flatbuffers
|
|
|
|
python-msgpack python-passlib python-pynacl python-ubjson)
|
2019-03-25 12:51:36 +00:00
|
|
|
checkdepends=(python-mock python-pytest python-pytest-asyncio)
|
|
|
|
optdepends=(
|
2019-05-12 15:59:04 +00:00
|
|
|
'python-cbor: CBOR serializer support'
|
|
|
|
'python-flatbuffers: FlatBuffers serializer support'
|
2019-03-25 12:51:36 +00:00
|
|
|
'python-msgpack: MsgPack serializer support'
|
2019-05-12 15:59:04 +00:00
|
|
|
'python-ubjson: UBJSON serializer support'
|
2019-03-25 12:51:36 +00:00
|
|
|
'python-argon2_cffi: WAMP-SCRAM authentication support'
|
|
|
|
'python-passlib: WAMP-SCRAM authentication support'
|
|
|
|
'python-pynacl: WAMP-cryptosign support'
|
|
|
|
)
|
|
|
|
|
2019-05-12 15:59:04 +00:00
|
|
|
source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
|
2019-08-02 12:38:31 +00:00
|
|
|
sha256sums=('294e7381dd54e73834354832604ae85567caf391c39363fed0ea2bfa86aa4304')
|
2019-03-25 12:51:36 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd "$srcdir/autobahn-$pkgver"
|
|
|
|
python setup.py build
|
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd "$srcdir/autobahn-$pkgver"
|
2019-08-02 12:38:31 +00:00
|
|
|
pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
|
2019-07-26 03:31:04 +00:00
|
|
|
# test_depleting checks whether the entropy on the running machine can be depleted or not.
|
|
|
|
# Unrelated to autobahn and makes the test suite flaky
|
2019-08-02 12:38:31 +00:00
|
|
|
USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn -k 'not test_depleting'
|
|
|
|
USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn -k 'not test_depleting'
|
2019-03-25 12:51:36 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd "$srcdir/autobahn-$pkgver"
|
|
|
|
python setup.py install --root="$pkgdir" --optimize=1 --skip-build
|
|
|
|
install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
|
|
|
|
}
|