[arch-commits] Commit in python-autobahn/repos/community-x86_64 (PKGBUILD PKGBUILD)
Morten Linderud
foxboron at archlinux.org
Wed Apr 1 21:22:57 UTC 2020
Date: Wednesday, April 1, 2020 @ 21:22:56
Author: foxboron
Revision: 609262
archrelease: copy trunk to community-x86_64
Added:
python-autobahn/repos/community-x86_64/PKGBUILD
(from rev 609261, python-autobahn/trunk/PKGBUILD)
Deleted:
python-autobahn/repos/community-x86_64/PKGBUILD
----------+
PKGBUILD | 108 ++++++++++++++++++++++++++++++-------------------------------
1 file changed, 54 insertions(+), 54 deletions(-)
Deleted: PKGBUILD
===================================================================
--- PKGBUILD 2020-04-01 21:22:47 UTC (rev 609261)
+++ PKGBUILD 2020-04-01 21:22:56 UTC (rev 609262)
@@ -1,54 +0,0 @@
-# Maintainer: Morten Linderud <foxboron at archlinux.org>
-# Maintainer: Chih-Hsuan Yen <yan12125 at archlinux.org>
-# Maintainer: Anatol Pomozov
-
-pkgname=python-autobahn
-pkgver=20.3.1
-pkgrel=1
-pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
-arch=(x86_64)
-url='https://crossbar.io/autobahn/'
-license=(MIT)
-depends=(python-cffi python-twisted python-txaio python-wsaccel
- python-setuptools python-cryptography)
-makedepends=(python-argon2_cffi python-cbor python-flatbuffers
- python-msgpack python-passlib python-pynacl python-pytrie
- python-ubjson)
-checkdepends=(python-pytest python-pytest-asyncio)
-optdepends=(
- 'python-cbor: CBOR serializer support'
- 'python-flatbuffers: FlatBuffers serializer support'
- 'python-msgpack: MsgPack serializer support'
- 'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack serializer support'
- 'python-ubjson: UBJSON serializer support'
- 'python-ujson: accelerated JSON serializer support'
- 'python-argon2_cffi: WAMP-SCRAM authentication support'
- 'python-passlib: WAMP-SCRAM authentication support'
- 'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
- 'python-pytrie: WAMP-cryptobox support'
- 'python-pyopenssl: SSL/TLS support'
- 'python-snappy: snappy compression suppport for WebSocket messages'
-)
-
-source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('88e150e4b3d284b83daafd8e0b289a5625ee00c633a2c580055bf1be2d391002')
-
-build() {
- cd "$srcdir/autobahn-$pkgver"
- AUTOBAHN_USE_NVX=1 python setup.py build
-}
-
-check() {
- cd "$srcdir/autobahn-$pkgver"
- pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
- # "autobahn on asyncio is tested using pytest, while for twisted we are using twisted trial"
- # https://github.com/crossbario/autobahn-python/issues/1235#issuecomment-522440810
- USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver trial3 autobahn
- USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn
-}
-
-package() {
- cd "$srcdir/autobahn-$pkgver"
- AUTOBAHN_USE_NVX=1 python setup.py install --root="$pkgdir" --optimize=1 --skip-build
- install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
-}
Copied: python-autobahn/repos/community-x86_64/PKGBUILD (from rev 609261, python-autobahn/trunk/PKGBUILD)
===================================================================
--- PKGBUILD (rev 0)
+++ PKGBUILD 2020-04-01 21:22:56 UTC (rev 609262)
@@ -0,0 +1,54 @@
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Maintainer: Chih-Hsuan Yen <yan12125 at archlinux.org>
+# Maintainer: Anatol Pomozov
+
+pkgname=python-autobahn
+pkgver=20.4.1
+pkgrel=1
+pkgdesc='Real-time framework for Web, Mobile & Internet of Things'
+arch=(x86_64)
+url='https://crossbar.io/autobahn/'
+license=(MIT)
+depends=(python-cffi python-twisted python-txaio python-wsaccel
+ python-setuptools python-cryptography)
+makedepends=(python-argon2_cffi python-cbor python-flatbuffers
+ python-msgpack python-passlib python-pynacl python-pytrie
+ python-ubjson)
+checkdepends=(python-pytest python-pytest-asyncio)
+optdepends=(
+ 'python-cbor: CBOR serializer support'
+ 'python-flatbuffers: FlatBuffers serializer support'
+ 'python-msgpack: MsgPack serializer support'
+ 'python-u-msgpack: pure-python alternative to python-msgpack for MsgPack serializer support'
+ 'python-ubjson: UBJSON serializer support'
+ 'python-ujson: accelerated JSON serializer support'
+ 'python-argon2_cffi: WAMP-SCRAM authentication support'
+ 'python-passlib: WAMP-SCRAM authentication support'
+ 'python-pynacl: WAMP-cryptosign and WAMP-cryptobox support'
+ 'python-pytrie: WAMP-cryptobox support'
+ 'python-pyopenssl: SSL/TLS support'
+ 'python-snappy: snappy compression suppport for WebSocket messages'
+)
+
+source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('6d3989e4d8b0e961c9d3bb1fe133099767bbd5080cea21b2bdc2a0a1b4581b2e')
+
+build() {
+ cd "$srcdir/autobahn-$pkgver"
+ AUTOBAHN_USE_NVX=1 python setup.py build
+}
+
+check() {
+ cd "$srcdir/autobahn-$pkgver"
+ pyver=$(python -c "import sys; print('{}.{}'.format(*sys.version_info[:2]))")
+ # "autobahn on asyncio is tested using pytest, while for twisted we are using twisted trial"
+ # https://github.com/crossbario/autobahn-python/issues/1235#issuecomment-522440810
+ USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver trial3 autobahn
+ USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn
+}
+
+package() {
+ cd "$srcdir/autobahn-$pkgver"
+ AUTOBAHN_USE_NVX=1 python setup.py install --root="$pkgdir" --optimize=1 --skip-build
+ install -Dm644 LICENSE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
+}
More information about the arch-commits
mailing list