From f38d4e63d76e3eeca78b28d7fca80dbc13ec6eef Mon Sep 17 00:00:00 2001 From: James Hilliard Date: Fri, 18 Jul 2025 18:46:52 -0600 Subject: [PATCH] package/python-dbus-fast: fix cython 3.1.x compatibility Since python-cython bump to 3.1.2 in commit [1], python-dbus-fast is failing to build. Set --skip-dependency-check as dbus-fast specifies an unnecessarily strict maximum cython version. Fixes: ERROR Missing dependencies: Cython<3.1.0,>=3 [1] https://gitlab.com/buildroot.org/buildroot/-/commit/b536caaec0d800ccf7669a50fce5192bce2405a6 Signed-off-by: James Hilliard [Julien: add reference to buildroot commit introducing the issue] Signed-off-by: Julien Olivain --- package/python-dbus-fast/python-dbus-fast.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/python-dbus-fast/python-dbus-fast.mk b/package/python-dbus-fast/python-dbus-fast.mk index 854ce2068b..fe17674708 100644 --- a/package/python-dbus-fast/python-dbus-fast.mk +++ b/package/python-dbus-fast/python-dbus-fast.mk @@ -11,6 +11,7 @@ PYTHON_DBUS_FAST_SETUP_TYPE = poetry PYTHON_DBUS_FAST_LICENSE = MIT PYTHON_DBUS_FAST_LICENSE_FILES = LICENSE PYTHON_DBUS_FAST_ENV = REQUIRE_CYTHON=1 +PYTHON_DBUS_FAST_BUILD_OPTS = --skip-dependency-check PYTHON_DBUS_FAST_DEPENDENCIES = \ host-python-cython \ host-python-setuptools