python3-jedi:irst pisi rel

This commit is contained in:
blue-devil
2020-03-07 04:36:33 +03:00
parent 51797831c0
commit 511645f317
3 changed files with 80 additions and 0 deletions
@@ -0,0 +1,26 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir="jedi-%s" % get.srcVERSION()
def setup():
# install process needs some header files from
# typeshed github repo. so we add that repo
# and copy the header files to the corresponding path
for files in ["../typeshed-jedi_v0.16.0/*"]:
shelltools.copy("%s" % files,"jedi/third_party/typeshed")
def build():
pythonmodules.compile(pyVer="3")
def install():
pythonmodules.install(pyVer="3")
pisitools.dodoc("LICENSE*")