blob: 41804d7e0c1dbc91f185e57272da06da6ee7c975 (
plain)
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: dev-python/starcluster-0.95.5.ebuild 2014/03/20 jtriley
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
DISTUTILS_SRC_TEST="py.test"
inherit distutils-r1 bash-completion-r1
MY_PN="StarCluster"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="StarCluster is a Cluster Computing Toolkit for the Cloud (EC2)."
HOMEPAGE="http://star.mit.edu/cluster"
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
LICENSE="LGPL-3"
KEYWORDS="~amd64 ~x86"
SLOT="0"
IUSE="doc bash-completion epydoc"
RDEPEND=">=dev-python/paramiko-1.12.1[${PYTHON_USEDEP}]
>=dev-python/boto-2.23.0[${PYTHON_USEDEP}]
>=dev-python/jinja-2.7[${PYTHON_USEDEP}]
>=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
>=dev-python/workerpool-0.9.2[${PYTHON_USEDEP}]
>=dev-python/iptools-0.6.1[${PYTHON_USEDEP}]
>=dev-python/iso8601-0.1.8[${PYTHON_USEDEP}]
>=dev-python/pycrypto-2.5[${PYTHON_USEDEP}]
>=dev-python/scp-0.7.1[${PYTHON_USEDEP}]
>=dev-python/optcomplete-1.2[${PYTHON_USEDEP}]"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx[${PYTHON_USEDEP}]
dev-python/sphinxcontrib-issuetracker[${PYTHON_USEDEP}]
dev-python/epydoc[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}] )
dev-python/setuptools[${PYTHON_USEDEP}]"
S="${WORKDIR}/${MY_P}"
python_compile_all() {
use doc && emake -C docs/sphinx html
mkdocs() {
local exit_status=0
local msg="build with epydoc failed"
pushd docs/epydoc/
PATH=$PATH:./ PYTHONPATH="${BUILD_DIR}/lib" ./build.sh || exit_status=1
[[ $exit_status != 0 ]] && eerror "$msg"
popd sets
return $exit_status
}
use epydoc && mkdocs
}
python_install_all() {
distutils-r1_python_install_all
use bash-completion && newbashcomp completion/${PN}-completion.sh ${PN}
use doc && local HTML_DOCS=( docs/sphinx/_build/html/. )
if use epydoc; then
docompress -x usr/share/doc/${PF}/apidocs/api-objects.txt
insinto usr/share/doc/${PF}/
doins -r "${S}"/docs/apidocs/
fi
}
python_test() {
py.test || die -v ${PN}/tests || die
}
|