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-websupport/
Date: Tue, 26 Apr 2022 17:02:32
Message-Id: 1650992505.ffa1241e824b5654643adae26a104f3cc3627843.mgorny@gentoo
1 commit: ffa1241e824b5654643adae26a104f3cc3627843
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 17:01:45 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 17:01:45 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffa1241e
7
8 dev-python/sphinxcontrib-websupport: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../sphinxcontrib-websupport-1.2.4.ebuild | 45 ----------------------
13 1 file changed, 45 deletions(-)
14
15 diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4.ebuild
16 deleted file mode 100644
17 index 9fc9cb7ac243..000000000000
18 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4.ebuild
19 +++ /dev/null
20 @@ -1,45 +0,0 @@
21 -# Copyright 1999-2021 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} pypy3 )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Sphinx websupport extension"
30 -HOMEPAGE="https://www.sphinx-doc.org
31 - https://github.com/sphinx-doc/sphinxcontrib-websupport"
32 -# pypi tarball is missing templates
33 -SRC_URI="https://github.com/sphinx-doc/sphinxcontrib-websupport/archive/${PV}.tar.gz -> ${P}.gh.tar.gz"
34 -
35 -LICENSE="BSD-2"
36 -SLOT="0"
37 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
38 -
39 -RDEPEND="
40 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
41 - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
42 - dev-python/sphinxcontrib-serializinghtml[${PYTHON_USEDEP}]"
43 -# avoid circular dependency with sphinx
44 -PDEPEND="
45 - >=dev-python/sphinx-1.5.3[${PYTHON_USEDEP}]"
46 -BDEPEND="
47 - test? (
48 - ${PDEPEND}
49 - >=dev-python/sqlalchemy-0.9[${PYTHON_USEDEP}]
50 - >=dev-python/whoosh-2.0[${PYTHON_USEDEP}]
51 - )"
52 -
53 -distutils_enable_tests pytest
54 -
55 -src_prepare() {
56 - # breaks tests
57 - sed -i -e '/pkg_resources/d' \
58 - sphinxcontrib/websupport/__init__.py || die
59 - distutils-r1_src_prepare
60 -}
61 -
62 -python_install_all() {
63 - distutils-r1_python_install_all
64 - find "${ED}" -name '*.pth' -delete || die
65 -}