From ea927d9b90525851f89fae8de58c5684c67a9efb Mon Sep 17 00:00:00 2001 From: MilhouseVH Date: Fri, 7 Dec 2018 17:11:46 +0000 Subject: [PATCH] Mako: switch to Python3 as mesa-18.3.0 now needs Python3 --- packages/python/devel/Mako/package.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/python/devel/Mako/package.mk b/packages/python/devel/Mako/package.mk index 5031a07c3a..45007cf755 100644 --- a/packages/python/devel/Mako/package.mk +++ b/packages/python/devel/Mako/package.mk @@ -8,10 +8,10 @@ PKG_SHA256="4e02fde57bd4abb5ec400181e4c314f56ac3e49ba4fb8b0d50bba18cb27d25ae" PKG_LICENSE="GPL" PKG_SITE="https://pypi.org/project/Mako" PKG_URL="https://files.pythonhosted.org/packages/source/${PKG_NAME:0:1}/$PKG_NAME/$PKG_NAME-$PKG_VERSION.tar.gz" -PKG_DEPENDS_HOST="Python2:host setuptools:host MarkupSafe:host" +PKG_DEPENDS_HOST="Python3:host setuptools:host MarkupSafe:host" PKG_LONGDESC="Mako is a super-fast templating language that borrows the best ideas from the existing templating languages." PKG_TOOLCHAIN="manual" makeinstall_host() { - python setup.py install --prefix=$TOOLCHAIN + python3 setup.py install --prefix=$TOOLCHAIN }