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
)
32 lines
1.4 KiB
Python
32 lines
1.4 KiB
Python
import re
|
|
from pythonforandroid.logger import info
|
|
from pythonforandroid.recipe import CythonRecipe
|
|
|
|
|
|
class GeventRecipe(CythonRecipe):
|
|
version = '1.4.0'
|
|
url = 'https://pypi.python.org/packages/source/g/gevent/gevent-{version}.tar.gz'
|
|
depends = ['librt', 'greenlet']
|
|
patches = ["cross_compiling.patch"]
|
|
|
|
def get_recipe_env(self, arch=None, with_flags_in_cc=True):
|
|
"""
|
|
- Moves all -I<inc> -D<macro> from CFLAGS to CPPFLAGS environment.
|
|
- Moves all -l<lib> from LDFLAGS to LIBS environment.
|
|
- Fixes linker name (use cross compiler) and flags (appends LIBS)
|
|
"""
|
|
env = super(GeventRecipe, self).get_recipe_env(arch, with_flags_in_cc)
|
|
# CFLAGS may only be used to specify C compiler flags, for macro definitions use CPPFLAGS
|
|
regex = re.compile(r'(?:\s|^)-[DI][\S]+')
|
|
env['CPPFLAGS'] = ''.join(re.findall(regex, env['CFLAGS'])).strip()
|
|
env['CFLAGS'] = re.sub(regex, '', env['CFLAGS'])
|
|
info('Moved "{}" from CFLAGS to CPPFLAGS.'.format(env['CPPFLAGS']))
|
|
# LDFLAGS may only be used to specify linker flags, for libraries use LIBS
|
|
regex = re.compile(r'(?:\s|^)-l[\w\.]+')
|
|
env['LIBS'] = ''.join(re.findall(regex, env['LDFLAGS'])).strip()
|
|
env['LDFLAGS'] = re.sub(regex, '', env['LDFLAGS'])
|
|
info('Moved "{}" from LDFLAGS to LIBS.'.format(env['LIBS']))
|
|
return env
|
|
|
|
|
|
recipe = GeventRecipe()
|