e9df5b0fc3
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>
21 lines
727 B
Makefile
21 lines
727 B
Makefile
################################################################################
|
|
#
|
|
# python-mako
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_MAKO_VERSION = 1.1.5
|
|
PYTHON_MAKO_SOURCE = Mako-$(PYTHON_MAKO_VERSION).tar.gz
|
|
PYTHON_MAKO_SITE = https://files.pythonhosted.org/packages/d1/42/ff293411e980debfc647be9306d89840c8b82ea24571b014f1a35b2ad80f
|
|
PYTHON_MAKO_SETUP_TYPE = setuptools
|
|
PYTHON_MAKO_LICENSE = MIT
|
|
PYTHON_MAKO_LICENSE_FILES = LICENSE
|
|
|
|
HOST_PYTHON_MAKO_NEEDS_HOST_PYTHON = python3
|
|
|
|
# In host build, setup.py tries to download markupsafe if it is not installed
|
|
HOST_PYTHON_MAKO_DEPENDENCIES = host-python-markupsafe
|
|
|
|
$(eval $(python-package))
|
|
$(eval $(host-python-package))
|