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/sphobjinv/
Date: Tue, 26 Apr 2022 18:55:51
Message-Id: 1650999143.97473ec06f18c5dcba3b1f843887f7baa374f18e.mgorny@gentoo
1 commit: 97473ec06f18c5dcba3b1f843887f7baa374f18e
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Tue Apr 26 18:52:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Tue Apr 26 18:52:23 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97473ec0
7
8 dev-python/sphobjinv: Remove old
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/sphobjinv/Manifest | 1 -
13 dev-python/sphobjinv/sphobjinv-2.2.1.ebuild | 55 -----------------------------
14 2 files changed, 56 deletions(-)
15
16 diff --git a/dev-python/sphobjinv/Manifest b/dev-python/sphobjinv/Manifest
17 index b0eb5d837d52..5af733c4cae2 100644
18 --- a/dev-python/sphobjinv/Manifest
19 +++ b/dev-python/sphobjinv/Manifest
20 @@ -1,2 +1 @@
21 -DIST sphobjinv-2.2.1.tar.gz 1150428 BLAKE2B 13bec53b00d14466aad652fb822ba32156d4ee3141f2df5bf55eaf77d03627c98c48dd142757ac43fe7dbf00716a85ee4c03060dfcf89e1d9aca4cd2589df5b0 SHA512 9247fc38e5d49adab0921f31e4ad1a8b2ca260c7a921b5fb9db7f800ee484335449031b0f51f81149ff71edba6cc93ab14a683ff6cdce2494322d05474e9a2c7
22 DIST sphobjinv-2.2.2.tar.gz 1188094 BLAKE2B f693254f3746b0e5cb6cc863be381f41d26465eab2e1494c29f30f1a72374e8d03dfa5c433958dfa1dcbaa0a7da1ff454c42da5c09011fa67264c26e3623a302 SHA512 36e7667b071f30d4ca066422b21d298c5691321d813ba6ad9eb7a69cd4107ceb18365ee2f95865fad64ab872428b035661a3f513df2e4aab1124b48f49c7280b
23
24 diff --git a/dev-python/sphobjinv/sphobjinv-2.2.1.ebuild b/dev-python/sphobjinv/sphobjinv-2.2.1.ebuild
25 deleted file mode 100644
26 index b701065103ce..000000000000
27 --- a/dev-python/sphobjinv/sphobjinv-2.2.1.ebuild
28 +++ /dev/null
29 @@ -1,55 +0,0 @@
30 -# Copyright 1999-2022 Gentoo Authors
31 -# Distributed under the terms of the GNU General Public License v2
32 -
33 -EAPI=8
34 -
35 -DISTUTILS_USE_PEP517=setuptools
36 -PYTHON_COMPAT=( python3_{8..10} )
37 -
38 -inherit distutils-r1
39 -
40 -DESCRIPTION="Sphinx objects.inv Inspection/Manipulation Tool"
41 -HOMEPAGE="
42 - https://github.com/bskinn/sphobjinv/
43 - https://pypi.org/project/sphobjinv/
44 -"
45 -SRC_URI="https://github.com/bskinn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
46 -
47 -LICENSE="MIT"
48 -KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 sparc x86"
49 -SLOT="0"
50 -
51 -RDEPEND="
52 - >=dev-python/attrs-19.2[${PYTHON_USEDEP}]
53 - dev-python/certifi[${PYTHON_USEDEP}]
54 - dev-python/fuzzywuzzy[${PYTHON_USEDEP}]
55 - >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]"
56 -BDEPEND="
57 - test? (
58 - dev-python/dictdiffer[${PYTHON_USEDEP}]
59 - dev-python/pytest-check[${PYTHON_USEDEP}]
60 - dev-python/pytest-ordering[${PYTHON_USEDEP}]
61 - dev-python/pytest-timeout[${PYTHON_USEDEP}]
62 - >=dev-python/stdio-mgr-1.0.1[${PYTHON_USEDEP}]
63 - dev-python/sphinx[${PYTHON_USEDEP}]
64 - dev-python/timeout-decorator[${PYTHON_USEDEP}]
65 - )
66 -"
67 -
68 -distutils_enable_tests pytest
69 -distutils_enable_sphinx doc/source \
70 - dev-python/sphinx_rtd_theme \
71 - dev-python/sphinx-issues \
72 - dev-python/sphinxcontrib-programoutput
73 -
74 -src_prepare() {
75 - # --strict option is deprecated in pytest>6
76 - sed -i -e '/addopts/d' tox.ini || die
77 - sed -e '/CLI_TEST_TIMEOUT/s/2/20/' -i tests/test_cli.py || die
78 -
79 - # remove bundled deps
80 - rm -r src/sphobjinv/_vendored || die
81 - sed -i -e 's:sphobjinv[.]_vendored[.]::' src/sphobjinv/*.py || die
82 -
83 - distutils-r1_src_prepare
84 -}