Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-python/ws4py: ws4py-0.3.3.ebuild ChangeLog
Date: Sat, 03 May 2014 08:12:28
Message-Id: 20140503081225.66AEA2004C@flycatcher.gentoo.org
1 patrick 14/05/03 08:12:25
2
3 Modified: ChangeLog
4 Added: ws4py-0.3.3.ebuild
5 Log:
6 Bump
7
8 (Portage version: 2.2.10/cvs/Linux x86_64, unsigned Manifest commit)
9
10 Revision Changes Path
11 1.12 dev-python/ws4py/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ws4py/ChangeLog?rev=1.12&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ws4py/ChangeLog?rev=1.12&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ws4py/ChangeLog?r1=1.11&r2=1.12
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-python/ws4py/ChangeLog,v
20 retrieving revision 1.11
21 retrieving revision 1.12
22 diff -u -r1.11 -r1.12
23 --- ChangeLog 24 Feb 2014 05:58:37 -0000 1.11
24 +++ ChangeLog 3 May 2014 08:12:25 -0000 1.12
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-python/ws4py
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-python/ws4py/ChangeLog,v 1.11 2014/02/24 05:58:37 patrick Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-python/ws4py/ChangeLog,v 1.12 2014/05/03 08:12:25 patrick Exp $
30 +
31 +*ws4py-0.3.3 (03 May 2014)
32 +
33 + 03 May 2014; Patrick Lauer <patrick@g.o> +ws4py-0.3.3.ebuild:
34 + Bump
35
36 *ws4py-0.3.2 (24 Feb 2014)
37
38
39
40
41 1.1 dev-python/ws4py/ws4py-0.3.3.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ws4py/ws4py-0.3.3.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/ws4py/ws4py-0.3.3.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ws4py-0.3.3.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-python/ws4py/ws4py-0.3.3.ebuild,v 1.1 2014/05/03 08:12:25 patrick Exp $
51
52 # We could depend on dev-python/cherrypy when USE=server, but
53 # that is an optional component ...
54 # Same for www-servers/tornado and USE=client ...
55
56 EAPI="5"
57 PYTHON_COMPAT=( python2_{6,7} )
58 PYTHON_REQ_USE="threads?"
59
60 inherit distutils-r1
61 if [[ ${PV} == "9999" ]] ; then
62 EGIT_REPO_URI="git://github.com/Lawouach/WebSocket-for-Python.git"
63 inherit git-2
64 else
65 inherit vcs-snapshot
66 SRC_URI="https://github.com/Lawouach/WebSocket-for-Python/tarball/v${PV} -> ${P}.tar.gz"
67 KEYWORDS="~amd64 ~arm ~x86"
68 fi
69
70 DESCRIPTION="WebSocket support for Python"
71 HOMEPAGE="https://github.com/Lawouach/WebSocket-for-Python"
72
73 LICENSE="BSD"
74 SLOT="0"
75 IUSE="+client +server test +threads"
76
77 RDEPEND=""
78 DEPEND="test? (
79 ${RDEPEND}
80 dev-python/unittest2[${PYTHON_USEDEP}]
81 >=dev-python/cherrypy-3.2.0[${PYTHON_USEDEP}]
82 dev-python/gevent[${PYTHON_USEDEP}]
83 )"
84
85 python_test() {
86 esetup.py test || die
87 }
88
89 src_install() {
90 distutils-r1_src_install
91 use client || rm -rf "${ED}$(python_get_sitedir)"/ws4py/client
92 use server || rm -rf "${ED}$(python_get_sitedir)"/ws4py/server
93 }