summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJose Quaresma <quaresma.jose@gmail.com>2024-09-23 09:55:55 +0100
committerKhem Raj <raj.khem@gmail.com>2024-11-19 13:13:21 -0800
commit544f04499d227e9428558ad9723b08ac610f6721 (patch)
tree1066e12e56a9106fb01fc9490b9d0bfd77db8113
parent00c337130eb2405ab7eaf79eff03e64eac58e4be (diff)
downloadmeta-openembedded-544f04499d227e9428558ad9723b08ac610f6721.tar.gz
gpsd: make the meta-python dependency conditionally
The python3-pyserial dependency was introduced in [1]. It is provided by the meta-python layer and so make it conditionally. Fixes: | NOTE: Resolving any missing task queue dependencies | ERROR: Nothing RPROVIDES 'python3-pyserial' (but ../meta-openembedded/meta-oe/recipes-navigation/gpsd/gpsd_3.25.bb RDEPENDS on or otherwise requires it) | NOTE: Runtime target 'python3-pyserial' is unbuildable, removing... | Missing or unbuildable dependency chain was: ['python3-pyserial'] | NOTE: Runtime target 'gpsd' is unbuildable, removing... | Missing or unbuildable dependency chain was: ['gpsd', 'python3-pyserial'] [1] https://git.openembedded.org/meta-openembedded/commit/?id=1266c912afa0abf118eaa5d152a0641c87665fbd Signed-off-by: Jose Quaresma <jose.quaresma@foundries.io> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Armin Kuster <akuster808@gmail.com>
-rw-r--r--meta-oe/recipes-navigation/gpsd/gpsd_3.25.bb1
1 files changed, 1 insertions, 0 deletions
diff --git a/meta-oe/recipes-navigation/gpsd/gpsd_3.25.bb b/meta-oe/recipes-navigation/gpsd/gpsd_3.25.bb
index f893ac359b..458aedbf85 100644
--- a/meta-oe/recipes-navigation/gpsd/gpsd_3.25.bb
+++ b/meta-oe/recipes-navigation/gpsd/gpsd_3.25.bb
@@ -27,6 +27,7 @@ CLEANBROKEN = "1"
27PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} usb" 27PACKAGECONFIG ??= "${@bb.utils.contains('DISTRO_FEATURES', 'bluetooth', 'bluez', '', d)} usb"
28PACKAGECONFIG[bluez] = "bluez='true',bluez='false',bluez5" 28PACKAGECONFIG[bluez] = "bluez='true',bluez='false',bluez5"
29PACKAGECONFIG[qt] = "qt='yes' qt_versioned=5,qt='no',qtbase" 29PACKAGECONFIG[qt] = "qt='yes' qt_versioned=5,qt='no',qtbase"
30PACKAGECONFIG[pyserial] = ",,python3-pyserial"
30PACKAGECONFIG[usb] = "usb='true',usb='false',libusb1" 31PACKAGECONFIG[usb] = "usb='true',usb='false',libusb1"
31EXTRA_OESCONS = " \ 32EXTRA_OESCONS = " \
32 sysroot=${STAGING_DIR_TARGET} \ 33 sysroot=${STAGING_DIR_TARGET} \