From f7d11b87d40057ddd298ee9ac84f7f57fc83107b Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Wed, 28 May 2025 15:35:12 +0200 Subject: [PATCH] package/python-flask-restx: add missing depends on Since the package was introduced in commit 02de34989560b40a963fa13dddfb4714470fec25, it selects BR2_PACKAGE_PYTHON_JSONSCHEMA without taking care of its dependencies, causing the following warning: WARNING: unmet direct dependencies detected for BR2_PACKAGE_PYTHON_JSONSCHEMA Depends on [n]: BR2_PACKAGE_PYTHON3 [=y] && BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS [=n] Selected by [y]: - BR2_PACKAGE_PYTHON_FLASK_RESTX [=y] && BR2_PACKAGE_PYTHON3 [=y] Fix this by adding the missing depends on. Signed-off-by: Thomas Petazzoni Signed-off-by: Peter Korsgaard --- package/python-flask-restx/Config.in | 1 + 1 file changed, 1 insertion(+) diff --git a/package/python-flask-restx/Config.in b/package/python-flask-restx/Config.in index 4906869a38..ec5b3283bd 100644 --- a/package/python-flask-restx/Config.in +++ b/package/python-flask-restx/Config.in @@ -1,5 +1,6 @@ config BR2_PACKAGE_PYTHON_FLASK_RESTX bool "python-flask-restx" + depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-jsonschema select BR2_PACKAGE_PYTHON_ANISO8601 # runtime select BR2_PACKAGE_PYTHON_FLASK # runtime select BR2_PACKAGE_PYTHON_JSONSCHEMA # runtime