Skip to content

Commit 3b1186e

Browse files
committed
Fixed some recipe references python3 -> python3crystax
1 parent 9525ab4 commit 3b1186e

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

pythonforandroid/recipes/android/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class AndroidRecipe(IncludedFilesBehaviour, CythonRecipe):
1313

1414
src_filename = 'src'
1515

16-
depends = [('pygame', 'sdl2', 'genericndkbuild'), ('python2', 'python3')]
16+
depends = [('pygame', 'sdl2', 'genericndkbuild'), ('python2', 'python3crystax')]
1717

1818
config_env = {}
1919

pythonforandroid/recipes/cymunk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class CymunkRecipe(CythonRecipe):
66
url = 'https://github.com/tito/cymunk/archive/{version}.zip'
77
name = 'cymunk'
88

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

1111

1212
recipe = CymunkRecipe()

pythonforandroid/recipes/evdev/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ class EvdevRecipe(CompiledComponentsPythonRecipe):
66
version = 'v0.4.7'
77
url = 'https://github.com/gvalkov/python-evdev/archive/{version}.zip'
88

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

1111
build_cmd = 'build'
1212

pythonforandroid/recipes/libpq/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class LibpqRecipe(Recipe):
77
version = '9.5.3'
88
url = 'http://ftp.postgresql.org/pub/source/v{version}/postgresql-{version}.tar.bz2'
9-
depends = [('python2', 'python3')]
9+
depends = [('python2', 'python3crystax')]
1010

1111
def should_build(self, arch):
1212
return not os.path.isfile('{}/libpq.a'.format(self.ctx.get_libs_dir(arch.arch)))

pythonforandroid/recipes/pil/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class PILRecipe(CompiledComponentsPythonRecipe):
77
name = 'pil'
88
version = '1.1.7'
99
url = 'http://effbot.org/downloads/Imaging-{version}.tar.gz'
10-
depends = [('python2', 'python3'), 'png', 'jpeg']
10+
depends = [('python2', 'python3crystax'), 'png', 'jpeg']
1111
site_packages_name = 'PIL'
1212

1313
patches = ['disable-tk.patch',

pythonforandroid/recipes/psycopg2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class Psycopg2Recipe(PythonRecipe):
66
version = 'latest'
77
url = 'http://initd.org/psycopg/tarballs/psycopg2-{version}.tar.gz'
8-
depends = [('python2', 'python3'), 'libpq']
8+
depends = [('python2', 'python3crystax'), 'libpq']
99
site_packages_name = 'psycopg2'
1010

1111
def prebuild_arch(self, arch):

pythonforandroid/recipes/pyusb/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ class PyusbRecipe(PythonRecipe):
55
name = 'pyusb'
66
version = '1.0.0b1'
77
url = 'https://pypi.python.org/packages/source/p/pyusb/pyusb-{version}.tar.gz'
8-
depends = [('python2', 'python3')]
8+
depends = [('python2', 'python3crystax')]
99
site_packages_name = 'usb'
1010

1111
patches = ['fix-android.patch']

pythonforandroid/recipes/sqlalchemy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ class SQLAlchemyRecipe(CompiledComponentsPythonRecipe):
77
version = '1.0.9'
88
url = 'https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-{version}.tar.gz'
99

10-
depends = [('python2', 'python3'), 'setuptools']
10+
depends = [('python2', 'python3crystax'), 'setuptools']
1111

1212
patches = ['zipsafe.patch']
1313

pythonforandroid/recipes/storm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
class StormRecipe(PythonRecipe):
66
version = '0.20'
77
url = 'https://launchpad.net/storm/trunk/{version}/+download/storm-{version}.tar.bz2'
8-
depends = [('python2', 'python3')]
8+
depends = [('python2', 'python3crystax')]
99
site_packages_name = 'storm'
1010
call_hostpython_via_targetpython = False
1111

0 commit comments

Comments
 (0)