diff options
author | 2022-06-20 19:46:28 +0300 | |
---|---|---|
committer | 2022-06-20 20:19:10 +0300 | |
commit | 2002e51e5abe43cf570c8c3e2fc823e4ab4a2d07 (patch) | |
tree | 64980556749c30e15f35cf233d724ff53a109da1 /dev-python/websocket-client | |
parent | dev-python/pyzmq: add 23.2.0 (diff) | |
download | gentoo-2002e51e5abe43cf570c8c3e2fc823e4ab4a2d07.tar.gz gentoo-2002e51e5abe43cf570c8c3e2fc823e4ab4a2d07.tar.bz2 gentoo-2002e51e5abe43cf570c8c3e2fc823e4ab4a2d07.zip |
dev-python/websocket-client: add 1.3.3
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/websocket-client')
-rw-r--r-- | dev-python/websocket-client/Manifest | 1 | ||||
-rw-r--r-- | dev-python/websocket-client/websocket-client-1.3.3.ebuild | 34 |
2 files changed, 35 insertions, 0 deletions
diff --git a/dev-python/websocket-client/Manifest b/dev-python/websocket-client/Manifest index eb33af883a59..8f94ff3c6647 100644 --- a/dev-python/websocket-client/Manifest +++ b/dev-python/websocket-client/Manifest @@ -1 +1,2 @@ DIST websocket-client-1.3.2.tar.gz 47821 BLAKE2B bdd398885f1c76646e094f6e2efa3c886bfddb0d5f1a2961ad2586444c9bff7272f61d880567e7826aa49c36ac48d6cad1583d0cc4bdb73d0f1702e9b4bf2e2b SHA512 c2a38aa3fff0e7f94433cec1939ce75074d9f89d403c0627f34e3a0486dc35fe00230ba7c05f9172a89d3ee49f0ef53ae367eca864f34ec95932966b31d6c3a8 +DIST websocket-client-1.3.3.tar.gz 48250 BLAKE2B 1d6027d7ad2f45ad774da8c4d5ad9c19c084998429cbd0ad5ade89700bcc21dc7c2ac452d0f4238432c0af16ca82d01442d002f988204c96e655d810906730b7 SHA512 e70b6c074cbcac1e97dc11b0ccf60dc67fc066f8394b6cbd20349c1d41d625966c03645da5ccd0a81198c80e2e40fdc267ac599bc5dfacadad4c511a83e06de1 diff --git a/dev-python/websocket-client/websocket-client-1.3.3.ebuild b/dev-python/websocket-client/websocket-client-1.3.3.ebuild new file mode 100644 index 000000000000..ec8a093a7efb --- /dev/null +++ b/dev-python/websocket-client/websocket-client-1.3.3.ebuild @@ -0,0 +1,34 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( pypy3 python3_{8..10} ) + +inherit distutils-r1 + +DESCRIPTION="WebSocket client for python with hybi13 support" +HOMEPAGE="https://github.com/websocket-client/websocket-client" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="examples" + +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 +} |