mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-31 03:31:05 -09:00
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]b536caaec0Signed-off-by: James Hilliard <james.hilliard1@gmail.com> [Julien: add reference to buildroot commit introducing the issue] Signed-off-by: Julien Olivain <ju.o@free.fr> (cherry picked from commitf38d4e63d7) Signed-off-by: Thomas Perale <thomas.perale@mind.be>
20 lines
732 B
Makefile
20 lines
732 B
Makefile
################################################################################
|
|
#
|
|
# python-dbus-fast
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_DBUS_FAST_VERSION = 2.34.0
|
|
PYTHON_DBUS_FAST_SOURCE = dbus_fast-$(PYTHON_DBUS_FAST_VERSION).tar.gz
|
|
PYTHON_DBUS_FAST_SITE = https://files.pythonhosted.org/packages/0c/bc/a124a2bcd99063bd07e035b8d82437f152334a459c2497d06f77963f7b95
|
|
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
|
|
|
|
$(eval $(python-package))
|