sip:splited into python3 folder for py3

This commit is contained in:
ayhanyalcinsoy
2016-06-06 19:44:46 +03:00
parent 1a11d6dcaf
commit 8b49649b0a
5 changed files with 0 additions and 141 deletions
@@ -12,34 +12,13 @@ from pisi.actionsapi import get
WorkDir = "sip-%s" % get.srcVERSION()
py2dir = get.curPYTHON()
py3dir = "python3.4"
def setup():
shelltools.cd("..")
shelltools.makedirs("build_python3")
shelltools.copytree("./%s" % WorkDir, "build_python3")
shelltools.cd(WorkDir)
pythonmodules.run('configure.py CFLAGS+="%s" CXXFLAGS+="%s"' % (get.CFLAGS(), get.CXXFLAGS()))
shelltools.cd("../build_python3/%s" % WorkDir)
shelltools.system("find . -type f -exec sed -i 's/Python.h/python3.4m\/Python.h/g' {} \;")
pythonmodules.run('configure.py CFLAGS="%s" CXXFLAGS="%s"' % (get.CFLAGS(), get.CXXFLAGS()), pyVer = "3")
def build():
autotools.make()
shelltools.cd("../build_python3/%s" % WorkDir)
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.rename("/usr/bin/sip", "py2sip")
#pisitools.insinto("/usr/lib/python2.7/site-packages", "siputils.py")
#pisitools.insinto("/usr/lib/python2.7/site-packages", "sipdistutils.py")
shelltools.cd("../build_python3/%s" % WorkDir)
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.insinto("/usr/lib/python3.4/site-packages", "siputils.py")
#pisitools.insinto("/usr/lib/python3.4/site-packages", "sipdistutils.py")