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: Thu, 30 Jul 2020 20:46:37
Message-Id: 1596141985.bfc95c6a17778385d04c01bb78eacc0b65e663fd.mgorny@gentoo
1 commit: bfc95c6a17778385d04c01bb78eacc0b65e663fd
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Thu Jul 30 20:42:30 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Thu Jul 30 20:46:25 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfc95c6a
7
8 dev-python/sphinxcontrib-spelling: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphinxcontrib-spelling/Manifest | 1 -
13 .../sphinxcontrib-spelling-5.1.0.ebuild | 51 ----------------------
14 2 files changed, 52 deletions(-)
15
16 diff --git a/dev-python/sphinxcontrib-spelling/Manifest b/dev-python/sphinxcontrib-spelling/Manifest
17 index f9c12ac0e1b..7b92dbd0ccc 100644
18 --- a/dev-python/sphinxcontrib-spelling/Manifest
19 +++ b/dev-python/sphinxcontrib-spelling/Manifest
20 @@ -1,3 +1,2 @@
21 -DIST sphinxcontrib-spelling-5.1.0.tar.gz 22942 BLAKE2B 00861b429b66667ed45791f9dd8394b23cf2982875a9e3470c1e2dee22ff0500515d409821a73e46b49bcf397e9ef40f377f933e460b8673579b1f234bf157e4 SHA512 22c5c4eac56c0138e33aae38c2ed1d254211c502087e4c0ebebf2b3b7df69d2567cacde394abb2d8385eab48ea6e3ac9282c980bc8b52408f46bc06ab9634fa4
22 DIST sphinxcontrib-spelling-5.1.2.tar.gz 22962 BLAKE2B c7b15289b4b6dce5e6c5fb529c4be2cd7c1f41d8bfc6ac86daf1a982f711bd2c426d9b3a615471538fe221197b64ccd907efd4620ea2440f6ec07b2a078d6bee SHA512 4a0398b7c79a035e12d9ae96100fcaa4df42aeae07a01a73f7d875ba04fbbeb3d7441c9debe77491876d78b0a3753677cff4cb3a575e3490364fe5780f5a70b2
23 DIST sphinxcontrib-spelling-5.2.0.tar.gz 43860 BLAKE2B 535ec4d8d6f924c9f01b10599725295b1f96f47e999393fbc603725b0eb4ffccf7f12be636cc2d9d045251cae075a3e851f3de4cee5d64ca24ca2056a5406274 SHA512 a17932c5b656cfb76a1389d7c56d71b41d0dda37fae0449db2e03ae1694a6741d20ce2b057ff8bc5fc4fc26c91e07f5a1106470deeea2633ca7a60bc7537c2aa
24
25 diff --git a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.0.ebuild b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.0.ebuild
26 deleted file mode 100644
27 index 4eef4eb94bf..00000000000
28 --- a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.0.ebuild
29 +++ /dev/null
30 @@ -1,51 +0,0 @@
31 -# Copyright 1999-2020 Gentoo Authors
32 -# Distributed under the terms of the GNU General Public License v2
33 -
34 -EAPI=7
35 -PYTHON_COMPAT=( python3_{6..9} )
36 -
37 -inherit distutils-r1
38 -
39 -DESCRIPTION="Sphinx spelling extension"
40 -HOMEPAGE="https://github.com/sphinx-contrib/spelling"
41 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 -
43 -LICENSE="BSD-2"
44 -SLOT="0"
45 -KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
46 -IUSE="doc test"
47 -RESTRICT="!test? ( test )"
48 -
49 -COMMON_DEPEND="
50 - dev-python/pbr[${PYTHON_USEDEP}]
51 - dev-python/pyenchant[${PYTHON_USEDEP}]
52 - dev-python/six[${PYTHON_USEDEP}]
53 - dev-python/sphinx[${PYTHON_USEDEP}]
54 -"
55 -DEPEND="
56 - dev-python/setuptools[${PYTHON_USEDEP}]
57 - doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
58 - test? (
59 - ${COMMON_DEPEND}
60 - app-dicts/myspell-en
61 - >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
62 - dev-python/testtools[${PYTHON_USEDEP}]
63 - )
64 -"
65 -RDEPEND="${COMMON_DEPEND}
66 - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
67 -"
68 -
69 -python_compile_all() {
70 - use doc && emake -C docs html
71 -}
72 -
73 -python_test() {
74 - "${EPYTHON}" -m unittest discover -v || die "Tests fail with ${EPYTHON}"
75 -}
76 -
77 -python_install_all() {
78 - use doc && local HTML_DOCS=( docs/build/html/. )
79 - distutils-r1_python_install_all
80 - find "${ED}" -name '*.pth' -delete || die
81 -}