mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
This reverts commit 51365ff063.
This breaks u-boot < v2025.10 builds using binman, so revert it for now
given that v2025.10 is a quite recent release.
Fixes: https://gitlab.com/buildroot.org/buildroot/-/jobs/14249332016
And many more.
Longer term we either want to upgrade all the defconfigs (which will not fix
the issue for external users) or find a way to patch older u-boot versions.
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
20 lines
792 B
Makefile
20 lines
792 B
Makefile
################################################################################
|
|
#
|
|
# python-setuptools
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SETUPTOOLS_VERSION = 80.9.0
|
|
PYTHON_SETUPTOOLS_SOURCE = setuptools-$(PYTHON_SETUPTOOLS_VERSION).tar.gz
|
|
PYTHON_SETUPTOOLS_SITE = https://files.pythonhosted.org/packages/18/5d/3bf57dcd21979b887f014ea83c24ae194cfcd12b9e0fda66b957c69d1fca
|
|
PYTHON_SETUPTOOLS_LICENSE = MIT
|
|
PYTHON_SETUPTOOLS_LICENSE_FILES = LICENSE
|
|
PYTHON_SETUPTOOLS_CPE_ID_VENDOR = python
|
|
PYTHON_SETUPTOOLS_CPE_ID_PRODUCT = setuptools
|
|
PYTHON_SETUPTOOLS_SETUP_TYPE = pep517
|
|
PYTHON_SETUPTOOLS_DEPENDENCIES = host-python-wheel
|
|
HOST_PYTHON_SETUPTOOLS_DEPENDENCIES = host-python-wheel
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|