dev-python/sphinxcontrib-programoutput: Bump to 0.18

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny 2024-12-07 07:42:33 +01:00
parent 4369854468
commit c393e2aeee
No known key found for this signature in database
GPG Key ID: 639ADAE2329E240E
4 changed files with 43 additions and 5 deletions

View File

@ -1 +1,2 @@
DIST sphinxcontrib-programoutput-0.17.tar.gz 24067 BLAKE2B 07687a221aa9be1e02629b2961b49eace217631a1298337f77a01986c3c6444a50069a8a8b9c96ca224895ae0f9490158a720519fdf3fb544e9d3e513282eb36 SHA512 cbb564830b8a627de6ecfa83fcc235d7dd7981e191ab3cada66a74d79a5bb2ec0a993eb8ae6249db553dc1814eae98891ea285f2c3cf5e745eabce7b8647b0c4
DIST sphinxcontrib_programoutput-0.18.tar.gz 26333 BLAKE2B d1f1da158296869efb9dfb98979069a7692f1742053ba29de611d2df2e239200ecbed2009aec6e9264af30a2056a02d23f257d8b66367110304bc7a3a7f1812f SHA512 2ead065812bfe85147a025e4e541880b25d5876a584406130fa3423009496b6c7cf482f86af92d22363d0893ce767d2957112e7c41bd8005fa41e043399e4d0e

View File

@ -13,12 +13,12 @@
<stabilize-allarches/>
<upstream>
<remote-id type="pypi">sphinxcontrib-programoutput</remote-id>
<remote-id type="github">NextThought/sphinxcontrib-programoutput</remote-id>
<remote-id type="github">OpenNTI/sphinxcontrib-programoutput</remote-id>
<bugs-to>
https://github.com/NextThought/sphinxcontrib-programoutput/issues
https://github.com/OpenNTI/sphinxcontrib-programoutput/issues
</bugs-to>
<changelog>
https://raw.githubusercontent.com/NextThought/sphinxcontrib-programoutput/master/CHANGES.rst
https://raw.githubusercontent.com/OpenNTI/sphinxcontrib-programoutput/master/CHANGES.rst
</changelog>
<doc lang="en">
https://sphinxcontrib-programoutput.readthedocs.org

View File

@ -1,4 +1,4 @@
# Copyright 1999-2023 Gentoo Authors
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
@ -11,7 +11,7 @@ inherit distutils-r1 pypi
DESCRIPTION="Extension to sphinx to include program output"
HOMEPAGE="
https://github.com/NextThought/sphinxcontrib-programoutput/
https://github.com/OpenNTI/sphinxcontrib-programoutput/
https://pypi.org/project/sphinxcontrib-programoutput/
"

View File

@ -0,0 +1,37 @@
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1 pypi
DESCRIPTION="Extension to sphinx to include program output"
HOMEPAGE="
https://github.com/OpenNTI/sphinxcontrib-programoutput/
https://pypi.org/project/sphinxcontrib-programoutput/
"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux"
RDEPEND="
dev-python/sphinx[${PYTHON_USEDEP}]
"
distutils_enable_tests pytest
distutils_enable_sphinx docs
src_prepare() {
distutils-r1_src_prepare
# namespace
rm src/sphinxcontrib/__init__.py || die
}
python_test() {
epytest --pyargs sphinxcontrib.programoutput.tests
}