lbry-fdroid/p4a/pythonforandroid/recipes/hostpython2/__init__.py

19 lines
507 B
Python
Raw Normal View History

from pythonforandroid.python import HostPythonRecipe
2017-08-13 03:24:00 +02:00
class Hostpython2Recipe(HostPythonRecipe):
'''
The hostpython2's recipe.
2017-08-13 03:24:00 +02:00
.. versionchanged:: 0.6.0
Updated to version 2.7.15 and the build process has been changed in
favour of the recently added class
:class:`~pythonforandroid.python.HostPythonRecipe`
'''
version = '2.7.15'
2017-08-13 03:24:00 +02:00
name = 'hostpython2'
conflicts = ['hostpython3', 'hostpython3crystax', 'hostpython2legacy']
2017-08-13 03:24:00 +02:00
recipe = Hostpython2Recipe()