Skip to content

Commit c24e148

Browse files
committed
Fixed python3 recipe references
1 parent cdad59b commit c24e148

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

pythonforandroid/recipes/cffi/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class CffiRecipe(CompiledComponentsPythonRecipe):
66
version = '1.4.2'
77
url = 'https://pypi.python.org/packages/source/c/cffi/cffi-{version}.tar.gz'
88

9-
depends = [('python2', 'python3'), 'setuptools', 'pycparser', 'libffi']
9+
depends = [('python2', 'python3crystax'), 'setuptools', 'pycparser', 'libffi']
1010

1111
patches = ['disable-pkg-config.patch']
1212

pythonforandroid/recipes/cryptography/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class CryptographyRecipe(CompiledComponentsPythonRecipe):
88
version = '1.1.2'
99
url = 'https://pypi.python.org/packages/source/c/cryptography/cryptography-{version}.tar.gz'
1010

11-
depends = [('python2', 'python3'), 'cffi', 'enum34', 'openssl', 'ipaddress', 'idna']
11+
depends = [('python2', 'python3crystax'), 'cffi', 'enum34', 'openssl', 'ipaddress', 'idna']
1212

1313
patches = ['fix-cffi-path.patch',
1414
'link-static.patch']

pythonforandroid/recipes/idna/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class IdnaRecipe(PythonRecipe):
66
version = '2.0'
77
url = 'https://pypi.python.org/packages/source/i/idna/idna-{version}.tar.gz'
88

9-
depends = [('python2', 'python3'), 'setuptools']
9+
depends = [('python2', 'python3crystax'), 'setuptools']
1010

1111
call_hostpython_via_targetpython = False
1212

pythonforandroid/recipes/pycparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class PycparserRecipe(PythonRecipe):
66
version = '2.14'
77
url = 'https://pypi.python.org/packages/source/p/pycparser/pycparser-{version}.tar.gz'
88

9-
depends = [('python2', 'python3'), 'setuptools']
9+
depends = [('python2', 'python3crystax'), 'setuptools']
1010

1111
call_hostpython_via_targetpython = False
1212

pythonforandroid/recipes/python2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Python2Recipe(TargetPythonRecipe):
1313
name = 'python2'
1414

1515
depends = ['hostpython2']
16-
conflicts = ['python3']
16+
conflicts = ['python3crystax', 'python3']
1717
opt_depends = ['openssl']
1818

1919
patches = ['patches/Python-{version}-xcompile.patch',

0 commit comments

Comments
 (0)