[arch-commits] Commit in python-autobahn/repos/community-x86_64 (PKGBUILD PKGBUILD)

Chih-Hsuan Yen yan12125 at archlinux.org
Fri Aug 30 02:10:43 UTC 2019


    Date: Friday, August 30, 2019 @ 02:10:42
  Author: yan12125
Revision: 505099

archrelease: copy trunk to community-x86_64

Added:
  python-autobahn/repos/community-x86_64/PKGBUILD
    (from rev 505098, python-autobahn/trunk/PKGBUILD)
Deleted:
  python-autobahn/repos/community-x86_64/PKGBUILD

----------+
 PKGBUILD |  108 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 54 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-08-30 02:10:26 UTC (rev 505098)
+++ PKGBUILD	2019-08-30 02:10:42 UTC (rev 505099)
@@ -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=19.9.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-six 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-mock python-pytest python-pytest-asyncio)
-optdepends=(
-  'python-cbor: CBOR serializer support'
-  'python-flatbuffers: FlatBuffers serializer support'
-  'python-msgpack: MsgPack serializer support'
-  'python-ubjson: UBJSON 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'
-)
-
-source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
-sha256sums=('17f4bd5adbe3fcb757c427867af2ef7d21786afdfc060b04fa9eb84f93e54ba8')
-
-prepare() {
-  cd "$srcdir/autobahn-$pkgver"
-  # test_depleting checks whether the entropy on the running machine can be depleted or not.
-  # Unrelated to autobahn and makes the test suite flaky
-  sed -i -r 's/^(\s*)(def test_depleting)/\1 at unittest.skip("flaky")\n\1\2/' autobahn/test/test_rng.py
-}
-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]))")
-  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 505098, python-autobahn/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-08-30 02:10:42 UTC (rev 505099)
@@ -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=19.9.2
+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-six 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-mock python-pytest python-pytest-asyncio)
+optdepends=(
+  'python-cbor: CBOR serializer support'
+  'python-flatbuffers: FlatBuffers serializer support'
+  'python-msgpack: MsgPack serializer support'
+  'python-ubjson: UBJSON 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'
+)
+
+source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz)
+sha256sums=('985401e0af1c5f3fb59a209681ee878194c23fe88f865f6157679aa1db386724')
+
+prepare() {
+  cd "$srcdir/autobahn-$pkgver"
+  # test_depleting checks whether the entropy on the running machine can be depleted or not.
+  # Unrelated to autobahn and makes the test suite flaky
+  sed -i -r 's/^(\s*)(def test_depleting)/\1 at unittest.skip("flaky")\n\1\2/' autobahn/test/test_rng.py
+}
+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]))")
+  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