diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-07 23:49:06 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-07 23:51:19 +0100 |
commit | d0774eb14d653bba493d3658b9c0f3c57fa96391 (patch) | |
tree | fa3ecad922a0125776e178c0ac7cb4fed17daa2e /sci-astronomy/pyephem | |
parent | Remove app-text/wklej (diff) | |
download | gentoo-d0774eb14d653bba493d3658b9c0f3c57fa96391.tar.gz gentoo-d0774eb14d653bba493d3658b9c0f3c57fa96391.tar.bz2 gentoo-d0774eb14d653bba493d3658b9c0f3c57fa96391.zip |
sci-astronomy/pyephem: Drop python2_7
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-astronomy/pyephem')
-rw-r--r-- | sci-astronomy/pyephem/pyephem-3.7.6.0-r1.ebuild | 48 |
1 files changed, 48 insertions, 0 deletions
diff --git a/sci-astronomy/pyephem/pyephem-3.7.6.0-r1.ebuild b/sci-astronomy/pyephem/pyephem-3.7.6.0-r1.ebuild new file mode 100644 index 000000000000..b1e5535c3234 --- /dev/null +++ b/sci-astronomy/pyephem/pyephem-3.7.6.0-r1.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +PYTHON_COMPAT=( python3_{5,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="" + +RESTRICT="!test? ( test )" + +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() { + PYTHONPATH="$(ls -d ${BUILD_DIR}/lib*)" unit2 discover -s ephem +} + +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 +} |