Exemple #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()
Exemple #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")
Exemple #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")
Exemple #4
0
def build():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
    cmaketools.make()
Exemple #5
0
def build():
    autotools.make("-j1")

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