mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-09 06:10:17 +03:00
Drop python2 support. Remove python3-markupsafe host build as python2 host builds for markupsafe are not supported, python3 host builds are moved to python-markupsafe. Remove python3-jinja2 host build as python2 host builds for jinja2 are not supported, python3 host builds are moved to python-jinja2. Remove python3-mako host build as python2 host builds for mako are not supported, python3 host builds are moved to python-mako. Propagate reverse python3 dependency. Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
24 lines
896 B
Makefile
24 lines
896 B
Makefile
################################################################################
|
|
#
|
|
# python-jinja2
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_JINJA2_VERSION = 2.11.3
|
|
PYTHON_JINJA2_SOURCE = Jinja2-$(PYTHON_JINJA2_VERSION).tar.gz
|
|
PYTHON_JINJA2_SITE = https://files.pythonhosted.org/packages/4f/e7/65300e6b32e69768ded990494809106f87da1d436418d5f1367ed3966fd7
|
|
PYTHON_JINJA2_SETUP_TYPE = setuptools
|
|
PYTHON_JINJA2_LICENSE = BSD-3-Clause
|
|
PYTHON_JINJA2_LICENSE_FILES = LICENSE.rst
|
|
PYTHON_JINJA2_CPE_ID_VENDOR = pocoo
|
|
PYTHON_JINJA2_CPE_ID_PRODUCT = jinja2
|
|
|
|
# In host/target build, setup.py tries to download markupsafe if it is not installed
|
|
PYTHON_JINJA2_DEPENDENCIES = host-python-markupsafe
|
|
HOST_PYTHON_JINJA2_DEPENDENCIES = host-python-markupsafe
|
|
|
|
HOST_PYTHON_JINJA2_NEEDS_HOST_PYTHON = python3
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|