From 6b2e69015575f95b40806ab2803ca0ce1467ce7c Mon Sep 17 00:00:00 2001 From: zeppi Date: Sat, 3 Dec 2022 22:33:49 -0500 Subject: [PATCH] minimal coincurve change --- recipes/coincurve/__init__.py | 61 +++++++++++++++++++++++++++-------- 1 file changed, 47 insertions(+), 14 deletions(-) diff --git a/recipes/coincurve/__init__.py b/recipes/coincurve/__init__.py index e3da419..403edf3 100644 --- a/recipes/coincurve/__init__.py +++ b/recipes/coincurve/__init__.py @@ -3,17 +3,50 @@ from pythonforandroid.recipe import PythonRecipe, CompiledComponentsPythonRecipe class CoincurveRecipe(CompiledComponentsPythonRecipe): + # version = '7.1.0' + # url = 'https://github.com/ofek/coincurve/archive/{version}.tar.gz' + # call_hostpython_via_targetpython = False + # depends = ['setuptools', + # 'libffi', 'cffi', 'libsecp256k1'] + # patches = [ + # "cross_compile.patch", "drop_setup_requires.patch", + # "find_lib.patch", "no-download.patch", "setup.py.patch"] + # + # def get_recipe_env(self, arch=None, with_flags_in_cc=True): + # env = super().get_recipe_env(arch, with_flags_in_cc) + # # sets linker to use the correct gcc (cross compiler) + # env['LDSHARED'] = env['CC'] + ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions' + # libsecp256k1 = self.get_recipe('libsecp256k1', self.ctx) + # libsecp256k1_dir = libsecp256k1.get_build_dir(arch.arch) + # env['LDFLAGS'] += ' -L{}'.format(os.path.join(libsecp256k1_dir, '.libs')) + # env['CFLAGS'] += ' -I' + os.path.join(libsecp256k1_dir, 'include') + # # only keeps major.minor (discards patch) + # python_version = self.ctx.python_recipe.version[0:3] + # # required additional library and path for Crystax + # if self.ctx.ndk == 'crystax': + # ndk_dir_python = os.path.join(self.ctx.ndk_dir, 'sources/python/', python_version) + # env['LDFLAGS'] += ' -L{}'.format(os.path.join(ndk_dir_python, 'libs', arch.arch)) + # env['LDFLAGS'] += ' -lpython{}'.format(python_version) + # # until `pythonforandroid/archs.py` gets merged upstream: + # # https://github.com/kivy/python-for-android/pull/1250/files#diff-569e13021e33ced8b54385f55b49cbe6 + # env['CFLAGS'] += ' -I{}/include/python/'.format(ndk_dir_python) + # else: + # env['PYTHON_ROOT'] = self.ctx.get_python_install_dir(arch.arch) + # env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python{}'.format(python_version) + # env['LDFLAGS'] += " -lpython{}".format(python_version) + # env['LDFLAGS'] += " -lsecp256k1" + # return env version = '7.1.0' url = 'https://github.com/ofek/coincurve/archive/{version}.tar.gz' call_hostpython_via_targetpython = False - depends = [('python3',), 'setuptools', - 'libffi', 'cffi', 'libsecp256k1'] + depends = [('python2', 'python3'), 'setuptools', + 'libffi', 'cffi', 'libsecp256k1'] patches = [ "cross_compile.patch", "drop_setup_requires.patch", "find_lib.patch", "no-download.patch", "setup.py.patch"] def get_recipe_env(self, arch=None, with_flags_in_cc=True): - env = super(CoincurveRecipe, self).get_recipe_env(arch, with_flags_in_cc) + env = super().get_recipe_env(arch, with_flags_in_cc) # sets linker to use the correct gcc (cross compiler) env['LDSHARED'] = env['CC'] + ' -pthread -shared -Wl,-O1 -Wl,-Bsymbolic-functions' libsecp256k1 = self.get_recipe('libsecp256k1', self.ctx) @@ -23,17 +56,17 @@ class CoincurveRecipe(CompiledComponentsPythonRecipe): # only keeps major.minor (discards patch) python_version = self.ctx.python_recipe.version[0:3] # required additional library and path for Crystax - if self.ctx.ndk == 'crystax': - ndk_dir_python = os.path.join(self.ctx.ndk_dir, 'sources/python/', python_version) - env['LDFLAGS'] += ' -L{}'.format(os.path.join(ndk_dir_python, 'libs', arch.arch)) - env['LDFLAGS'] += ' -lpython{}'.format(python_version) - # until `pythonforandroid/archs.py` gets merged upstream: - # https://github.com/kivy/python-for-android/pull/1250/files#diff-569e13021e33ced8b54385f55b49cbe6 - env['CFLAGS'] += ' -I{}/include/python/'.format(ndk_dir_python) - else: - env['PYTHON_ROOT'] = self.ctx.get_python_install_dir(arch.arch) - env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python{}'.format(python_version) - env['LDFLAGS'] += " -lpython{}".format(python_version) + # if self.ctx.ndk == 'crystax': + # ndk_dir_python = os.path.join(self.ctx.ndk_dir, 'sources/python/', python_version) + # env['LDFLAGS'] += ' -L{}'.format(os.path.join(ndk_dir_python, 'libs', arch.arch)) + # env['LDFLAGS'] += ' -lpython{}m'.format(python_version) + # # until `pythonforandroid/archs.py` gets merged upstream: + # # https://github.com/kivy/python-for-android/pull/1250/files#diff-569e13021e33ced8b54385f55b49cbe6 + # env['CFLAGS'] += ' -I{}/include/python/'.format(ndk_dir_python) + # else: + env['PYTHON_ROOT'] = self.ctx.get_python_install_dir() + env['CFLAGS'] += ' -I' + env['PYTHON_ROOT'] + '/include/python{}'.format(python_version) + env['LDFLAGS'] += " -lpython{}".format(python_version) env['LDFLAGS'] += " -lsecp256k1" return env