python3-jedi:ver bump

This commit is contained in:
blue-devil
2020-08-31 00:11:14 +02:00
parent 1d92a7f5ab
commit fc95cb7c2d
2 changed files with 17 additions and 7 deletions
@@ -4,10 +4,10 @@
# Licensed under the GNU General Public License, version 3. # Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt # 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 from pisi.actionsapi import get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
WorkDir="jedi-%s" % get.srcVERSION() WorkDir="jedi-%s" % get.srcVERSION()
@@ -17,6 +17,8 @@ def setup():
# and copy the header files to the corresponding path # and copy the header files to the corresponding path
for files in ["../typeshed-jedi_v0.16.0/*"]: for files in ["../typeshed-jedi_v0.16.0/*"]:
shelltools.copy("%s" % files,"jedi/third_party/typeshed") shelltools.copy("%s" % files,"jedi/third_party/typeshed")
for files in ["../django-stubs-1.5.0/*"]:
shelltools.copy("%s" % files,"jedi/third_party/django-stubs")
def build(): def build():
pythonmodules.compile(pyVer="3") pythonmodules.compile(pyVer="3")
@@ -13,11 +13,12 @@
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Awesome autocompletion and static analysis library for python.</Summary> <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> <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="5f1cb103303c186ba87b91cc95d22ada4d1892cd" type="targz">https://github.com/davidhalter/jedi/archive/v0.17.0.tar.gz</Archive> <Archive sha1sum="88fbfacae3bb26bf9191eea5cc6b38aec596ab36" type="targz">https://github.com/davidhalter/jedi/archive/v0.17.2.tar.gz</Archive>
<Archive sha1sum="895fd7aa3f1edac94a937282fd3d4f7b3ff07e78" type="targz">https://github.com/davidhalter/typeshed/archive/jedi_v0.16.0.tar.gz</Archive> <Archive sha1sum="895fd7aa3f1edac94a937282fd3d4f7b3ff07e78" type="targz">https://github.com/davidhalter/typeshed/archive/jedi_v0.16.0.tar.gz</Archive>
<Archive sha1sum="54849ae445ba011d9dd2c11e5d95d1ec1f0f8278" type="targz">https://github.com/davidhalter/django-stubs/archive/v1.5.0.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency> <Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -25,16 +26,23 @@
<Name>python3-jedi</Name> <Name>python3-jedi</Name>
<Summary>Awesome autocompletion and static analysis library for python.</Summary> <Summary>Awesome autocompletion and static analysis library for python.</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>python3-parso</Dependency>
<Dependency>python3</Dependency> <Dependency>python3</Dependency>
<Dependency>python3-parso</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="doc">/usr/share/doc/python3-jedi</Path>
<Path fileType="library">/usr/lib/python3*</Path> <Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-jedi</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="3">
<Date>2020-07-21</Date>
<Version>0.17.2</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2"> <Update release="2">
<Date>2020-04-22</Date> <Date>2020-04-22</Date>
<Version>0.17.0</Version> <Version>0.17.0</Version>