maliit-framework-qt6: fix build error

Got this error while building maliit-framework:

|   File "/home/marc/mnt/yocto-kde/build/tmp/work/core2-64-poky-linux/maliit-framework-qt6/2.3.1/recipe-sysroot-native/usr/share/glib-2.0/codegen/utils.py", line 22, in <module>
|     import packaging.version
| ModuleNotFoundError: No module named 'packaging'

Make sure that the 'packaging' python3 module is indeed available when
buildind the recipe.

Signed-off-by: Marc Ferland <marc.ferland@sonatest.com>
This commit is contained in:
Marc Ferland
2024-07-26 11:08:00 -04:00
parent fd8d196ffd
commit fce1471654

View File

@@ -22,10 +22,12 @@ DEPENDS += " \
glibc \
glib-2.0-native \
wayland \
python3-packaging-native \
"
inherit qt6-cmake
inherit pkgconfig
inherit python3native
EXTRA_OECMAKE += " \
-Dwith-qt6=ON \