Thu Oct 11 10:26:30 2018 UTC ()
py-websocket-client: updated to 0.53.0

0.53.0:
- on_open() missing 1 required positional argument: 'ws'

0.52.0:
- fixed callback argument in _app.py
- Fixing none compare bug in run_forever
- Fix NoneType bug introduced by 386 fix

0.51.0:
- revert "WebSocketApp class to make it inheritable" because of breaking the compatibily

0.50.0:
- fixed pong before ping
- pass proper arguments to method callbacks

0.49.0:
- WebSocketApp class to make it inheritable
- Add option to disable sending the Origin header
- Websocket.close() meaning of "close status: XXXXX"
- Enable multithreading protection with ping_interval
- reset WebsocketApp.sock
- websocket.enableTrace not working
- AttributeError: 'module' object has no attribute 'NullHandler'
- WebSocketBadStatusException "not enough arguments for format string"
- handshake should deal with None in headers


(adam)
diff -r1.2 -r1.3 pkgsrc/www/py-websocket-client/ALTERNATIVES
diff -r1.5 -r1.6 pkgsrc/www/py-websocket-client/Makefile
diff -r1.3 -r1.4 pkgsrc/www/py-websocket-client/PLIST
diff -r1.4 -r1.5 pkgsrc/www/py-websocket-client/distinfo

cvs diff -r1.2 -r1.3 pkgsrc/www/py-websocket-client/ALTERNATIVES (expand / switch to unified diff)

--- pkgsrc/www/py-websocket-client/ALTERNATIVES 2018/06/15 11:47:10 1.2
+++ pkgsrc/www/py-websocket-client/ALTERNATIVES 2018/10/11 10:26:30 1.3

cvs diff -r1.5 -r1.6 pkgsrc/www/py-websocket-client/Makefile (expand / switch to unified diff)

--- pkgsrc/www/py-websocket-client/Makefile 2018/06/15 11:47:10 1.5
+++ pkgsrc/www/py-websocket-client/Makefile 2018/10/11 10:26:30 1.6
@@ -1,23 +1,24 @@ @@ -1,23 +1,24 @@
1# $NetBSD: Makefile,v 1.5 2018/06/15 11:47:10 adam Exp $ 1# $NetBSD: Makefile,v 1.6 2018/10/11 10:26:30 adam Exp $
2 2
3DISTNAME= websocket_client-0.48.0 3DISTNAME= websocket_client-0.53.0
4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/} 4PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
5CATEGORIES= www python 5CATEGORIES= www python
6MASTER_SITES= ${MASTER_SITE_PYPI:=w/websocket-client/} 6MASTER_SITES= ${MASTER_SITE_PYPI:=w/websocket-client/}
7 7
8MAINTAINER= pkgsrc-users@NetBSD.org 8MAINTAINER= pkgsrc-users@NetBSD.org
9HOMEPAGE= https://github.com/websocket-client/websocket-client 9HOMEPAGE= https://github.com/websocket-client/websocket-client
10COMMENT= WebSocket client module 10COMMENT= WebSocket client module
11LICENSE= gnu-lgpl-v2.1 11LICENSE= gnu-lgpl-v2.1
12 12
13PYTHON_VERSIONS_INCOMPATIBLE= 27 13PYTHON_VERSIONS_INCOMPATIBLE= 27
14 14
15DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six 15DEPENDS+= ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
16 16
17USE_LANGUAGES= # none 17USE_LANGUAGES= # none
18 18
19post-install: 19post-install:
20 cd ${DESTDIR}${PREFIX}/bin && ${MV} wsdump.py wsdump${PYVERSSUFFIX} || ${TRUE} 20 cd ${DESTDIR}${PREFIX}/bin && \
 21 ${MV} wsdump.py wsdump-${PYVERSSUFFIX} || ${TRUE}
21 22
22.include "../../lang/python/egg.mk" 23.include "../../lang/python/egg.mk"
23.include "../../mk/bsd.pkg.mk" 24.include "../../mk/bsd.pkg.mk"

