From 12fcd24735485292964a732f035a15347ec4d53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Date: Sun, 12 Jul 2026 07:25:28 +0200 Subject: [PATCH] dev-python/dbus-fast: Remove old MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michał Górny --- dev-python/dbus-fast/Manifest | 1 - dev-python/dbus-fast/dbus-fast-4.3.0.ebuild | 62 --------------------- 2 files changed, 63 deletions(-) delete mode 100644 dev-python/dbus-fast/dbus-fast-4.3.0.ebuild diff --git a/dev-python/dbus-fast/Manifest b/dev-python/dbus-fast/Manifest index 89c8dfefb9c9b..49d20b4c5671a 100644 --- a/dev-python/dbus-fast/Manifest +++ b/dev-python/dbus-fast/Manifest @@ -1,2 +1 @@ -DIST dbus-fast-4.3.0.gh.tar.gz 233863 BLAKE2B 1e708125ecfa2ce1c26fa3e99935e2fac358f97d8585d712defe2d3a4a4dd7f2c52f18945b7f1af8b619e8c654b264ec8b8873b8b42da3b9d7e36a059a5baba1 SHA512 da0c3ed9d58621c76458ec61aaeeb97c0e9e780989a47f7c0f8629a8d9b762b255ba75664efe6f4cc3776d30b52fce83bbcc9e7e543a1ece1e1ecfdea27f3214 DIST dbus-fast-5.0.22.gh.tar.gz 262681 BLAKE2B 10a4f0a9917e528109d79cee97620f4a4f78755db7d36c755d29b82f2ae47a93a9a5c1ded936cdbe0156df1675c2914f4642f6bbc4d2c22bca75e0da8590eac9 SHA512 de1dbeeb21d81d2819dee632a7617cd72a05f15cab8ff35de343c25d3ff3dd2ad794a99d842abf4da8b9432bf933df98999b545c81de9ebeed4288c0ca2dd1bb diff --git a/dev-python/dbus-fast/dbus-fast-4.3.0.ebuild b/dev-python/dbus-fast/dbus-fast-4.3.0.ebuild deleted file mode 100644 index 2d7c7283cc809..0000000000000 --- a/dev-python/dbus-fast/dbus-fast-4.3.0.ebuild +++ /dev/null @@ -1,62 +0,0 @@ -# Copyright 1999-2026 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -DISTUTILS_EXT=1 -DISTUTILS_USE_PEP517=poetry -# TODO: freethreading compatible -PYTHON_COMPAT=( python3_{11..14} ) - -inherit distutils-r1 virtualx - -DESCRIPTION="A faster version of dbus-next" -HOMEPAGE=" - https://github.com/bluetooth-devices/dbus-fast/ - https://pypi.org/project/dbus-fast/ -" -SRC_URI=" - https://github.com/Bluetooth-Devices/dbus-fast/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="amd64 ~riscv" - -BDEPEND=" - >=dev-python/cython-3[${PYTHON_USEDEP}] - >=dev-python/setuptools-65.4.1[${PYTHON_USEDEP}] - test? ( - >=dev-python/pycairo-1.21.0[${PYTHON_USEDEP}] - >=dev-python/pygobject-3.50[${PYTHON_USEDEP}] - ) -" - -EPYTEST_PLUGINS=( pytest-{asyncio,timeout} ) -distutils_enable_tests pytest - -export REQUIRE_CYTHON=1 - -src_test() { - local dbus_params=( - $(dbus-daemon --session --print-address --fork --print-pid) - ) - local -x DBUS_SESSION_BUS_ADDRESS=${dbus_params[0]} - - virtx distutils-r1_src_test - - kill "${dbus_params[1]}" || die -} - -python_test() { - local EPYTEST_DESELECT=( - # interface not found on this object: org.freedesktop.DBus.Debug.Stats - tests/client/test_signals.py::test_signals - ) - local EPYTEST_IGNORE=( - tests/benchmarks - ) - - nonfatal epytest -o addopts= || die -}