File tree Expand file tree Collapse file tree 1 file changed +2
-13
lines changed
pythonforandroid/recipes/zeroconf Expand file tree Collapse file tree 1 file changed +2
-13
lines changed Original file line number Diff line number Diff line change @@ -6,19 +6,8 @@ class ZeroconfRecipe(PythonRecipe):
6
6
name = 'zeroconf'
7
7
version = '0.17.4'
8
8
url = 'https://pypi.python.org/packages/source/z/zeroconf/zeroconf-{version}.tar.gz'
9
- depends = ['python2' , 'netifaces' , 'enum34' , 'six' ]
10
-
11
- def get_recipe_env (self , arch = None ):
12
- env = super (ZeroconfRecipe , self ).get_recipe_env (arch )
13
-
14
- # TODO: fix hardcoded path
15
- # This is required to prevent issue with _io.so import.
16
- hostpython = self .get_recipe ('hostpython2' , self .ctx )
17
- env ['PYTHONPATH' ] = (
18
- join (hostpython .get_build_dir (arch .arch ), 'build' ,
19
- 'lib.linux-x86_64-2.7' ) + ':' + env .get ('PYTHONPATH' , '' )
20
- )
21
- return env
9
+ depends = ['setuptools' , 'enum34' , 'six' ]
10
+ call_hostpython_via_targetpython = False
22
11
23
12
24
13
recipe = ZeroconfRecipe ()
You can’t perform that action at this time.
0 commit comments