mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
Now that all dependencies of host-python-setuptools no longer use setuptools as a build backend we can now migrate setuptools itself to the pep517 build backend. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Arnout Vandecappelle <arnout@mind.be>
19 lines
741 B
Makefile
19 lines
741 B
Makefile
################################################################################
|
|
#
|
|
# python-setuptools
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SETUPTOOLS_VERSION = 68.0.0
|
|
PYTHON_SETUPTOOLS_SOURCE = setuptools-$(PYTHON_SETUPTOOLS_VERSION).tar.gz
|
|
PYTHON_SETUPTOOLS_SITE = https://files.pythonhosted.org/packages/dc/98/5f896af066c128669229ff1aa81553ac14cfb3e5e74b6b44594132b8540e
|
|
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
|
|
HOST_PYTHON_SETUPTOOLS_DEPENDENCIES = host-python-wheel
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|