8b2694efb7
* fix build for openssl 1.1.1b required for sdk (cherry picked from commit aa49e3b2755b97b6331cdbbb89efc954de8d5977) * use js code from master * fix openssl recipe and tweak build (cherry picked from commit 6e94c27021c7bd7b1e880c2fc314850e36a5a38e) * remove unused build recipes (cherry picked from commit f5c0577bdb175bfc0990602936bbc9e2052e1f25)
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
from pythonforandroid.recipe import PythonRecipe
|
|
from pythonforandroid.toolchain import current_directory
|
|
from os.path import join
|
|
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'
|
|
site_packages_name = 'zope.interface'
|
|
depends = ['setuptools']
|
|
patches = ['no_tests.patch']
|
|
|
|
def build_arch(self, arch):
|
|
super(ZopeInterfaceRecipe, self).build_arch(arch)
|
|
# The zope.interface module lacks of the __init__.py file in one of his
|
|
# folders (once is installed), that leads into an ImportError.
|
|
# Here we intentionally apply a patch to solve that, so, in case that
|
|
# this is solved in the future an error will be triggered
|
|
zope_install = join(self.ctx.get_site_packages_dir(arch.arch), 'zope')
|
|
self.apply_patch('fix-init.patch', arch.arch, build_dir=zope_install)
|
|
|
|
def prebuild_arch(self, arch):
|
|
super(ZopeInterfaceRecipe, self).prebuild_arch(arch)
|
|
with current_directory(self.get_build_dir(arch.arch)):
|
|
sh.rm('-rf', 'src/zope/interface/tests', 'src/zope/interface/common/tests')
|
|
|
|
|
|
recipe = ZopeInterfaceRecipe()
|