kumquat-buildroot/package/networkd-dispatcher/Config.in
Michael Nosthoff via buildroot 27856dfd1a package/networkd-dispatcher: new package
Networkd-dispatcher is a dispatcher daemon for systemd-networkd
connection status changes. This daemon is similar to
NetworkManager-dispatcher, but is much more limited in the types of
events it supports due to the limited nature of systemd-networkd.

To simplify the large number of transitive dependencies, remove the ones
that are implied by glibc.

To simplify the comment, simply don't show it if python is selected.
Python 2 is going to be removed soon anyway.

Signed-off-by: Michael Nosthoff <buildroot@heine.tech>
[Arnout: add Config.in comment and rework/simplify dependencies]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2022-01-12 21:16:23 +01:00

30 lines
1.3 KiB
Plaintext

config BR2_PACKAGE_NETWORKD_DISPATCHER
bool "networkd-dispatcher"
depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS # python-gobject -> gobject-introspection
depends on BR2_HOST_GCC_AT_LEAST_8 # python-gobject -> gobject-introspection -> host-qemu
depends on BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 # python-gobject -> gobject-introspection
depends on BR2_TOOLCHAIN_USES_GLIBC # python-gobject -> gobject-introspection
depends on !BR2_PACKAGE_PYTHON # python3
depends on BR2_PACKAGE_SYSTEMD # runtime
select BR2_PACKAGE_DBUS # dbus-python
select BR2_PACKAGE_DBUS_PYTHON # runtime
select BR2_PACKAGE_PYTHON3 # python-gobject
select BR2_PACKAGE_PYTHON_GOBJECT # runtime
select BR2_PACKAGE_SYSTEMD_NETWORKD # runtime
help
Networkd-dispatcher is a dispatcher daemon for
systemd-networkd connection status changes.
This daemon is similar to NetworkManager-dispatcher,
but is much more limited in the types of events it
supports due to the limited nature of systemd-networkd.
https://gitlab.com/craftyguy/networkd-dispatcher
comment "networkd-dispatcher needs a glibc toolchain, gcc >= 4.9, host gcc >= 8"
depends on BR2_PACKAGE_GOBJECT_INTROSPECTION_ARCH_SUPPORTS
depends on BR2_PACKAGE_SYSTEMD
depends on !BR2_PACKAGE_PYTHON
depends on !BR2_HOST_GCC_AT_LEAST_8 || \
!BR2_TOOLCHAIN_GCC_AT_LEAST_4_9 || \
!BR2_TOOLCHAIN_USES_GLIBC