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*")
@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-jedi</Name>
<Homepage>https://github.com/davidhalter/jedi</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>Awesome autocompletion and static analysis library for python.</Summary>
<Description>Jedi is a static analysis tool for Python that can be used in IDEs/editors. Jedi has a focus on autocompletion and goto functionality. Jedi is fast and is very well tested. It understands Python and stubs on a deep level.</Description>
<Archive sha1sum="4379a0d37ced899844943e26b45a1df08b764ead" type="targz">https://github.com/davidhalter/jedi/archive/v0.16.0.tar.gz</Archive>
<Archive sha1sum="895fd7aa3f1edac94a937282fd3d4f7b3ff07e78" type="targz">https://github.com/davidhalter/typeshed/archive/jedi_v0.16.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-jedi</Name>
<Summary>Awesome autocompletion and static analysis library for python.</Summary>
<RuntimeDependencies>
<Dependency>python3-parso</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/python3-jedi</Path>
<Path fileType="library">/usr/lib/python3*</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-03-06</Date>
<Version>0.16.0</Version>
<Comment>First release.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>python3-jedi</Name>
<Summary xml:lang="tr">Python için otomatik tamamlama ve durağan çözümleme kitaplığı.</Summary>
<Description xml:lang="tr">python3-jedi, python için otomatik tamamlama ve durağan çözümleme kitaplığı sunar.</Description>
</Source>
</PISI>