Skip to content

Commit

Permalink
mraa: disable python bindings
Browse files Browse the repository at this point in the history
Not compatible with python 3.13:
eclipse/mraa#1135

Signed-off-by: Alexander Kanavin <[email protected]>
Signed-off-by: Khem Raj <[email protected]>
  • Loading branch information
kanavin authored and kraj committed Oct 16, 2024
1 parent 940ce69 commit eb8d4d7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions meta-oe/recipes-extended/mraa/mraa_git.bb
Original file line number Diff line number Diff line change
Expand Up @@ -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)}"
Expand Down

0 comments on commit eb8d4d7

Please sign in to comment.