pkgsrc-Changes archive

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

CVS commit: pkgsrc/www/py-autobahn



Module Name:    pkgsrc
Committed By:   adam
Date:           Thu May 30 09:10:13 UTC 2019

Modified Files:
        pkgsrc/www/py-autobahn: Makefile PLIST distinfo
Added Files:
        pkgsrc/www/py-autobahn/patches: patch-setup.py

Log Message:
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.


To generate a diff of this commit:
cvs rdiff -u -r1.22 -r1.23 pkgsrc/www/py-autobahn/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-autobahn/PLIST
cvs rdiff -u -r1.21 -r1.22 pkgsrc/www/py-autobahn/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/www/py-autobahn/patches/patch-setup.py

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/py-autobahn/Makefile
diff -u pkgsrc/www/py-autobahn/Makefile:1.22 pkgsrc/www/py-autobahn/Makefile:1.23
--- pkgsrc/www/py-autobahn/Makefile:1.22        Thu May  2 09:37:01 2019
+++ pkgsrc/www/py-autobahn/Makefile     Thu May 30 09:10:13 2019
@@ -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/}

Index: pkgsrc/www/py-autobahn/PLIST
diff -u pkgsrc/www/py-autobahn/PLIST:1.8 pkgsrc/www/py-autobahn/PLIST:1.9
--- pkgsrc/www/py-autobahn/PLIST:1.8    Thu May  2 09:37:01 2019
+++ pkgsrc/www/py-autobahn/PLIST        Thu May 30 09:10:13 2019
@@ -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

Index: pkgsrc/www/py-autobahn/distinfo
diff -u pkgsrc/www/py-autobahn/distinfo:1.21 pkgsrc/www/py-autobahn/distinfo:1.22
--- pkgsrc/www/py-autobahn/distinfo:1.21        Thu May  2 09:37:01 2019
+++ pkgsrc/www/py-autobahn/distinfo     Thu May 30 09:10:13 2019
@@ -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

Added files:

Index: pkgsrc/www/py-autobahn/patches/patch-setup.py
diff -u /dev/null pkgsrc/www/py-autobahn/patches/patch-setup.py:1.1
--- /dev/null   Thu May 30 09:10:13 2019
+++ pkgsrc/www/py-autobahn/patches/patch-setup.py       Thu May 30 09:10:13 2019
@@ -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