def build(): if get.buildTYPE() == "rebuild_python": pythonmodules.run("bootstrap.py", pyVer="3") pythonmodules.compile(pyVer="3") else: pythonmodules.run("bootstrap.py") pythonmodules.compile()
def build(): if get.buildTYPE() == "rebuild_python": shelltools.export("PYTHON", "/usr/bin/python3.7") pythonmodules.compile(pyVer="3") else: shelltools.export("PYTHON", "/usr/bin/python2.7") pythonmodules.compile(pyVer="2")
def build(): pythonmodules.compile() shelltools.cd("../build_python/%s" % WorkDir) pythonmodules.compile() shelltools.system("pwd") shelltools.cd("../../build_python3/%s" % WorkDir) pythonmodules.compile(pyVer="3")
def build(): pythonmodules.compile() pythonmodules.compile(pyVer="3") cmaketools.make()
def build(): autotools.make("-j1") shelltools.cd("python") pythonmodules.compile("--basedir=..", pyVer="2")
def build(): autotools.make() shelltools.cd("python") pythonmodules.compile(pyVer="3") shelltools.cd("..")
def build(): if get.buildTYPE() == "rebuild_python": ver = "2" else: ver = "3" pythonmodules.compile(pyVer=ver)
def build(): shelltools.system("sed -i '7,13d' setup.py") pythonmodules.compile(pyVer="3")
def build(): pythonmodules.compile(pyVer="3")
def check(): pythonmodules.compile("test", pyVer="3")
def build(): pythonmodules.compile(NUMPY_FCONFIG, pyVer="3")
def setup(): shelltools.cd("api") pythonmodules.compile(pyVer="3") shelltools.cd("../scom") cmaketools.configure()
def build(): pythonmodules.run("bootstrap.py", pyVer="3") pythonmodules.compile(pyVer="3")
def build(): pythonmodules.compile() autotools.make("docs")
def build(): pythonmodules.compile()
def build(): autotools.make("-C make/linux") pythonmodules.compile(pyVer="3")
def build(): pythonmodules.compile(NUMPY_FCONFIG)
def setup(): pythonmodules.compile()
def setup(): pythonmodules.compile() pythonmodules.compile(pyVer="3")
def build(): if get.buildTYPE() == "rebuild_python": pythonmodules.compile(pyVer="3") else: pythonmodules.compile(pyVer="2")