Exemplo n.º 1
0
def build():
    if get.buildTYPE() == "rebuild_python":
        pythonmodules.run("bootstrap.py", pyVer="3")
        pythonmodules.compile(pyVer="3")
    else:
        pythonmodules.run("bootstrap.py")
        pythonmodules.compile()
Exemplo n.º 2
0
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")
Exemplo n.º 3
0
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")
Exemplo n.º 4
0
def build():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
    cmaketools.make()
Exemplo n.º 5
0
def build():
    autotools.make("-j1")

    shelltools.cd("python")
    pythonmodules.compile("--basedir=..", pyVer="2")
Exemplo n.º 6
0
def build():
    autotools.make()
    shelltools.cd("python")
    pythonmodules.compile(pyVer="3")
    shelltools.cd("..")
Exemplo n.º 7
0
def build():
    if get.buildTYPE() == "rebuild_python":
        ver = "2"
    else:
        ver = "3"
    pythonmodules.compile(pyVer=ver)
Exemplo n.º 8
0
def build():
    shelltools.system("sed -i '7,13d' setup.py")
    pythonmodules.compile(pyVer="3")
Exemplo n.º 9
0
def build():
    pythonmodules.compile(pyVer="3")
Exemplo n.º 10
0
def check():
    pythonmodules.compile("test", pyVer="3")
Exemplo n.º 11
0
def build():
    pythonmodules.compile(NUMPY_FCONFIG, pyVer="3")
Exemplo n.º 12
0
def setup():
    shelltools.cd("api")
    pythonmodules.compile(pyVer="3")
    shelltools.cd("../scom")
    cmaketools.configure()
Exemplo n.º 13
0
def build():
    pythonmodules.run("bootstrap.py", pyVer="3")
    pythonmodules.compile(pyVer="3")
Exemplo n.º 14
0
def build():
    pythonmodules.compile()
    autotools.make("docs")
Exemplo n.º 15
0
def build():
    pythonmodules.compile()
Exemplo n.º 16
0
def build():
    autotools.make("-C make/linux")
    pythonmodules.compile(pyVer="3")
Exemplo n.º 17
0
def build():
    pythonmodules.compile(NUMPY_FCONFIG)
Exemplo n.º 18
0
def setup():
    pythonmodules.compile()
Exemplo n.º 19
0
def setup():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
Exemplo n.º 20
0
def build():
    if get.buildTYPE() == "rebuild_python":
        pythonmodules.compile(pyVer="3")
    else:
        pythonmodules.compile(pyVer="2")