gentoo/dev-python/sphinxcontrib-bibtex/sphinxcontrib-bibtex-2.6.3.ebuild
Michał Górny 6c5dd4fdfa
dev-python/sphinxcontrib-bibtex: Remove py3.10 (per sphinx-8.2)
Signed-off-by: Michał Górny <mgorny@gentoo.org>
2025-02-19 21:21:49 +01:00

52 lines
1.1 KiB
Bash

# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 pypi
DESCRIPTION="Sphinx extensions for BibTeX style citations"
HOMEPAGE="
https://github.com/mcmtroffaes/sphinxcontrib-bibtex/
https://pypi.org/project/sphinxcontrib-bibtex/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
>=dev-python/docutils-0.8[${PYTHON_USEDEP}]
>=dev-python/pybtex-0.24[${PYTHON_USEDEP}]
>=dev-python/pybtex-docutils-1.0.0[${PYTHON_USEDEP}]
>=dev-python/sphinx-3.5[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/numpydoc[${PYTHON_USEDEP}]
dev-python/sphinx-autoapi[${PYTHON_USEDEP}]
)
"
EPYTEST_DESELECT=(
# rinoh not packaged
test/test_citation_rinoh.py::test_citation_rinoh
test/test_citation_rinoh.py::test_citation_rinoh_multidoc
)
distutils_enable_tests pytest
distutils_enable_sphinx doc
python_compile() {
distutils-r1_python_compile
find "${BUILD_DIR}" -name '*.pth' -delete || die
}
python_test() {
distutils_write_namespace sphinxcontrib
epytest
}