8b2694efb7
* fix build for openssl 1.1.1b required for sdk (cherry picked from commitaa49e3b275
) * use js code from master * fix openssl recipe and tweak build (cherry picked from commit6e94c27021
) * remove unused build recipes (cherry picked from commitf5c0577bdb
)
18 lines
507 B
Python
18 lines
507 B
Python
from pythonforandroid.python import HostPythonRecipe
|
|
|
|
|
|
class Hostpython2Recipe(HostPythonRecipe):
|
|
'''
|
|
The hostpython2's recipe.
|
|
|
|
.. 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'
|
|
name = 'hostpython2'
|
|
conflicts = ['hostpython3', 'hostpython3crystax', 'hostpython2legacy']
|
|
|
|
|
|
recipe = Hostpython2Recipe()
|