diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-06-30 18:29:09 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-06-30 19:00:11 +0200 |
commit | 3b5d06159624b2ff2b6baf70828a3ade7ab0e254 (patch) | |
tree | ec2135a734046f27885832d4b820241bd9b46cf2 /dev-python/sphinxygen | |
parent | dev-python/thriftpy2: Enable py3.13 (diff) | |
download | gentoo-3b5d06159624b2ff2b6baf70828a3ade7ab0e254.tar.gz gentoo-3b5d06159624b2ff2b6baf70828a3ade7ab0e254.tar.bz2 gentoo-3b5d06159624b2ff2b6baf70828a3ade7ab0e254.zip |
dev-python/sphinxygen: Enable py3.13
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/sphinxygen')
-rw-r--r-- | dev-python/sphinxygen/sphinxygen-1.0.4-r1.ebuild | 22 |
1 files changed, 13 insertions, 9 deletions
diff --git a/dev-python/sphinxygen/sphinxygen-1.0.4-r1.ebuild b/dev-python/sphinxygen/sphinxygen-1.0.4-r1.ebuild index 78093254ef08..1654c717ab2c 100644 --- a/dev-python/sphinxygen/sphinxygen-1.0.4-r1.ebuild +++ b/dev-python/sphinxygen/sphinxygen-1.0.4-r1.ebuild @@ -4,29 +4,33 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 pypi DESCRIPTION="Python module/script that generates Sphinx markup to describe a C API" HOMEPAGE=" - https://gitlab.com/drobilla/sphinxygen + https://gitlab.com/drobilla/sphinxygen/ https://pypi.org/project/sphinxygen/ " -SRC_URI="https://gitlab.com/drobilla/sphinxygen/-/archive/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.gh.tar.gz" +SRC_URI=" + https://gitlab.com/drobilla/sphinxygen/-/archive/v${PV}/${PN}-v${PV}.tar.gz + -> ${P}.gh.tar.gz +" +S="${WORKDIR}/${PN}-v${PV}" SLOT="0" LICENSE="ISC" KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86" -IUSE="test" -RESTRICT="!test? ( test )" -S="${WORKDIR}/${PN}-v${PV}" -DEPEND=" +RDEPEND=" app-text/doxygen dev-python/sphinx[${PYTHON_USEDEP}] " -RDEPEND="${DEPEND}" -BDEPEND="test? ( dev-python/html5lib[${PYTHON_USEDEP}] )" +BDEPEND=" + test? ( + dev-python/html5lib[${PYTHON_USEDEP}] + ) +" distutils_enable_tests pytest |