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: Sat, 01 Aug 2020 22:29:46
Message-Id: 1596320977.4ba5cdfaf60e83b202e7a73c592d83952e7da974.mgorny@gentoo
1 commit: 4ba5cdfaf60e83b202e7a73c592d83952e7da974
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 1 22:04:28 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 1 22:29:37 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba5cdfa
7
8 dev-python/sphinxcontrib-websupport: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphinxcontrib-websupport/Manifest | 1 -
13 .../sphinxcontrib-websupport-1.1.0.ebuild | 48 ----------------------
14 2 files changed, 49 deletions(-)
15
16 diff --git a/dev-python/sphinxcontrib-websupport/Manifest b/dev-python/sphinxcontrib-websupport/Manifest
17 index 0734bfc2e92..78fe4fe4eb7 100644
18 --- a/dev-python/sphinxcontrib-websupport/Manifest
19 +++ b/dev-python/sphinxcontrib-websupport/Manifest
20 @@ -1,2 +1 @@
21 -DIST sphinxcontrib-websupport-1.1.0.tar.gz 587947 BLAKE2B fafaa56071245c8934e27c6d2d7752745b2a8047c8a30d52e513fff7f952086a1b9082aa15e15ef232d69ef0c0d5d117f8a8c97fcdf9cd90c89d53238d7f322e SHA512 adbd7db06150a4424a881a22442c2535ed823c7adcc295ef9c3af5ae38d823349830a114e8a7af2138498d0e68b37189707c1bb5a28b45c76031bcf94210fb89
22 DIST sphinxcontrib-websupport-1.2.2.gh.tar.gz 599606 BLAKE2B d7e5754491d0f4e4b508bb5ed58f41d6f57c8785ce2d658cd4beb658b9a01a453bd791e73deab703ebf17d18ddf0a3adc7c72a49e80c33475daca41666da694d SHA512 39d7d688515440fcf7a0df9cff60402499956da4c4d5de4e7b38982ff23ed837e7851a3c747135b9298d0df59f3055a8f588be78f10d98110ab50b8ab434db34
23
24 diff --git a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
25 deleted file mode 100644
26 index c8c8565357e..00000000000
27 --- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
28 +++ /dev/null
29 @@ -1,48 +0,0 @@
30 -# Copyright 1999-2020 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=6
34 -PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
35 -
36 -inherit distutils-r1
37 -
38 -DESCRIPTION="Sphinx websupport extension"
39 -HOMEPAGE="http://www.sphinx-doc.org"
40 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
41 -
42 -LICENSE="BSD-2"
43 -SLOT="0"
44 -KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 ~amd64-linux ~x86-linux ~x64-solaris"
45 -IUSE="test"
46 -RESTRICT="!test? ( test )"
47 -
48 -RDEPEND="
49 - >=dev-python/sqlalchemy-0.9[${PYTHON_USEDEP}]
50 - >=dev-python/whoosh-2.0[${PYTHON_USEDEP}]
51 - >=dev-python/six-1.5[${PYTHON_USEDEP}]
52 - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]"
53 -# avoid circular dependency with sphinx
54 -PDEPEND="
55 - >=dev-python/sphinx-1.5.3[${PYTHON_USEDEP}]"
56 -DEPEND="
57 - dev-python/setuptools[${PYTHON_USEDEP}]
58 - test? (
59 - ${RDEPEND}
60 - ${PDEPEND}
61 - dev-python/pytest[${PYTHON_USEDEP}]
62 - dev-python/mock[${PYTHON_USEDEP}]
63 - )"
64 -
65 -python_install_all() {
66 - distutils-r1_python_install_all
67 - find "${ED}" -name '*.pth' -delete || die
68 -}
69 -
70 -src_test() {
71 - cd tests || die
72 - distutils-r1_src_test
73 -}
74 -
75 -python_test() {
76 - pytest -vv || die "Tests fail with ${EPYTHON}"
77 -}