rebuild service, package-manager build
Traceback (most recent call last):
File "/usr/bin/rst2html", line 17, in <module>
from docutils.core import publish_cmdline, default_description
ModuleNotFoundError: No module named 'docutils'
Traceback (most recent call last):
File "/usr/bin/rst2html", line 17, in <module>
from docutils.core import publish_cmdline, default_description
ModuleNotFoundError: No module named 'docutils'
This commit is contained in:
@@ -35,11 +35,20 @@ def build():
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
shelltools.cd("../build_python/%s" % WorkDir)
|
||||
shelltools.cd("../build_python3/%s" % WorkDir)
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
#Remove .py extensions from scripts in /usr/bin
|
||||
for f in shelltools.ls("%s/usr/bin" % get.installDIR()):
|
||||
pisitools.domove("/usr/bin/%s" % f, "/usr/bin", f.replace(".py", ""))
|
||||
|
||||
for bin in shelltools.ls("%s/usr/bin" % get.installDIR()):
|
||||
pisitools.rename("/usr/bin/%s" % bin, "%s_3" % bin)
|
||||
|
||||
shelltools.cd("../../build_python/%s" % WorkDir)
|
||||
pythonmodules.install()
|
||||
|
||||
shelltools.cd("../../build_python3/%s" % WorkDir)
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
|
||||
#Remove .py extensions from scripts in /usr/bin
|
||||
for f in shelltools.ls("%s/usr/bin" % get.installDIR()):
|
||||
|
||||
Reference in New Issue
Block a user