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

Chih-Hsuan Yen yan12125 at archlinux.org
Sat Jan 11 12:28:09 UTC 2020


    Date: Saturday, January 11, 2020 @ 12:28:08
  Author: yan12125
Revision: 551892

archrelease: copy trunk to community-x86_64

Added:
  python-autobahn/repos/community-x86_64/PKGBUILD
    (from rev 551891, python-autobahn/trunk/PKGBUILD)
  python-autobahn/repos/community-x86_64/pytest-compatibility.diff
    (from rev 551891, python-autobahn/trunk/pytest-compatibility.diff)
Deleted:
  python-autobahn/repos/community-x86_64/PKGBUILD

---------------------------+
 PKGBUILD                  |  113 ++++++++++++++++++++++----------------------
 pytest-compatibility.diff |   13 +++++
 2 files changed, 72 insertions(+), 54 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2020-01-11 12:27:44 UTC (rev 551891)
+++ PKGBUILD	2020-01-11 12:28:08 UTC (rev 551892)
@@ -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.11.1
-pkgrel=2
-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=('201b9879b49c6e259d4126dbafe9e3c73807de0c242d50065fbebc62c6ccb181')
-
-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 551891, python-autobahn/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2020-01-11 12:28:08 UTC (rev 551892)
@@ -0,0 +1,59 @@
+# Maintainer: Morten Linderud <foxboron at archlinux.org>
+# Maintainer: Chih-Hsuan Yen <yan12125 at archlinux.org>
+# Maintainer: Anatol Pomozov
+
+pkgname=python-autobahn
+pkgver=19.11.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
+        pytest-compatibility.diff)
+sha256sums=('64fa063b3a1ab16588037d4713f13f66167f7ad2a2e95fd675decbc3bc85c089'
+            '07af16d4f41f5cccb269ccce0c887d347f9158e25002a638071b178130add8c4')
+
+prepare() {
+  cd "$srcdir/autobahn-$pkgver"
+  patch -Np1 -i ../pytest-compatibility.diff
+}
+
+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]))")
+  # test_depleting checks whether the entropy on the running machine can be depleted or not.
+  # Unrelated to autobahn and makes the test suite flaky
+  # Now test_non_depleting is also flaky :(
+  # https://github.com/crossbario/autobahn-python/issues/1278
+  USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn --ignore=autobahn/test/test_rng.py
+  USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-$pyver pytest -v autobahn --ignore=autobahn/test/test_rng.py
+}
+
+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/pytest-compatibility.diff (from rev 551891, python-autobahn/trunk/pytest-compatibility.diff)
===================================================================
--- pytest-compatibility.diff	                        (rev 0)
+++ pytest-compatibility.diff	2020-01-11 12:28:08 UTC (rev 551892)
@@ -0,0 +1,13 @@
+diff --git a/autobahn/wamp/test/test_user_handler_errors.py b/autobahn/wamp/test/test_user_handler_errors.py
+index 35570bad..8f1b0181 100644
+--- a/autobahn/wamp/test/test_user_handler_errors.py
++++ b/autobahn/wamp/test/test_user_handler_errors.py
+@@ -108,7 +108,7 @@ if os.environ.get('USE_TWISTED', False):
+         # twice)...but that would mean switching all test-running over
+         # to py-test
+ 
+-        skip = True
++        skip = 'True'
+ 
+         def test_on_join(self):
+             session = MockApplicationSession()



More information about the arch-commits mailing list