1config BR2_PACKAGE_PYTHON_BLUEZERO 2 bool "python-bluezero" 3 depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS # python-gobject -> gobject-introspection 4 depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # python-gobject -> gobject-introspection 5 depends on BR2_HOST_GCC_AT_LEAST_8 # python-gobject -> gobject-introspection -> host-qemu 6 depends on BR2_TOOLCHAIN_USES_GLIBC # python-gobject -> gobject-introspection 7 select BR2_PACKAGE_DBUS # runtime 8 select BR2_PACKAGE_DBUS_PYTHON # runtime 9 select BR2_PACKAGE_PYTHON_GOBJECT # runtime 10 help 11 Python library for Bluetooth Low Energy (BLE) on Linux. 12 13 https://github.com/ukBaz/python-bluezero 14 15comment "python-bluezero needs a glibc toolchain, gcc >= 4.9, host gcc >= 8" 16 depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS 17 depends on !BR2_TOOLCHAIN_USES_GLIBC || \ 18 !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \ 19 !BR2_HOST_GCC_AT_LEAST_8 20