Received: by mail.netbsd.org (Postfix, from userid 605) id EB99884D88; Thu, 30 May 2019 09:10:14 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 71A8684D83 for ; Thu, 30 May 2019 09:10:14 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id 6S_zMcOAUaYj for ; Thu, 30 May 2019 09:10:13 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id CBC5E84D32 for ; Thu, 30 May 2019 09:10:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C5376FB15; Thu, 30 May 2019 09:10:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_155920741379790" MIME-Version: 1.0 Date: Thu, 30 May 2019 09:10:13 +0000 From: "Adam Ciarcinski" Subject: CVS commit: pkgsrc/www/py-autobahn To: pkgsrc-changes@NetBSD.org Reply-To: adam@netbsd.org X-Mailer: log_accum Message-Id: <20190530091013.C5376FB15@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_155920741379790 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" 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. --_----------=_155920741379790 Content-Disposition: inline Content-Length: 3474 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii 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 + ] + --_----------=_155920741379790--