Skip to content

Commit de38dc8

Browse files
committed
Recipes for enum34, pyasn1 and six
1 parent dfc8ab3 commit de38dc8

File tree

3 files changed

+30
-0
lines changed

3 files changed

+30
-0
lines changed
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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()
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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()

0 commit comments

Comments
 (0)