File tree Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Expand file tree Collapse file tree 3 files changed +30
-0
lines changed Original file line number Diff line number Diff line change
1
+
2
+ from pythonforandroid .toolchain import PythonRecipe
3
+
4
+
5
+ class Enum34Recipe (PythonRecipe ):
6
+ version = '1.0.4'
7
+ url = 'https://pypi.python.org/packages/source/e/enum34/enum34-{version}.tar.gz'
8
+ depends = ['python2' ]
9
+
10
+ recipe = Enum34Recipe ()
Original file line number Diff line number Diff line change
1
+
2
+ from pythonforandroid .toolchain import PythonRecipe
3
+
4
+
5
+ class PyASN1Recipe (PythonRecipe ):
6
+ version = '0.1.8'
7
+ url = 'https://pypi.python.org/packages/source/p/pyasn1/pyasn1-{version}.tar.gz'
8
+ depends = ['python2' ]
9
+
10
+ recipe = PyASN1Recipe ()
Original file line number Diff line number Diff line change
1
+
2
+ from pythonforandroid .toolchain import PythonRecipe
3
+
4
+
5
+ class SixRecipe (PythonRecipe ):
6
+ version = '1.9.0'
7
+ url = 'https://pypi.python.org/packages/source/s/six/six-{version}.tar.gz'
8
+ depends = ['python2' ]
9
+
10
+ recipe = SixRecipe ()
You can’t perform that action at this time.
0 commit comments