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-openapi/
Date: Wed, 27 Apr 2022 07:07:15
Message-Id: 1651043227.667387c9736489828afab864400f5656a4eb1d55.mgorny@gentoo
1 commit: 667387c9736489828afab864400f5656a4eb1d55
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 27 07:03:37 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 27 07:07:07 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=667387c9
7
8 dev-python/sphinxcontrib-openapi: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 .../sphinxcontrib-openapi-0.7.0.ebuild | 41 ----------------------
13 1 file changed, 41 deletions(-)
14
15 diff --git a/dev-python/sphinxcontrib-openapi/sphinxcontrib-openapi-0.7.0.ebuild b/dev-python/sphinxcontrib-openapi/sphinxcontrib-openapi-0.7.0.ebuild
16 deleted file mode 100644
17 index 8b4f15d51463..000000000000
18 --- a/dev-python/sphinxcontrib-openapi/sphinxcontrib-openapi-0.7.0.ebuild
19 +++ /dev/null
20 @@ -1,41 +0,0 @@
21 -# Copyright 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 -DISTUTILS_USE_PEP517=setuptools
28 -inherit distutils-r1
29 -
30 -DESCRIPTION="OpenAPI (fka Swagger) spec renderer for Sphinx"
31 -HOMEPAGE="https://pypi.org/project/sphinxcontrib-openapi/
32 - https://github.com/sphinx-contrib/openapi"
33 -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
34 -
35 -LICENSE="BSD"
36 -SLOT="0"
37 -KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc ~x86"
38 -
39 -RDEPEND="
40 - dev-python/sphinx[${PYTHON_USEDEP}]
41 - dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
42 - dev-python/sphinxcontrib-httpdomain[${PYTHON_USEDEP}]
43 - dev-python/pyyaml[${PYTHON_USEDEP}]
44 - dev-python/jsonschema[${PYTHON_USEDEP}]
45 - dev-python/m2r[${PYTHON_USEDEP}]
46 - dev-python/picobox[${PYTHON_USEDEP}]
47 - dev-python/deepmerge[${PYTHON_USEDEP}]
48 -"
49 -BDEPEND="
50 - dev-python/setuptools_scm[${PYTHON_USEDEP}]
51 - test? (
52 - dev-python/responses[${PYTHON_USEDEP}]
53 - )
54 -"
55 -
56 -distutils_enable_tests pytest
57 -
58 -python_install_all() {
59 - distutils-r1_python_install_all
60 - find "${D}" -name '*.pth' -delete || die
61 -}