# Copyright 2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 DISTUTILS_USE_SETUPTOOLS=bdepend PYTHON_COMPAT=( python3_{10..11} ) inherit distutils-r1 pypi DESCRIPTION="Library of IDL astronomy routines converted to Python" HOMEPAGE="https://pydl.readthedocs.io" LICENSE="BSD" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="doc intersphinx" # Test phase runs with fails RESTRICT="test intersphinx? ( network-sandbox )" REQUIRED_USE="intersphinx? ( doc )" RDEPEND="dev-python/astropy[${PYTHON_USEDEP}] dev-python/matplotlib[${PYTHON_USEDEP}] dev-python/scipy[${PYTHON_USEDEP}] " BDEPEND="dev-python/astropy-helpers[${PYTHON_USEDEP}] doc? ( ${RDEPEND} dev-python/sphinx-astropy[${PYTHON_USEDEP}] media-gfx/graphviz ) test? ( dev-python/pytest-astropy-header[${PYTHON_USEDEP}] dev-python/pytest-doctestplus[${PYTHON_USEDEP}] dev-python/pytest-remotedata[${PYTHON_USEDEP}] ) " PATCHES=( "${FILESDIR}"/${P}-fix-astropy-5.1.patch ) distutils_enable_tests setup.py python_prepare_all() { sed -i -e '/auto_use/s/True/False/' setup.cfg || die sed -i -e "/PYTEST_HEADER_MODULES/s/astropy.tests.plugins/pytest_astropy_header/" ${PN}/conftest.py || die DISTUTILS_ARGS=( --offline ) distutils-r1_python_prepare_all } python_compile() { distutils-r1_python_compile --use-system-libraries } python_compile_all() { if use doc; then python_setup VARTEXFONTS="${T}"/fonts \ MPLCONFIGDIR="${BUILD_DIR}" \ PYTHONPATH="${BUILD_DIR}"/lib \ esetup.py build_docs $(usex intersphinx '' '--no-intersphinx') fi } python_install_all() { use doc && local HTML_DOCS=( docs/_build/html/. ) distutils-r1_python_install_all }