From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1BEC4158086 for ; Sun, 24 Oct 2021 08:54:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 57849E085A; Sun, 24 Oct 2021 08:54:49 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 3D365E0858 for ; Sun, 24 Oct 2021 08:54:49 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 35E5F343769 for ; Sun, 24 Oct 2021 08:54:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 94A14165 for ; Sun, 24 Oct 2021 08:54:46 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1635065265.b653e419bb9068c690e2ac96aafaadc0d141545c.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/sphobjinv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/sphobjinv/sphobjinv-2.1.ebuild X-VCS-Directories: dev-python/sphobjinv/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: b653e419bb9068c690e2ac96aafaadc0d141545c X-VCS-Branch: master Date: Sun, 24 Oct 2021 08:54:46 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d6cbff97-19f2-49a4-a63a-d8fbe55d6192 X-Archives-Hash: 628d9855448af2b6dd3ce5903f88339c commit: b653e419bb9068c690e2ac96aafaadc0d141545c Author: Michał Górny gentoo org> AuthorDate: Sun Oct 24 08:47:45 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Oct 24 08:47:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b653e419 dev-python/sphobjinv: Remove old Signed-off-by: Michał Górny gentoo.org> dev-python/sphobjinv/sphobjinv-2.1.ebuild | 53 ------------------------------- 1 file changed, 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 fd89afa41e9..00000000000 --- 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 -}