Skip to content

Commit d65d4ab

Browse files
committed
added recipes for feedparser, decorator
1 parent 5128e07 commit d65d4ab

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-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 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()

0 commit comments

Comments
 (0)