From ef442b927e55d4f5e4479290ea50af8f315f7db6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Poisson?= Date: Sun, 16 Oct 2016 15:43:23 +0200 Subject: [PATCH] fixed recipe zope_interface zope_interface was not installing "common" hierarchy because it couldn't find setuptools and was using distutils instead. This commit fix this by using hostpython own build dir, and also removed unused imports (shprint and join). --- pythonforandroid/recipes/zope_interface/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pythonforandroid/recipes/zope_interface/__init__.py b/pythonforandroid/recipes/zope_interface/__init__.py index 3a54b9cc11..3c8afc2499 100644 --- a/pythonforandroid/recipes/zope_interface/__init__.py +++ b/pythonforandroid/recipes/zope_interface/__init__.py @@ -1,9 +1,9 @@ -from pythonforandroid.toolchain import PythonRecipe, shprint, current_directory -from os.path import join +from pythonforandroid.toolchain import PythonRecipe, current_directory import sh class ZopeInterfaceRecipe(PythonRecipe): + call_hostpython_via_targetpython = False name = 'zope_interface' version = '4.1.3' url = 'https://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'