Install this version:
emerge -a =sci-astronomy/pyephem-4.2.1
If this version is masked, you can unmask it using the autounmask tool or standard emerge options:
autounmask =sci-astronomy/pyephem-4.2.1
Or alternatively:
emerge --autounmask-write -a =sci-astronomy/pyephem-4.2.1
# Copyright 1999-2026 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..14} )
inherit distutils-r1
DESCRIPTION="Astronomical routines for the Python programming language"
HOMEPAGE="https://rhodesmill.org/pyephem/"
SRC_URI="https://github.com/brandon-rhodes/pyephem/archive/refs/tags/${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="doc"
BDEPEND="doc? ( dev-python/sphinx )"
EPYTEST_DESELECT=(
# Can't find its test files (class not loaded properly in test env?)
# bug #855461
tests/test_jpl.py::JPLTest::runTest
)
distutils_enable_tests pytest
src_prepare() {
# Don't install rst files by default
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() {
cd "${T}" || die
epytest --pyargs ephem
}
src_install() {
use doc && HTML_DOCS=( ephem/doc/_build/html/. )
distutils-r1_src_install
}
python_install() {
distutils-r1_python_install
rm -r "${D}$(python_get_sitedir)/ephem/tests" || die
}
Manage flags for this package:
euse -i <flag> -p sci-astronomy/pyephem |
euse -E <flag> -p sci-astronomy/pyephem |
euse -D <flag> -p sci-astronomy/pyephem
doc? ( dev-python/sphinx )
| Type | File | Size | Source URLs |
|---|---|---|---|
| DIST | pyephem-4.2.1.gh.tar.gz | 2668251 bytes | https://github.com/brandon-rhodes/pyephem/archive/refs/tags/4.2.1.tar.gz |