cvs diff -r1.3 -r1.4 pkgsrc/www/py-websocket-client/PLIST (expand / switch to unified diff)

--- pkgsrc/www/py-websocket-client/PLIST 2018/06/15 11:47:10 1.3
+++ pkgsrc/www/py-websocket-client/PLIST 2018/10/11 10:26:30 1.4
@@ -1,15 +1,15 @@ @@ -1,15 +1,15 @@
1@comment $NetBSD: PLIST,v 1.3 2018/06/15 11:47:10 adam Exp $ 1@comment $NetBSD: PLIST,v 1.4 2018/10/11 10:26:30 adam Exp $
2bin/wsdump${PYVERSSUFFIX} 2bin/wsdump-${PYVERSSUFFIX}
3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO 3${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt 4${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt 5${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
6${PYSITELIB}/${EGG_INFODIR}/requires.txt 6${PYSITELIB}/${EGG_INFODIR}/requires.txt
7${PYSITELIB}/${EGG_INFODIR}/top_level.txt 7${PYSITELIB}/${EGG_INFODIR}/top_level.txt
8${PYSITELIB}/websocket/__init__.py 8${PYSITELIB}/websocket/__init__.py
9${PYSITELIB}/websocket/__init__.pyc 9${PYSITELIB}/websocket/__init__.pyc
10${PYSITELIB}/websocket/__init__.pyo 10${PYSITELIB}/websocket/__init__.pyo
11${PYSITELIB}/websocket/_abnf.py 11${PYSITELIB}/websocket/_abnf.py
12${PYSITELIB}/websocket/_abnf.pyc 12${PYSITELIB}/websocket/_abnf.pyc
13${PYSITELIB}/websocket/_abnf.pyo 13${PYSITELIB}/websocket/_abnf.pyo
14${PYSITELIB}/websocket/_app.py 14${PYSITELIB}/websocket/_app.py
15${PYSITELIB}/websocket/_app.pyc 15${PYSITELIB}/websocket/_app.pyc

cvs diff -r1.4 -r1.5 pkgsrc/www/py-websocket-client/distinfo (expand / switch to unified diff)

--- pkgsrc/www/py-websocket-client/distinfo 2018/06/15 11:47:10 1.4
+++ pkgsrc/www/py-websocket-client/distinfo 2018/10/11 10:26:30 1.5
@@ -1,6 +1,6 @@ @@ -1,6 +1,6 @@
1$NetBSD: distinfo,v 1.4 2018/06/15 11:47:10 adam Exp $ 1$NetBSD: distinfo,v 1.5 2018/10/11 10:26:30 adam Exp $
2 2
3SHA1 (websocket_client-0.48.0.tar.gz) = bf678b2aa7512b4d231ad185382ac6e795aaafce 3SHA1 (websocket_client-0.53.0.tar.gz) = 09bd8914944646fde9d2672392579a982ea0f031
4RMD160 (websocket_client-0.48.0.tar.gz) = 599b4eeef57ad46039e780f664460ff767b30d26 4RMD160 (websocket_client-0.53.0.tar.gz) = 08f8044a230bc83812592859e8870176dbc30c6c
5SHA512 (websocket_client-0.48.0.tar.gz) = 6c678a2671ce6cfb86a61effa836bbe4bb1702f22827934b1fcd7f0f8439be76037d9b6d4d6b416249361a9a74a92701d7b90bc6276b2433388644ed66f56333 5SHA512 (websocket_client-0.53.0.tar.gz) = a20aad73545eb9cff493a9583e1ba5c895096b8de28f4360925f4ed2906d74cf96023ccea9097a23e71402430a623ce9a1456b14add26587b320de903503cb34
6Size (websocket_client-0.48.0.tar.gz) = 44492 bytes 6Size (websocket_client-0.53.0.tar.gz) = 43276 bytes