mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-09-19 16:40:46 -09:00
package/python-pysftp: add missing C++ dependency from paramiko
python-paramiko has a dependency on C++ support, which was added in commit2d7b73cf75in 2016. When python-pysftp was added in commit3b920487bain 2020, this C++ dependency was not propagated, even though python-pysftp selects python-paramiko. This commit fixes this issue by propagating the dependency, which fixes this warning: WARNING: unmet direct dependencies detected for BR2_PACKAGE_PYTHON_PARAMIKO Depends on [n]: (BR2_PACKAGE_PYTHON [=n] || BR2_PACKAGE_PYTHON3 [=y]) && BR2_PACKAGE_PYTHON3 [=y] && BR2_INSTALL_LIBSTDCPP [=n] Selected by [y]: - BR2_PACKAGE_PYTHON_PYSFTP [=y] && (BR2_PACKAGE_PYTHON [=n] || BR2_PACKAGE_PYTHON3 [=y]) && BR2_PACKAGE_PYTHON3 [=y] That occurs with configuration with C++ disabled, but python-pysftp enabled. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com> (cherry picked from commit8d1a72866a) Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
This commit is contained in:
committed by
Peter Korsgaard
parent
ce09a48e3e
commit
0898fde968
@@ -1,7 +1,11 @@
|
|||||||
config BR2_PACKAGE_PYTHON_PYSFTP
|
config BR2_PACKAGE_PYTHON_PYSFTP
|
||||||
bool "python-pysftp"
|
bool "python-pysftp"
|
||||||
|
depends on BR2_INSTALL_LIBSTDCPP # python-paramiko
|
||||||
select BR2_PACKAGE_PYTHON_PARAMIKO # runtime
|
select BR2_PACKAGE_PYTHON_PARAMIKO # runtime
|
||||||
help
|
help
|
||||||
A friendly face on SFTP.
|
A friendly face on SFTP.
|
||||||
|
|
||||||
https://bitbucket.org/dundeemt/pysftp
|
https://bitbucket.org/dundeemt/pysftp
|
||||||
|
|
||||||
|
comment "python-pysftp needs a toolchain w/ C++"
|
||||||
|
depends on !BR2_INSTALL_LIBSTDCPP
|
||||||
|
|||||||
Reference in New Issue
Block a user