Date: Friday, August 2, 2019 @ 07:21:36 Author: yan12125 Revision: 496536
upgpkg: python-autobahn 19.8.1-1 * Added $pyver for Python 3.8 Modified: python-autobahn/trunk/PKGBUILD ----------+ PKGBUILD | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2019-08-02 07:21:36 UTC (rev 496535) +++ PKGBUILD 2019-08-02 07:21:36 UTC (rev 496536) @@ -3,7 +3,7 @@ # Maintainer: Anatol Pomozov pkgname=python-autobahn -pkgver=19.7.2 +pkgver=19.8.1 pkgrel=1 pkgdesc='Real-time framework for Web, Mobile & Internet of Things' arch=(x86_64) @@ -25,7 +25,7 @@ ) source=(https://files.pythonhosted.org/packages/source/a/autobahn/autobahn-$pkgver.tar.gz) -sha256sums=('60c2f283137b3aafc06f274949387eebcc78c8faad580a8755f6dc83c74bf0e2') +sha256sums=('294e7381dd54e73834354832604ae85567caf391c39363fed0ea2bfa86aa4304') build() { cd "$srcdir/autobahn-$pkgver" @@ -34,10 +34,11 @@ 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 - USE_TWISTED=1 PYTHONPATH=.:build/lib.linux-$CARCH-3.7 pytest -v autobahn -k 'not test_depleting' - USE_ASYNCIO=1 PYTHONPATH=.:build/lib.linux-$CARCH-3.7 pytest -v autobahn -k 'not test_depleting' + 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' } package() {
