File tree Expand file tree Collapse file tree 1 file changed +0
-10
lines changed
pythonforandroid/recipes/zope_interface Expand file tree Collapse file tree 1 file changed +0
-10
lines changed Original file line number Diff line number Diff line change 1
1
from pythonforandroid .recipe import PythonRecipe
2
2
from pythonforandroid .toolchain import current_directory
3
- from os .path import join
4
3
import sh
5
4
6
5
@@ -13,15 +12,6 @@ class ZopeInterfaceRecipe(PythonRecipe):
13
12
depends = ['setuptools' ]
14
13
patches = ['no_tests.patch' ]
15
14
16
- def build_arch (self , arch ):
17
- super ().build_arch (arch )
18
- # The zope.interface module lacks of the __init__.py file in one of his
19
- # folders (once is installed), that leads into an ImportError.
20
- # Here we intentionally apply a patch to solve that, so, in case that
21
- # this is solved in the future an error will be triggered
22
- zope_install = join (self .ctx .get_site_packages_dir (arch ), 'zope' )
23
- self .apply_patch ('fix-init.patch' , arch .arch , build_dir = zope_install )
24
-
25
15
def prebuild_arch (self , arch ):
26
16
super ().prebuild_arch (arch )
27
17
with current_directory (self .get_build_dir (arch .arch )):
You can’t perform that action at this time.
0 commit comments