From 044a8c9263604e77f407ee2941fcd66b413a4577 Mon Sep 17 00:00:00 2001 From: kmonson Date: Wed, 17 Feb 2016 23:03:01 -0800 Subject: [PATCH 1/2] Delete ndghttpsclient I did this wrong... --- pythonforandroid/recipes/ndghttpsclient | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 pythonforandroid/recipes/ndghttpsclient diff --git a/pythonforandroid/recipes/ndghttpsclient b/pythonforandroid/recipes/ndghttpsclient deleted file mode 100644 index bd971fcdc0..0000000000 --- a/pythonforandroid/recipes/ndghttpsclient +++ /dev/null @@ -1,9 +0,0 @@ -from pythonforandroid.toolchain import PythonRecipe - -class NdgHttpsClientRecipe(PythonRecipe): - version = '0.4.0' - url = 'https://pypi.python.org/packages/source/n/ndg-httpsclient/ndg_httpsclient-{version}.tar.gz' - depends = ['python2', 'pyopenssl', 'cryptography'] - call_hostpython_via_targetpython = False - -recipe = NdgHttpsClientRecipe() From 15cb4cab6c481134020179ade01fb41887873701 Mon Sep 17 00:00:00 2001 From: kmonson Date: Wed, 17 Feb 2016 23:04:26 -0800 Subject: [PATCH 2/2] Create __init__.py NdgHttpsClient for real. --- pythonforandroid/recipes/ndghttpsclient/__init__.py | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 pythonforandroid/recipes/ndghttpsclient/__init__.py diff --git a/pythonforandroid/recipes/ndghttpsclient/__init__.py b/pythonforandroid/recipes/ndghttpsclient/__init__.py new file mode 100644 index 0000000000..bd971fcdc0 --- /dev/null +++ b/pythonforandroid/recipes/ndghttpsclient/__init__.py @@ -0,0 +1,9 @@ +from pythonforandroid.toolchain import PythonRecipe + +class NdgHttpsClientRecipe(PythonRecipe): + version = '0.4.0' + url = 'https://pypi.python.org/packages/source/n/ndg-httpsclient/ndg_httpsclient-{version}.tar.gz' + depends = ['python2', 'pyopenssl', 'cryptography'] + call_hostpython_via_targetpython = False + +recipe = NdgHttpsClientRecipe()