File tree 5 files changed +50
-0
lines changed 5 files changed +50
-0
lines changed Original file line number Diff line number Diff line change
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 ()
Original file line number Diff line number Diff line change
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 ()
Original file line number Diff line number Diff line change
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 ()
Original file line number Diff line number Diff line change
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 ()
Original file line number Diff line number Diff line change
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 ()
You can’t perform that action at this time.
0 commit comments