pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/www/py-autobahn py-autobahn: updated to 19.5.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/d598805b5cb1
branches:  trunk
changeset: 334534:d598805b5cb1
user:      adam <adam%pkgsrc.org@localhost>
date:      Thu May 30 09:10:13 2019 +0000

description:
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:

 www/py-autobahn/Makefile               |   4 ++--
 www/py-autobahn/PLIST                  |   7 ++++++-
 www/py-autobahn/distinfo               |  10 +++++-----
 www/py-autobahn/patches/patch-setup.py |  15 +++++++++++++++
 4 files changed, 28 insertions(+), 8 deletions(-)

diffs (70 lines):

diff -r 158b88e30142 -r d598805b5cb1 www/py-autobahn/Makefile
--- a/www/py-autobahn/Makefile  Thu May 30 05:13:42 2019 +0000
+++ b/www/py-autobahn/Makefile  Thu May 30 09:10:13 2019 +0000
@@ -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 -r 158b88e30142 -r d598805b5cb1 www/py-autobahn/PLIST
--- a/www/py-autobahn/PLIST     Thu May 30 05:13:42 2019 +0000
+++ b/www/py-autobahn/PLIST     Thu May 30 09:10:13 2019 +0000
@@ -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 -r 158b88e30142 -r d598805b5cb1 www/py-autobahn/distinfo
--- a/www/py-autobahn/distinfo  Thu May 30 05:13:42 2019 +0000
+++ b/www/py-autobahn/distinfo  Thu May 30 09:10:13 2019 +0000
@@ -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 -r 158b88e30142 -r d598805b5cb1 www/py-autobahn/patches/patch-setup.py
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/www/py-autobahn/patches/patch-setup.py    Thu May 30 09:10:13 2019 +0000
@@ -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
+ ]
+ 



Home | Main Index | Thread Index | Old Index