diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2024-10-16 21:35:00 +0200 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2024-10-16 14:07:29 -0700 |
commit | eb8d4d74a5a918b9995d8889c44cd41a0f01bd3a (patch) | |
tree | 024af4750b557336f1db2b8630e5b663d1c786ac | |
parent | 940ce6993775976f0de5abb0e32ed581be5a9fb3 (diff) | |
download | meta-openembedded-eb8d4d74a5a918b9995d8889c44cd41a0f01bd3a.tar.gz |
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>
-rw-r--r-- | meta-oe/recipes-extended/mraa/mraa_git.bb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/meta-oe/recipes-extended/mraa/mraa_git.bb b/meta-oe/recipes-extended/mraa/mraa_git.bb index 4d3baf6caa..df487bd769 100644 --- a/meta-oe/recipes-extended/mraa/mraa_git.bb +++ b/meta-oe/recipes-extended/mraa/mraa_git.bb | |||
@@ -41,11 +41,11 @@ FILES:${PN}-utils = "${bindir}/" | |||
41 | # will result in only the python bindings being built/packaged. | 41 | # will result in only the python bindings being built/packaged. |
42 | # Note: 'nodejs' is disabled by default because the bindings | 42 | # Note: 'nodejs' is disabled by default because the bindings |
43 | # generation currently fails with nodejs (>v7.x). | 43 | # generation currently fails with nodejs (>v7.x). |
44 | BINDINGS ??= "python" | 44 | BINDINGS ??= "" |
45 | 45 | ||
46 | # nodejs isn't available for armv4/armv5 architectures | 46 | # nodejs isn't available for armv4/armv5 architectures |
47 | BINDINGS:armv4 ??= "python" | 47 | BINDINGS:armv4 ??= "" |
48 | BINDINGS:armv5 ??= "python" | 48 | BINDINGS:armv5 ??= "" |
49 | 49 | ||
50 | PACKAGECONFIG ??= "${@bb.utils.contains('PACKAGES', 'node-${PN}', 'nodejs', '', d)} \ | 50 | PACKAGECONFIG ??= "${@bb.utils.contains('PACKAGES', 'node-${PN}', 'nodejs', '', d)} \ |
51 | ${@bb.utils.contains('PACKAGES', 'python3-${PN}', 'python', '', d)}" | 51 | ${@bb.utils.contains('PACKAGES', 'python3-${PN}', 'python', '', d)}" |