blob: 8dcbafee4f8d3ad408574340814a6bb729f7f1a0 (
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
|
# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=6
PYTHON_COMPAT=( python{2_7,3_5,3_6} )
inherit distutils-r1
DESCRIPTION="Astronomical routines for the python programming language"
HOMEPAGE="https://rhodesmill.org/pyephem/"
SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
LICENSE="LGPL-3"
SLOT="0"
KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~x86-linux"
IUSE="doc test"
DEPEND="doc? ( dev-python/sphinx )"
RDEPEND=""
src_prepare() {
# don't install rst files by dfefault
sed -i -e "s:'doc/\*\.rst',::" setup.py || die
distutils-r1_src_prepare
}
src_compile() {
distutils-r1_src_compile
if use doc; then
PYTHONPATH=. emake -C ephem/doc html
fi
}
python_test() {
if [[ ${PYTHON_ABI} == "2.7" ]]; then
PYTHONPATH="$(ls -d ${BUILD_DIR}/lib*)" \
${EPYTHON} -m unittest discover -s ephem
else
PYTHONPATH="$(ls -d ${BUILD_DIR}/lib*)" \
unit2 discover -s ephem
fi
}
src_install() {
use doc && HTML_DOCS=( ephem/doc/_build/html/. )
distutils-r1_src_install
delete_tests() {
rm -r "${D}$(python_get_sitedir)/ephem/tests" || die
}
python_foreach_impl delete_tests
}
|