Merge pull request #7965 from blue-devil/master

ver bumps and new packages for pgadmin4 vol1
This commit is contained in:
2020-02-20 11:29:32 +02:00
committed by GitHub
14 changed files with 224560 additions and 224306 deletions
+224399 -224300
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
ffc70370c348ce65e321c277a525698c29fad917
773764cccee3ff008c92deb0179801f4df877974
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
510be372449858d8c343a9e6c78346c50c0eab13
d39100d7fb06c43b9bf5c5b1b42b3bbbedadc9bd
@@ -8,12 +8,12 @@
<Name>Pisi Linux Admins</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>Artistic</License>
<PartOf>programming.language.perl</PartOf>
<License>Artistic</License>
<IsA>library</IsA>
<Summary>Nearly transparent SSL encapsulation for IO::Socket::INET</Summary>
<Description>IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET.</Description>
<Archive sha1sum="4eacd69b81f7edae24135a53411cf87429584289" type="targz">https://cpan.metacpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-2.066.tar.gz</Archive>
<Archive sha1sum="aa82e352ad50e7ff979c6d8cea71f84505d554e3" type="targz">https://cpan.metacpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-2.067.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl-Net-SSLeay</Dependency>
<Dependency>perl</Dependency>
@@ -35,6 +35,13 @@
</Package>
<History>
<Update release="7">
<Date>2020-02-18</Date>
<Version>2.067</Version>
<Comment>Version bump.</Comment>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Update>
<Update release="6">
<Date>2020-01-13</Date>
<Version>2.066</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 shelltools
from pisi.actionsapi import pisitools
def build():
shelltools.system("python -m compileall .")
def install():
pisitools.insinto("/usr/lib/python2.7/site-packages/backports/", "__init__.py")
pisitools.insinto("/usr/lib/python2.7/site-packages/backports/", "__init__.pyc")
@@ -0,0 +1,2 @@
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
@@ -0,0 +1,44 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python-backports</Name>
<Homepage>http://bitbucket.org/brandon/backports</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>Namespace for backported Python features.</Summary>
<Description>python-backports provides namespace for backported Python features.</Description>
<Archive sha1sum="edcff95671a8b7ae03a41707290247f1f8ff681b" type="targz">https://bitbucket.org/brandon/backports/get/tip.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
<AdditionalFiles>
<AdditionalFile owner="root" target="__init__.py" permission="0644">__init__.py</AdditionalFile>
</AdditionalFiles>
</Source>
<Package>
<Name>python-backports</Name>
<Summary>Namespace for backported Python features</Summary>
<Files>
<Path fileType="doc">/usr/share/doc/python-backports</Path>
<Path fileType="library">/usr/lib/python2*</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-02-17</Date>
<Version>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>python-backports</Name>
<Summary xml:lang="tr">Geriye dönüklüğü olan python modülleri için alan adı.</Summary>
<Description xml:lang="tr">python-backport, geriye dönüklüğü olan python modülleri için alan adı sağlar.</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","4.0.2")
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-configparser</Name>
<Homepage>https://github.com/jaraco/configparser/</Homepage>
<Packager>
<Name>Blue Devil</Name>
<Email>bluedevil@sctzine.com</Email>
</Packager>
<PartOf>programming.language.python</PartOf>
<License>MIT</License>
<IsA>library</IsA>
<Summary>Backport of configparser from Python 3.</Summary>
<Description>The ancient ConfigParser module available in the standard library 2.x has seen a major update in Python 3.2. This is a backport of those changes so that they can be used directly in Python 2.6 - 3.5.</Description>
<Archive sha1sum="10840d869ec6acf99c2a5ad64a7156eaada02834" type="targz">https://github.com/jaraco/configparser/archive/v4.0.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools-scm</Dependency>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python-configparser</Name>
<Summary>Backport of configparser from Python 3</Summary>
<RuntimeDependencies>
<!--<Dependency>python-backports</Dependency>-->
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc/python-configparser</Path>
<Path fileType="library">/usr/lib/python2*</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-02-17</Date>
<Version>4.0.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-configparser</Name>
<Summary xml:lang="tr">Python3'ten geriye dönüklüğü sağlamak için configparser modülü.</Summary>
<Description xml:lang="tr">python-configparser, python3'te gelen configparser modülünün geriye dönüklüğünü sağlar.</Description>
</Source>
</PISI>
@@ -5,6 +5,9 @@
# 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","3.5.0")
def build():
pythonmodules.compile()
@@ -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>python-setuptools-scm</Name>
@@ -13,7 +13,7 @@
<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="0be83815235151e5dbaec95c42b9705a387f11cd" type="targz">https://files.pythonhosted.org/packages/fe/bd/bc2fe0b14ce234bb5e2af5f3b574c5a8ef1b7845bfa41e7cf69a78627ec8/setuptools_scm-3.4.3.tar.gz</Archive>
<Archive sha1sum="9f98635858ccecbc9332fd0efcf9153544b101bd" type="targz">https://github.com/pypa/setuptools_scm/archive/v3.5.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>python-setuptools</Dependency>
<Dependency>python-devel</Dependency>
@@ -34,6 +34,13 @@
</Package>
<History>
<Update release="3">
<Date>2020-02-18</Date>
<Version>3.5.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>3.4.3</Version>