2016-10-14 14:57:49 +02:00
|
|
|
from os.path import join
|
2016-10-14 14:07:10 +02:00
|
|
|
from toolchain import PythonRecipe
|
2016-10-14 14:57:49 +02:00
|
|
|
from toolchain import shprint
|
|
|
|
import os
|
|
|
|
import sh
|
2016-10-14 14:07:10 +02:00
|
|
|
|
|
|
|
|
|
|
|
class TxaioRecipe(PythonRecipe):
|
|
|
|
version = "2.5.1"
|
|
|
|
url = (
|
|
|
|
"https://pypi.python.org/packages/45/e1/"
|
|
|
|
"f7d88767d65dbfc20d4b4aa0dad657dbbe8ca629ead2bef24da04630a12a/"
|
|
|
|
"txaio-{version}.tar.gz"
|
|
|
|
)
|
2016-10-14 17:59:39 +02:00
|
|
|
depends = ["host_setuptools", "six"]
|
2016-10-14 14:07:10 +02:00
|
|
|
|
2016-10-14 14:57:49 +02:00
|
|
|
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 = arch.get_env()
|
|
|
|
dest_dir = join(self.ctx.dist_dir, "root", "python")
|
|
|
|
pythonpath = join(dest_dir, 'lib', 'python2.7', 'site-packages')
|
|
|
|
build_env['PYTHONPATH'] = pythonpath
|
|
|
|
args = [hostpython, "setup.py", "install", "--prefix", dest_dir]
|
|
|
|
shprint(*args, _env=build_env)
|
|
|
|
|
2016-10-14 14:07:10 +02:00
|
|
|
recipe = TxaioRecipe()
|