Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphinxcontrib-asyncio/
Date: Tue, 26 Apr 2022 17:01:25
Message-Id: 1650992469.6fc96f869c03a1a35a5175173be4162d4f78503b.mgorny@gentoo
1 commit: 6fc96f869c03a1a35a5175173be4162d4f78503b
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 16:57:04 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 17:01:09 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fc96f86
7
8 dev-python/sphinxcontrib-asyncio: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../sphinxcontrib-asyncio-0.2.0-r2.ebuild | 39 ----------------------
13 1 file changed, 39 deletions(-)
14
15 diff --git a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild b/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild
16 deleted file mode 100644
17 index 16dca9b5330d..000000000000
18 --- a/dev-python/sphinxcontrib-asyncio/sphinxcontrib-asyncio-0.2.0-r2.ebuild
19 +++ /dev/null
20 @@ -1,39 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=7
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="sphinx extension to support coroutines in markup"
30 -HOMEPAGE="https://github.com/aio-libs/sphinxcontrib-asyncio"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="Apache-2.0"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
36 -
37 -RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]
38 - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]"
39 -
40 -distutils_enable_sphinx docs
41 -
42 -src_prepare() {
43 - # fix for sphinx >= 4.0
44 - sed -e 's/PyModulelevel/PyFunction/g' \
45 - -e 's/PyClassmember/PyClassMethod/g' \
46 - -i sphinxcontrib/asyncio.py || die
47 - default
48 -}
49 -
50 -python_install() {
51 - rm "${BUILD_DIR}"/lib/sphinxcontrib/__init__.py || die
52 - distutils-r1_python_install --skip-build
53 -}
54 -
55 -python_install_all() {
56 - distutils-r1_python_install_all
57 - # clean up pth files bug #623852
58 - find "${ED}" -name '*.pth' -delete || die
59 -}