2015-02-09 11:58:44 +01:00
|
|
|
from toolchain import Recipe, shprint
|
2015-02-09 23:34:02 +01:00
|
|
|
from os.path import join, exists
|
2015-02-09 11:58:44 +01:00
|
|
|
import sh
|
|
|
|
import os
|
|
|
|
import fnmatch
|
2015-02-09 23:34:02 +01:00
|
|
|
import shutil
|
2015-02-09 11:58:44 +01:00
|
|
|
|
|
|
|
|
|
|
|
class KivyRecipe(Recipe):
|
|
|
|
version = "master"
|
|
|
|
url = "https://github.com/kivy/kivy/archive/{version}.zip"
|
2015-02-09 23:34:02 +01:00
|
|
|
library = "libkivy.a"
|
2015-02-09 11:58:44 +01:00
|
|
|
#include_dir = "SDL_image.h"
|
|
|
|
depends = ["python", "sdl2", "sdl2_image", "sdl2_mixer", "sdl2_ttf"]
|
|
|
|
|
|
|
|
def cythonize(self, filename):
|
|
|
|
if filename.startswith(self.build_dir):
|
|
|
|
filename = filename[len(self.build_dir) + 1:]
|
|
|
|
print("Cythonize {}".format(filename))
|
|
|
|
cmd = sh.Command(join(self.ctx.root_dir, "tools", "cythonize.py"))
|
|
|
|
shprint(cmd, filename)
|
|
|
|
|
|
|
|
def cythonize_build(self):
|
|
|
|
root_dir = join(self.build_dir, "kivy")
|
|
|
|
for root, dirnames, filenames in os.walk(root_dir):
|
|
|
|
for filename in fnmatch.filter(filenames, "*.pyx"):
|
|
|
|
self.cythonize(join(root, filename))
|
|
|
|
|
2015-02-09 23:34:02 +01:00
|
|
|
def get_kivy_env(self, arch):
|
2015-02-09 11:58:44 +01:00
|
|
|
build_env = arch.get_env()
|
|
|
|
build_env["KIVYIOSROOT"] = self.ctx.root_dir
|
|
|
|
build_env["IOSSDKROOT"] = arch.sysroot
|
2015-02-09 23:34:02 +01:00
|
|
|
build_env["LDSHARED"] = join(self.ctx.root_dir, "tools", "liblink")
|
|
|
|
build_env["ARM_LD"] = build_env["LD"]
|
|
|
|
build_env["ARCH"] = arch.arch
|
2015-02-12 00:53:22 +01:00
|
|
|
build_env["KIVY_SDL2_PATH"] = join(self.ctx.dist_dir, "include", "common", "sdl2")
|
2015-02-09 23:34:02 +01:00
|
|
|
return build_env
|
|
|
|
|
|
|
|
def build_arch(self, arch):
|
|
|
|
self._patch_setup()
|
|
|
|
build_env = self.get_kivy_env(arch)
|
2015-02-09 11:58:44 +01:00
|
|
|
hostpython = sh.Command(self.ctx.hostpython)
|
|
|
|
# first try to generate .h
|
|
|
|
try:
|
|
|
|
shprint(hostpython, "setup.py", "build_ext", "-g",
|
|
|
|
_env=build_env)
|
|
|
|
except:
|
|
|
|
pass
|
|
|
|
self.cythonize_build()
|
|
|
|
shprint(hostpython, "setup.py", "build_ext", "-g",
|
|
|
|
_env=build_env)
|
2015-02-09 23:34:02 +01:00
|
|
|
self.biglink()
|
|
|
|
|
|
|
|
def biglink(self):
|
|
|
|
dirs = []
|
|
|
|
for root, dirnames, filenames in os.walk(self.build_dir):
|
|
|
|
if fnmatch.filter(filenames, "*.so.libs"):
|
|
|
|
dirs.append(root)
|
|
|
|
cmd = sh.Command(join(self.ctx.root_dir, "tools", "biglink"))
|
|
|
|
shprint(cmd, join(self.build_dir, "libkivy.a"), *dirs)
|
2015-02-09 11:58:44 +01:00
|
|
|
|
2015-02-09 23:34:02 +01:00
|
|
|
def _patch_setup(self):
|
|
|
|
# patch setup to remove some functionnalities
|
|
|
|
pyconfig = join(self.build_dir, "setup.py")
|
|
|
|
def _remove_line(lines, pattern):
|
|
|
|
for line in lines[:]:
|
|
|
|
if pattern in line:
|
|
|
|
lines.remove(line)
|
|
|
|
with open(pyconfig) as fd:
|
|
|
|
lines = fd.readlines()
|
|
|
|
_remove_line(lines, "flags['libraries'] = ['GLESv2']")
|
2015-02-12 00:53:22 +01:00
|
|
|
#_remove_line(lines, "c_options['use_sdl'] = True")
|
2015-02-09 23:34:02 +01:00
|
|
|
with open(pyconfig, "wb") as fd:
|
|
|
|
fd.writelines(lines)
|
|
|
|
|
|
|
|
def install(self):
|
|
|
|
arch = list(self.filtered_archs)[0]
|
|
|
|
build_dir = self.get_build_dir(arch.arch)
|
|
|
|
os.chdir(build_dir)
|
|
|
|
hostpython = sh.Command(self.ctx.hostpython)
|
|
|
|
build_env = self.get_kivy_env(arch)
|
|
|
|
shprint(hostpython, "setup.py", "install", "-O2",
|
2015-02-11 12:53:19 +01:00
|
|
|
"--prefix", join(build_dir, "iosbuild"),
|
2015-02-09 23:34:02 +01:00
|
|
|
_env=build_env)
|
|
|
|
dest_dir = join(self.ctx.dist_dir, "root", "python", "lib", "python2.7",
|
|
|
|
"site-packages", "kivy")
|
|
|
|
if exists(dest_dir):
|
|
|
|
shutil.rmtree(dest_dir)
|
|
|
|
shutil.copytree(
|
2015-02-11 12:53:19 +01:00
|
|
|
join(build_dir, "iosbuild", "lib",
|
2015-02-09 23:34:02 +01:00
|
|
|
"python2.7", "site-packages", "kivy"),
|
|
|
|
dest_dir)
|
2015-02-09 11:58:44 +01:00
|
|
|
|
|
|
|
recipe = KivyRecipe()
|
|
|
|
|
|
|
|
|