protobuf ver. bump

This commit is contained in:
Rmys
2024-07-31 12:40:53 +03:00
parent 22c12f0881
commit 64b8d37065
2 changed files with 37 additions and 17 deletions
+19 -14
View File
@@ -9,29 +9,34 @@ from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import cmaketools
WorkDir="%s" % get.srcDIR()
def setup():
# create a folder for python3 build
shelltools.copy("python/", "python3/")
# shelltools.copy("python/", "python3/")
# suppress compiler warnings
pisitools.cxxflags.add("-Wno-stringop-overflow -Wno-unused-function -Wno-deprecated-declarations")
shelltools.export("PTHREAD_LIBS", "-lpthread")
shelltools.system("./autogen.sh")
autotools.autoreconf("-vif")
autotools.configure("--disable-static")
# shelltools.system("./autogen.sh")
# autotools.autoreconf("-vif")
cmaketools.configure("-D CMAKE_BUILD_TYPE=None \
-D CMAKE_INSTALL_PREFIX=/usr \
-D protobuf_BUILD_SHARED_LIBS=ON \
-D protobuf_USE_EXTERNAL_GTEST=ON \
-D protobuf_ABSL_PROVIDER=package")
# fix unused direct dependency analysis
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
# pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
cmaketools.make()
# shelltools.cd("python")
# pythonmodules.compile()
# shelltools.cd("..")
shelltools.cd("python")
pythonmodules.compile()
shelltools.cd("..")
shelltools.cd("python3")
pythonmodules.compile(pyVer="3")
shelltools.cd("..")
@@ -46,15 +51,15 @@ def build():
# shelltools.cd("..")
def install():
autotools.install()
cmaketools.install()
# shelltools.cd("python")
# pythonmodules.install()
# shelltools.cd("..")
shelltools.cd("python")
pythonmodules.install()
shelltools.cd("..")
shelltools.cd("python3")
pythonmodules.install(pyVer="3")
shelltools.cd("..")
pisitools.insinto("/usr/share/vim/vimfiles/syntax/", "editors/proto.vim")
pisitools.insinto("/usr/share/emacs/site-lisp/", "editors/protobuf-mode.el")
pisitools.dodoc("CHANGES.txt", "CONTRIBUTORS.txt", "LICENSE", "README.md")
pisitools.dodoc("LICENSE", "CONTRIBUTORS.txt", "LICENSE", "README.md")