Merge pull request #8519 from blue-devil/master

python modules updated
This commit is contained in:
Blue DeviL
2020-05-17 01:52:22 +03:00
committed by GitHub
25 changed files with 239498 additions and 238272 deletions
+239233 -238235
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
c03584bee551fac384cdc794294d8529a9c8265b
a25acd5e1c7cbb3cd2634cddabf1f3440de958d1
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
ed28417eca14d2d399b312cecc8631a8397a8e29
e05a270dc88beecafa4ecb7262f0d060405ae6c5
@@ -13,7 +13,7 @@ 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
shelltools.export("CFLAGS", "-fno-strict-aliasing -mtune=generic -march=x86-64 -O2 -pipe -fstack-protector -D_FORTIFY_SOURCE=2 -g -fPIC -fwrapv -DNDEBUG -g -fwrapv -O3 -Wno-strict-aliasing")
#shelltools.export("CFLAGS", "-fno-strict-aliasing -mtune=generic -march=x86-64 -O2 -pipe -fstack-protector -D_FORTIFY_SOURCE=2 -g -fPIC -fwrapv -DNDEBUG -g -fwrapv -O3 -Wno-strict-aliasing")
pythonmodules.compile()
# Blue DeviL Note: it takes hours to run test, run with caution!
+9 -1
View File
@@ -14,7 +14,7 @@
<IsA>library</IsA>
<Summary>C extensions for the Python</Summary>
<Description>Cython is a language that makes writing C extensions for the Python language as easy as Python itself.</Description>
<Archive sha1sum="d61ec184c284eaf91595587427c65b32ba90a316" type="targz">https://github.com/cython/cython/archive/0.29.16.tar.gz</Archive>
<Archive sha1sum="d54df345fb7dbf402a8b9fd6f75222a3d88552d0" type="targz">https://github.com/cython/cython/archive/0.29.17.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
@@ -26,6 +26,7 @@
<Summary>C extensions for the Python</Summary>
<RuntimeDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/cythonize-py2</Path>
@@ -37,6 +38,13 @@
</Package>
<History>
<Update release="7">
<Date>2020-05-14</Date>
<Version>0.29.17</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="6">
<Date>2020-03-27</Date>
<Version>0.29.16</Version>
@@ -13,7 +13,7 @@ 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
shelltools.export("CFLAGS", "-fno-strict-aliasing -mtune=generic -march=x86-64 -O2 -pipe -fstack-protector -D_FORTIFY_SOURCE=2 -g -fPIC -fwrapv -DNDEBUG -g -fwrapv -O3 -Wno-strict-aliasing")
#shelltools.export("CFLAGS", "-fno-strict-aliasing -mtune=generic -march=x86-64 -O2 -pipe -fstack-protector -D_FORTIFY_SOURCE=2 -g -fPIC -fwrapv -DNDEBUG -g -fwrapv -O3 -Wno-strict-aliasing")
pythonmodules.compile(pyVer="3")
@@ -14,7 +14,7 @@
<IsA>library</IsA>
<Summary>C extensions for the Python3</Summary>
<Description>Cython is a language that makes writing C extensions for the Python language as easy as Python itself.</Description>
<Archive sha1sum="d61ec184c284eaf91595587427c65b32ba90a316" type="targz">https://github.com/cython/cython/archive/0.29.16.tar.gz</Archive>
<Archive sha1sum="d54df345fb7dbf402a8b9fd6f75222a3d88552d0" type="targz">https://github.com/cython/cython/archive/0.29.17.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -36,6 +36,13 @@
</Package>
<History>
<Update release="8">
<Date>2020-05-14</Date>
<Version>0.29.17</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="7">
<Date>2020-03-27</Date>
<Version>0.29.16</Version>
+7 -3
View File
@@ -11,12 +11,16 @@ from pisi.actionsapi import get
WorkDir="pip-%s" % get.srcVERSION()
def setup():
def build():
pythonmodules.compile(pyVer = "3")
def install():
pythonmodules.install(pyVer = "3")
pisitools.rename("/usr/bin/pip", "pip3")
pisitools.dodoc("LICENSE*")
shelltools.system("sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python3|' %s/usr/lib/python3.*/site-packages/pip/__init__.py" % get.installDIR())
shelltools.system("python3 -m compileall %s/usr/lib/python3.*/site-packages/pip/__init__.py" % get.installDIR())
# 2020-05-16 Blue DeviL Note:
# Build documentation
#shelltools.system("sed -i 's|#!/usr/bin/env python$|#!/usr/bin/env python3|' %s/usr/lib/python3.*/site-packages/pip/__init__.py" % get.installDIR())
#shelltools.system("python3 -m compileall %s/usr/lib/python3.*/site-packages/pip/__init__.py" % get.installDIR())
+11 -6
View File
@@ -5,14 +5,14 @@
<Name>pip3</Name>
<Homepage>https://pypi.python.org/pypi/pip</Homepage>
<Packager>
<Name>Yusuf Aydemir</Name>
<Email>Yusuf.aydemir@istanbul.com</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>MIT</License>
<Summary>The PyPA recommended tool for installing Python packages</Summary>
<Description>The PyPA recommended tool for installing Python packages</Description>
<Archive sha1sum="4192da2254fbf46cfb22099b4478200ec2cac29b" type="targz">https://github.com/pypa/pip/archive/20.0.2.tar.gz</Archive>
<Archive sha1sum="c04eb4602ce628f7955fc3d711fccccc928a3645" type="targz">https://github.com/pypa/pip/archive/20.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency versionFrom="3.8.0">python3-devel</Dependency>
@@ -24,6 +24,7 @@
<Summary>The PyPA recommended tool for installing Python packages</Summary>
<RuntimeDependencies>
<Dependency>python3</Dependency>
<Dependency>python3-setuptools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/pip</Path>
@@ -31,12 +32,16 @@
<Path fileType="data">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<RuntimeDependencies>
<Dependency>python3-setuptools</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="11">
<Date>2020-05-16</Date>
<Version>20.1</Version>
<Comment>Minor version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="10">
<Date>2020-01-29</Date>
<Version>20.0.2</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir".</Summary>
<Description>What directory should your app use for storing user data? This small Python module is for determining appropriate platform-specific dirs, e.g. a "user data dir".</Description>
<Archive sha1sum="9ad09395ed489ad66e9688e49087ce1814c64276" type="targz">https://files.pythonhosted.org/packages/48/69/d87c60746b393309ca30761f8e2b49473d43450b150cb08f3c6df5c11be5/appdirs-1.4.3.tar.gz</Archive>
<Archive sha1sum="1fa04e44b1084338cb7b21e9cf44fce5efb81840" type="targz">https://pypi.org/packages/source/a/appdirs/appdirs-1.4.4.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="2">
<Date>2020-05-16</Date>
<Version>1.4.4</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-12-24</Date>
<Version>1.4.3</Version>
@@ -12,7 +12,7 @@ def build():
pythonmodules.compile(pyVer="3")
def check():
shelltools.system("PYTHONPATH=build:%s/python-atomicwrites-1.3.0/build/lib py.test" % get.workDIR())
shelltools.system("PYTHONPATH=build:%s/python-atomicwrites-1.4.0/build/lib py.test" % get.workDIR())
def install():
pythonmodules.install(pyVer="3")
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>Powerful Python library for atomic file writes.</Summary>
<Description>python3-atomicwrites provides powerful Python library for atomic file writes.</Description>
<Archive sha1sum="a79788bc16877d4221b9b76fc339650c653f55e6" type="targz">https://github.com/untitaker/python-atomicwrites/archive/1.3.0.tar.gz</Archive>
<Archive sha1sum="6627f8c506c344460deddd3045e13487ac30df9e" type="targz">https://github.com/untitaker/python-atomicwrites/archive/1.4.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -35,6 +35,13 @@
</Package>
<History>
<Update release="2">
<Date>2020-05-16</Date>
<Version>1.4.0</Version>
<Comment>Minor version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2020-02-18</Date>
<Version>1.3.0</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>Python3 composable command line interface toolkit</Summary>
<Description>Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box.</Description>
<Archive sha1sum="8d906f756ba7cc44271de41f6fa079e6f9b710fc" type="targz">https://github.com/pallets/click/archive/7.1.1.tar.gz</Archive>
<Archive sha1sum="df5cae0c0df77aef5890b35247eff1ff5890d873" type="targz">https://github.com/pallets/click/archive/7.1.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3</Dependency>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="4">
<Date>2020-05-16</Date>
<Version>7.1.2</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2020-03-11</Date>
<Version>7.1.1</Version>
@@ -13,11 +13,11 @@
<IsA>library</IsA>
<Summary>Cryptographic recipes for Python3</Summary>
<Description>A package designed to expose cryptographic recipes and primitives to Python developers</Description>
<Archive sha1sum="e37f171361b555b72eb640521480c9f5380b1ee0" type="targz">https://github.com/pyca/cryptography/archive/2.9.1.tar.gz</Archive>
<Archive sha1sum="bb3313bda2ef9b379a2acc17845fcf2ec87e02da" type="targz">https://github.com/pyca/cryptography/archive/2.9.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<!-- documentation dependencies -->
<Dependency>python3-sphinx</Dependency>
</BuildDependencies>
@@ -49,6 +49,13 @@
</Package>
<History>
<Update release="4">
<Date>2020-05-16</Date>
<Version>2.9.2</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2020-04-22</Date>
<Version>2.9.1</Version>
@@ -1,19 +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 pisitools
from pisi.actionsapi import autotools
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
def build():
pisitools.dosed("Makefile", "python", "python3")
autotools.make()
# 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 -lbz2 -ldl")
pythonmodules.compile(pyVer="3")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("COPYING", "NEWS", "README", "TODO", "examples/cupstree.py")
pythonmodules.install(pyVer="3")
@@ -1,5 +1,5 @@
<?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>
<Source>
<Name>python3-cups</Name>
@@ -8,11 +8,12 @@
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>GPLv2</License>
<IsA>library</IsA>
<Summary>Python3 interface to the CUPS API</Summary>
<Description>python3-cups contains python3 bindings to wrap the CUPS API.</Description>
<Archive sha1sum="860ddef7df9ab83143817fb5bd8477f6a8984da9" type="tarbz2">https://files.pythonhosted.org/packages/00/ce/836a0deb8b24bcd5f850f8fb97f99fb4abd7374e078b9e6df5a0838f8eb5/pycups-1.9.74.tar.bz2</Archive>
<Archive sha1sum="b6057da7830fb49c30021902393d94acb045087e" type="targz">https://pypi.org/packages/source/p/pycups/pycups-2.0.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>cups-devel</Dependency>
<Dependency>python3-devel</Dependency>
@@ -21,8 +22,10 @@
<Package>
<Name>python3-cups</Name>
<Summary>Python3 interface to the CUPS API</Summary>
<RuntimeDependencies>
<Dependency>cups</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -31,6 +34,13 @@
</Package>
<History>
<Update release="5">
<Date>2020-05-16</Date>
<Version>2.0.1</Version>
<Comment>Major version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="4">
<Date>2020-03-15</Date>
<Version>1.9.74</Version>
@@ -60,4 +70,4 @@
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -5,4 +5,4 @@
<Summary xml:lang="tr">CUPS programlama arayüzü için Python3 desteği</Summary>
<Description xml:lang="tr">python3-cups, CUPS programlama arayüzü için Python3 bağlayıcıları içeren bir pakettir.</Description>
</Source>
</PISI>
</PISI>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>Compress responses in your Flask app.</Summary>
<Description>Flask-Compress allows you to easily compress your Flask application's responses with gzip.</Description>
<Archive sha1sum="0557e35d6c76f26cbf804f97dc4a72bf3cc2cb52" type="targz">https://github.com/colour-science/flask-compress/archive/v1.4.0.tar.gz</Archive>
<Archive sha1sum="272dc82efac0eb2c3b417006129e64bc017ba45f" type="targz">https://github.com/colour-science/flask-compress/archive/v1.5.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -24,6 +24,7 @@
<Name>python3-flask-compress</Name>
<Summary>Compress responses in your Flask app.</Summary>
<RuntimeDependencies>
<Dependency>python3-brotli</Dependency>
<Dependency>python3-flask</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
@@ -34,6 +35,13 @@
</Package>
<History>
<Update release="2">
<Date>2020-05-17</Date>
<Version>1.5.0</Version>
<Comment>Minor version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2020-02-14</Date>
<Version>1.4.0</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>More routines for operating on iterables, beyond itertools.</Summary>
<Description>Python's itertools library is a gem - you can compose elegant solutions for a variety of problems with the functions it provides. In more-itertools we collect additional building blocks, recipes, and routines for working with Python iterables.</Description>
<Archive sha1sum="1cdacb51669fdef79b82e88236a7e588720e1e92" type="targz">https://github.com/erikrose/more-itertools/archive/v8.2.0.tar.gz</Archive>
<Archive sha1sum="f6b81d596ff7cee377c4187b09230f254e45f452" type="targz">https://github.com/more-itertools/more-itertools/archive/v8.3.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="2">
<Date>2020-05-16</Date>
<Version>8.3.0</Version>
<Comment>Minor version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2020-02-12</Date>
<Version>8.2.0</Version>
@@ -14,7 +14,7 @@
<IsA>library</IsA>
<Summary>Python documentation generator. It can generate HTML or Latex outputs</Summary>
<Description>It's a very common documentation generator especially using for python3 based documentation.It can generate HTML or PDF, Ps outputs with Latex output support.</Description>
<Archive sha1sum="e3d36202fac5475bc9880a9273977b367de1f11c" type="targz">https://github.com/sphinx-doc/sphinx/archive/v3.0.2.tar.gz</Archive>
<Archive sha1sum="407144e58738321a0238a76c8e60b91b6857e170" type="targz">https://github.com/sphinx-doc/sphinx/archive/v3.0.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -67,6 +67,13 @@
</Package>
<History>
<Update release="10">
<Date>2020-05-16</Date>
<Version>3.0.3</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="9">
<Date>2020-04-22</Date>
<Version>3.0.2</Version>
@@ -13,7 +13,7 @@
<IsA>library</IsA>
<Summary>Sphinx API for Web Apps</Summary>
<Description>python3-sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application.</Description>
<Archive sha1sum="313f4b764872d36f890e76579985e6aaa732f4ca" type="targz">https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.1.tar.gz</Archive>
<Archive sha1sum="9c7e4feaf8744d9c5600ce780db8451fb0075c21" type="targz">https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -45,6 +45,13 @@
</Package>
<History>
<Update release="5">
<Date>2020-05-16</Date>
<Version>1.2.2</Version>
<Comment>Patch version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="4">
<Date>2020-03-27</Date>
<Version>1.2.1</Version>
+43
View File
@@ -0,0 +1,43 @@
#!/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 get
from pisi.actionsapi import pisitools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import shelltools
from pisi.actionsapi import pythonmodules
WorkDir="brotli-%s" % get.srcVERSION()
def setup():
shelltools.cd("..")
shelltools.makedirs("build_python3")
shelltools.copytree("./%s" % WorkDir, "build_python3")
shelltools.cd(WorkDir)
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=/usr/lib \
-DCMAKE_BUILD_TYPE=Release")
def build():
cmaketools.make()
shelltools.cd("../build_python3/%s" % WorkDir)
# fix unused direct dependency analysis
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread -lbz2 -ldl")
pythonmodules.compile(pyVer="3")
def check():
cmaketools.make("test")
shelltools.cd("../build_python3/%s" % WorkDir)
pythonmodules.run("setup.py test", pyVer="3")
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
#pisitools.dodoc("LICENSE*")
shelltools.cd("../build_python3/%s" % WorkDir)
pythonmodules.install(pyVer="3")
+74
View File
@@ -0,0 +1,74 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>brotli</Name>
<Homepage>https://github.com/google/brotli</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>util.archive</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<Summary>Brotli compression format.</Summary>
<Description>Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.</Description>
<Archive sha1sum="ee64a380152aa20fbc1098fe3799104884c570c1" type="targz">https://github.com/google/brotli/archive/v1.0.7.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>brotli</Name>
<Summary>Brotli compression format.</Summary>
<PartOf>util.archive</PartOf>
<RuntimeDependencies>
<!--<Dependency>python3</Dependency>-->
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc/brotli</Path>
</Files>
</Package>
<Package>
<Name>brotli-devel</Name>
<Summary>Development files for brotli.</Summary>
<PartOf>util.archive</PartOf>
<RuntimeDependencies>
<Dependency release="current">brotli</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>python3-brotli</Name>
<Summary>Python bindings for brotli compression format.</Summary>
<PartOf>programming.language.python3</PartOf>
<RuntimeDependencies>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-brotli</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-05-16</Date>
<Version>1.0.7</Version>
<Comment>First release.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
+20
View File
@@ -0,0 +1,20 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>brotli</Name>
<Summary xml:lang="tr">Brotli sıkıştırma biçemi.</Summary>
<Description xml:lang="tr">Brotli, hali hazırda bulanan sıkıştırma biçemleri arasında LZ77 algoritmasının bir türünü, Huffman kodlamasını ve ikinci sıralamalı içerik modellemesini, en iyi sıkıştırma oranıyla kullanan google tarafından geliştirilen bir sıkıştırma aracıdır.</Description>
</Source>
<Package>
<Name>brotli-devel</Name>
<Summary xml:lang="tr">brotli için geliştirme dosyaları</Summary>
<Description xml:lang="tr">brotli-devel, brotli için geliştirme dosyalarını içerir.</Description>
</Package>
<Source>
<Name>python3-brotli</Name>
<Summary xml:lang="tr">Brotli için python bağlayıcıları.</Summary>
<Description xml:lang="tr">python3-brotli, brotli için python bağlayıcıları sunar.</Description>
</Source>
</PISI>