Gentoo Archives: gentoo-commits

From: "Alex Brandt (alunduil)" <alunduil@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/websocket-client: websocket-client-0.25.0.ebuild ChangeLog
Date: Sat, 28 Feb 2015 21:24:32
Message-Id: 20150228212427.B565012C2A@oystercatcher.gentoo.org
1 alunduil 15/02/28 21:24:27
2
3 Modified: ChangeLog
4 Added: websocket-client-0.25.0.ebuild
5 Log:
6 add version 0.25.0
7
8 (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 11A8217C!)
9
10 Revision Changes Path
11 1.7 dev-python/websocket-client/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/websocket-client/ChangeLog?rev=1.7&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/websocket-client/ChangeLog?rev=1.7&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/websocket-client/ChangeLog?r1=1.6&r2=1.7
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/websocket-client/ChangeLog,v
20 retrieving revision 1.6
21 retrieving revision 1.7
22 diff -u -r1.6 -r1.7
23 --- ChangeLog 26 Oct 2014 21:49:08 -0000 1.6
24 +++ ChangeLog 28 Feb 2015 21:24:27 -0000 1.7
25 @@ -1,6 +1,12 @@
26 # ChangeLog for dev-python/websocket-client
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/websocket-client/ChangeLog,v 1.6 2014/10/26 21:49:08 alunduil Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/dev-python/websocket-client/ChangeLog,v 1.7 2015/02/28 21:24:27 alunduil Exp $
31 +
32 +*websocket-client-0.25.0 (28 Feb 2015)
33 +
34 + 28 Feb 2015; Alex Brandt <alunduil@g.o>
35 + +websocket-client-0.25.0.ebuild:
36 + add version 0.25.0
37
38 *websocket-client-0.11.0 (26 Oct 2014)
39
40
41
42
43 1.1 dev-python/websocket-client/websocket-client-0.25.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/websocket-client/websocket-client-0.25.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/websocket-client/websocket-client-0.25.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: websocket-client-0.25.0.ebuild
49 ===================================================================
50 # Copyright 1999-2015 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-python/websocket-client/websocket-client-0.25.0.ebuild,v 1.1 2015/02/28 21:24:27 alunduil Exp $
53
54 EAPI=5
55 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
56
57 inherit distutils-r1
58
59 DESCRIPTION="WebSocket client for python. hybi13 is supported"
60 HOMEPAGE="https://github.com/liris/websocket-client"
61 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
62
63 LICENSE="LGPL-2.1"
64 SLOT="0"
65 KEYWORDS="~amd64 ~x86"
66 IUSE="examples"
67
68 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
69 RDEPEND="
70 dev-python/six[${PYTHON_USEDEP}]
71 $(python_gen_cond_dep 'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2*' )
72 "
73
74 python_test() {
75 esetup.py test || die "Tests failed under ${EPYTHON}"
76 }
77
78 python_install_all() {
79 use examples && local EXAMPLES=( examples/. )
80
81 distutils-r1_python_install_all
82 }