Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates broken recipes list, refs #1514 #1658

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 1 addition & 7 deletions ci/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class TargetPython(Enum):
'pynacl',
'doubleratchet',
'omemo',
'cryptography',
# requires `libpq-dev` system dependency e.g. for `pg_config` binary
'psycopg2',
'pygame',
Expand All @@ -68,15 +67,10 @@ class TargetPython(Enum):
'enum34',
# https://github.com/kivy/python-for-android/issues/1399
'libglob',
# Could not fetch URL https://pypi.org/simple/pymuk/: 404 Client Error
'pymuk',
# build_dir = glob.glob('build/lib.*')[0]
# IndexError: list index out of range
'secp256k1',
# https://github.com/kivy/python-for-android/issues/1404
'cryptography',
# https://github.com/kivy/python-for-android/issues/1294
'ffmpeg', 'ffpyplayer',
'ffpyplayer',
'icu',
# https://github.com/kivy/python-for-android/issues/1354
'kivent_core', 'kivent_cymunk', 'kivent_particles', 'kivent_polygen',
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/cryptography/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

class CryptographyRecipe(CompiledComponentsPythonRecipe):
name = 'cryptography'
version = '2.4.2'
version = '2.5'
url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz'
depends = ['openssl', 'idna', 'asn1crypto', 'six', 'setuptools',
'enum34', 'ipaddress', 'cffi']
Expand Down
2 changes: 1 addition & 1 deletion pythonforandroid/recipes/ffmpeg/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


class FFMpegRecipe(Recipe):
version = '3.4.1'
version = '3.4.5'
url = 'http://ffmpeg.org/releases/ffmpeg-{version}.tar.bz2'
depends = ['sdl2'] # Need this to build correct recipe order
opts_depends = ['openssl', 'ffpyplayer_codecs']
Expand Down
4 changes: 2 additions & 2 deletions pythonforandroid/recipes/pymunk/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@

class PymunkRecipe(CompiledComponentsPythonRecipe):
name = "pymunk"
version = '5.2.0'
url = 'https://pypi.python.org/packages/5e/bd/e67edcffdee3d0a1e3ebf0050bb9746a61d616f5502ceedddf0f7fd0a896/pymunk-5.2.0.zip'
version = '5.3.2'
url = 'https://pypi.python.org/packages/source/p/pymunk/pymunk-{version}.zip'
depends = ['cffi', 'setuptools']
call_hostpython_via_targetpython = False

Expand Down