Gentoo Archives: gentoo-commits

From: Matt Thode <prometheanfire@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/websocket-client/
Date: Sat, 24 Feb 2018 07:19:17
Message-Id: 1519455615.f1a3fec2713f20983f1e55d8561d22a2414fc581.prometheanfire@gentoo
1 commit: f1a3fec2713f20983f1e55d8561d22a2414fc581
2 Author: Matthew Thode <prometheanfire <AT> gentoo <DOT> org>
3 AuthorDate: Sat Feb 24 07:00:15 2018 +0000
4 Commit: Matt Thode <prometheanfire <AT> gentoo <DOT> org>
5 CommitDate: Sat Feb 24 07:00:15 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1a3fec2
7
8 dev-python/websocket-client: 0.40.0 bup
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 dev-python/websocket-client/Manifest | 1 +
13 .../websocket-client-0.40.0.ebuild | 35 ++++++++++++++++++++++
14 2 files changed, 36 insertions(+)
15
16 diff --git a/dev-python/websocket-client/Manifest b/dev-python/websocket-client/Manifest
17 index de51ff19e7c..e9f21b6449d 100644
18 --- a/dev-python/websocket-client/Manifest
19 +++ b/dev-python/websocket-client/Manifest
20 @@ -1 +1,2 @@
21 DIST websocket-client-0.37.0.tar.gz 194246 BLAKE2B 805482524b603fbfeb1039bcd99d761d125504a0f8d1a69766d4f586da241efd9d07ade030152fc51228a7333c97313fb98483de95808f81cfa23e7c3b0ff1d4 SHA512 b72f18c91d9a51a1943fc798601bcd9eac8b1ce807a2abb72b7cf897da30de808160645d9c7f3eaf2430e739cd0c6c01046c452f43c61af63afe7d31d801f9f7
22 +DIST websocket-client-0.40.0.tar.gz 196203 BLAKE2B 303aeed5bfc84139adfbef3f3198512172220d2670e38683d660def19dcd82015bf85edd26a5aa029ba021c1f9496dca33e5ee8afc790b87eb1fa7b7b17c9aed SHA512 b57593e14087ff36ab2133fb8077aa207bcdcc04fa82d00eb8fa3b86bdf7fa949c8ca25317a7fe035ef0f36d2c996e036d2b715399813604d5593584d409a5eb
23
24 diff --git a/dev-python/websocket-client/websocket-client-0.40.0.ebuild b/dev-python/websocket-client/websocket-client-0.40.0.ebuild
25 new file mode 100644
26 index 00000000000..42f290186c2
27 --- /dev/null
28 +++ b/dev-python/websocket-client/websocket-client-0.40.0.ebuild
29 @@ -0,0 +1,35 @@
30 +# Copyright 1999-2018 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=5
34 +
35 +PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
36 +
37 +inherit distutils-r1 vcs-snapshot
38 +
39 +MY_PN=${PN//-/_}
40 +
41 +DESCRIPTION="WebSocket client for python with hybi13 support"
42 +HOMEPAGE="https://github.com/liris/websocket-client"
43 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
44 +
45 +LICENSE="LGPL-2.1"
46 +SLOT="0"
47 +KEYWORDS="~amd64 ~arm64 ~x86"
48 +IUSE="examples"
49 +
50 +DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
51 +RDEPEND="
52 + dev-python/six[${PYTHON_USEDEP}]
53 + $(python_gen_cond_dep 'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2*' )
54 +"
55 +
56 +python_test() {
57 + esetup.py test
58 +}
59 +
60 +python_install_all() {
61 + use examples && local EXAMPLES=( examples/. )
62 +
63 + distutils-r1_python_install_all
64 +}