dev-python/websocket-client: Bump to 1.9.2

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2026-08-31 20:52:18 +02:00
parent 4e219c459b
commit ac51705973
2 changed files with 38 additions and 0 deletions

View File

@@ -1,2 +1,3 @@
DIST websocket_client-1.9.0.tar.gz 70576 BLAKE2B 29f16feb16496fec19c0d0bc1af25ff4675c162763c6d933d1a12b6a8222c6fbf587871a2da3adccfcac212d3fddcafe9d23777600c10c2b88ba661cf248b04f SHA512 63385845aaaf792167d681c4b3089b09ea4dedbf931fa1f4ebc55648b6d864c2a479ac61f758d6a7967ce84e59e197613c976069f64381599c274f89c3edd0b4
DIST websocket_client-1.9.1.tar.gz 82936 BLAKE2B aeb9f952aa97aca04de73d0981c601e9c8862c36722a5badc566f89d8e8c2382847d1884ed816d9e95fc80eab38c31789aaebe89076dde11d435bab9c2b55daa SHA512 158ad8bd65e52790de18e65ede165a02223eecc015e67d834caf59878c6e16863bae9c1d581df6cd0df82086bd2364ec003c2ab0fe0544f0b037a1f2328ca7a8
DIST websocket_client-1.9.2.tar.gz 84110 BLAKE2B 455eb6c2d092cf2d977430629f5ecd34fcd5c34354a7f4b6602d0c0d1840e5a1c2db4a9456ca5febc0726f8305035d3a0adbac8296860226e2992900bd0ccb25 SHA512 42da82b95f05fc8f4bbe85027d1ff1e95fc409282de4b1eb732ca871c32530f34e3fe7deeb150a1244777357e42bbc7d040c4875ad6247efacccc79b79829a66

View File

@@ -0,0 +1,37 @@
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{12..15} )
inherit distutils-r1 pypi
DESCRIPTION="WebSocket client for python with hybi13 support"
HOMEPAGE="
https://github.com/websocket-client/websocket-client/
https://pypi.org/project/websocket-client/
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
IUSE="examples test"
RESTRICT="!test? ( test )"
BDEPEND="
test? (
dev-python/python-socks[${PYTHON_USEDEP}]
)
"
distutils_enable_tests unittest
python_install_all() {
if use examples; then
docompress -x "/usr/share/doc/${PF}/examples"
dodoc -r examples
fi
distutils-r1_python_install_all
}