dev-util/diff-cover: drop 9.2.0

Signed-off-by: Alfred Wingate <parona@protonmail.com>
Part-of: https://github.com/gentoo/gentoo/pull/44561
Closes: https://github.com/gentoo/gentoo/pull/44561
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Alfred Wingate 2025-11-10 04:49:39 +02:00 committed by Sam James
parent 1783fbe3d2
commit 829294ebb5
No known key found for this signature in database
GPG Key ID: 738409F520DF9190
2 changed files with 0 additions and 42 deletions

View File

@ -1,2 +1 @@
DIST diff-cover-9.2.0.gh.tar.gz 110215 BLAKE2B 7acc40be1464c4a5d0d95ed4f1d11e40302a0fc2aee751857154022a1e096afaaa656994c1c347c8cfdb6ec10684fe774d994a6a4e919a048997e18ce7f27310 SHA512 41289b4e4c37615155293df4058860b7118329784ed18afdf3624147f7d6ade6eedb86f17eb930c9f1f910c8723ee0ebafe074244cab7b3283e8135fa751ec00
DIST diff-cover-9.6.0.gh.tar.gz 125378 BLAKE2B c9d7ce0dadc75d2703ff679e5f9e9dd724d33337b121629a4b42eb6641842f492acc53c679b117a25a98bc186f96bb3b8de87100578e417bdc2fc4406c2962af SHA512 17a1167ec788610732f034f66013237354b7ff36f4fc8ab70894d1bfc4645dd2433ca8038edd23db3bc45e57c90cebf8a5a70a49fd85e3bbe766f27b4f313243

View File

@ -1,41 +0,0 @@
# Copyright 2021-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=poetry
PYTHON_COMPAT=( python3_{10..13} )
inherit distutils-r1
DESCRIPTION="Find diff lines that do not have test coverage"
HOMEPAGE="https://github.com/Bachmann1234/diff-cover"
SRC_URI="https://github.com/Bachmann1234/diff-cover/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz"
S="${WORKDIR}/${P/diff-cover/diff_cover}"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"
RDEPEND="
dev-python/pygments[${PYTHON_USEDEP}]
>=dev-python/jinja2-2.7.1[${PYTHON_USEDEP}]
>=dev-python/pluggy-0.13.1[${PYTHON_USEDEP}]
>=dev-python/chardet-3.0.0[${PYTHON_USEDEP}]
>=dev-python/tomli-1.2.1[${PYTHON_USEDEP}]
"
# Note: flake8/pylint called as shell tools, not imported libraries
BDEPEND="
test? (
dev-python/flake8
dev-python/pylint
dev-python/pytest-datadir[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
src_test() {
# Remove project's flake8 config because it causes a test that calls `flake8 --version` to fail
rm .flake8 || die
distutils-r1_src_test
}