diff options
author | adam <adam@pkgsrc.org> | 2019-05-30 09:10:13 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2019-05-30 09:10:13 +0000 |
commit | ab3180528eee8b828db37f679b40a97021005874 (patch) | |
tree | 59bb3b32ea2f295e8081350b301aa42c5430fe0a /www | |
parent | 199495ec9472fb56cdaf5110088e6b2f30e5cb03 (diff) | |
download | pkgsrc-ab3180528eee8b828db37f679b40a97021005874.tar.gz |
py-autobahn: updated to 19.5.1
19.5.1
fix: authextra merging
fix: set default retry_delay_jitter
new: add rawsocket + twisted example
new: WebSocket testing support, via Agent-style interface
new: decorator for on_connectfailure
fix: delayed call leakage
new: CLI client
fix: set up TLS over proxy properly
new: expose ser modules
fix: base64 encodings, add hex encoding
new: onConnecting callback (with TransportDetails and ConnectingRequest). Note: if you've implemented a pure IWebSocketChannel without inheriting from Autobahn base classes, you'll need to add an onConnecting() method that just does return None.
Diffstat (limited to 'www')
-rw-r--r-- | www/py-autobahn/Makefile | 4 | ||||
-rw-r--r-- | www/py-autobahn/PLIST | 7 | ||||
-rw-r--r-- | www/py-autobahn/distinfo | 10 | ||||
-rw-r--r-- | www/py-autobahn/patches/patch-setup.py | 15 |
4 files changed, 28 insertions, 8 deletions
diff --git a/www/py-autobahn/Makefile b/www/py-autobahn/Makefile index 36b9b9d9a17..9be43dfc2f6 100644 --- a/www/py-autobahn/Makefile +++ b/www/py-autobahn/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.22 2019/05/02 09:37:01 adam Exp $ +# $NetBSD: Makefile,v 1.23 2019/05/30 09:10:13 adam Exp $ -DISTNAME= autobahn-19.3.3 +DISTNAME= autobahn-19.5.1 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=a/autobahn/} diff --git a/www/py-autobahn/PLIST b/www/py-autobahn/PLIST index 373c6525de1..be45aae158d 100644 --- a/www/py-autobahn/PLIST +++ b/www/py-autobahn/PLIST @@ -1,13 +1,18 @@ -@comment $NetBSD: PLIST,v 1.8 2019/05/02 09:37:01 adam Exp $ +@comment $NetBSD: PLIST,v 1.9 2019/05/30 09:10:13 adam Exp $ +bin/wamp ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt +${PYSITELIB}/${EGG_INFODIR}/entry_points.txt ${PYSITELIB}/${EGG_INFODIR}/not-zip-safe ${PYSITELIB}/${EGG_INFODIR}/requires.txt ${PYSITELIB}/${EGG_INFODIR}/top_level.txt ${PYSITELIB}/autobahn/__init__.py ${PYSITELIB}/autobahn/__init__.pyc ${PYSITELIB}/autobahn/__init__.pyo +${PYSITELIB}/autobahn/__main__.py +${PYSITELIB}/autobahn/__main__.pyc +${PYSITELIB}/autobahn/__main__.pyo ${PYSITELIB}/autobahn/_version.py ${PYSITELIB}/autobahn/_version.pyc ${PYSITELIB}/autobahn/_version.pyo diff --git a/www/py-autobahn/distinfo b/www/py-autobahn/distinfo index 6c391e512c8..47921d29ce4 100644 --- a/www/py-autobahn/distinfo +++ b/www/py-autobahn/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.21 2019/05/02 09:37:01 adam Exp $ +$NetBSD: distinfo,v 1.22 2019/05/30 09:10:13 adam Exp $ -SHA1 (autobahn-19.3.3.tar.gz) = efc8be0876f00138b3fab1264347887fe1f8f14f -RMD160 (autobahn-19.3.3.tar.gz) = 35c31da252a969f9006e9ba8d6b4d925fb7baf11 -SHA512 (autobahn-19.3.3.tar.gz) = 6676e8759a251753bbabec7c6f920f1909995470fe4e3cc82487b8b5c9601807691986de1c951d7fd4a0eddb0cd477b222d1479a6eca3b85d8c3e872a57c3e13 -Size (autobahn-19.3.3.tar.gz) = 267907 bytes +SHA1 (autobahn-19.5.1.tar.gz) = e1e2d55fa23b6643528b2eb468bcf6baaad95715 +RMD160 (autobahn-19.5.1.tar.gz) = c33b70178cc9da4329e35dc32bf43bdfe8be7c1d +SHA512 (autobahn-19.5.1.tar.gz) = d9a53b37b1e17ef14bc603da1d4923e5fabc3fc530262c13684462f1c470411373cd9645c55c847d493f070d1405a0cd66bcc7fbb4e174d1aa500755d45a06e2 +Size (autobahn-19.5.1.tar.gz) = 276319 bytes SHA1 (patch-setup.py) = f6dc41dbf480789b176b42bf12cbafd5a2076fde diff --git a/www/py-autobahn/patches/patch-setup.py b/www/py-autobahn/patches/patch-setup.py new file mode 100644 index 00000000000..34ed9b025ea --- /dev/null +++ b/www/py-autobahn/patches/patch-setup.py @@ -0,0 +1,15 @@ +$NetBSD: patch-setup.py,v 1.1 2019/05/30 09:10:13 adam Exp $ + +Relax test requirements. + +--- setup.py.orig 2018-08-19 10:45:51.000000000 +0000 ++++ setup.py +@@ -167,7 +167,7 @@ if PY3: + + # for testing by users with "python setup.py test" (not Tox, which we use) + test_requirements = [ +- "pytest>=2.8.6,<3.3.0", # MIT license ++ "pytest>=2.8.6", # MIT license + "mock>=1.3.0", # BSD license + ] + |