Merge pull request #8553 from blue-devil/master
openmpis added, python packages updated
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
|
||||
|
||||
def setup():
|
||||
# Disable test causing sandbox violations
|
||||
#pisitools.dosed("test/util/Makefile.in", "^(check_PROGRAMS.*?)\sopal_path_nfs\$\(EXEEXT\)", "\\1")
|
||||
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-unused-result -Wno-cpp -Wno-deprecated-declarations -Wno-stringop-overflow -Wno-discarded-qualifiers -Wno-alloc-size-larger-than")
|
||||
shelltools.export("LDFLAGS","%s -Wl,-z,noexecstack" % get.LDFLAGS())
|
||||
shelltools.export("FC", "/usr/bin/gfortran")
|
||||
autotools.configure("--with-valgrind \
|
||||
--without-slurm \
|
||||
--enable-mpi-cxx \
|
||||
--with-hwloc=/usr \
|
||||
--enable-memchecker \
|
||||
--with-libltdl=/usr \
|
||||
--enable-builtin-atomics \
|
||||
--enable-mpi-fortran=all \
|
||||
--sysconfdir=/etc/openmpi \
|
||||
--libdir=/usr/lib/openmpi \
|
||||
--enable-pretty-print-stacktrace")
|
||||
|
||||
# dont touch rpath, it brokes tests
|
||||
#pisitools.dosed("libtool", "^(hardcode_libdir_flag_spec=).*", '\\1""')
|
||||
#pisitools.dosed("libtool", "^(runpath_var=)LD_RUN_PATH", "\\1DIE_RPATH_DIE")
|
||||
# fix unused direct dependency analysis
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def check():
|
||||
autotools.make("check")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE","README*")
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>openmpi</Name>
|
||||
<Homepage>https://www.open-mpi.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>network.misc</PartOf>
|
||||
<License>custom:OpenMPI</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>High performance message passing library (MPI)</Summary>
|
||||
<Description>The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.</Description>
|
||||
<Archive sha1sum="d958454e32da2c86dd32b7d557cf9a401f0a08d3" type="tarbz2">https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-4.0.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>valgrind</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>hwloc-devel</Dependency>
|
||||
<Dependency>libnl-devel</Dependency>
|
||||
<!--
|
||||
<Dependency>numactl</Dependency>
|
||||
<Dependency>libpciaccess-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>openmpi</Name>
|
||||
<Summary>High performance message passing library (MPI)</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>hwloc</Dependency>
|
||||
<Dependency>libnl</Dependency>
|
||||
<!--
|
||||
<Dependency>numactl</Dependency>
|
||||
<Dependency>libgomp</Dependency>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency>libpciaccess</Dependency>
|
||||
-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/pmix</Path>
|
||||
<Path fileType="data">/usr/share/openmpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>openmpi-devel</Name>
|
||||
<Summary>Development files for openmpi</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">openmpi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-22</Date>
|
||||
<Version>4.0.3</Version>
|
||||
<Comment>First Pisi Release</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>openmpi</Name>
|
||||
<Summary xml:lang="tr">Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı</Summary>
|
||||
<Description xml:lang="tr">Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı</Description>
|
||||
<Description xml:lang="fr">Open MPI est un projet combinant les technologies et les ressources de plusieurs autres projets (FT-MPI, LA-MPI, LAM/MPI et PACX-MPI) afin de construire la meilleure librairie MPI disponible. Une implémentation totalement neuve conforme au MPI-2. Open MPI offre des avantages aux vendeurs de systèmes et de logiciels, au développeurs d'applications ainsi qu'aux chercheur en génie logiciel.</Description>
|
||||
<Description xml:lang="es">Open MPI es un proyecto que combina recursos y tecnologías de varios otros proyectos (FT-MPI, LA-MPI, LAM/MPI, y PACX-MPI) para construir la mejor librería MPI. Una implementación MPI-2 compliant completamente nueva, Open MPI ofrece ventajas para fabricantes de sistemas y software, desarrolladores de aplicaciones y investigadores de computación.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>openmpi-devel</Name>
|
||||
<Summary xml:lang="tr">openmpi için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">openmpi-devel, openmpi için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
+125
-18
@@ -1660,6 +1660,73 @@ complete albums that you have purchased from Amazon.</Description>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>openmpi</Name>
|
||||
<Homepage>https://www.open-mpi.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom:OpenMPI</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<PartOf>network.misc</PartOf>
|
||||
<Summary xml:lang="en">High performance message passing library (MPI)</Summary>
|
||||
<Summary xml:lang="tr">Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı</Summary>
|
||||
<Description xml:lang="fr">Open MPI est un projet combinant les technologies et les ressources de plusieurs autres projets (FT-MPI, LA-MPI, LAM/MPI et PACX-MPI) afin de construire la meilleure librairie MPI disponible. Une implémentation totalement neuve conforme au MPI-2. Open MPI offre des avantages aux vendeurs de systèmes et de logiciels, au développeurs d'applications ainsi qu'aux chercheur en génie logiciel.</Description>
|
||||
<Description xml:lang="en">The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers.</Description>
|
||||
<Description xml:lang="tr">Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı</Description>
|
||||
<Description xml:lang="es">Open MPI es un proyecto que combina recursos y tecnologías de varios otros proyectos (FT-MPI, LA-MPI, LAM/MPI, y PACX-MPI) para construir la mejor librería MPI. Una implementación MPI-2 compliant completamente nueva, Open MPI ofrece ventajas para fabricantes de sistemas y software, desarrolladores de aplicaciones y investigadores de computación.</Description>
|
||||
<Archive type="tarbz2" sha1sum="d958454e32da2c86dd32b7d557cf9a401f0a08d3" name="openmpi-4.0.3.tar.bz2">https://download.open-mpi.org/release/open-mpi/v4.0/openmpi-4.0.3.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>valgrind</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>hwloc-devel</Dependency>
|
||||
<Dependency>libnl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>network/misc/openmpi/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>openmpi</Name>
|
||||
<Summary xml:lang="en">High performance message passing library (MPI)</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>hwloc</Dependency>
|
||||
<Dependency>libnl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/pmix</Path>
|
||||
<Path fileType="data">/usr/share/openmpi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<Package>
|
||||
<Name>openmpi-devel</Name>
|
||||
<Summary xml:lang="en">Development files for openmpi</Summary>
|
||||
<Summary xml:lang="tr">openmpi için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">openmpi-devel, openmpi için geliştirme dosyalarını içerir.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="1">openmpi</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-22</Date>
|
||||
<Version>4.0.3</Version>
|
||||
<Comment>First Pisi Release</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>libcddb</Name>
|
||||
@@ -33165,10 +33232,10 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">Python için komut satırı yaratma arayüzü</Summary>
|
||||
<Description xml:lang="en">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>
|
||||
<Description xml:lang="tr">Click, python için en az komut gerektirecek sekilde tasarlanmış komut satırı arayüzü yaratma paketidir. Açılımı "Command Line Interface Creation Kit - Komut Satırı Arayüzü Yaratma Araç Takımı" olan Click bazı varsayılanlarla beraber gelsede yüksek seviyede ayarlanabilir bir yapıya sahiptir.</Description>
|
||||
<Archive type="targz" sha1sum="8d906f756ba7cc44271de41f6fa079e6f9b710fc" name="7.1.1.tar.gz">https://github.com/pallets/click/archive/7.1.1.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="df5cae0c0df77aef5890b35247eff1ff5890d873" name="7.1.2.tar.gz">https://github.com/pallets/click/archive/7.1.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>programming/language/python/python-click/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -33176,11 +33243,18 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Name>python-click</Name>
|
||||
<Summary xml:lang="en">Python composable command line interface toolkit</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-click</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-click</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2020-05-24</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>
|
||||
@@ -34895,11 +34969,11 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">libsmbclient kitaplığı için Python arayüzü</Summary>
|
||||
<Description xml:lang="en">python-smbc is a Python binding for the libsmbclient library.</Description>
|
||||
<Description xml:lang="tr">python-smbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır.</Description>
|
||||
<Archive type="tarbz2" sha1sum="8c1f9fad510aede09182476af39f7104dd86c35a" name="pysmbc-1.0.21.tar.bz2">https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.21.tar.bz2</Archive>
|
||||
<Archive type="targz" sha1sum="32e676c17b03f2bf30368e675fdd1d62da64060a" name="pysmbc-1.0.22.tar.gz">https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.22.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>programming/language/python/python-smbc/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -34908,13 +34982,21 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="en">Python interface to the libsmbclient library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>samba</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-smbc</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-smbc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>1.0.22</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2020-04-22</Date>
|
||||
<Version>1.0.21</Version>
|
||||
@@ -36544,22 +36626,32 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">Python paketleri için çekirdek araçları.</Summary>
|
||||
<Description xml:lang="en">Core utilities for Python packages</Description>
|
||||
<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>
|
||||
<Archive type="targz" sha1sum="27f7a52888a4f6671d6539f010d77e84ed6c80b1" name="20.3.tar.gz">https://github.com/pypa/packaging/archive/20.3.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="984879451ca62c0845139331678246ec85de6a3b" name="20.4.tar.gz">https://github.com/pypa/packaging/archive/20.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>programming/language/python/python-packaging/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>python-packaging</Name>
|
||||
<Summary xml:lang="en">Core utilities for Python packages</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-packaging</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-packaging</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>20.4</Version>
|
||||
<Comment>Minor version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2020-03-11</Date>
|
||||
<Version>20.3</Version>
|
||||
@@ -37741,12 +37833,12 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">Zengin içerikli ve kolay kullanımlı bir kütüphane.</Summary>
|
||||
<Description xml:lang="en">lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language.</Description>
|
||||
<Description xml:lang="tr">Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane.</Description>
|
||||
<Archive type="targz" sha1sum="480c56642262dba897efd726b730cabd69d23364" name="lxml-4.5.0.tar.gz">https://github.com/lxml/lxml/archive/lxml-4.5.0.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="ef918ed5264baf1d16b5fe88c6faf43b0256fbd1" name="lxml-4.5.1.tar.gz">https://github.com/lxml/lxml/archive/lxml-4.5.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>cython</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>programming/language/python/python-lxml/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -37754,8 +37846,9 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Name>python-lxml</Name>
|
||||
<Summary xml:lang="en">lxml is the most feature-rich and easy-to-use library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
@@ -37767,13 +37860,20 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<Summary xml:lang="tr">python-lxml paketine ait API belgeleri</Summary>
|
||||
<Description xml:lang="tr">python-lxml-docs, python-lxml paketine ait API belgeleri içerir.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="7">python-lxml</Dependency>
|
||||
<Dependency release="8">python-lxml</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>4.5.1</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-02-06</Date>
|
||||
<Version>4.5.0</Version>
|
||||
@@ -38092,10 +38192,10 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
<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="en">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>
|
||||
<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>
|
||||
<Archive type="targz" sha1sum="28495afad109bc6c6249921afdf594a120b6b97f" name="1.25.8.tar.gz">https://github.com/urllib3/urllib3/archive/1.25.8.tar.gz</Archive>
|
||||
<Archive type="targz" sha1sum="8976ccc7ccef5b27ea5bdaaf9655cab4512388fa" name="1.25.9.tar.gz">https://github.com/urllib3/urllib3/archive/1.25.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
<SourceURI>programming/language/python/python-urllib3/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
@@ -38108,6 +38208,13 @@ functionality to build high-performing, platform-independent programs.</Descript
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>1.25.9</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2020-01-23</Date>
|
||||
<Version>1.25.8</Version>
|
||||
|
||||
@@ -1 +1 @@
|
||||
70375f8ab13d5038e9a67dd158d0a5e95eb809bd
|
||||
c0f27dd0899441597fe31679267544113991edb2
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
9fc98a94030ba93d662693f840a8ea6cbc7d9cc4
|
||||
c0d10fbcc001fadea305a8e912a6592eca2a84d1
|
||||
@@ -4,9 +4,9 @@
|
||||
# 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
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
@@ -13,10 +13,10 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python 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>python-setuptools</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -24,12 +24,19 @@
|
||||
<Name>python-click</Name>
|
||||
<Summary>Python composable command line interface toolkit</Summary>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-click</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-click</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2020-05-24</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>
|
||||
|
||||
@@ -4,10 +4,10 @@
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/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 pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
|
||||
#WorkDir = "lxml-%s" % get.srcVERSION()
|
||||
|
||||
|
||||
@@ -14,12 +14,12 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>lxml is the most feature-rich and easy-to-use library</Summary>
|
||||
<Description>lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language.</Description>
|
||||
<Archive sha1sum="480c56642262dba897efd726b730cabd69d23364" type="targz">https://github.com/lxml/lxml/archive/lxml-4.5.0.tar.gz</Archive>
|
||||
<Archive sha1sum="ef918ed5264baf1d16b5fe88c6faf43b0256fbd1" type="targz">https://github.com/lxml/lxml/archive/lxml-4.5.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>cython</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<!-- dependencies for documentation -->
|
||||
<!-- to generate documentation is problematic
|
||||
epydoc is not supported any more and
|
||||
@@ -35,8 +35,9 @@
|
||||
<Name>python-lxml</Name>
|
||||
<Summary>lxml is the most feature-rich and easy-to-use library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
@@ -55,6 +56,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>4.5.1</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-02-06</Date>
|
||||
<Version>4.5.0</Version>
|
||||
|
||||
@@ -13,23 +13,33 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Core utilities for Python packages</Summary>
|
||||
<Description>Core utilities for Python packages</Description>
|
||||
<Archive sha1sum="27f7a52888a4f6671d6539f010d77e84ed6c80b1" type="targz">https://github.com/pypa/packaging/archive/20.3.tar.gz</Archive>
|
||||
<Archive sha1sum="984879451ca62c0845139331678246ec85de6a3b" type="targz">https://github.com/pypa/packaging/archive/20.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-packaging</Name>
|
||||
<Summary>Core utilities for Python packages</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-packaging</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-packaging</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>20.4</Version>
|
||||
<Comment>Minor version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2020-03-11</Date>
|
||||
<Version>20.3</Version>
|
||||
|
||||
@@ -5,9 +5,9 @@
|
||||
# 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 shelltools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings
|
||||
|
||||
@@ -13,11 +13,11 @@
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python interface to the libsmbclient library</Summary>
|
||||
<Description>python-smbc is a Python binding for the libsmbclient library.</Description>
|
||||
<Archive sha1sum="8c1f9fad510aede09182476af39f7104dd86c35a" type="tarbz2">https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.21.tar.bz2</Archive>
|
||||
<Archive sha1sum="32e676c17b03f2bf30368e675fdd1d62da64060a" type="targz">https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.22.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -26,14 +26,22 @@
|
||||
<Summary>Python interface to the libsmbclient library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>samba</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-smbc</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-smbc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="9">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>1.0.22</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2020-04-22</Date>
|
||||
<Version>1.0.21</Version>
|
||||
|
||||
@@ -13,10 +13,10 @@
|
||||
<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="28495afad109bc6c6249921afdf594a120b6b97f" type="targz">https://github.com/urllib3/urllib3/archive/1.25.8.tar.gz</Archive>
|
||||
<Archive sha1sum="8976ccc7ccef5b27ea5bdaaf9655cab4512388fa" type="targz">https://github.com/urllib3/urllib3/archive/1.25.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -30,6 +30,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-05-24</Date>
|
||||
<Version>1.25.9</Version>
|
||||
<Comment>Patch version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2020-01-23</Date>
|
||||
<Version>1.25.8</Version>
|
||||
|
||||
Reference in New Issue
Block a user