From 2ad011cd42b40aebf90105be4521fb1727266d1d Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Mon, 26 Sep 2022 15:08:09 +0100 Subject: gentoo auto-resync : 26:09:2022 - 15:08:08 --- dev-python/sphinxcontrib-asyncio/Manifest | 2 +- .../sphinxcontrib-asyncio-0.3.0-r1.ebuild | 31 +++++++++++++++++ .../sphinxcontrib-asyncio-0.3.0.ebuild | 39 ---------------------- 3 files changed, 32 insertions(+), 40 deletions(-) create mode 100644 dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0-r1.ebuild delete mode 100644 dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0.ebuild (limited to 'dev-python/sphinxcontrib-asyncio') diff --git a/dev-python/sphinxcontrib-asyncio/Manifest b/dev-python/sphinxcontrib-asyncio/Manifest index d28316f24895..b2d641660157 100644 --- a/dev-python/sphinxcontrib-asyncio/Manifest +++ b/dev-python/sphinxcontrib-asyncio/Manifest @@ -1,3 +1,3 @@ DIST sphinxcontrib-asyncio-0.3.0.tar.gz 11622 BLAKE2B 8c3358ad191e12e79767be6e6f3800e5de423d9a5ad005bdb416aa7a601cddc5f115db3e9b27213c06dbc341b671cbacd00217b65496baada40bfe257069abfa SHA512 fa66a2a9b5f89327686481f46d8e5be0b674f6355c8c0eeb862bf0ca0b5bb848121c5ed153780f653242faf1b82debc6917c3f6046244cce0f1423303a324f29 -EBUILD sphinxcontrib-asyncio-0.3.0.ebuild 961 BLAKE2B ac2e2dbcff9e0999de746bc19eb2e2294acac83ec5f1ad13b0777f4a2a238c6280717d065f4169cb32c89e731accec53c3466c2aa840219c2ac98718e5d5e7af SHA512 2ea143cc1ff03c6ff4db32f784c2e1df3261808bcc9b8cd9ba419ef85f77dfd96e4561edd6754ef5e0cd0d7f999484244a0c875b8739a686c578eec7a3f06e54 +EBUILD sphinxcontrib-asyncio-0.3.0-r1.ebuild 739 BLAKE2B 24b32125ed8af53ca05b11e964f9c1909cb33a425ea630082db8cbc615c4b3a08d7cc2251d36d8895a1e544c4ada12c669b1efc7dc9b68baac10c739b04da226 SHA512 35e5a28e705aed514ec5c56c960f4e3b6f7296b07988effb46e5f95c64a91098098ed09070c2136f0445ef35df11e135ae2fefbfe6b996787763a1df48591b6a MISC metadata.xml 397 BLAKE2B 357224874a9e2de147a2cc2a85350092fcd6189b1a3cb6cd1934c7eb922a9e0fb289776b65189dac007be1e663c3f98c73e656b5ab3677524bfac9329d41a542 SHA512 558c76f15358bb40e1c0a68750772487a3176b44f4f8ab046c0c8173d2fc0535516bd5dc4606646467785014a3e879ed7e31d5ccd10097741b02009c53042afe diff --git a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0-r1.ebuild b/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0-r1.ebuild new file mode 100644 index 000000000000..f959456f2132 --- /dev/null +++ b/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2022 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_USE_PEP517=setuptools +PYTHON_COMPAT=( python3_{8..11} ) + +inherit distutils-r1 + +DESCRIPTION="sphinx extension to support coroutines in markup" +HOMEPAGE=" + https://github.com/aio-libs/sphinxcontrib-asyncio/ + https://pypi.org/project/sphinxcontrib-asyncio/ +" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="Apache-2.0" +SLOT="0" +KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" + +RDEPEND=" + dev-python/sphinx[${PYTHON_USEDEP}] +" + +distutils_enable_sphinx docs + +src_prepare() { + rm sphinxcontrib/__init__.py || die + distutils-r1_src_prepare +} diff --git a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0.ebuild b/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0.ebuild deleted file mode 100644 index ad4309c706ff..000000000000 --- a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.3.0.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{8..11} ) - -inherit distutils-r1 - -DESCRIPTION="sphinx extension to support coroutines in markup" -HOMEPAGE=" - https://github.com/aio-libs/sphinxcontrib-asyncio/ - https://pypi.org/project/sphinxcontrib-asyncio/ -" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="Apache-2.0" -SLOT="0" -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux" - -RDEPEND=" - dev-python/sphinx[${PYTHON_USEDEP}] -" - -distutils_enable_sphinx docs - -src_prepare() { - # fix for sphinx >= 4.0 - sed -e 's/PyModulelevel/PyFunction/g' \ - -e 's/PyClassmember/PyClassMethod/g' \ - -i sphinxcontrib/asyncio.py || die - default -} - -python_compile() { - distutils-r1_python_compile - rm "${BUILD_DIR}/install$(python_get_sitedir)"/sphinxcontrib/__init__.py || die -} -- cgit v1.2.3