diff options
author | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-07 23:49:52 +0100 |
---|---|---|
committer | Andreas Sturmlechner <asturm@gentoo.org> | 2019-12-07 23:51:19 +0100 |
commit | aa4434bd67acce87b9cda84ab9b576e07be13929 (patch) | |
tree | 12ff1bf52152f52a339fe8e72ad139853414c566 /sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild | |
parent | sci-astronomy/pyephem: Drop python2_7 (diff) | |
download | gentoo-aa4434bd67acce87b9cda84ab9b576e07be13929.tar.gz gentoo-aa4434bd67acce87b9cda84ab9b576e07be13929.tar.bz2 gentoo-aa4434bd67acce87b9cda84ab9b576e07be13929.zip |
sci-astronomy/pyephem: Drop 3.7.5.3 and 3.7.6.0 (r0)
Package-Manager: Portage-2.3.81, Repoman-2.3.20
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
Diffstat (limited to 'sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild')
-rw-r--r-- | sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild b/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild deleted file mode 100644 index 31682fca98a7..000000000000 --- a/sci-astronomy/pyephem/pyephem-3.7.5.3.ebuild +++ /dev/null @@ -1,54 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -PYTHON_COMPAT=( python2_7 ) - -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 - 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 src/ephem - else - PYTHONPATH="$(ls -d ${BUILD_DIR}/lib*)" \ - unit2 discover -s src/ephem - fi -} - -src_install() { - distutils-r1_src_install - use doc && dohtml -r ephem/doc/_build/html/* - - delete_tests() { - rm -r "${D}$(python_get_sitedir)/ephem/tests" || die - } - python_foreach_impl delete_tests -} |