Skip to content

Commit 9e4aecc

Browse files
committed
First try
1 parent 9720dbd commit 9e4aecc

7 files changed

Lines changed: 6 additions & 5 deletions

File tree

pythonforandroid/recipes/Pillow/__init__.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ class PillowRecipe(PyProjectRecipe):
2828
site_packages_name = 'PIL'
2929
patches = ["setup.py.patch"]
3030
depends = ['png', 'jpeg', 'freetype']
31-
hostpython_prerequisites = ["setuptools>=77"]
3231
opt_depends = ['libwebp']
3332

3433
def get_recipe_env(self, arch, **kwargs):

pythonforandroid/recipes/cffi/__init__.py

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

13-
depends = ['setuptools', 'pycparser', 'libffi']
13+
depends = ['pycparser', 'libffi']
1414

1515
patches = ['disable-pkg-config.patch']
1616

pythonforandroid/recipes/cython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
class CythonRecipe(CompiledComponentsPythonRecipe):
55

6-
version = '0.29.36'
6+
version = '3.1.4'
77
url = 'https://github.com/cython/cython/archive/{version}.tar.gz'
88
site_packages_name = 'cython'
99
depends = ['setuptools']

pythonforandroid/recipes/hostpython3/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,8 @@ class HostPython3Recipe(Recipe):
4646
'''Specify the sub build directory for the hostpython3 recipe. Defaults
4747
to ``native-build``.'''
4848

49+
depends = ['setuptools']
50+
4951
@property
5052
def _exe_name(self):
5153
'''

pythonforandroid/recipes/kivy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ class KivyRecipe(PyProjectRecipe):
2525
url = 'https://github.com/kivy/kivy/archive/{version}.zip'
2626
name = 'kivy'
2727

28-
depends = [('sdl2', 'sdl3'), 'pyjnius', 'setuptools', 'android']
28+
depends = [('sdl2', 'sdl3'), 'pyjnius', 'android']
2929
python_depends = ['certifi', 'chardet', 'idna', 'requests', 'urllib3', 'filetype']
3030
hostpython_prerequisites = ["cython>=0.29.1,<=3.0.12"]
3131

pythonforandroid/recipes/python3/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ class Python3Recipe(TargetPythonRecipe):
8585
elif _p_version.minor >= 8:
8686
patches.append("patches/py3.8.1_fix_cortex_a8.patch")
8787

88-
depends = ['hostpython3', 'sqlite3', 'openssl', 'libffi']
88+
depends = ['hostpython3', 'sqlite3', 'openssl', 'libffi', 'setuptools']
8989
# those optional depends allow us to build python compression modules:
9090
# - _bz2.so
9191
# - _lzma.so
File renamed without changes.

0 commit comments

Comments
 (0)