Merge pull request #7975 from blue-devil/master

version bumps of python modules
This commit is contained in:
2020-02-22 23:29:51 +02:00
committed by GitHub
41 changed files with 228032 additions and 226759 deletions
+227243 -226729
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
70855a59e7663c72a6ab0b8f627adb02e89f47b3 ce2f544bd31857e63b9e92d3d3e77a5694c5631a
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
cb2637be7d6f4766065816b13dd38e81ca617a28 59beb2a8f0d15f68363c389cf3441bcda2c7baa4
+2 -1
View File
@@ -6,8 +6,8 @@
from pisi.actionsapi import pythonmodules from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
from pisi.actionsapi import get
from pisi.actionsapi import pisitools from pisi.actionsapi import pisitools
from pisi.actionsapi import get
WorkDir="pip-%s" % get.srcVERSION() WorkDir="pip-%s" % get.srcVERSION()
@@ -16,3 +16,4 @@ def setup():
def install(): def install():
pythonmodules.install() pythonmodules.install()
pisitools.dodoc("LICENSE*")
+18 -9
View File
@@ -1,5 +1,5 @@
<?xml version="1.0" ?> <?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd"> <!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI> <PISI>
<Source> <Source>
<Name>pip</Name> <Name>pip</Name>
@@ -8,10 +8,11 @@
<Name>Yusuf Aydemir</Name> <Name>Yusuf Aydemir</Name>
<Email>Yusuf.aydemir@istanbul.com</Email> <Email>Yusuf.aydemir@istanbul.com</Email>
</Packager> </Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<Summary>The PyPA recommended tool for installing Python packages</Summary> <Summary>The PyPA recommended tool for installing Python packages</Summary>
<Description>The PyPA recommended tool for installing Python packages</Description> <Description>The PyPA recommended tool for installing Python packages</Description>
<License>MIT</License> <Archive sha1sum="4192da2254fbf46cfb22099b4478200ec2cac29b" type="targz">https://github.com/pypa/pip/archive/20.0.2.tar.gz</Archive>
<Archive sha1sum="bb825314632e0528aa93a19ab18e87f4cc36e998" type="targz">https://github.com/pypa/pip/archive/19.3.1.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python-setuptools</Dependency> <Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency> <Dependency>python-devel</Dependency>
@@ -20,17 +21,25 @@
<Package> <Package>
<Name>pip</Name> <Name>pip</Name>
<Files> <Summary>The PyPA recommended tool for installing Python packages</Summary>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>python-setuptools</Dependency> <Dependency>python-setuptools</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/lib</Path>
</Files>
</Package> </Package>
<History> <History>
<Update release="9">
<Date>2020-02-23</Date>
<Version>20.0.2</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="8"> <Update release="8">
<Date>2020-01-15</Date> <Date>2020-01-15</Date>
<Version>19.3.1</Version> <Version>19.3.1</Version>
@@ -88,4 +97,4 @@
<Email>ayhanyalcinsoy@pisilinux.org</Email> <Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update> </Update>
</History> </History>
</PISI> </PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>pip</Name>
<Summary xml:lang="tr">Python paketleri yükleme aracı</Summary>
<Description xml:lang="tr">pip, pypa tarafından önerilen python modülleri yükleme aracıdır.</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-pointer-sign -Wno-attributes -Wno-format-truncation")
# fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -lbz2")
pythonmodules.compile()
def install():
pythonmodules.install()
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-bcrypt</Name>
<Homepage>https://github.com/pyca/bcrypt</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>Apache</License>
<IsA>library</IsA>
<Summary>Modern(-ish) password hashing for your software and your servers</Summary>
<Description>python-bcrypt is a good password hashing for your software and your servers</Description>
<Archive sha1sum="bc34050664c1b7512ea8791fd543673144521931" type="targz">https://github.com/pyca/bcrypt/archive/3.1.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-bcrypt</Name>
<Summary>Modern(-ish) password hashing for your software and your servers</Summary>
<RuntimeDependencies>
<Dependency>python-cffi</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
<Path fileType="doc">/usr/share/doc/python-bcrypt</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2019-12-13</Date>
<Version>3.1.7</Version>
<Comment>Rebuilt and split packages</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-11-07</Date>
<Version>3.1.7</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>python-bcrypt</Name>
<Summary xml:lang="tr">Yazılımlarınız ve sunucularınız için bir parola hashi üreten python modülüdür.</Summary>
<Description xml:lang="tr">python-bcrypt, yazılımlarınız ve sunucularınız için iyi bir parola hashi üretecisidir.</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()
def install():
pythonmodules.install()
@@ -0,0 +1,48 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-certifi</Name>
<Homepage>https://certifi.io/</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MPL-2.0</License>
<IsA>library</IsA>
<Summary>Python package for providing Mozilla's CA Bundle</Summary>
<Description>Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. </Description>
<Archive sha1sum="c164a4a5d1a812d0605d8be6206c8f08253c22d6" type="targz">https://files.pythonhosted.org/packages/41/bf/9d214a5af07debc6acf7f3f257265618f1db242a3f8e49a9b516f24523a6/certifi-2019.11.28.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-certifi</Name>
<Summary>Python package for providing Mozilla's CA Bundle</Summary>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-01-28</Date>
<Version>2019.11.28</Version>
<Comment>Version bump.</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-12-07</Date>
<Version>2019.9.11</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>python-certifi</Name>
<Summary xml:lang="tr">Certifi, Mozillanın sertifikalarını sağlayan python kitaplığıdır.</Summary>
<Description xml:lang="tr">Certifi, TLS sahiplerinin SSL sertifikalarını doğrulanmasını sağlayan, kök sertifikalarının toplandığı bir kitaplıktır.</Description>
</Source>
</PISI>
@@ -0,0 +1,23 @@
#!/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 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")
pythonmodules.compile()
def install():
pythonmodules.install()
for dirs in ["demo"]:
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), dirs)
@@ -0,0 +1,67 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-cffi</Name>
<Homepage>https://cffi.readthedocs.io/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>Foreign Function Interface for Python calling C code</Summary>
<Description>Foreign Function Interface for Python calling C code</Description>
<Archive sha1sum="e4f62a0dac09e94bb98c3a78b061a8c7da8c1721" type="targz">https://bitbucket.org/cffi/cffi/get/v1.14.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>libffi-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-cffi</Name>
<Summary>Foreign Function Interface for Python calling C code</Summary>
<RuntimeDependencies>
<Dependency>python-enum34</Dependency>
<Dependency>python-six</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/python-cffi</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2020-02-08</Date>
<Version>1.14.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2020-01-23</Date>
<Version>1.13.2</Version>
<Comment>Rebuilt, clean and fix flags</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2">
<Date>2019-12-11</Date>
<Version>1.13.2</Version>
<Comment>Rebuilt and split packages</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-11-07</Date>
<Version>1.13.2</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>python-cffi</Name>
<Summary xml:lang="tr">Python için C kodu cağıran dış fonksiyon arayüzü</Summary>
<Description xml:lang="tr">Python için C kodu cağıran dış fonksiyon arayüzü kitaplığıdır.</Description>
</Source>
</PISI>
@@ -0,0 +1,23 @@
#!/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 build():
# suppress compiler warnings
pisitools.cflags.add("-Wno-stringop-truncation -Wno-deprecated-declarations -Wno-incompatible-pointer-types -Wno-discarded-qualifiers -Wno-sign-conversion -Wno-sign-compare")
# fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -Wl,-O1 -Wl,-z,relro -Wl,--hash-style=gnu -Wl,--as-needed -Wl,--sort-common")
pythonmodules.compile()
def install():
pythonmodules.install()
for dirs in ["vectors"]:
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), dirs)
@@ -0,0 +1,44 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-cryptography</Name>
<Homepage>https://cryptography.io/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>Apache</License>
<IsA>library</IsA>
<Summary>Cryptographic recipes for Python</Summary>
<Description>A package designed to expose cryptographic recipes and primitives to Python developers</Description>
<Archive sha1sum="93d4e9d58f911d342c68973a75542375ef8021ab" type="targz">https://github.com/pyca/cryptography/archive/2.8.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>openssl-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-cryptography</Name>
<Summary>Cryptographic recipes for Python</Summary>
<RuntimeDependencies>
<Dependency>python-cffi</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
<Path fileType="doc">/usr/share/doc/python-cryptography</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-11-06</Date>
<Version>2.8</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>python-cryptography</Name>
<Summary xml:lang="tr">Python için kriptografik tarifler</Summary>
<Description xml:lang="tr">python-cryptography, Python geliştiricileri icin kriptografik tarifler ve ilkeler sunan bir pakettir.</Description>
</Source>
</PISI>
@@ -0,0 +1,16 @@
#!/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
shelltools.export("SETUPTOOLS_SCM_PRETEND_VERSION","2.8.1")
def build():
pythonmodules.compile()
def install():
pythonmodules.install()
@@ -0,0 +1,45 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-dateutil</Name>
<Homepage>https://github.com/dateutil/dateutil</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<Summary>python-dateutil provides powerful extensions to datetime</Summary>
<Description>The dateutil module provides powerful extensions to the standard datetime module, available in Python.</Description>
<Archive sha1sum="118108d2a3e67dfe4a0cced7ab904b6c70539f53" type="targz">https://github.com/dateutil/dateutil/archive/2.8.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools-scm</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-dateutil</Name>
<Summary>python-dateutil provides powerful extensions to datetime</Summary>
<RuntimeDependencies>
<Dependency>python-six</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
<Path fileType="doc">/usr/share/doc/python-dateutil</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-12-24</Date>
<Version>2.8.1</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>python-dateutil</Name>
<Summary xml:lang="tr">Python datetime için güçlü genişletmeler içeren python modülü</Summary>
<Description xml:lang="tr">python-dateutil, Python standart datetime modülüne gelişmiş, güçlü ek özellikler katan genişleme kitaplığıdır.</Description>
</Source>
</PISI>
@@ -13,7 +13,7 @@
<IsA>app:console</IsA> <IsA>app:console</IsA>
<Summary>An enumeration is a set of symbolic names (members) bound to unique, constant values. Within an enumeration, the members can be compared by identity, and the enumeration itself can be iterated over.</Summary> <Summary>An enumeration is a set of symbolic names (members) bound to unique, constant values. Within an enumeration, the members can be compared by identity, and the enumeration itself can be iterated over.</Summary>
<Description>python-enum34 is the new Python stdlib enum module available in Python 3.4 backported for previous versions of Python from 2.4 to 3.3. tested on 2.6, 2.7, and 3.3+</Description> <Description>python-enum34 is the new Python stdlib enum module available in Python 3.4 backported for previous versions of Python from 2.4 to 3.3. tested on 2.6, 2.7, and 3.3+</Description>
<Archive sha1sum="014ef5878333ff91099893d615192c8cd0b1525a" type="targz">https://files.pythonhosted.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz</Archive> <Archive sha1sum="e3d61b93264b3b5c1790aea8422fcee15ceabf60" type="targz">https://files.pythonhosted.org/packages/a7/9a/909b721496b6f3e7776345c250d55cbdbcb1302fb42cf79de0d929af74c1/enum34-1.1.8.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python-setuptools</Dependency> <Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency> <Dependency>python-devel</Dependency>
@@ -30,6 +30,13 @@
</Package> </Package>
<History> <History>
<Update release="3">
<Date>2020-02-23</Date>
<Version>1.1.8</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2"> <Update release="2">
<Date>2020-01-20</Date> <Date>2020-01-20</Date>
<Version>1.1.6</Version> <Version>1.1.6</Version>
@@ -8,15 +8,15 @@
<Name>Blue Devil</Name> <Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email> <Email>bluedevil@sctzine.com</Email>
</Packager> </Packager>
<License>MIT</License>
<PartOf>programming.language.python</PartOf> <PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>HTTP/2 State-Machine based protocol implementation</Summary> <Summary>HTTP/2 State-Machine based protocol implementation</Summary>
<Description>This repository contains a pure-Python implementation of a HTTP/2 protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can speak HTTP/2 regardless of your programming paradigm.</Description> <Description>This repository contains a pure-Python implementation of a HTTP/2 protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can speak HTTP/2 regardless of your programming paradigm.</Description>
<Archive sha1sum="532f288ed51c98c03f0213604d3efe99286f09bc" type="targz">https://github.com/python-hyper/hyper-h2/archive/v3.1.1.tar.gz</Archive> <Archive sha1sum="131f4a62abcb42ec27d140e8e24c0427520c5e3d" type="targz">https://github.com/python-hyper/hyper-h2/archive/v3.2.0.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency> <Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -24,18 +24,25 @@
<Name>python-h2</Name> <Name>python-h2</Name>
<Summary>HTTP/2 State-Machine based protocol implementation</Summary> <Summary>HTTP/2 State-Machine based protocol implementation</Summary>
<RuntimeDependencies> <RuntimeDependencies>
<Dependency>python-hpack</Dependency>
<Dependency>python-enum34</Dependency>
<Dependency>python-hyperframe</Dependency> <Dependency>python-hyperframe</Dependency>
<Dependency>python-enum34</Dependency>
<Dependency>python-hpack</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/python-h2</Path> <Path fileType="doc">/usr/share/doc/python-h2</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="library">/usr/lib</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="2">
<Date>2020-02-23</Date>
<Version>3.2.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1"> <Update release="1">
<Date>2020-01-15</Date> <Date>2020-01-15</Date>
<Version>3.1.1</Version> <Version>3.1.1</Version>
@@ -0,0 +1,15 @@
#!/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 pisitools
def build():
pythonmodules.compile()
def install():
pythonmodules.install()
pisitools.rename("/usr/bin/tqdm", "tqdm-py2")
@@ -0,0 +1,66 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-tqdm</Name>
<Homepage>https://github.com/tqdm/tqdm</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>A Fast, Extensible Progress Bar for Python and CLI.</Summary>
<Description>python-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done!</Description>
<Archive sha1sum="4f1e658219e4a81859bb92074788a96b9813ca63" type="targz">https://github.com/tqdm/tqdm/archive/v4.42.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-tqdm</Name>
<Summary>A Fast, Extensible Progress Bar for Python and CLI.</Summary>
<RuntimeDependencies>
<Dependency>python-setuptools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/tqdm-py2</Path>
<Path fileType="library">/usr/lib/python2*</Path>
<Path fileType="doc">/usr/share/doc/python-tqdm</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2020-02-05</Date>
<Version>4.42.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2020-01-27</Date>
<Version>4.42.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2">
<Date>2020-01-23</Date>
<Version>4.41.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-12-25</Date>
<Version>4.41.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>python-tqdm</Name>
<Summary xml:lang="tr">Python ile komut satırı için hızlı ve genişletilebilir ilerleme çubugu kitaplığı</Summary>
<Description xml:lang="tr">python-tqdm, python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubuğu kitaplığı sunar. Bu modül ile döngülerinize akıllı ilerleme çubuğu ekleyebilirsiniz.</Description>
</Source>
</PISI>
@@ -0,0 +1,20 @@
#!/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 build():
# fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -Wl,-O1 -Wl,-z,relro -Wl,--hash-style=gnu -Wl,--as-needed -Wl,--sort-common")
# suppress compiler warnings
pisitools.cflags.add("-Wno-unused-function -Wno-pointer-sign -Wno-sign-compare -Wno-unused-variable")
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-Levenshtein</Name>
<Homepage>https://pypi.org/project/python-Levenshtein/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Python extension for computing string edit distances and similarities</Summary>
<Description>The Levenshtein Python C extension module contains functions for fast computation of: Levenshtein (edit) distance, and edit operations, string similarity, approximate median strings, and generally string averaging, string sequence and set similarity.It supports both normal and Unicode strings.</Description>
<Archive sha1sum="e24d85c9d632038f98202af687eb3d428eca0ac1" type="targz">https://files.pythonhosted.org/packages/42/a9/d1785c85ebf9b7dfacd08938dd028209c34a0ea3b1bcdb895208bd40a67d/python-Levenshtein-0.12.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-Levenshtein</Name>
<Summary>Python extension for computing string edit distances and similarities</Summary>
<RuntimeDependencies>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-Levenshtein</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-12-23</Date>
<Version>0.12.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-Levenshtein</Name>
<Summary xml:lang="tr">Sözcük katarı düzenleme uzaklıkları ve benzerliklerini çok hızlı işleyebilen bir pyton kitaplığıdır.</Summary>
<Description xml:lang="tr">Levenshtein Python kitaplığı, Levenshtein (düzenleme) uzaklığı ve düzenleme işlemleri, sözcük katarı benzerlikleri, genel olarak söz dizisi ortalaması ve sözcük sırası gibi konuları hızlıca işleyebilen bir python kitaplığıdır.</Description>
</Source>
</PISI>
@@ -0,0 +1,15 @@
#!/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 pisitools
def build():
pythonmodules.compile(pyVer="3")
def install():
pythonmodules.install(pyVer="3")
pisitools.dodoc("LICENSE*")
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-fuzzywuzzy</Name>
<Homepage>https://github.com/seatgeek/fuzzywuzzy</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Fuzzy String Matching in Python.</Summary>
<Description>Fuzzy string matching like a boss. It uses Levenshtein Distance to calculate the differences between sequences in a simple-to-use package.</Description>
<Archive sha1sum="faf1975fbba55bdb94ca07d544ca8b42af45310c" type="targz">https://github.com/seatgeek/fuzzywuzzy/archive/0.18.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-fuzzywuzzy</Name>
<Summary>Fuzzy String Matching in Python</Summary>
<RuntimeDependencies>
<Dependency>python3-Levenshtein</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-fuzzywuzzy</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-02-18</Date>
<Version>0.18.0</Version>
<Comment>First Pisi Release</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-12-26</Date>
<Version>0.17.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-fuzzywuzzy</Name>
<Summary xml:lang="tr">Python3 ile sözcük karşılaştırma/bulma modülü</Summary>
<Description xml:lang="tr">python3-fuzzywuzzy Levenshtein uzaklığını kullanarak bölümler arası ayrımları hesaplayan kullanımı basit bir python3 modülüdür.</Description>
</Source>
</PISI>
@@ -8,7 +8,7 @@ from pisi.actionsapi import pythonmodules
from pisi.actionsapi import shelltools from pisi.actionsapi import shelltools
def build(): def build():
# fix unused direct dependency analysis # fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread") shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
pythonmodules.compile(pyVer="3") pythonmodules.compile(pyVer="3")
@@ -8,15 +8,15 @@
<Name>Blue Devil</Name> <Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email> <Email>bluedevil@sctzine.com</Email>
</Packager> </Packager>
<License>Apache</License>
<PartOf>programming.language.python3</PartOf> <PartOf>programming.language.python3</PartOf>
<License>Apache</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>The multidict implementation.</Summary> <Summary>The multidict implementation.</Summary>
<Description>Multidict is dict-like collection of key-value pairs where key might be occurred more than once in the container.</Description> <Description>Multidict is dict-like collection of key-value pairs where key might be occurred more than once in the container.</Description>
<Archive sha1sum="0d3e672225ff0c7e2c31a357b27db5b1d7591591" type="targz">https://github.com/aio-libs/multidict/archive/v4.7.4.tar.gz</Archive> <Archive sha1sum="d554437eb3e3bbb9ddf938f7f97f8dc40eb9353d" type="targz">https://github.com/aio-libs/multidict/archive/v4.7.5.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency> <Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies> </BuildDependencies>
</Source> </Source>
@@ -27,14 +27,21 @@
<Dependency>python3</Dependency> <Dependency>python3</Dependency>
</RuntimeDependencies> </RuntimeDependencies>
<Files> <Files>
<Path fileType="library">/usr/lib</Path> <Path fileType="doc">/usr/share/doc/python3-multidict</Path>
<Path fileType="executable">/usr/bin</Path> <Path fileType="executable">/usr/bin</Path>
<Path fileType="man">/usr/share/man</Path> <Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/python3-multidict</Path> <Path fileType="library">/usr/lib</Path>
</Files> </Files>
</Package> </Package>
<History> <History>
<Update release="2">
<Date>2020-02-23</Date>
<Version>4.7.5</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1"> <Update release="1">
<Date>2020-01-15</Date> <Date>2020-01-15</Date>
<Version>4.7.4</Version> <Version>4.7.4</Version>
@@ -2,7 +2,7 @@
<PISI> <PISI>
<Source> <Source>
<Name>python3-multidict</Name> <Name>python3-multidict</Name>
<Summary xml:lang="tr">Multidict uygulaması</Summary> <Summary xml:lang="tr">Multidict uygulaması.</Summary>
<Description xml:lang="tr">python3-multidict, sözlük benzeri anahtar-değer ikilisinden oluşan ama konteynerde birden fazla aynı anahtar olmasına olanak verek python modülüdür.</Description> <Description xml:lang="tr">python3-multidict, sözlük benzeri anahtar-değer ikilisinden oluşan ama konteynerde birden fazla aynı anahtar olmasına olanak verek python modülüdür.</Description>
</Source> </Source>
</PISI> </PISI>
@@ -8,12 +8,12 @@
<Name>Blue Devil</Name> <Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email> <Email>bluedevil@sctzine.com</Email>
</Packager> </Packager>
<License>BSD</License>
<PartOf>programming.language.python3</PartOf> <PartOf>programming.language.python3</PartOf>
<License>BSD</License>
<IsA>library</IsA> <IsA>library</IsA>
<Summary>Sphinx extension which renders HTML help files.</Summary> <Summary>Sphinx extension which renders HTML help files.</Summary>
<Description>sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files.</Description> <Description>sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files.</Description>
<Archive sha1sum="84ee89d48edb9673343bb68c83dd7ea4a681b7c8" type="targz">https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/archive/1.0.2.tar.gz</Archive> <Archive sha1sum="ca1bc7d5c550189bfe87b42e3c06f2c805a4f121" type="targz">https://github.com/sphinx-doc/sphinxcontrib-htmlhelp/archive/1.0.3.tar.gz</Archive>
<BuildDependencies> <BuildDependencies>
<Dependency>python3-setuptools</Dependency> <Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency> <Dependency>python3-devel</Dependency>
@@ -33,6 +33,13 @@
</Package> </Package>
<History> <History>
<Update release="2">
<Date>2020-02-23</Date>
<Version>1.0.3</Version>
<Comment>version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1"> <Update release="1">
<Date>2019-12-30</Date> <Date>2019-12-30</Date>
<Version>1.0.2</Version> <Version>1.0.2</Version>
@@ -5,4 +5,4 @@
<Summary xml:lang="tr">python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilir/görüntüleyebilir.</Summary> <Summary xml:lang="tr">python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilir/görüntüleyebilir.</Summary>
<Description xml:lang="tr">python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilen/görüntüleyebilen sphinx genişleme modülüdür.</Description> <Description xml:lang="tr">python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilen/görüntüleyebilen sphinx genişleme modülüdür.</Description>
</Source> </Source>
</PISI> </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,67 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-tqdm</Name>
<Homepage>https://github.com/tqdm/tqdm</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 Fast, Extensible Progress Bar for Python and CLI.</Summary>
<Description>python3-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done!</Description>
<Archive sha1sum="4f1e658219e4a81859bb92074788a96b9813ca63" type="targz">https://github.com/tqdm/tqdm/archive/v4.42.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-tqdm</Name>
<Summary>A Fast, Extensible Progress Bar for Python and CLI.</Summary>
<RuntimeDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/tqdm</Path>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-tqdm</Path>
</Files>
</Package>
<History>
<Update release="4">
<Date>2020-02-05</Date>
<Version>4.42.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2020-01-27</Date>
<Version>4.42.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2">
<Date>2020-01-23</Date>
<Version>4.41.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-12-25</Date>
<Version>4.41.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-tqdm</Name>
<Summary xml:lang="tr">Python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubugu kitaplığı</Summary>
<Description xml:lang="tr">python3-tqdm, python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubuğu kitaplığı sunar. Bu modül ile döngülerinize akıllı ilerleme çubuğu ekleyebilirsiniz.</Description>
</Source>
</PISI>