From c1f83cb13cff5cbe032d3a1bfce8401d3757d603 Mon Sep 17 00:00:00 2001 From: Enoch Date: Wed, 20 Sep 2017 06:05:07 -0400 Subject: [PATCH 1/2] allow checkout from a local repository --- pythonforandroid/recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipe.py b/pythonforandroid/recipe.py index 234a111a4d..8e76dacaaf 100644 --- a/pythonforandroid/recipe.py +++ b/pythonforandroid/recipe.py @@ -149,7 +149,7 @@ def report_hook(index, blksize, size): urlretrieve(url, target, report_hook) return target - elif parsed_url.scheme in ('git', 'git+ssh', 'git+http', 'git+https'): + elif parsed_url.scheme in ('git', 'git+file', 'git+ssh', 'git+http', 'git+https'): if isdir(target): with current_directory(target): shprint(sh.git, 'fetch', '--tags') From c473d5f9ab5b4051a36aefa5cea4e4b598235939 Mon Sep 17 00:00:00 2001 From: Enoch Date: Sat, 14 Oct 2017 19:34:16 -0400 Subject: [PATCH 2/2] OpenSSL compatibility --- pythonforandroid/recipes/cryptography/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/cryptography/__init__.py b/pythonforandroid/recipes/cryptography/__init__.py index 91fae24cdb..8dceb28867 100644 --- a/pythonforandroid/recipes/cryptography/__init__.py +++ b/pythonforandroid/recipes/cryptography/__init__.py @@ -3,7 +3,7 @@ class CryptographyRecipe(CompiledComponentsPythonRecipe): name = 'cryptography' - version = '1.4' + version = '1.3' url = 'https://github.com/pyca/cryptography/archive/{version}.tar.gz' depends = [('python2', 'python3crystax'), 'openssl', 'idna', 'pyasn1', 'six', 'setuptools', 'enum34', 'ipaddress', 'cffi'] call_hostpython_via_targetpython = False