1 config BR2_PACKAGE_CIRCUS
3 depends on BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3
4 depends on BR2_USE_WCHAR # pyzmq -> zeromq
5 depends on BR2_INSTALL_LIBSTDCPP # pyzmq -> zeromq
6 depends on BR2_TOOLCHAIN_HAS_THREADS # pyzmq -> zeromq
7 depends on !BR2_TOOLCHAIN_USES_MUSL # python-psutil
8 select BR2_PACKAGE_PYTHON_IOWAIT # runtime
9 select BR2_PACKAGE_PYTHON_PSUTIL # runtime
10 select BR2_PACKAGE_PYTHON_PYZMQ # runtime
11 select BR2_PACKAGE_PYTHON_TORNADO # runtime
12 select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
14 Circus is a program that will let you run and watch multiple
15 processes and sockets.
17 https://circus.readthedocs.org/en/latest/
19 comment "circus needs Python and a uClibc or glibc toolchain w/ C++, wchar, threads"
20 depends on !BR2_INSTALL_LIBSTDCPP || !BR2_USE_WCHAR || \
21 !BR2_TOOLCHAIN_HAS_THREADS || BR2_TOOLCHAIN_USES_MUSL || \
22 !(BR2_PACKAGE_PYTHON || BR2_PACKAGE_PYTHON3)