+534
-120
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
c796307a4f72f42f49ef2b1885114caf1fd4875b
|
||||
15445e9b30a480cbadfc8ec9bb14f8e52539bf9e
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
5b7bf5d4dc59922b65d4061f5b8b221b0e833447
|
||||
245477bd43e19baf7c00aa7db9417f5207b94902
|
||||
@@ -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>
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/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
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-deprecated-declarations")
|
||||
# fix unused direct dependency analysis
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -lbz2")
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-kiwisolver</Name>
|
||||
<Homepage>https://github.com/nucleic/kiwi</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Efficient C++ implementation of the Cassowary constraint solving algorithm.</Summary>
|
||||
<Description>Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm. Kiwi is an implementation of the algorithm based on the seminal Cassowary paper.</Description>
|
||||
<Archive sha1sum="060cda7d28f43f7214886bea1103edf60d63e229" type="targz">https://github.com/nucleic/kiwi/archive/1.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-kiwisolver</Name>
|
||||
<Summary>Efficient C++ implementation of the Cassowary constraint solving algorithm.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python3-kiwisolver</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-03</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>First Pisi 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-kiwisolver</Name>
|
||||
<Summary xml:lang="tr">Python3 için Cassowary kısıtı hesaplama uygulaması kitaplığı.</Summary>
|
||||
<Description xml:lang="tr">python3-kiwisolver, python3 için Cassowary kısıtı hesaplama uygulaması kitaplığı sunar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/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
|
||||
|
||||
def setup():
|
||||
# dodoc method cannot move LICENSE named dir, so i delete the directory
|
||||
shelltools.unlinkDir("LICENSE")
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings:
|
||||
pisitools.cflags.add("-Wno-unused-but-set-variable -Wno-misleading-indentation -Wno-stringop-truncation -Wno-unused-function")
|
||||
# fix unused direct dependency analysis
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -lbz2")
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-matplotlib</Name>
|
||||
<Homepage>https://github.com/matplotlib/matplotlib</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>PSF</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>matplotlib: plotting with Python.</Summary>
|
||||
<Description>Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python.</Description>
|
||||
<Archive sha1sum="c85c118621ebbd15eec4987d05318d983b5f132e" type="targz">https://github.com/matplotlib/matplotlib/archive/v3.2.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-numpy</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-matplotlib</Name>
|
||||
<Summary>matplotlib: plotting with Python.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-kiwisolver</Dependency>
|
||||
<Dependency>python3-pyparsing</Dependency>
|
||||
<Dependency>python3-dateutil</Dependency>
|
||||
<Dependency>python3-cycler</Dependency>
|
||||
<Dependency>python3-numpy</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python3-matplotlib</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-05</Date>
|
||||
<Version>3.2.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-matplotlib</Name>
|
||||
<Summary xml:lang="tr">matplotlib: python grafik çizim kitaplığı.</Summary>
|
||||
<Description xml:lang="tr">python3-matplotlib, python ile hareketli, durağan ve etkileşimli çizgeler yapılmasını sağlayan kapsamlı bir python kitaplığı sunar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
#!/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
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-parso</Name>
|
||||
<Homepage>https://github.com/davidhalter/parso</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>MIT</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A Python Parser.</Summary>
|
||||
<Description>Parso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file.</Description>
|
||||
<Archive sha1sum="9a111853cd303f89b5106ffa0cacd45cb6441c02" type="targz">https://github.com/davidhalter/parso/archive/v0.6.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-parso</Name>
|
||||
<Summary>A Python Parser.</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python3-parso</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-03-06</Date>
|
||||
<Version>0.6.2</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-parso</Name>
|
||||
<Summary xml:lang="tr">Bir python çözümleyicisi.</Summary>
|
||||
<Description xml:lang="tr">python3-parso, python ile yazdığınız kodlardaki sözdizim hatalarını bulabilen hata düzeltmelerini destekleyen bir python kitaplığıdır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user