From 7c6f42e7c685ff6feb210f29b62d43608e910d49 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lindstr=C3=B6m=20Mathias?= <8863149+kuzeyron@users.noreply.github.com> Date: Thu, 9 Aug 2018 15:29:00 +0300 Subject: [PATCH 1/2] Update __init__.py --- pythonforandroid/recipes/feedparser/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/recipes/feedparser/__init__.py b/pythonforandroid/recipes/feedparser/__init__.py index d46b36544e..8842ca6a89 100644 --- a/pythonforandroid/recipes/feedparser/__init__.py +++ b/pythonforandroid/recipes/feedparser/__init__.py @@ -4,7 +4,7 @@ class FeedparserPyRecipe(PythonRecipe): version = '5.2.1' url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz' - depends = ['hostpython2', 'setuptools'] + depends = [('hostpython2', 'python3crystax'), 'setuptools'] site_packages_name = 'feedparser' call_hostpython_via_targetpython = False From cbcab2ceb2612df106eb2ed2e27d80e693031738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mathias=20Lindstr=C3=B6m?= Date: Thu, 9 Aug 2018 17:49:44 +0300 Subject: [PATCH 2/2] Crystax support --- pythonforandroid/recipes/feedparser/__init__.py | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/pythonforandroid/recipes/feedparser/__init__.py b/pythonforandroid/recipes/feedparser/__init__.py index 8842ca6a89..5a9249d3d9 100644 --- a/pythonforandroid/recipes/feedparser/__init__.py +++ b/pythonforandroid/recipes/feedparser/__init__.py @@ -1,12 +1,10 @@ from pythonforandroid.recipe import PythonRecipe - class FeedparserPyRecipe(PythonRecipe): - version = '5.2.1' - url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz' - depends = [('hostpython2', 'python3crystax'), 'setuptools'] - site_packages_name = 'feedparser' - call_hostpython_via_targetpython = False - + site_packages_name = 'feedparser' + version = '5.2.1' + url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz' + depends = [('hostpython2', 'python3crystax'), 'setuptools'] + call_hostpython_via_targetpython = False -recipe = FeedparserPyRecipe() +recipe = FeedparserPyRecipe() \ No newline at end of file