From 829294ebb54a75e615e6ecf20a6c95015a562163 Mon Sep 17 00:00:00 2001 From: Alfred Wingate Date: Mon, 10 Nov 2025 04:49:39 +0200 Subject: [PATCH] dev-util/diff-cover: drop 9.2.0 Signed-off-by: Alfred Wingate Part-of: https://github.com/gentoo/gentoo/pull/44561 Closes: https://github.com/gentoo/gentoo/pull/44561 Signed-off-by: Sam James --- dev-util/diff-cover/Manifest | 1 - dev-util/diff-cover/diff-cover-9.2.0.ebuild | 41 --------------------- 2 files changed, 42 deletions(-) delete mode 100644 dev-util/diff-cover/diff-cover-9.2.0.ebuild diff --git a/dev-util/diff-cover/Manifest b/dev-util/diff-cover/Manifest index e5e0be91e010..36a506d37f19 100644 --- a/dev-util/diff-cover/Manifest +++ b/dev-util/diff-cover/Manifest @@ -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 diff --git a/dev-util/diff-cover/diff-cover-9.2.0.ebuild b/dev-util/diff-cover/diff-cover-9.2.0.ebuild deleted file mode 100644 index d71da7501434..000000000000 --- a/dev-util/diff-cover/diff-cover-9.2.0.ebuild +++ /dev/null @@ -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 -}