mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
There are currently problems in updating the pypi.org release[1], so we pull the package from the github generated tarball instead. This in turn then requires manually setting the version for setuptools_scm in the environment. [1] https://github.com/varlink/python/issues/81 Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
16 lines
586 B
Makefile
16 lines
586 B
Makefile
################################################################################
|
|
#
|
|
# python-varlink
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_VARLINK_VERSION = 32.1.0
|
|
PYTHON_VARLINK_SITE = $(call github,varlink,python,$(PYTHON_VARLINK_VERSION))
|
|
PYTHON_VARLINK_SETUP_TYPE = setuptools
|
|
PYTHON_VARLINK_DEPENDENCIES = host-python-setuptools-scm
|
|
PYTHON_VARLINK_LICENSE = Apache-2.0
|
|
PYTHON_VARLINK_LICENSE_FILES = LICENSE.txt
|
|
PYTHON_VARLINK_ENV = SETUPTOOLS_SCM_PRETEND_VERSION_FOR_VARLINK=$(PYTHON_VARLINK_VERSION)
|
|
|
|
$(eval $(python-package))
|