1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5})
inherit vcs-snapshot distutils-r1 git-r3
DESCRIPTION="Stem is a Python controller library for Tor"
HOMEPAGE="https://stem.torproject.org"
SRC_URI=""
EGIT_REPO_URI="https://git.torproject.org/stem.git"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS=""
IUSE="test"
DEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}]
net-vpn/tor )
dev-python/setuptools[${PYTHON_USEDEP}]"
RDEPEND="net-vpn/tor"
DOCS=( docs/{_static,_templates,api,tutorials,{change_log,api,contents,download,faq,index,tutorials}.rst} )
python_prepare_all() {
# Disable failing test
# sed -i -e "/test_expand_path/a \
# \ \ \ \ return" test/integ/util/system.py || die
# sed -i -e "/test_get_connections_by_ss/,+1d"\
# test/integ/util/connection.py || die
distutils-r1_python_prepare_all
}
python_test() {
${PYTHON} run_tests.py --all --target RUN_ALL || die
}
|