2018-03-09 20:17:01 +01:00
|
|
|
config BR2_PACKAGE_DOCKER_COMPOSE
|
|
|
|
bool "docker-compose"
|
|
|
|
depends on BR2_USE_MMU # python
|
|
|
|
depends on BR2_USE_WCHAR # python
|
|
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # python
|
|
|
|
depends on !BR2_STATIC_LIBS # python
|
2019-10-26 16:05:24 +02:00
|
|
|
depends on BR2_INSTALL_LIBSTDCPP # python-paramiko -> python-cryptography
|
2018-03-09 20:17:01 +01:00
|
|
|
select BR2_PACKAGE_PYTHON3 if !BR2_PACKAGE_PYTHON
|
|
|
|
select BR2_PACKAGE_PYTHON_BACKPORTS_SSL_MATCH_HOSTNAME \
|
|
|
|
if BR2_PACKAGE_PYTHON # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_ENUM34 if BR2_PACKAGE_PYTHON # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_IPADDRESS if BR2_PACKAGE_PYTHON # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_CACHED_PROPERTY # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_DOCOPT # runtime
|
2019-10-26 16:05:24 +02:00
|
|
|
select BR2_PACKAGE_PYTHON_PARAMIKO # runtime
|
2018-03-09 20:17:01 +01:00
|
|
|
select BR2_PACKAGE_PYTHON_PYYAML # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_REQUESTS # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_TEXTTABLE # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_WEBSOCKET_CLIENT # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_DOCKER # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_DOCKERPTY # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_SIX # runtime
|
|
|
|
select BR2_PACKAGE_PYTHON_JSONSCHEMA # runtime
|
|
|
|
help
|
|
|
|
Multi-container orchestration for Docker.
|
|
|
|
|
|
|
|
https://www.docker.com/
|
|
|
|
|
2019-10-26 16:05:24 +02:00
|
|
|
comment "docker-compose needs a toolchain w/ C++, wchar, threads, dynamic library"
|
2018-03-09 20:17:01 +01:00
|
|
|
depends on BR2_USE_MMU
|
2019-10-26 16:05:24 +02:00
|
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
|
|
BR2_STATIC_LIBS || !BR2_INSTALL_LIBSTDCPP
|