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-spelling/
Date: Wed, 27 Apr 2022 07:07:15
Message-Id: 1651043228.29ce0bc4641d30e0d3deec5d2a3bc32c2adb74df.mgorny@gentoo
1 commit: 29ce0bc4641d30e0d3deec5d2a3bc32c2adb74df
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 07:06:30 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 07:07:08 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29ce0bc4
7
8 dev-python/sphinxcontrib-spelling: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../sphinxcontrib-spelling-7.3.2.ebuild | 46 ----------------------
13 1 file changed, 46 deletions(-)
14
15 diff --git a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-7.3.2.ebuild b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-7.3.2.ebuild
16 deleted file mode 100644
17 index e2437f44cfdb..000000000000
18 --- a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-7.3.2.ebuild
19 +++ /dev/null
20 @@ -1,46 +0,0 @@
21 -# Copyright 1999-2022 Gentoo Authors
22 -# Distributed under the terms of the GNU General Public License v2
23 -
24 -EAPI=8
25 -
26 -PYTHON_COMPAT=( python3_{8..10} )
27 -inherit distutils-r1
28 -
29 -DESCRIPTION="Sphinx spelling extension"
30 -HOMEPAGE="https://github.com/sphinx-contrib/spelling"
31 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
32 -
33 -LICENSE="BSD-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux"
36 -
37 -RDEPEND="
38 - dev-python/pyenchant[${PYTHON_USEDEP}]
39 - dev-python/sphinx[${PYTHON_USEDEP}]
40 -"
41 -BDEPEND="
42 - dev-python/pbr[${PYTHON_USEDEP}]
43 - test? (
44 - app-dicts/myspell-en
45 - )
46 -"
47 -
48 -# The doc can only be built from a git repository
49 -distutils_enable_tests pytest
50 -
51 -EPYTEST_DESELECT=(
52 - # requires the git repo
53 - tests/test_filter.py::test_contributors
54 -)
55 -
56 -# We don't want distutils_enable_tests to add the namespace
57 -# package to BDEPEND under "test?". Therefore we add it to RDEPEND
58 -# after running distutils_enable_tests.
59 -RDEPEND+="
60 - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
61 -"
62 -
63 -python_install_all() {
64 - distutils-r1_python_install_all
65 - find "${ED}" -name '*.pth' -delete || die
66 -}