blob: 2abd375372fba8fee44cc8b266539ad35389048e (
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
#dev-python/starcluster-0.93.3.ebuild 2011/04/19 jtriley
EAPI="4"
PYTHON_DEPEND="2"
SUPPORT_PYTHON_ABIS="1"
RESTRICT_PYTHON_ABIS="3.*"
DISTUTILS_SRC_TEST="nosetests"
inherit distutils bash-completion-r1
MY_PN="StarCluster"
MY_P="${MY_PN}-${PV}"
# description is much too long
DESCRIPTION="StarCluster is a utility for creating and managing general purpose computing"
# clusters hosted on Amazonn's Elastic Compute Cloud"
HOMEPAGE="http://web.mit.edu/star/cluster"
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
#SRC_URI="http://pypi.python.org/packages/source/S/${MY_PN}/${MY_P}.tar.gz"
LICENSE="LGPL-3"
KEYWORDS="~amd64"
SLOT="0"
IUSE="doc bash-completion epydoc"
RDEPEND=">=dev-python/ssh-1.7.13
>=dev-python/boto-2.3.0
>=dev-python/jinja-2.6
>=dev-python/decorator-3.1.1
>=dev-python/pyasn1-0.0.13_beta
>=dev-python/workerpool-0.9.2"
DEPEND="${RDEPEND}
doc? ( dev-python/sphinx
dev-python/epydoc )
dev-python/setuptools"
S="${WORKDIR}/${MY_P}"
PYTHON_MODNAME="${PN}"
src_compile() {
distutils_src_compile
# epydoc and doc selections make entriely distinct documentation. epydoc builds apidocs
# Note: made shorter by avoiding if then clause. Ensures exit if build fails
use doc && emake -C docs/sphinx html
mkdocs() {
local exit_status=0
local msg="build with epydoc failed"
pushd docs/epydoc/
PATH=$PATH:./ PYTHONPATH="${S}/build-${PYTHON_ABI}/lib" ./build.sh || exit_status=1
! [[ exit_status ]] && eerror "$msg"
popd
return $exit_status
}
use epydoc && python_execute_function -f mkdocs
}
src_install() {
distutils_src_install
# --install-scripts="/usr/bin" is taken care of by distutils anyway
# the updated eclass uses a different name for dobashcompletion,
dobashcomp completion/${PN}-completion.sh ${PN}
# code in initial copy
# dohtml -A txt -r docs/sphinx/_build/html/* prefer mine but the results differ
use doc && dohtml -r docs/sphinx/_build/html/
if use epydoc; then
docompress -x usr/share/doc/${P}/apidocs/api-objects.txt
insinto usr/share/doc/${P}/
doins -r docs/apidocs/
fi
}
src_test() {
distutils_src_test -v ${PN}/tests
}
pkg_postinst() {
# bash-completion-r1.eclass appears not to have this phase
#dobashcomp_pkg_postinst
distutils_pkg_postinst
}
|