31848ba595
python-setuptools-scm dropped python 2 support sincef0be71fbcf
resulting in the following build failure since bump to version 6.3.2 in commit12e3527fd9
: /buildroot/autobuild/instance-2/output-1/host/lib" INTLTOOL_PERL=/usr/bin/perl /home/buildroot/autobuild/instance-2/output-1/host/bin/python setup.py build ) File "setup.py", line 22 f"{type(self).__name__} is forbidden, " ^ Fixes: - http://autobuild.buildroot.org/results/2f6125993de364b4a44d259f16806e6dfd792402 With python 2 support dropped, python-backports-functools-lru-cache can no longer be built, so drop it. Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
17 lines
748 B
Makefile
17 lines
748 B
Makefile
################################################################################
|
|
#
|
|
# python-setuptools-scm
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_SETUPTOOLS_SCM_VERSION = 6.3.2
|
|
PYTHON_SETUPTOOLS_SCM_SOURCE = setuptools_scm-$(PYTHON_SETUPTOOLS_SCM_VERSION).tar.gz
|
|
PYTHON_SETUPTOOLS_SCM_SITE = https://files.pythonhosted.org/packages/4b/0d/ecb9595fae02467edba5023eb8a23c688d2b438a6a8d1a9e2b8649faf23d
|
|
PYTHON_SETUPTOOLS_SCM_LICENSE = MIT
|
|
PYTHON_SETUPTOOLS_SCM_LICENSE_FILES = LICENSE
|
|
PYTHON_SETUPTOOLS_SCM_SETUP_TYPE = setuptools
|
|
HOST_PYTHON_SETUPTOOLS_SCM_DEPENDENCIES = host-python-packaging host-python-tomli
|
|
HOST_PYTHON_SETUPTOOLS_SCM_NEEDS_HOST_PYTHON = python3
|
|
|
|
$(eval $(host-python-package))
|