459dd7a985
And adjust the comments to clarify that the toolchain dependencies are from python3. Signed-off-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
31 lines
1.1 KiB
Plaintext
31 lines
1.1 KiB
Plaintext
config BR2_PACKAGE_DOCKER_COMPOSE
|
|
bool "docker-compose"
|
|
depends on BR2_USE_MMU # python3
|
|
depends on BR2_USE_WCHAR # python3
|
|
depends on BR2_TOOLCHAIN_HAS_THREADS # python3
|
|
depends on !BR2_STATIC_LIBS # python3
|
|
# python-paramiko -> python-cryptography
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
select BR2_PACKAGE_PYTHON3
|
|
select BR2_PACKAGE_PYTHON_CACHED_PROPERTY # runtime
|
|
select BR2_PACKAGE_PYTHON_DOCOPT # runtime
|
|
select BR2_PACKAGE_PYTHON_PARAMIKO # runtime
|
|
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/
|
|
|
|
comment "docker-compose needs a toolchain w/ wchar, threads, dynamic library"
|
|
depends on BR2_USE_MMU
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS
|
|
depends on !BR2_USE_WCHAR || !BR2_TOOLCHAIN_HAS_THREADS || \
|
|
BR2_STATIC_LIBS
|