2016-07-05 16:41:33 +02:00
|
|
|
config BR2_PACKAGE_CIRCUS
|
|
|
|
bool "circus"
|
2019-10-07 22:37:31 +02:00
|
|
|
depends on BR2_PACKAGE_PYTHON3 # python-tornado
|
2016-07-05 16:41:33 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # pyzmq -> zeromq
|
2018-05-05 18:05:31 +02:00
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # pyzmq -> zeromq
|
2016-07-05 16:41:33 +02:00
|
|
|
select BR2_PACKAGE_PYTHON_IOWAIT # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_PSUTIL # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_PYZMQ # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_TORNADO # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_SETUPTOOLS # runtime
|
|
|
|
help
|
|
|
|
Circus is a program that will let you run and watch multiple
|
|
|
|
processes and sockets.
|
|
|
|
|
|
|
|
https://circus.readthedocs.org/en/latest/
|
|
|
|
|
2019-10-07 22:37:31 +02:00
|
|
|
comment "circus needs Python 3 and a toolchain w/ C++, threads"
|
2018-05-05 18:05:31 +02:00
|
|
|
depends on !BR2_INSTALL_LIBSTDCPP || !BR2_TOOLCHAIN_HAS_THREADS || \
|
2019-10-07 22:37:31 +02:00
|
|
|
!BR2_PACKAGE_PYTHON3
|