This version of setuptools includes an update to distutils [0] which
fixes an issue with determining the linker command for C++ targets when
a wrapper, such as ccache, is in the command.
Fixes: https://autobuild.buildroot.org/results/5f017fca3d708388c9f66afea39b090f0976d496/
[0]: b8c06fffe4
Signed-off-by: Vincent Fazio <vfazio@xes-inc.com>
Signed-off-by: Julien Olivain <ju.o@free.fr>
20 lines
792 B
Makefile
20 lines
792 B
Makefile
################################################################################
|
|
#
|
|
# python-setuptools
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SETUPTOOLS_VERSION = 79.0.1
|
|
PYTHON_SETUPTOOLS_SOURCE = setuptools-$(PYTHON_SETUPTOOLS_VERSION).tar.gz
|
|
PYTHON_SETUPTOOLS_SITE = https://files.pythonhosted.org/packages/bb/71/b6365e6325b3290e14957b2c3a804a529968c77a049b2ed40c095f749707
|
|
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))
|