Skip to content

Commit 6a5fd13

Browse files
committed
Merge pull request kivy#676 from brussee/pyton-recipes
Python recipes CherryPy LibNaCl Requests FeedParser Decorator
2 parents b5e05bd + d65d4ab commit 6a5fd13

File tree

5 files changed

+50
-0
lines changed

5 files changed

+50
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from pythonforandroid.toolchain import PythonRecipe
2+
3+
class CherryPyRecipe(PythonRecipe):
4+
version = '5.1.0'
5+
url = 'https://bitbucket.org/cherrypy/cherrypy/get/{version}.tar.gz'
6+
depends = ['hostpython2', 'setuptools']
7+
site_packages_name = 'cherrypy'
8+
call_hostpython_via_targetpython = False
9+
10+
recipe = CherryPyRecipe()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from pythonforandroid.toolchain import PythonRecipe
2+
3+
class DecoratorPyRecipe(PythonRecipe):
4+
version = '4.0.9'
5+
url = 'https://pypi.python.org/packages/source/d/decorator/decorator-{version}.tar.gz'
6+
depends = ['hostpython2', 'setuptools']
7+
site_packages_name = 'decorator'
8+
call_hostpython_via_targetpython = False
9+
10+
recipe = DecoratorPyRecipe()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from pythonforandroid.toolchain import PythonRecipe
2+
3+
class FeedparserPyRecipe(PythonRecipe):
4+
version = '5.2.1'
5+
url = 'https://github.com/kurtmckee/feedparser/archive/{version}.tar.gz'
6+
depends = ['hostpython2', 'setuptools']
7+
site_packages_name = 'feedparser'
8+
call_hostpython_via_targetpython = False
9+
10+
recipe = FeedparserPyRecipe()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from pythonforandroid.toolchain import PythonRecipe
2+
3+
class LibNaClRecipe(PythonRecipe):
4+
version = '1.4.4'
5+
url = 'https://github.com/saltstack/libnacl/archive/v{version}.tar.gz'
6+
depends = ['hostpython2', 'setuptools']
7+
site_packages_name = 'libnacl'
8+
call_hostpython_via_targetpython = False
9+
10+
recipe = LibNaClRecipe()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
from pythonforandroid.toolchain import PythonRecipe
2+
3+
class RequestsRecipe(PythonRecipe):
4+
version = '2.9.1'
5+
url = 'https://github.com/kennethreitz/requests/archive/v{version}.tar.gz'
6+
depends = ['hostpython2', 'setuptools']
7+
site_packages_name = 'requests'
8+
call_hostpython_via_targetpython = False
9+
10+
recipe = RequestsRecipe()

0 commit comments

Comments
 (0)