pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-websocket-client
Module Name: pkgsrc
Committed By: adam
Date: Thu Oct 23 15:17:58 UTC 2025
Modified Files:
pkgsrc/www/py-websocket-client: Makefile PLIST distinfo
Log Message:
py-websocket-client: updated to 1.9.0
1.9.0
- Remove Python 3.8 support (EOL), add Python 3.13 (5f25030)
- Remove localhost and 127.0.0.1 from default NO_PROXY list
- Support IPv6 CIDRs in the no_proxy option
- Fix thread safety condition in `teardown()` to improve `run_forever()`
- Fix 1024 by chunking data, recursion in on_error callback, thread leak in `_stop_ping_thread()`, avoid implicit None in `recv()`
- Avoid bare except clauses for better error handling
- Fix async
- Resolve mypy type errors
- Test coverage improvements
- flake8 linting improvements
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r1.29 pkgsrc/www/py-websocket-client/Makefile
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-websocket-client/PLIST
cvs rdiff -u -r1.24 -r1.25 pkgsrc/www/py-websocket-client/distinfo
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-websocket-client/Makefile
diff -u pkgsrc/www/py-websocket-client/Makefile:1.28 pkgsrc/www/py-websocket-client/Makefile:1.29
--- pkgsrc/www/py-websocket-client/Makefile:1.28 Mon Apr 14 20:28:04 2025
+++ pkgsrc/www/py-websocket-client/Makefile Thu Oct 23 15:17:58 2025
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.28 2025/04/14 20:28:04 adam Exp $
+# $NetBSD: Makefile,v 1.29 2025/10/23 15:17:58 adam Exp $
-DISTNAME= websocket_client-1.8.0
+DISTNAME= websocket_client-1.9.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/_/-/}
-PKGREVISION= 1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=w/websocket-client/}
Index: pkgsrc/www/py-websocket-client/PLIST
diff -u pkgsrc/www/py-websocket-client/PLIST:1.8 pkgsrc/www/py-websocket-client/PLIST:1.9
--- pkgsrc/www/py-websocket-client/PLIST:1.8 Mon Apr 14 20:28:04 2025
+++ pkgsrc/www/py-websocket-client/PLIST Thu Oct 23 15:17:58 2025
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.8 2025/04/14 20:28:04 adam Exp $
+@comment $NetBSD: PLIST,v 1.9 2025/10/23 15:17:58 adam Exp $
bin/wsdump-${PYVERSSUFFIX}
${PYSITELIB}/${WHEEL_INFODIR}/METADATA
${PYSITELIB}/${WHEEL_INFODIR}/RECORD
@@ -21,6 +21,9 @@ ${PYSITELIB}/websocket/_cookiejar.pyo
${PYSITELIB}/websocket/_core.py
${PYSITELIB}/websocket/_core.pyc
${PYSITELIB}/websocket/_core.pyo
+${PYSITELIB}/websocket/_dispatcher.py
+${PYSITELIB}/websocket/_dispatcher.pyc
+${PYSITELIB}/websocket/_dispatcher.pyo
${PYSITELIB}/websocket/_exceptions.py
${PYSITELIB}/websocket/_exceptions.pyc
${PYSITELIB}/websocket/_exceptions.pyo
@@ -67,12 +70,36 @@ ${PYSITELIB}/websocket/tests/test_app.py
${PYSITELIB}/websocket/tests/test_cookiejar.py
${PYSITELIB}/websocket/tests/test_cookiejar.pyc
${PYSITELIB}/websocket/tests/test_cookiejar.pyo
+${PYSITELIB}/websocket/tests/test_dispatcher.py
+${PYSITELIB}/websocket/tests/test_dispatcher.pyc
+${PYSITELIB}/websocket/tests/test_dispatcher.pyo
+${PYSITELIB}/websocket/tests/test_handshake_large_response.py
+${PYSITELIB}/websocket/tests/test_handshake_large_response.pyc
+${PYSITELIB}/websocket/tests/test_handshake_large_response.pyo
${PYSITELIB}/websocket/tests/test_http.py
${PYSITELIB}/websocket/tests/test_http.pyc
${PYSITELIB}/websocket/tests/test_http.pyo
+${PYSITELIB}/websocket/tests/test_large_payloads.py
+${PYSITELIB}/websocket/tests/test_large_payloads.pyc
+${PYSITELIB}/websocket/tests/test_large_payloads.pyo
+${PYSITELIB}/websocket/tests/test_socket.py
+${PYSITELIB}/websocket/tests/test_socket.pyc
+${PYSITELIB}/websocket/tests/test_socket.pyo
+${PYSITELIB}/websocket/tests/test_socket_bugs.py
+${PYSITELIB}/websocket/tests/test_socket_bugs.pyc
+${PYSITELIB}/websocket/tests/test_socket_bugs.pyo
+${PYSITELIB}/websocket/tests/test_ssl_compat.py
+${PYSITELIB}/websocket/tests/test_ssl_compat.pyc
+${PYSITELIB}/websocket/tests/test_ssl_compat.pyo
+${PYSITELIB}/websocket/tests/test_ssl_edge_cases.py
+${PYSITELIB}/websocket/tests/test_ssl_edge_cases.pyc
+${PYSITELIB}/websocket/tests/test_ssl_edge_cases.pyo
${PYSITELIB}/websocket/tests/test_url.py
${PYSITELIB}/websocket/tests/test_url.pyc
${PYSITELIB}/websocket/tests/test_url.pyo
+${PYSITELIB}/websocket/tests/test_utils.py
+${PYSITELIB}/websocket/tests/test_utils.pyc
+${PYSITELIB}/websocket/tests/test_utils.pyo
${PYSITELIB}/websocket/tests/test_websocket.py
${PYSITELIB}/websocket/tests/test_websocket.pyc
${PYSITELIB}/websocket/tests/test_websocket.pyo
Index: pkgsrc/www/py-websocket-client/distinfo
diff -u pkgsrc/www/py-websocket-client/distinfo:1.24 pkgsrc/www/py-websocket-client/distinfo:1.25
--- pkgsrc/www/py-websocket-client/distinfo:1.24 Fri Apr 26 16:56:09 2024
+++ pkgsrc/www/py-websocket-client/distinfo Thu Oct 23 15:17:58 2025
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.24 2024/04/26 16:56:09 adam Exp $
+$NetBSD: distinfo,v 1.25 2025/10/23 15:17:58 adam Exp $
-BLAKE2s (websocket_client-1.8.0.tar.gz) = 22b0e6f1cb379f7e502d6eeef58cc0b9d707cf7f9dc3cc7fd26ffd58ad67a6c5
-SHA512 (websocket_client-1.8.0.tar.gz) = d41dbd4695adcad14142db048b291eed9367153101853e3e17ee8448aa4be9d20bd91b62707291e2b093ce969d51aeef16ceae7330734b5a1556023d773c5a85
-Size (websocket_client-1.8.0.tar.gz) = 54648 bytes
+BLAKE2s (websocket_client-1.9.0.tar.gz) = 9500844f616ff29b55d7889654f731b80ed12e63d5f0cef7039ab8b676f89357
+SHA512 (websocket_client-1.9.0.tar.gz) = 63385845aaaf792167d681c4b3089b09ea4dedbf931fa1f4ebc55648b6d864c2a479ac61f758d6a7967ce84e59e197613c976069f64381599c274f89c3edd0b4
+Size (websocket_client-1.9.0.tar.gz) = 70576 bytes
Home |
Main Index |
Thread Index |
Old Index