Merge pull request #7687 from blue-devil/master

version bumps of python packages
This commit is contained in:
2020-01-23 21:13:42 +02:00
committed by GitHub
37 changed files with 214174 additions and 213534 deletions
+213731 -213458
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
85ad659f72c5ca89767c3237880c67b4fc926f0c
eaebd3940a447abda4f31298819fc9b4eca3c3a5
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
1ead1cc22d3598e50657003cad4a59f6cc79a8c0
06d907630d3f4b1d6d4342a5909e8855fcda2509
@@ -0,0 +1,18 @@
#!/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
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
def build():
pythonmodules.compile()
def install():
pythonmodules.install()
pisitools.domove("/usr/LICENSE", "/usr/share/doc/python-anytree")
@@ -0,0 +1,45 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-anytree</Name>
<Homepage>https://github.com/c0fec0de/anytree</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Powerful and Lightweight Python Tree Data Structure</Summary>
<Description>Simple, lightweight and extensible Tree data structure.</Description>
<Archive sha1sum="a9ffb195c7b5fa2590259397f40fe15c0d53638a" type="targz">https://github.com/c0fec0de/anytree/archive/2.8.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>python-six</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-anytree</Name>
<Summary>Powerful and Lightweight Python Tree Data Structure</Summary>
<RuntimeDependencies>
<Dependency>python-six</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
<Path fileType="doc">/usr/share/doc/python-anytree</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-23</Date>
<Version>2.8.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>python-anytree</Name>
<Summary xml:lang="tr">AnyTree için Python bağlayıcıları.</Summary>
<Description xml:lang="tr">python-anytree, python için güçlü ve hafif ağaç veri yapıları sunan bir python kitaplığıdır.</Description>
</Source>
</PISI>
@@ -0,0 +1,12 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/copyleft/gpl.txt
from pisi.actionsapi import pythonmodules
def build():
pythonmodules.compile()
def install():
pythonmodules.install()
@@ -0,0 +1,50 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-docker</Name>
<Homepage>https://github.com/docker/docker-py</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>Apache</License>
<IsA>library</IsA>
<Summary>A Python library for the Docker Engine API.</Summary>
<Description>A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps run containers, manage containers, manage Swarms, etc.</Description>
<Archive sha1sum="ceb0eac885a383539a96b4ed336463ffd64ec351" type="targz">https://github.com/docker/docker-py/archive/4.1.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-websocket-client</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python-requests</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>python-six</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-docker</Name>
<Summary>A Python library for the Docker Engine API.</Summary>
<RuntimeDependencies>
<Dependency>python-backports-ssl-match-hostname</Dependency>
<Dependency>python-websocket-client</Dependency>
<Dependency>python-requests</Dependency>
<Dependency>python-six</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
<Path fileType="doc">/usr/share/doc/python-docker</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-15</Date>
<Version>4.10</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-docker</Name>
<Summary xml:lang="tr">Docker motoru apileri için python kitaplığı.</Summary>
<Description xml:lang="tr">python-docker, docker motoru apileri için python kitaplığı sunar.</Description>
</Source>
</PISI>
@@ -5,17 +5,14 @@
# 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 shelltools
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
WorkDir = "Mako-%s" % get.srcVERSION()
def build():
pythonmodules.compile()
def install():
pythonmodules.install()
@@ -14,16 +14,18 @@
<IsA>library</IsA>
<Summary>A python templating language</Summary>
<Description>python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages.</Description>
<Archive sha1sum="2b1158ba4e086257f23aa25f82f052644f316b7c" type="targz">https://files.pythonhosted.org/packages/b0/3c/8dcd6883d009f7cae0f3157fb53e9afb05a0d3d33b3db1268ec2e6f4a56b/Mako-1.1.0.tar.gz</Archive>
<Archive sha1sum="42147cc1cae0c65824b6fa0211a8c99cd0056766" type="targz">https://files.pythonhosted.org/packages/28/03/329b21f00243fc2d3815399413845dbbfb0745cff38a29d3597e97f8be58/Mako-1.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-MarkupSafe</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python-beaker</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-mako</Name>
<Summary>A python templating language</Summary>
<Summary>A python templating language</Summary>
<RuntimeDependencies>
<Dependency>python-MarkupSafe</Dependency>
<Dependency>python-beaker</Dependency>
@@ -37,7 +39,7 @@
<Package>
<Name>python-mako-docs</Name>
<Summary>Documentation files for raptor python-mako</Summary>
<Summary>Documentation files for python-mako</Summary>
<RuntimeDependencies>
<Dependency release="current">python-mako</Dependency>
</RuntimeDependencies>
@@ -50,8 +52,8 @@
<History>
<Update release="6">
<Date>2020-01-20</Date>
<Version>1.1.0</Version>
<Date>2020-01-23</Date>
<Version>1.1.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
@@ -8,12 +8,12 @@
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<License>Apache</License>
<PartOf>programming.language.python</PartOf>
<License>Apache</License>
<IsA>library</IsA>
<Summary>Core utilities for Python packages</Summary>
<Description>Core utilities for Python packages</Description>
<Archive sha1sum="fd70f0604b28ccaa4bbc74e9d69b9e2d4cd50aea" type="targz">https://github.com/pypa/packaging/archive/19.2.tar.gz</Archive>
<Archive sha1sum="159c2823ce2291542c72e74efedcf3289e555708" type="targz">https://github.com/pypa/packaging/archive/20.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
@@ -30,6 +30,13 @@
</Package>
<History>
<Update release="2">
<Date>2020-01-23</Date>
<Version>20.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-12-30</Date>
<Version>19.2</Version>
@@ -38,4 +45,4 @@
<Email>bluedevil@sctzine.com</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -4,4 +4,4 @@
<Summary xml:lang="tr">Python paketleri için çekirdek araçları.</Summary>
<Description xml:lang="tr">python-packaging projesi python paketleri yapmayı kolaylaştıran, sürümleme, belirteçler işaretçiler gereklilikler(bağımlılık), etiketler ve araçları içerir.</Description>
</Source>
</PISI>
</PISI>
@@ -0,0 +1,18 @@
#!/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()
#pythonmodules.run("setup.py build_sphinx")
def check():
pythonmodules.compile("test")
def install():
pythonmodules.install()
@@ -0,0 +1,44 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-setuptools-scm</Name>
<Homepage>https://github.com/pypa/setuptools_scm</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>Python setuptools-scm module</Summary>
<Description>Tsetuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file.</Description>
<Archive sha1sum="8c4d2077ddb84470099f6cad64c7c24fb5ec5f3b" type="targz">https://pypi.io/packages/source/s/setuptools_scm/setuptools_scm-3.3.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
<!--<Dependency>python-sphinx</Dependency>-->
</BuildDependencies>
</Source>
<Package>
<Name>python-setuptools-scm</Name>
<Summary>Python setuptools-scm module</Summary>
<RuntimeDependencies>
<Dependency>python-setuptools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-11-28</Date>
<Version>3.3.3</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-setuptools-scm</Name>
<Summary xml:lang="tr">Python setuptools-scm modülü</Summary>
<Description xml:lang="tr">setuptools-scm python paket versiyonlarını SCM metadataları kullanarak yönetmenizi sağlayan python modülüdür.</Description>
</Source>
</PISI>
@@ -8,15 +8,15 @@
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>urllib3 is a powerful, sanity-friendly HTTP client for Python.</Summary>
<Description>urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries.</Description>
<Archive sha1sum="e47468a95c66d5eed276facc776027b86b390dcf" type="targz">https://github.com/urllib3/urllib3/archive/1.25.7.tar.gz</Archive>
<Archive sha1sum="28495afad109bc6c6249921afdf594a120b6b97f" type="targz">https://github.com/urllib3/urllib3/archive/1.25.8.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-devel</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
@@ -30,6 +30,13 @@
</Package>
<History>
<Update release="4">
<Date>2020-01-23</Date>
<Version>1.25.8</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2019-12-24</Date>
<Version>1.25.7</Version>
@@ -52,4 +59,4 @@
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -5,4 +5,4 @@
<Summary xml:lang="tr">urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır.</Summary>
<Description xml:lang="tr">urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. urllib3 Python standart kütüphanesinde bulunmayan kritik özellikleri içerir.</Description>
</Source>
</PISI>
</PISI>
@@ -10,7 +10,7 @@ from pisi.actionsapi import pisitools
def setup():
shelltools.system("mkdir -p cldr")
shelltools.system("cp core.zip cldr/cldr-core-35.1.zip")
shelltools.system("cp core.zip cldr/cldr-core-36.zip")
def build():
pythonmodules.run("setup.py import_cldr", pyVer="3")
@@ -8,13 +8,13 @@
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<PartOf>programming.language.python3</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<Summary>A collection of tools for internationalizing Python applications</Summary>
<Description>Babel is composed of two major parts: 1) tools to build and work with gettext message catalogs , 2) a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc.</Description>
<Archive sha1sum="6012496b189a46fd555a4b3479442cc8c952bb3d" type="targz">https://github.com/python-babel/babel/archive/v2.7.0.tar.gz</Archive>
<Archive sha1sum="f050b458cf5f29c2a3825247fb8a7b5e21471009" type="binary" target="babel-2.7.0">https://www.unicode.org/Public/cldr/35.1/core.zip</Archive>
<Archive sha1sum="10491e41aabf5a01bc98c5b9c0fa162881c69701" type="targz">https://github.com/python-babel/babel/archive/v2.8.0.tar.gz</Archive>
<Archive sha1sum="adaed5663b787591d11ce5dc3ed880ad215c33ce" type="binary" target="babel-2.8.0">https://www.unicode.org/Public/cldr/36/core.zip</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
@@ -30,13 +30,20 @@
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-Babel</Path>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
</Package>
<History>
<Update release="3">
<Date>2020-01-23</Date>
<Version>2.8.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="2">
<Date>2019-12-30</Date>
<Version>2.7.0</Version>
@@ -52,4 +59,4 @@
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -5,4 +5,4 @@
<Summary xml:lang="tr">Python uygulamalarını uluslararasılaştırmak için bir takım koleksiyonu</Summary>
<Description xml:lang="tr">Babel temelde iki parçadan oluşur: 1) gettext mesaj kataloglarıyla çalışmak ve onları derlemek için araçlar 2) CLDR(Common Locale Data Repository), Genel Yerel Veri Deposuna, çeşitli yerel gösterim isimlerine ulaşımı sağlamak, yerelleştirilmiş numara ve tarih biçimlerini desteklemek gibi özellikler sağlayan bir python arayüzü.</Description>
</Source>
</PISI>
</PISI>
@@ -5,15 +5,14 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pythonmodules
from pisi.actionsapi import get
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
def build():
pythonmodules.compile(pyVer="3")
def install():
pythonmodules.install(pyVer="3")
pisitools.domove("/usr/LICENSE", "/usr/share/doc")
pisitools.domove("/usr/LICENSE", "/usr/share/doc/python3-anytree")
@@ -1,37 +1,47 @@
<?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-anytree</Name>
<Homepage>https://beaker.groovie.org/</Homepage>
<Homepage>https://github.com/c0fec0de/anytree</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>BSD</License>
<IsA>library</IsA>
<Summary>Powerful and Lightweight Python Tree Data Structure</Summary>
<Description>Simple, lightweight and extensible Tree data structure.</Description>
<Archive sha1sum="ca91f86675694f62a3966237929cd2474f3828d9" type="targz">https://github.com/c0fec0de/anytree/archive/2.7.3.tar.gz</Archive>
<Archive sha1sum="a9ffb195c7b5fa2590259397f40fe15c0d53638a" type="targz">https://github.com/c0fec0de/anytree/archive/2.8.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-six</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-anytree</Name>
<Summary>Powerful and Lightweight Python Tree Data Structure</Summary>
<RuntimeDependencies>
<Dependency>python3-six</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="doc">/usr/share/doc/python3-anytree</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-01-23</Date>
<Version>2.8.0</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2020-01-14</Date>
<Version>2.7.3</Version>
@@ -40,4 +50,4 @@
<Email>idriskalp@gmail.com</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>python3-anytree</Name>
<Summary xml:lang="tr">AnyTree için Python bağlayıcıları.</Summary>
<Description xml:lang="tr">python3-anytree, anytree için Python bağlayıcılarını içerir.</Description>
</Source>
</PISI>
@@ -8,15 +8,15 @@
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<License>BSD3</License>
<PartOf>programming.language.python3</PartOf>
<License>BSD3</License>
<IsA>library</IsA>
<Summary>Chromium HSTS Preload list as a Python package and updated daily.</Summary>
<Description>Chromium HSTS Preload list as a Python package and updated daily. The package provides a single function: in_hsts_preload() which takes an IDNA-encoded host and returns either True or False regarding whether that host should be only accessed via HTTPS.</Description>
<Archive sha1sum="eeb710b7e70ce118afcecc49e783716177d234aa" type="targz">https://github.com/sethmlarson/hstspreload/archive/2020.1.15.tar.gz</Archive>
<Archive sha1sum="f9fe6dbc67097ddc8bf67a7eca3e22f0e9cad7e2" type="targz">https://github.com/sethmlarson/hstspreload/archive/2020.1.22.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
@@ -27,13 +27,20 @@
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/python3-hstspreload</Path>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-01-23</Date>
<Version>2020.1.22</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2020-01-15</Date>
<Version>2020.1.15</Version>
@@ -8,15 +8,15 @@
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<License>BSDv3</License>
<PartOf>programming.language.python3</PartOf>
<License>BSDv3</License>
<IsA>library</IsA>
<Summary>The next generation HTTP client.</Summary>
<Description>HTTPX is a fully featured HTTP client for Python 3, which provides sync and async APIs, and support for both HTTP/1.1 and HTTP/2.</Description>
<Archive sha1sum="585b73af299f8dd0f2f8c77cf6b1ec4b680f649d" type="targz">https://github.com/encode/httpx/archive/0.11.0.tar.gz</Archive>
<Archive sha1sum="1bef3ce1a9cf0bc0ad86219117abfab94b7a0d0d" type="targz">https://github.com/encode/httpx/archive/0.11.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
@@ -27,7 +27,7 @@
<Dependency>python3</Dependency>
<Dependency>python3-h2</Dependency>
<Dependency>python3-h11</Dependency>
<Dependency>python3-sniffio</Dependency>
<Dependency>python3-sniffio</Dependency>
<Dependency>python3-certifi</Dependency>
<Dependency>python3-chardet</Dependency>
<Dependency>python3-rfc3986</Dependency>
@@ -35,13 +35,20 @@
<Dependency>python3-hstspreload</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc/python3-httpx</Path>
<Path fileType="library">/usr/lib/python3*</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2020-01-23</Date>
<Version>0.11.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2020-01-15</Date>
<Version>0.11.0</Version>
@@ -5,9 +5,9 @@
# 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 shelltools
shelltools.export("PYTHONDONTWRITEBYTECODE", "1")
@@ -20,4 +20,4 @@ def install():
#pisitools.dodoc("doc/*.txt")
pisitools.dohtml("doc/*.html")
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "doc/build")
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
@@ -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-mako</Name>
@@ -8,36 +8,39 @@
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>MIT</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Summary>A python3 templating language</Summary>
<Description>python3-mako is a super-fast templating language that borrows the best ideas from the existing templating languages.</Description>
<Archive sha1sum="2b1158ba4e086257f23aa25f82f052644f316b7c" type="targz">https://files.pythonhosted.org/packages/b0/3c/8dcd6883d009f7cae0f3157fb53e9afb05a0d3d33b3db1268ec2e6f4a56b/Mako-1.1.0.tar.gz</Archive>
<Archive sha1sum="42147cc1cae0c65824b6fa0211a8c99cd0056766" type="targz">https://files.pythonhosted.org/packages/28/03/329b21f00243fc2d3815399413845dbbfb0745cff38a29d3597e97f8be58/Mako-1.1.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-MarkupSafe</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-beaker</Dependency>
<Dependency>python3-MarkupSafe</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-mako</Name>
<Summary>A python3 templating language</Summary>
<RuntimeDependencies>
<Dependency>python3</Dependency>
<Dependency>python3-beaker</Dependency>
<Dependency>python3-MarkupSafe</Dependency>
<Dependency>python3-beaker</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="library">/usr/lib</Path>
</Files>
</Package>
<Package>
<Name>python3-mako-docs</Name>
<Summary>Documentation files for python3-mako</Summary>
<RuntimeDependencies>
<Dependency release="current">python3-mako</Dependency>
</RuntimeDependencies>
@@ -49,7 +52,14 @@
</Package>
<History>
<Update release="2">
<Update release="4">
<Date>2020-01-23</Date>
<Version>1.1.1</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2020-01-08</Date>
<Version>1.1.0</Version>
<Comment>Version bump</Comment>
@@ -71,4 +81,4 @@
<Email>muscnsl@gmail.com</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -9,5 +9,6 @@
<Package>
<Name>python3-mako-docs</Name>
<Summary xml:lang="tr">python3-mako için belgelendirme dosyaları</Summary>
<Description xml:lang="tr">python3-mako-docs, python3-mako için belgelendirme dosyalarını içerir.</Description>
</Package>
</PISI>
</PISI>
@@ -0,0 +1,18 @@
#!/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")
#pythonmodules.run("setup.py build_sphinx", pyVer="3")
def check():
pythonmodules.compile("test", pyVer="3")
def install():
pythonmodules.install(pyVer="3")
@@ -0,0 +1,52 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-setuptools-scm</Name>
<Homepage>https://github.com/pypa/setuptools_scm</Homepage>
<Packager>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<License>MIT</License>
<IsA>library</IsA>
<Summary>Python3 setuptools-scm module</Summary>
<Description>Tsetuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file.</Description>
<Archive sha1sum="8c4d2077ddb84470099f6cad64c7c24fb5ec5f3b" type="targz">https://pypi.io/packages/source/s/setuptools_scm/setuptools_scm-3.3.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
<!--<Dependency>python-sphinx</Dependency>-->
</BuildDependencies>
</Source>
<Package>
<Name>python3-setuptools-scm</Name>
<Summary>Python3 setuptools-scm module</Summary>
<RuntimeDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2019-12-11</Date>
<Version>3.3.3</Version>
<Comment>First pisi release</Comment>
<Name>Blue DeviL</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="1">
<Date>2019-11-28</Date>
<Version>3.3.3</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-setuptools-scm</Name>
<Summary xml:lang="tr">Python3 setuptools-scm modülü</Summary>
<Description xml:lang="tr">setuptools-scm python paket versiyonlarını SCM metadataları kullanarak yönetmenizi sağlayan python3 modülüdür.</Description>
</Source>
</PISI>
@@ -8,15 +8,15 @@
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MIT</License>
<PartOf>programming.language.python3</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>urllib3 is a powerful, sanity-friendly HTTP client for Python.</Summary>
<Description>urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries.</Description>
<Archive sha1sum="e47468a95c66d5eed276facc776027b86b390dcf" type="targz">https://github.com/urllib3/urllib3/archive/1.25.7.tar.gz</Archive>
<Archive sha1sum="28495afad109bc6c6249921afdf594a120b6b97f" type="targz">https://github.com/urllib3/urllib3/archive/1.25.8.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
</Source>
@@ -33,6 +33,13 @@
</Package>
<History>
<Update release="4">
<Date>2020-01-23</Date>
<Version>1.25.8</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="3">
<Date>2019-12-24</Date>
<Version>1.25.7</Version>
@@ -55,4 +62,4 @@
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -5,4 +5,4 @@
<Summary xml:lang="tr">urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır.</Summary>
<Description xml:lang="tr">urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. urllib3 Python standart kütüphanesinde bulunmayan kritik özellikleri içerir.</Description>
</Source>
</PISI>
</PISI>
@@ -8,15 +8,16 @@
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<PartOf>programming.language.python3</PartOf>
<License>GPLv3</License>
<Icon>youtube_dl</Icon>
<IsA>app:console</IsA>
<Summary>Youtube Video Downloader</Summary>
<Description>Youtube Video Downloader</Description>
<Archive sha1sum="45800d02502281c0e05ca8734a98ca9e7d926782" type="targz">https://yt-dl.org/downloads/2020.01.01/youtube-dl-2020.01.01.tar.gz</Archive>
<Archive sha1sum="a0fcb6952b789c1f0866ca9a738ecd65c02888d5" type="targz">https://yt-dl.org/downloads/latest/youtube-dl-2020.01.15.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-setuptools</Dependency>
<Dependency versionFrom="3.8.0">python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
</BuildDependencies>
</Source>
@@ -25,18 +26,26 @@
<Summary>Youtube Video Downloader</Summary>
<RuntimeDependencies>
<Dependency versionFrom="3.8.0">python3</Dependency>
<Dependency>python3-setuptools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/etc/bash_completion.d</Path>
<Path fileType="data">/etc/fish</Path>
<Path fileType="data">/usr/lib/python3*</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/etc/bash_completion.d</Path>
<Path fileType="data">/usr/share/man/man1</Path>
<Path fileType="data">/usr/lib/python3*</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc/</Path>
<Path fileType="data">/etc/fish</Path>
</Files>
</Package>
<History>
<Update release="13">
<Date>2020-01-23</Date>
<Version>2020.01.15</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="12">
<Date>2020-01-10</Date>
<Version>2020.01.01</Version>
@@ -136,4 +145,4 @@
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
</PISI>
@@ -5,4 +5,4 @@
<Summary xml:lang="tr">Youtube video indirici.</Summary>
<Description xml:lang="tr">Youtube ve benzeri video oynatan sitelerden video indirmeyi sağlayan bir uygulama.</Description>
</Source>
</PISI>
</PISI>