summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2021-10-24 10:47:45 +0200
committerMichał Górny <mgorny@gentoo.org>2021-10-24 10:47:45 +0200
commitb653e419bb9068c690e2ac96aafaadc0d141545c (patch)
treeddcc6c364b8707aff2cb6c0371eb1d31c2787d76
parent9f1597600bdec10c4894f8896c9c6ceeba657790 (diff)
downloadgentoo-b653e419bb9068c690e2ac96aafaadc0d141545c.tar.gz
gentoo-b653e419bb9068c690e2ac96aafaadc0d141545c.tar.bz2
gentoo-b653e419bb9068c690e2ac96aafaadc0d141545c.zip
dev-python/sphobjinv: Remove old
Signed-off-by: Michał Górny <mgorny@gentoo.org>
-rw-r--r--dev-python/sphobjinv/sphobjinv-2.1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/dev-python/sphobjinv/sphobjinv-2.1.ebuild b/dev-python/sphobjinv/sphobjinv-2.1.ebuild
deleted file mode 100644
index fd89afa41e92..000000000000
--- a/dev-python/sphobjinv/sphobjinv-2.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx objects.inv Inspection/Manipulation Tool"
-HOMEPAGE="
- https://github.com/bskinn/sphobjinv/
- https://pypi.org/project/sphobjinv/
-"
-SRC_URI="https://github.com/bskinn/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 sparc x86"
-SLOT="0"
-
-# This requires pytest-check, but that does not work at all, even if it
-# is installed it still fails to find the check fixture
-RESTRICT="test"
-
-RDEPEND="
- >=dev-python/attrs-19.2[${PYTHON_USEDEP}]
- dev-python/certifi[${PYTHON_USEDEP}]
- >=dev-python/fuzzywuzzy-0.8[${PYTHON_USEDEP}]
- >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]"
-
-BDEPEND="
- test? (
- dev-python/dictdiffer[${PYTHON_USEDEP}]
- dev-python/pytest-ordering[${PYTHON_USEDEP}]
- dev-python/pytest-timeout[${PYTHON_USEDEP}]
- >=dev-python/stdio-mgr-1.0.1[${PYTHON_USEDEP}]
- dev-python/timeout-decorator[${PYTHON_USEDEP}]
- )
-"
-
-distutils_enable_tests pytest
-distutils_enable_sphinx doc/source \
- dev-python/sphinx_rtd_theme \
- dev-python/sphinx-issues \
- dev-python/sphinxcontrib-programoutput
-
-python_prepare_all() {
- # --strict option is deprecated in pytest>6
- sed -i -e '/addopts/d' tox.ini || die
-
- distutils-r1_python_prepare_all
-}