Config.in 895 B

12345678910111213141516171819
  1. config 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. https://github.com/ukBaz/python-bluezero
  13. comment "python-bluezero needs a glibc toolchain, gcc >= 4.9, host gcc >= 8"
  14. depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
  15. depends on !BR2_TOOLCHAIN_USES_GLIBC || \
  16. !BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
  17. !BR2_HOST_GCC_AT_LEAST_8