python3-httptools:ver.bump

This commit is contained in:
blue-devil
2020-02-09 00:46:14 +03:00
parent 512e55c96a
commit 5a28c6254d
2 changed files with 19 additions and 3 deletions
@@ -7,10 +7,18 @@
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir="httptools-%s" % get.srcVERSION()
def setup():
# install process needs some header files from
# http-parser github repo. so we add that repo
# and copy the header files to the corresponding path
for files in ["../http-parser-2.9.3/*"]:
shelltools.copy("%s" % files,"vendor/http-parser")
def build():
# suppress compiler warnings
pisitools.cflags.add("-Wno-deprecated-declarations")
# fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
pythonmodules.compile(pyVer="3")