64bd692632
* Pep8 fixes * tox Pep8 compliance * Excluded external tools folder from flake 8 tests * Added Flake 8 exclusions * Pep8 fixes * Pep8 fixes * Corrected type * Pep8 fixes * Pep 8 compliance * Pep8 fixes * Pep8 fixes * Pep8 fixes * Pep8 fixes * Pep 8 fixes * Pep 8 fixes * Pep8 fixes * Pep8 fixes * Pep8 fixes * Pep8 * Pep8 * Pep 8 * Pep 8 * Pep8 fixes * Pep8 * Pep8 * Pep8 * Pep8 fixes * Pep8 fixes * Pep8 fixes * Pep8 fixes * Pep8 fixes * Revert chagnes * Revert changes to kivy/__init.py * Revert changes * REvert changes * Revert changes * Revert changes to toolchain * Add files exclusions to tox.ini * Added exclusions for alias recipes * Remove dead code * Added py extension to recipes * Removed recipe build skip * Improves recipe matching Previous expression was matching all the following three lines of a `git diff --name-only` output. ``` recipes/hostlibffi/__init__.py recipes/hostpython.py recipes/hostpython2/__init__.py ``` This was resulting to a bug when later splitting with `recipe = file_path.split('/')[1]` the `recipes/hostpython.py` string would return including the `\n` new line char, see: ``` >>> 'recipes/hostpython.py\n'.split('/')[1] 'hostpython.py\n' >>> 'recipes/hostlibffi/__init__.py\n'.split('/')[1] 'hostlibffi' >>> ``` Co-authored-by: Andre Miras <AndreMiras@users.noreply.github.com>
36 lines
1.1 KiB
Python
36 lines
1.1 KiB
Python
from toolchain import Recipe, shprint
|
|
from os.path import join
|
|
import sh
|
|
|
|
|
|
arch_mapper = {'i386': 'darwin-i386-cc',
|
|
'x86_64': 'darwin64-x86_64-cc',
|
|
'armv7': 'ios-cross',
|
|
'arm64': 'ios64-cross'}
|
|
|
|
|
|
class OpensslRecipe(Recipe):
|
|
version = "1.1.1f"
|
|
url = "http://www.openssl.org/source/openssl-{version}.tar.gz"
|
|
libraries = ["libssl.a", "libcrypto.a"]
|
|
include_dir = "include"
|
|
include_per_arch = True
|
|
|
|
def build_arch(self, arch):
|
|
build_env = arch.get_env()
|
|
target = arch_mapper[arch.arch]
|
|
shprint(sh.env, _env=build_env)
|
|
sh.perl(join(self.build_dir, "Configure"),
|
|
target,
|
|
_env=build_env)
|
|
if target.endswith('-cross'):
|
|
with open('Makefile', 'r') as makefile:
|
|
filedata = makefile.read()
|
|
filedata = filedata.replace('$(CROSS_TOP)/SDKs/$(CROSS_SDK)', arch.sysroot)
|
|
with open('Makefile', 'w') as makefile:
|
|
makefile.write(filedata)
|
|
shprint(sh.make, "clean")
|
|
shprint(sh.make, self.ctx.concurrent_make, "build_libs")
|
|
|
|
|
|
recipe = OpensslRecipe()
|