コード例 #1
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    if get.buildTYPE() == "rebuild_python":
        pythonmodules.run("bootstrap.py", pyVer="3")
        pythonmodules.compile(pyVer="3")
    else:
        pythonmodules.run("bootstrap.py")
        pythonmodules.compile()
コード例 #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")
コード例 #3
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
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")
コード例 #4
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
    cmaketools.make()
コード例 #5
0
def build():
    autotools.make("-j1")

    shelltools.cd("python")
    pythonmodules.compile("--basedir=..", pyVer="2")
コード例 #6
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    autotools.make()
    shelltools.cd("python")
    pythonmodules.compile(pyVer="3")
    shelltools.cd("..")
コード例 #7
0
def build():
    if get.buildTYPE() == "rebuild_python":
        ver = "2"
    else:
        ver = "3"
    pythonmodules.compile(pyVer=ver)
コード例 #8
0
ファイル: actions.py プロジェクト: Zaryob/SulinRepository
def build():
    shelltools.system("sed -i '7,13d' setup.py")
    pythonmodules.compile(pyVer="3")
コード例 #9
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    pythonmodules.compile(pyVer="3")
コード例 #10
0
def check():
    pythonmodules.compile("test", pyVer="3")
コード例 #11
0
ファイル: actions.py プロジェクト: SulinOS/SulinRepository
def build():
    pythonmodules.compile(NUMPY_FCONFIG, pyVer="3")
コード例 #12
0
def setup():
    shelltools.cd("api")
    pythonmodules.compile(pyVer="3")
    shelltools.cd("../scom")
    cmaketools.configure()
コード例 #13
0
def build():
    pythonmodules.run("bootstrap.py", pyVer="3")
    pythonmodules.compile(pyVer="3")
コード例 #14
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    pythonmodules.compile()
    autotools.make("docs")
コード例 #15
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    pythonmodules.compile()
コード例 #16
0
def build():
    autotools.make("-C make/linux")
    pythonmodules.compile(pyVer="3")
コード例 #17
0
def build():
    pythonmodules.compile(NUMPY_FCONFIG)
コード例 #18
0
def setup():
    pythonmodules.compile()
コード例 #19
0
def setup():
    pythonmodules.compile()
    pythonmodules.compile(pyVer="3")
コード例 #20
0
ファイル: actions.py プロジェクト: paledega/SulinRepository
def build():
    if get.buildTYPE() == "rebuild_python":
        pythonmodules.compile(pyVer="3")
    else:
        pythonmodules.compile(pyVer="2")