mraa: disable python bindings

Not compatible with python 3.13:
https://github.com/eclipse/mraa/issues/1135

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
This commit is contained in:
Alexander Kanavin
2024-10-16 21:35:00 +02:00
committed by Khem Raj
parent 940ce69937
commit eb8d4d74a5
+3 -3
View File
@@ -41,11 +41,11 @@ FILES:${PN}-utils = "${bindir}/"
# will result in only the python bindings being built/packaged.
# Note: 'nodejs' is disabled by default because the bindings
# generation currently fails with nodejs (>v7.x).
BINDINGS ??= "python"
BINDINGS ??= ""
# nodejs isn't available for armv4/armv5 architectures
BINDINGS:armv4 ??= "python"
BINDINGS:armv5 ??= "python"
BINDINGS:armv4 ??= ""
BINDINGS:armv5 ??= ""
PACKAGECONFIG ??= "${@bb.utils.contains('PACKAGES', 'node-${PN}', 'nodejs', '', d)} \
${@bb.utils.contains('PACKAGES', 'python3-${PN}', 'python', '', d)}"