mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-09 06:10:17 +03:00
While migrating to pep517 build backend the host-python-wheel dependency has been added to host-python-setuptools but not to python-setuptools. Note that host-python-wheel is not really needed during the build of (target) setuptools, but the setup.py script checks if the dependency is present in the host directory. To make everything consistent, add host-python-wheel as a build dependency, and BR2_PACKAGE_PYTHON_WHEEL as a runtime dependency. Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/4537951715 Signed-off-by: Romain Naour <romain.naour@gmail.com> Cc: James Hilliard <james.hilliard1@gmail.com> [Arnout: also add runtime dependency on the target package.] Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
11 lines
316 B
Plaintext
11 lines
316 B
Plaintext
config BR2_PACKAGE_PYTHON_SETUPTOOLS
|
|
bool "python-setuptools"
|
|
select BR2_PACKAGE_PYTHON3_PYEXPAT # runtime
|
|
select BR2_PACKAGE_PYTHON3_ZLIB # runtime
|
|
select BR2_PACKAGE_PYTHON_WHEEL # runtime
|
|
help
|
|
Download, build, install, upgrade, and uninstall Python
|
|
packages.
|
|
|
|
http://pypi.python.org/pypi/setuptools
|