diff --git a/pythonforandroid/recipes/cherrypy/__init__.py b/pythonforandroid/recipes/cherrypy/__init__.py new file mode 100644 index 0000000000..74ed3dbb92 --- /dev/null +++ b/pythonforandroid/recipes/cherrypy/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.toolchain import PythonRecipe + +class CherryPyRecipe(PythonRecipe): + version = '5.1.0' + url = 'https://bitbucket.org/cherrypy/cherrypy/get/{version}.tar.gz' + depends = ['hostpython2', 'setuptools'] + site_packages_name = 'cherrypy' + call_hostpython_via_targetpython = False + +recipe = CherryPyRecipe() diff --git a/pythonforandroid/recipes/decorator/__init__.py b/pythonforandroid/recipes/decorator/__init__.py new file mode 100644 index 0000000000..6a20b31eb9 --- /dev/null +++ b/pythonforandroid/recipes/decorator/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.toolchain import PythonRecipe + +class DecoratorPyRecipe(PythonRecipe): + version = '4.0.9' + url = 'https://pypi.python.org/packages/source/d/decorator/decorator-{version}.tar.gz' + depends = ['hostpython2', 'setuptools'] + site_packages_name = 'decorator' + call_hostpython_via_targetpython = False + +recipe = DecoratorPyRecipe() diff --git a/pythonforandroid/recipes/feedparser/__init__.py b/pythonforandroid/recipes/feedparser/__init__.py new file mode 100644 index 0000000000..d030494aaf --- /dev/null +++ b/pythonforandroid/recipes/feedparser/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.toolchain import PythonRecipe + +class FeedparserPyRecipe(PythonRecipe): + version = '5.2.1' + url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz' + depends = ['hostpython2', 'setuptools'] + site_packages_name = 'feedparser' + call_hostpython_via_targetpython = False + +recipe = FeedparserPyRecipe() diff --git a/pythonforandroid/recipes/libnacl/__init__.py b/pythonforandroid/recipes/libnacl/__init__.py new file mode 100644 index 0000000000..62fc7bee2a --- /dev/null +++ b/pythonforandroid/recipes/libnacl/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.toolchain import PythonRecipe + +class LibNaClRecipe(PythonRecipe): + version = '1.4.4' + url = 'https://github.com/saltstack/libnacl/archive/v{version}.tar.gz' + depends = ['hostpython2', 'setuptools'] + site_packages_name = 'libnacl' + call_hostpython_via_targetpython = False + +recipe = LibNaClRecipe() diff --git a/pythonforandroid/recipes/requests/__init__.py b/pythonforandroid/recipes/requests/__init__.py new file mode 100644 index 0000000000..753f918a85 --- /dev/null +++ b/pythonforandroid/recipes/requests/__init__.py @@ -0,0 +1,10 @@ +from pythonforandroid.toolchain import PythonRecipe + +class RequestsRecipe(PythonRecipe): + version = '2.9.1' + url = 'https://github.com/kennethreitz/requests/archive/v{version}.tar.gz' + depends = ['hostpython2', 'setuptools'] + site_packages_name = 'requests' + call_hostpython_via_targetpython = False + +recipe = RequestsRecipe()