8000 Removed references to removed sdl2python3crystax · latin1593/python-for-android@80d393c · GitHub
[go: up one dir, main page]

Skip to content

Commit 80d393c

Browse files
committed
Removed references to removed sdl2python3crystax
1 parent 3354e28 commit 80d393c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

pythonforandroid/recipes/kivy/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@ class KivyRecipe(CythonRecipe):
1111
url = 'https://github.com/kivy/kivy/archive/{version}.zip'
1212
name = 'kivy'
1313

14-
depends = [('sdl2', 'pygame', 'sdl2python3crystax'), 'pyjnius']
14+
depends = [('sdl2', 'pygame'), 'pyjnius']
1515

1616
# patches = ['setargv.patch']
1717

1818
def get_recipe_env(self, arch):
1919
env = super(KivyRecipe, self).get_recipe_env(arch)
20-
if ('sdl2' in self.ctx.recipe_build_order or 'sdl2python3crystax' in self.ctx.recipe_build_order):
20+
if 'sdl2' in self.ctx.recipe_build_order:
2121
env['USE_SDL2'] = '1'
2222
env['KIVY_SDL2_PATH'] = ':'.join([
2323
join(self.ctx.bootstrap.build_dir, 'jni', 'SDL', 'include'),

pythonforandroid/recipes/pyjnius/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ class PyjniusRecipe(CythonRecipe):
99
version = 'master'
1010
url = 'https://github.com/kivy/pyjnius/archive/{version}.zip'
1111
name = 'pyjnius'
12-
depends = [('python2', 'python3crystax'), ('sdl2', 'sdl', 'sdl2python3crystax'), 'six']
12+
depends = [('python2', 'python3crystax'), ('sdl2', 'sdl'), 'six']
1313
site_packages_name = 'jnius'
1414

15-
patches = [('sdl2_jnienv_getter.patch', check_any(will_build('sdl2python3crystax'), will_build('sdl2'))),
15+
patches = [('sdl2_jnienv_getter.patch', will_build('sdl2')),
1616
'getenv.patch']
1717

1818
def postbuild_arch(self, arch):

pythonforandroid/recipes/pysdl2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ class PySDL2Recipe(PythonRecipe):
88
version = '0.9.3'
99
url = 'https://bitbucket.org/marcusva/py-sdl2/downloads/PySDL2-{version}.tar.gz'
1010

11-
depends = [('sdl2', 'sdl2python3crystax')]
11+
depends = ['sdl2']
1212

1313

1414
recipe = PySDL2Recipe()

0 commit comments

Comments
 (0)
0