Also update the homepage, the old URL now links to the current one. Signed-off-by: Fiona Klute (WIWA) <fiona.klute@gmx.de> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
892 B
Plaintext
21 lines
892 B
Plaintext
config BR2_PACKAGE_PYTHON_GOBJECT
|
|
bool "python-gobject"
|
|
depends on BR2_USE_MMU # libglib2, gobject-introspection
|
|
depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS # gobject-introspection
|
|
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # gobject-introspection
|
|
depends on BR2_HOST_GCC_AT_LEAST_8 # gobject-introspection -> host-qemu
|
|
depends on BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL # gobject-introspection
|
|
select BR2_PACKAGE_GOBJECT_INTROSPECTION
|
|
select BR2_PACKAGE_LIBGLIB2
|
|
help
|
|
Python bindings for the GLib/GObject library
|
|
|
|
https://pygobject.gnome.org/
|
|
|
|
comment "python-gobject needs a glibc or musl toolchain, gcc >= 4.9, host gcc >= 8"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
|
|
depends on !(BR2_TOOLCHAIN_USES_GLIBC || BR2_TOOLCHAIN_USES_MUSL) || \
|
|
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
|
|
!BR2_HOST_GCC_AT_LEAST_8
|