+213153
-212475
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
ed2e03651600e8f8d76ae76670f10e87c45fdcbc
|
||||
9b57efcb7b12f2db70c6107fd9dfa61683adfc62
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
d6ec40a6d5b19e894aeaf6e9071003121ce4d496
|
||||
14d22b6f5e1ee24f916cf4cf6efe589c404af801
|
||||
@@ -4,37 +4,24 @@
|
||||
# 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 shelltools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
import os
|
||||
|
||||
#WorkDir = "pygame-%srelease" % get.srcVERSION()
|
||||
docdir = "%s/%s" % (get.docDIR(), get.srcNAME())
|
||||
pyversion = get.curPYTHON().replace("python", "")
|
||||
arch = get.ARCH().replace("-", "_")
|
||||
|
||||
def fixperms(d):
|
||||
for root, dirs, files in os.walk(d):
|
||||
for name in dirs:
|
||||
shelltools.chmod(os.path.join(root, name), 0755)
|
||||
for name in files:
|
||||
shelltools.chmod(os.path.join(root, name), 0644)
|
||||
|
||||
def setup():
|
||||
for d in ["src", "lib", "docs", "examples"]:
|
||||
fixperms(d)
|
||||
|
||||
pythonmodules.run("config.py -auto")
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings:
|
||||
pisitools.cflags.add("-Wno-format -Wno-comment -Wno-unused -Wno-incompatible-pointer-types \
|
||||
-Wno-logical-not-parentheses -Wno-bool-compare -Wno-maybe-uninitialized \
|
||||
-Wno-discarded-qualifiers -Wno-pointer-sign -Wno-pointer-to-int-cast \
|
||||
-Wno-unknown-pragmas")
|
||||
# fix unused dependency analysis:
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
|
||||
pythonmodules.compile()
|
||||
shelltools.copy("lib/pygame_icon.bmp", "build/lib.linux-%s-%s/pygame/" % (arch, pyversion))
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.insinto(docdir, "docs", "html")
|
||||
pisitools.insinto(docdir, "examples")
|
||||
pisitools.insinto(docdir, "docs", "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>pygame</Name>
|
||||
@@ -8,68 +8,89 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python game library</Summary>
|
||||
<Description>Python bindings to sdl and other libs that facilitate game production.</Description>
|
||||
<Archive sha1sum="de6508b831c8d9061c5d22d9e6237d8535255aae" type="targz">https://github.com/pygame/pygame/archive/1.9.4.tar.gz</Archive>
|
||||
<Archive sha1sum="4daa159e35a4f0fec81b2a6862da861296d9435a" type="targz">https://github.com/pygame/pygame/archive/1.9.6.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
<Dependency>sdl-ttf-devel</Dependency>
|
||||
<Dependency>sdl-image-devel</Dependency>
|
||||
<Dependency>smpeg-devel</Dependency>
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>portmidi-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>sdl-image-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
<Dependency>portmidi-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>sdl-ttf-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<!--
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>smpeg-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
<!--<Patches>
|
||||
<Patch>config.patch</Patch>
|
||||
<Patch level="1">pygame-1.9.1-config.patch</Patch>
|
||||
<Patch level="1">pygame-1.9.1-no-test-install.patch</Patch>
|
||||
<Patch level="1">pygame-1.9.1-porttime.patch</Patch>
|
||||
<Patch level="1">pygame-remove-v4l.patch</Patch>
|
||||
</Patches>-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pygame</Name>
|
||||
<Summary>Python game library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<Dependency>sdl-mixer</Dependency>
|
||||
<Dependency>sdl-ttf</Dependency>
|
||||
<Dependency>sdl-image</Dependency>
|
||||
<Dependency>smpeg</Dependency>
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>portmidi</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>sdl-image</Dependency>
|
||||
<Dependency>sdl-mixer</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>portmidi</Dependency>
|
||||
<Dependency>sdl-ttf</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<!--
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>smpeg</Dependency>
|
||||
-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>pygame-devel</Name>
|
||||
<Summary>Development files for python game library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">pygame</Dependency>
|
||||
<Dependency>sdl-image-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
<Dependency>sdl-ttf-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="doc">/usr/share/doc/pygame/examples/*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>pygame-doc</Name>
|
||||
<Summary>Documentation files for python game library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">pygame</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/doc/pygame/README.rst</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.9.6</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-29</Date>
|
||||
<Version>1.9.4</Version>
|
||||
@@ -99,4 +120,4 @@
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -3,8 +3,20 @@
|
||||
<Source>
|
||||
<Name>pygame</Name>
|
||||
<Summary xml:lang="tr">Python oyun kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri</Description>
|
||||
<Description xml:lang="tr">Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri içerir.</Description>
|
||||
<Description xml:lang="fr">Liens (bindings) Python pour dsl et autres librairies facilitant la création de jeux.</Description>
|
||||
<Description xml:lang="es">Acceso con Python a sdl y otras librerías que facilitan produccion de juegos</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
<Package>
|
||||
<Name>pygame-devel</Name>
|
||||
<Summary xml:lang="tr">pygame için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">pygame-devel, pygame için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>pygame-docs</Name>
|
||||
<Summary xml:lang="tr">pygame için belgelendirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">pygame-docs, pygame için belgelendirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -11,5 +11,4 @@ def build():
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
pisitools.dodoc("PKG-INFO")
|
||||
pisitools.dodoc("LICENSE*")
|
||||
@@ -1,3 +1,5 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-backports-ssl-match-hostname</Name>
|
||||
@@ -6,23 +8,21 @@
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>PSF-2.2</License>
|
||||
<IsA>app</IsA>
|
||||
<Summary>The ssl.match_hostname() function from Python 3.4</Summary>
|
||||
<Description>The ssl.match_hostname() function from Python 3.4</Description>
|
||||
<Archive sha1sum="0567c136707a5f53b95aa793b79cc8d5c61d8e22" type="targz">https://pypi.python.org/packages/76/21/2dc61178a2038a5cb35d14b61467c6ac632791ed05131dda72c20e7b9e23/backports.ssl_match_hostname-3.5.0.1.tar.gz</Archive>
|
||||
<Archive sha1sum="b832201f353ad35215fd5132857ac9bbb55b77c1" type="targz">https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-backports-ssl-match-hostname</Name>
|
||||
<Summary>The ssl.match_hostname() function from Python 3.4</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
@@ -30,6 +30,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>3.7.0.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2018-08-29</Date>
|
||||
<Version>3.5.0.1</Version>
|
||||
@@ -52,4 +59,4 @@
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-backports-ssl-match-hostname</Name>
|
||||
<Summary xml:lang="tr">Python3.4 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamı</Summary>
|
||||
<Description xml:lang="tr">python-backports-ssl-match-hostname, Python3.4 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamını sağlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -5,12 +5,9 @@
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
|
||||
#pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
pythonmodules.install()
|
||||
@@ -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-enum34</Name>
|
||||
@@ -8,23 +8,21 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>BSD</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>An enumeration is a set of symbolic names (members) bound to unique, constant values. Within an enumeration, the members can be compared by identity, and the enumeration itself can be iterated over.</Summary>
|
||||
<Description>Bir numaralandırma, benzersiz, sabit değerlere bağlı bir dizi sembolik isimdir (üyeler). Bir numaralandırmada, üyeler kimlikle karşılaştırılabilir ve numaralandırma kendisi üzerinde yinelenebilir.</Description>
|
||||
<Description>python-enum34 is the new Python stdlib enum module available in Python 3.4 backported for previous versions of Python from 2.4 to 3.3. tested on 2.6, 2.7, and 3.3+</Description>
|
||||
<Archive sha1sum="014ef5878333ff91099893d615192c8cd0b1525a" type="targz">https://files.pythonhosted.org/packages/bf/3e/31d502c25302814a7c2f1d3959d2a3b3f78e509002ba91aea64993936876/enum34-1.1.6.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-enum34</Name>
|
||||
<RuntimeDependencies>
|
||||
<!-- <Dependency>Dep1</Dependency> -->
|
||||
</RuntimeDependencies>
|
||||
-->
|
||||
<Summary>The enum module from Python3.4 backported from 3.3 - 2.4</Summary>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
@@ -32,6 +30,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.1.6</Version>
|
||||
<Comment>Rebuild for new toolchain</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2018-10-18</Date>
|
||||
<Version>1.1.6</Version>
|
||||
@@ -40,4 +45,4 @@
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -2,7 +2,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-enum34</Name>
|
||||
<Summary xml:lang="tr">Bir numaralandırma, benzersiz, sabit değerlere bağlı bir dizi sembolik isimdir (üyeler). Bir numaralandırmada, üyeler kimlikle karşılaştırılabilir ve numaralandırma kendisi üzerinde yinelenebilir.</Summary>
|
||||
<Summary xml:lang="tr">python-enum34, python3.4'ten python2.4ye kadar ger'ye dönüklüğü sağlar.</Summary>
|
||||
<Description xml:lang="tr">Bir numaralandırma, benzersiz, sabit değerlere bağlı bir dizi sembolik isimdir (üyeler). Bir numaralandırmada, üyeler kimlikle karşılaştırılabilir ve numaralandırma kendisi üzerinde yinelenebilir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -4,16 +4,20 @@
|
||||
# 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 pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir="Imaging-%s" % get.srcVERSION()
|
||||
# fix unused direct dependency warning
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
|
||||
|
||||
def install():
|
||||
pisitools.dosed("_imagingft.c", "<freetype/freetype.h>", "<freetype2/freetype.h>")
|
||||
pisitools.dosed("_imagingft.c", "<freetype/fterrors.h>", "<freetype2/fterrors.h>")
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-incompatible-pointer-types -Wno-unused-but-set-variable -Wno-int-to-pointer-cast")
|
||||
#pisitools.dosed("_imagingft.c", "<freetype/freetype.h>", "<freetype2/freetype.h>")
|
||||
#pisitools.dosed("_imagingft.c", "<freetype/fterrors.h>", "<freetype2/fterrors.h>")
|
||||
pythonmodules.install()
|
||||
|
||||
shelltools.cd("Sane")
|
||||
@@ -23,5 +27,4 @@ def install():
|
||||
for header in ["Imaging.h","ImPlatform.h"]:
|
||||
pisitools.insinto("/usr/include/%s" % get.curPYTHON(), "libImaging/%s" % header)
|
||||
|
||||
pisitools.dodoc("README")
|
||||
|
||||
pisitools.dodoc("README")
|
||||
@@ -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-imaging</Name>
|
||||
@@ -8,6 +8,7 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>as-is</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python Imaging Library (PIL)</Summary>
|
||||
@@ -16,7 +17,10 @@
|
||||
<BuildDependencies>
|
||||
<Dependency>sane-backends-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>lcms-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">local_only_initial_value.patch</Patch>
|
||||
@@ -28,13 +32,15 @@
|
||||
|
||||
<Package>
|
||||
<Name>python-imaging</Name>
|
||||
<Summary>Python Imaging Library (PIL)</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>tcltk</Dependency>
|
||||
<Dependency>tcl</Dependency>
|
||||
<Dependency>lcms</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>sane-backends</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>tcltk</Dependency>
|
||||
<Dependency>lcms</Dependency>
|
||||
<Dependency>tcl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
@@ -45,6 +51,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.1.7</Version>
|
||||
<Comment>Clean and rebuild for new toolchain</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-30</Date>
|
||||
<Version>1.1.7</Version>
|
||||
@@ -74,4 +87,4 @@
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -3,6 +3,7 @@
|
||||
<Source>
|
||||
<Name>python-imaging</Name>
|
||||
<Summary xml:lang="tr">Python Görüntü İşleme Kitaplığı</Summary>
|
||||
<Description xml:lang="tr">python-imaging, python2 görüntü işleme kitaplığı dosyalarını sunar.</Description>
|
||||
<Description xml:lang="es">La librería Python Imaging Library (PIL) facilita el procesamiento de imágenes desde Python. Esta librería soporta muchos formatos de archivos y provee potentes facilidades de procesamiento de gráficos.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -13,10 +13,9 @@ WorkDir = "lxml-%s" % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
# remove the C extension so that it will be rebuild using the latest Cython
|
||||
shelltools.unlink("src/lxml/lxml.etree.c")
|
||||
shelltools.unlink("src/lxml/lxml.etree_api.h")
|
||||
shelltools.unlink("src/lxml/lxml.objectify.c")
|
||||
|
||||
shelltools.unlink("src/lxml/*.c")
|
||||
# fix unused dependency analysis
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
@@ -24,4 +23,4 @@ def install():
|
||||
|
||||
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()),"doc/*")
|
||||
|
||||
pisitools.dodoc("CHANGES.txt", "LICENSES.txt", "TODO.txt")
|
||||
pisitools.dodoc("CHANGES.txt", "LICENSES.txt")
|
||||
@@ -1,39 +1,37 @@
|
||||
<?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-lxml</Name>
|
||||
<Homepage>http://codespeak.net/lxml</Homepage>
|
||||
<Homepage>https://lxml.de/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>GPLv2</License>
|
||||
<License>BSD</License>
|
||||
<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="154279bc5939d7099697887ea15c5ca921abeaeb" type="targz">https://pypi.python.org/packages/e1/4c/d83979fbc66a2154850f472e69405572d89d2e6a6daee30d18e83e39ef3a/lxml-4.1.1.tar.gz</Archive>
|
||||
<Archive sha1sum="6c6196d6e80a52ebac4aef0fba702a4c5524e6bb" type="targz">https://files.pythonhosted.org/packages/e4/19/8dfeef50623892577dc05245093e090bb2bab4c8aed5cad5b03208959563/lxml-4.4.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libxml2-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>cython</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">python-lxml-2.2.6-fix-2to3.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-lxml</Name>
|
||||
<Summary>lxml is the most feature-rich and easy-to-use library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>libxml2</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -49,6 +47,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>4.4.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-07</Date>
|
||||
<Version>4.1.1</Version>
|
||||
@@ -85,4 +90,4 @@
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -9,5 +9,6 @@
|
||||
<Package>
|
||||
<Name>python-lxml-docs</Name>
|
||||
<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>
|
||||
</Package>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -5,18 +5,21 @@
|
||||
# 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()
|
||||
|
||||
#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>python-mako</Name>
|
||||
@@ -8,32 +8,36 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>MIT</License>
|
||||
<IsA>app:console</IsA>
|
||||
<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="bf0c1f4cdfca4dd37bc0c9f83e984a0558268b42" type="targz">https://pypi.python.org/packages/eb/f3/67579bb486517c0d49547f9697e36582cd19dafb5df9e687ed8e22de57fa/Mako-1.0.7.tar.gz</Archive>
|
||||
<Archive sha1sum="2b1158ba4e086257f23aa25f82f052644f316b7c" type="targz">https://files.pythonhosted.org/packages/b0/3c/8dcd6883d009f7cae0f3157fb53e9afb05a0d3d33b3db1268ec2e6f4a56b/Mako-1.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-mako</Name>
|
||||
<Summary>A python templating language</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-beaker</Dependency>
|
||||
<Dependency>python-MarkupSafe</Dependency>
|
||||
<Dependency>python-beaker</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>python-mako-docs</Name>
|
||||
<Summary>Documentation files for raptor python-mako</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">python-mako</Dependency>
|
||||
</RuntimeDependencies>
|
||||
@@ -45,6 +49,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.1.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-30</Date>
|
||||
<Version>1.0.7</Version>
|
||||
@@ -81,4 +92,4 @@
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -9,5 +9,6 @@
|
||||
<Package>
|
||||
<Name>python-mako-docs</Name>
|
||||
<Summary xml:lang="tr">python-mako için belgelendirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">python-mako-docs, python-mako için belgelendirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -4,31 +4,34 @@
|
||||
# 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 pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "numpy-%s" % get.srcVERSION()
|
||||
|
||||
NUMPY_FCONFIG = "config_fc --fcompiler=gnu95"
|
||||
f2py_docs = "%s/%s/f2py_docs" % (get.docDIR(), get.srcNAME())
|
||||
|
||||
shelltools.export("LDFLAGS", "%s -shared" % get.LDFLAGS())
|
||||
shelltools.export("ATLAS", "None")
|
||||
shelltools.export("PTATLAS", "None")
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-unused-but-set-variable -Wno-builtin-declaration-mismatch \
|
||||
-Wno-unused-value -Wno-unused-variable -Wno-unknown-pragmas \
|
||||
-Wno-strict-prototypes -Wno-implicit-int -Wno-return-type \
|
||||
-Wno-unused-function")
|
||||
pythonmodules.compile(NUMPY_FCONFIG)
|
||||
|
||||
def install():
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-builtin-declaration-mismatch")
|
||||
pythonmodules.install(NUMPY_FCONFIG)
|
||||
|
||||
pisitools.rename("/usr/bin/f2py", "f2py2")
|
||||
pisitools.rename("/usr/bin/from-template", "from-template2")
|
||||
pisitools.rename("/usr/bin/conv-template", "conv-template2")
|
||||
pisitools.rename("/usr/bin/f2py", "f2py-py2")
|
||||
|
||||
#pisitools.doman("doc/f2py/f2py.1")
|
||||
|
||||
#pisitools.insinto(f2py_docs, "doc/f2py/*.txt")
|
||||
pisitools.dodoc("LICENSE.txt", "THANKS.txt")
|
||||
pisitools.dodoc("LICENSE*")
|
||||
|
||||
for dirs in ["doc"]:
|
||||
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), dirs)
|
||||
@@ -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-numpy</Name>
|
||||
@@ -8,44 +8,63 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>as-is</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>The fundamental package needed for scientific computing with Python</Summary>
|
||||
<Description>Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities.</Description>
|
||||
<Archive sha1sum="e4917f6848f4065a70788b954332f1eb87b81989" type="targz">https://github.com/numpy/numpy/releases/download/v1.15.0/numpy-1.15.0.tar.gz</Archive>
|
||||
<Archive sha1sum="e8c1aae9070d7c6dc0cb72de44eb68fba3b62941" type="targz">https://github.com/numpy/numpy/archive/v1.16.6.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-nose</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency>lapack-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>cblas-devel</Dependency>
|
||||
<Dependency>libgfortran</Dependency>
|
||||
<Dependency>cython</Dependency>
|
||||
<Dependency>cblas</Dependency>
|
||||
<!--
|
||||
<Dependency>python-nose</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!--<Patch level="1">numpy-1.0.1-f2py.patch</Patch>
|
||||
<Patch level="1">001-fix-test_multiarray.patch</Patch>
|
||||
<Patch level="1">002-fix_PyUnicodeObject.patch</Patch>
|
||||
<Patch level="1">09d2c51fa1d09b17060a8545b925f4dded9dedb1.patch</Patch>
|
||||
<Patch level="1">4234b6b13e3ee9da6fc1c24e9e8c442d77587837.patch</Patch>
|
||||
<Patch level="1">f2ac38f09ff258339ef44572a3abba02019e1f55.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-numpy</Name>
|
||||
<Summary>The fundamental package needed for scientific computing with Python</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>blas</Dependency>
|
||||
<Dependency>lapack</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>cblas</Dependency>
|
||||
<Dependency>blas</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="executable">/usr/bin/f2py-py2</Path>
|
||||
<Path fileType="executable">/usr/bin/f2py2</Path>
|
||||
<Path fileType="executable">/usr/bin/f2py2.7</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-numpy-docs</Name>
|
||||
<Summary>Documentation files for python-numpy</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">python-numpy</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python-numpy/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.16.6</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-14</Date>
|
||||
<Version>1.15.0</Version>
|
||||
@@ -82,4 +101,4 @@
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -1,9 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>numpy</Name>
|
||||
<Name>python-numpy</Name>
|
||||
<Summary xml:lang="tr">Python ile bilimsel hesaplama için ihtiyaç duyulan temel paket</Summary>
|
||||
<Description xml:lang="es">Numpy contiene un potente objeto de array N-dimensional, funciones sofisticadas (broadcasting), herramientas para la integración de código C/C++ y Fortran, y facilidades útiles de algebra lineal, transformación Fourier, y número aleatorios.</Description>
|
||||
<Description xml:lang="tr">Numpy, N-boyutlu güçlü bir dizi, gelişmiş fonksiyonlar, C/C++ ve Fortran kodunu entegre etmek için araçlar, doğrusal cebir ve rastgele sayı özelliği içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
<Package>
|
||||
<Name>python-numpy-docs</Name>
|
||||
<Summary xml:lang="tr">python-numpy için belgelendirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">python-numpy-docs, python-numpy için belgelendirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -4,24 +4,20 @@
|
||||
# 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 pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
#WorkDir="Imaging-%s" % get.srcVERSION()
|
||||
|
||||
def build():
|
||||
# fix unused direct dependency analysis
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
#pisitools.dosed("_imagingft.c", "<freetype/freetype.h>", "<freetype2/freetype.h>")
|
||||
#pisitools.dosed("_imagingft.c", "<freetype/fterrors.h>", "<freetype2/fterrors.h>")
|
||||
pythonmodules.install()
|
||||
|
||||
#shelltools.cd("Sane")
|
||||
#pythonmodules.install()
|
||||
#shelltools.cd("..")
|
||||
|
||||
for header in ["Imaging.h","ImPlatform.h"]:
|
||||
pisitools.insinto("/usr/include/%s" % get.curPYTHON(), "src/libImaging/%s" % header)
|
||||
|
||||
pisitools.dodoc("README.rst")
|
||||
|
||||
# install header files
|
||||
pisitools.insinto("/usr/include/python3.8/Imaging/", "src/libImaging/*.h")
|
||||
@@ -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-pillow</Name>
|
||||
@@ -8,57 +8,85 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>as-is</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>PIL is the Python Imaging Library.</Summary>
|
||||
<Description>The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities.</Description>
|
||||
<Archive sha1sum="31cc46de95b21fd2c6634c0eb574f5278f120991" type="targz">https://github.com/python-pillow/Pillow/archive/5.2.0.tar.gz</Archive>
|
||||
<Summary>The friendly PIL fork (Python Imaging Library) </Summary>
|
||||
<Description>Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. As of 2019, Pillow development is supported by Tidelift.</Description>
|
||||
<Archive sha1sum="f155a3296a73c1cfc9b38bcebe03a626ad931b82" type="targz">https://github.com/python-pillow/Pillow/archive/6.2.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-tk</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>lcms-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>libimagequant-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-qt5-devel</Dependency>
|
||||
<Dependency>python-qt5-devel</Dependency>
|
||||
<Dependency>openjpeg2-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>webp-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<!--
|
||||
<Dependency>lcms-devel</Dependency>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
<Dependency>tcl-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>python3-tk</Dependency>
|
||||
<Dependency>python3-qt5-devel</Dependency>
|
||||
<Dependency>python-qt5-devel</Dependency>
|
||||
<Dependency>sane-backends-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pillow</Name>
|
||||
<Summary>The friendly PIL fork (Python Imaging Library) </Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>libimagequant</Dependency>
|
||||
<Dependency>openjpeg2</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>python3-tk</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
<Dependency>lcms</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-qt5</Dependency>
|
||||
<Dependency>python-qt5</Dependency>
|
||||
<Dependency>webp</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<!--
|
||||
<Dependency>tcltk</Dependency>
|
||||
<Dependency>tcl</Dependency>
|
||||
<Dependency>sane-backends</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>xdg-utils</Dependency>
|
||||
<Dependency>python3-qt5</Dependency>
|
||||
<Dependency>python-qt5</Dependency>
|
||||
-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-pillow-devel</Name>
|
||||
<Summary>Development files for python-pillow</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">python-pillow</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>6.2.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-30</Date>
|
||||
<Version>5.2.0</Version>
|
||||
@@ -88,4 +116,4 @@
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -2,7 +2,14 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-imaging</Name>
|
||||
<Summary xml:lang="tr">Python Görüntü İşleme Kitaplığı</Summary>
|
||||
<Summary xml:lang="tr">Python Görsel Kitaplığı (PIL - Python Imaging Library) çatalıdır.</Summary>
|
||||
<Description xml:lang="tr">python-pillow, özgür python PIL(Python Imaging Library - Python Görsel Kitaplığı) kütüphanesinin özgür yazılımcılar tarafından geliştirilen çatalıdır.</Description>
|
||||
<Description xml:lang="es">La librería Python Imaging Library (PIL) facilita el procesamiento de imágenes desde Python. Esta librería soporta muchos formatos de archivos y provee potentes facilidades de procesamiento de gráficos.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
|
||||
<Package>
|
||||
<Name>python-pillow-devel</Name>
|
||||
<Summary xml:lang="tr">python-pillow için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">python-pillow-devel, python-pillow için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -9,4 +9,4 @@ from pisi.actionsapi import get
|
||||
WorkDir = "pyaspects-%s" % get.srcVERSION()
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
pythonmodules.install()
|
||||
@@ -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-pyaspects</Name>
|
||||
@@ -8,6 +8,7 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Aspect-Oriented development for Python</Summary>
|
||||
@@ -17,13 +18,21 @@
|
||||
|
||||
<Package>
|
||||
<Name>python-pyaspects</Name>
|
||||
<Summary>Aspect-Oriented development for Python</Summary>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-pyaspects</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>0.4.4</Version>
|
||||
<Comment>Rebuild for new toolchain</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-19</Date>
|
||||
<Version>0.4.4</Version>
|
||||
@@ -60,4 +69,4 @@
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -3,7 +3,7 @@
|
||||
<Source>
|
||||
<Name>pyaspects</Name>
|
||||
<Summary xml:lang="tr">Python için Aspect-Oriented kitaplığı</Summary>
|
||||
<Description xml:lang="tr">Python için Aspect-Oriented kitaplığı.</Description>
|
||||
<Description xml:lang="tr">python-pyaspects, python için Aspect-Oriented kitaplığı sunar.</Description>
|
||||
<Description xml:lang="es">Módulos Python para desarrollo orientado a Aspect.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -18,6 +18,4 @@ def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "README", "NEWS")
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -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-pyatspi</Name>
|
||||
@@ -8,29 +8,39 @@
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>LGPLv2+</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python bindings for at-spi2-core</Summary>
|
||||
<Description>python-pyatspi provides a python client library for the AT-SPI D-Bus accessibility infrastructure.</Description>
|
||||
<Archive sha1sum="45250ae95ce37189e26f7706fe3eb8e3deff7a03" type="tarxz">http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.26/pyatspi-2.26.0.tar.xz</Archive>
|
||||
<Archive sha1sum="dfeba1b19039217bacbf7e26ed9f0550869b4125" type="tarxz">http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.34/pyatspi-2.34.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-pygobject3-devel</Dependency>
|
||||
<Dependency>at-spi2-core-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pyatspi</Name>
|
||||
<Summary>Python bindings for at-spi2-core</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>at-spi2-core</Dependency>
|
||||
<Dependency>python-pygobject3</Dependency>
|
||||
<Dependency>at-spi2-core</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/lib/python*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-pyatspi</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>2.34.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2018-08-30</Date>
|
||||
<Version>2.26.0</Version>
|
||||
@@ -46,4 +56,4 @@
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -5,4 +5,4 @@
|
||||
<Summary xml:lang="tr">at-spi2-core altyapısı için Python bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">python-pyatspi AT-SPI D-Bus erişilebilirlik altyapısı için python istemci kitaplığıdır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -4,8 +4,8 @@
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
|
||||
@@ -16,4 +16,4 @@ def build():
|
||||
autotools.make("USESELINUX=0")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -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-pyblock</Name>
|
||||
@@ -8,6 +8,7 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>GPLv2</License>
|
||||
<License>GPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
@@ -27,6 +28,7 @@
|
||||
|
||||
<Package>
|
||||
<Name>python-pyblock</Name>
|
||||
<Summary>Python modules for dealing with block devices</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>device-mapper</Dependency>
|
||||
<Dependency>dmraid</Dependency>
|
||||
@@ -39,6 +41,13 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>0.53</Version>
|
||||
<Comment>Rebuild for new toolchain</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-19</Date>
|
||||
<Version>0.53</Version>
|
||||
@@ -75,4 +84,4 @@
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -2,7 +2,7 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pyblock</Name>
|
||||
<Summary xml:lang="tr">Blok aygıtları ile ilgili python modülleri içerir</Summary>
|
||||
<Description xml:lang="tr">Pyblock blok aygıtları ile ilgili python modülleri içerir</Description>
|
||||
<Summary xml:lang="tr">Blok aygıtları ile ilgili python modülleri içerir.</Summary>
|
||||
<Description xml:lang="tr">Pyblock blok aygıtları ile ilgili python modülleri içerir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -4,17 +4,23 @@
|
||||
# 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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "pygobject-%s" % get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-deprecated-declarations -Wno-unused-variable \
|
||||
-Wno-unused-but-set-variable -Wno-discarded-qualifiers \
|
||||
-Wno-misleading-indentation")
|
||||
# autoreconf is for under linking problem
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--disable-introspection")
|
||||
# fix unused dependency analysis
|
||||
pisitools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
@@ -23,4 +29,4 @@ def install():
|
||||
autotools.install()
|
||||
|
||||
#shelltools.chmod("%s/usr/share/pygobject/xsl/fixxref.py" % get.installDIR(), 0755)
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "ChangeLog", "README")
|
||||
pisitools.dodoc("COPYING", "README")
|
||||
@@ -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-pygobject</Name>
|
||||
@@ -8,30 +8,31 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Glib bindings for Python</Summary>
|
||||
<Description>pygobject is GLib's GObject library bindings for Python.</Description>
|
||||
<Archive sha1sum="8e3cb8621c2e1d8dbeba5c3c007c7421b936a36c" type="tarxz">http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.7.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>python-cairo-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">pygobject-2.16.1-fixdetection.patch</Patch>
|
||||
<!-- <Patch level="1">pygobject-2.28.6-fixes-1.patch</Patch> -->
|
||||
<!--<Patch level="1">pygobject-2.28.6-fixes-1.patch</Patch>-->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>gobject-introspection</Dependency>
|
||||
<Dependency>python-cairo</Dependency>
|
||||
<Dependency>libffi</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
@@ -45,14 +46,14 @@
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">python-pygobject</Dependency>
|
||||
<Dependency>gobject-introspection-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
<Dependency>libffi-devel</Dependency>
|
||||
<Dependency>glib2-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin/pygobject-codegen-2.0</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/share/pygobject</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -66,14 +67,21 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Update release="7">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>2.28.7</Version>
|
||||
<Comment>Rebuild for new toolchain</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2018-08-14</Date>
|
||||
<Version>2.28.7</Version>
|
||||
<Comment>Rebuild New T.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
<Email>muscnsl@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Update release="5">
|
||||
<Date>2018-02-25</Date>
|
||||
<Version>2.28.7</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
@@ -109,4 +117,4 @@
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -10,10 +10,12 @@
|
||||
<Package>
|
||||
<Name>python-pygobject-devel</Name>
|
||||
<Summary xml:lang="tr">pygobject geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">pygobject-devel, pygobject için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-pygobject-docs</Name>
|
||||
<Summary xml:lang="tr">pygobject için API dökümanları</Summary>
|
||||
<Description xml:lang="tr">pygobject-docs, pygobject için belgelendirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -5,16 +5,16 @@
|
||||
# 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 pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
shelltools.export("CC", get.CC())
|
||||
autotools.make()
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-implicit-function-declaration")
|
||||
# fix unused direct dependency analysis
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared")
|
||||
pythonmodules.compile()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("COPYING", "NEWS", "README", "TODO")
|
||||
pythonmodules.install()
|
||||
@@ -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-smbc</Name>
|
||||
@@ -8,30 +8,39 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>GPLv2</License>
|
||||
<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="c65f21be629657f7f451b24aa36403d282f9d76f" type="targz">https://github.com/hamano/pysmbc/archive/1.0.15.4.tar.gz</Archive>
|
||||
<Archive sha1sum="b53e522f224662130ddd9286afdccae4491c6602" type="tarbz2">https://files.pythonhosted.org/packages/22/88/a8bfec18f47d435db7838ee90f0b1ae4f73889ffcaade6abad83f277c314/pysmbc-1.0.18.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
<Dependency>python-setuptools</Dependency>
|
||||
<Dependency>python-devel</Dependency>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-smbc</Name>
|
||||
<Summary>Python interface to the libsmbclient library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>samba</Dependency>
|
||||
<Dependency>python</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-smbc</Path>
|
||||
<Path fileType="library">/usr/lib/python2*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.0.18</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2018-08-15</Date>
|
||||
<Version>1.0.15.4</Version>
|
||||
@@ -61,4 +70,4 @@
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -5,4 +5,4 @@
|
||||
<Summary xml:lang="tr">libsmbclient kitaplığı için Python arayüzü</Summary>
|
||||
<Description xml:lang="tr">python-smbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -13,6 +13,4 @@ def build():
|
||||
|
||||
def install():
|
||||
pythonmodules.install()
|
||||
pisitools.remove("/usr/lib/%s/site-packages/pyudev/pyside.py" % get.curPYTHON())
|
||||
|
||||
pisitools.dodoc("CHANGES.rst", "COPYING", "PKG-INFO", "README.rst")
|
||||
pisitools.remove("/usr/lib/%s/site-packages/pyudev/pyside.py" % get.curPYTHON())
|
||||
@@ -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-udev</Name>
|
||||
@@ -8,6 +8,7 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python bindings for libudev library</Summary>
|
||||
@@ -21,6 +22,7 @@
|
||||
|
||||
<Package>
|
||||
<Name>python-udev</Name>
|
||||
<Summary>Python bindings for libudev library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<!--Dependency>python-pygobject</Dependency-->
|
||||
</RuntimeDependencies>
|
||||
@@ -29,8 +31,22 @@
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<!--
|
||||
<Package>
|
||||
<Name>python-udev-qt5</Name>
|
||||
<Summary>Qt5 bindings for libudev library</Summary>
|
||||
<Description>These bindings provide udev capability for Python programs where Qt5 is used.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python-udev</Dependency>
|
||||
<Dependency>python-qt5</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python2*/site-packages/pyudev/pyqt5.py</Path>
|
||||
<Path fileType="library">/usr/lib/python2*/site-packages/pyudev/__pycache__/pyqt5.*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<!--Package>
|
||||
<Package>
|
||||
<Name>python-udev-qt</Name>
|
||||
<Summary>Qt bindings for libudev library</Summary>
|
||||
<Description>These bindings provide udev capability for Python programs where Qt is used.</Description>
|
||||
@@ -41,9 +57,17 @@
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python2*/site-packages/pyudev/pyqt4.py</Path>
|
||||
</Files>
|
||||
</Package-->
|
||||
</Package>
|
||||
-->
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>0.21.0</Version>
|
||||
<Comment>Rebuild for new toolchain</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2018-08-19</Date>
|
||||
<Version>0.21.0</Version>
|
||||
@@ -80,4 +104,4 @@
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -5,11 +5,17 @@
|
||||
<Summary xml:lang="tr">libudev için Python bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar.</Description>
|
||||
</Source>
|
||||
<!--
|
||||
<Package>
|
||||
<Name>python-udev-qt5</Name>
|
||||
<Summary xml:lang="tr">libudev için Qt5 bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">Bu bağlayıcı, Qt5 kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python-udev-qt</Name>
|
||||
<Summary xml:lang="tr">libudev için Qt bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">Bu bağlayıcı, Qt kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar.</Description>
|
||||
</Package>
|
||||
|
||||
</PISI>
|
||||
-->
|
||||
</PISI>
|
||||
@@ -0,0 +1,27 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
docdir = "%s/%s" % (get.docDIR(), get.srcNAME())
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings:
|
||||
pisitools.cflags.add("-Wno-format -Wno-comment -Wno-unused -Wno-incompatible-pointer-types \
|
||||
-Wno-logical-not-parentheses -Wno-bool-compare -Wno-maybe-uninitialized \
|
||||
-Wno-discarded-qualifiers -Wno-pointer-sign -Wno-pointer-to-int-cast \
|
||||
-Wno-unknown-pragmas")
|
||||
# fix unused dependency analysis:
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared -lpthread")
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
pisitools.insinto(docdir, "docs", "examples")
|
||||
@@ -0,0 +1,95 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>py3game</Name>
|
||||
<Homepage>http://www.pygame.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python3 game library</Summary>
|
||||
<Description>Python bindings to sdl and other libs that facilitate game production.</Description>
|
||||
<Archive sha1sum="4daa159e35a4f0fec81b2a6862da861296d9435a" type="targz">https://github.com/pygame/pygame/archive/1.9.6.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>sdl-image-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
<Dependency>portmidi-devel</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
<Dependency>sdl-ttf-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>libsdl-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<!--
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>libX11-devel</Dependency>
|
||||
<Dependency>smpeg-devel</Dependency>
|
||||
-->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>py3game</Name>
|
||||
<Summary>Python3 game library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>sdl-image</Dependency>
|
||||
<Dependency>sdl-mixer</Dependency>
|
||||
<Dependency>freetype</Dependency>
|
||||
<Dependency>portmidi</Dependency>
|
||||
<Dependency>sdl-ttf</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
<Dependency>libsdl</Dependency>
|
||||
<!--
|
||||
<Dependency>python-numpy</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>smpeg</Dependency>
|
||||
-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>py3game-devel</Name>
|
||||
<Summary>Development files for python3 game library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">py3game</Dependency>
|
||||
<Dependency>sdl-image-devel</Dependency>
|
||||
<Dependency>sdl-mixer-devel</Dependency>
|
||||
<Dependency>sdl-ttf-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="doc">/usr/share/doc/py3game/examples/*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>py3game-doc</Name>
|
||||
<Summary>Documentation files for python3 game library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">py3game</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/py3game/README.rst</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.9.6</Version>
|
||||
<Comment>First pisi release</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>py3game</Name>
|
||||
<Summary xml:lang="tr">Python3 oyun kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri içerir.</Description>
|
||||
<Description xml:lang="fr">Liens (bindings) Python pour dsl et autres librairies facilitant la création de jeux.</Description>
|
||||
<Description xml:lang="es">Acceso con Python a sdl y otras librerías que facilitan produccion de juegos</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>py3game-devel</Name>
|
||||
<Summary xml:lang="tr">py3game için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">py3game-devel, py3game için geliştirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>py3game-docs</Name>
|
||||
<Summary xml:lang="tr">py3game için belgelendirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">py3game-docs, py3game için belgelendirme dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
+20
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import pythonmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def build():
|
||||
# suppress compiler warnings
|
||||
pisitools.cflags.add("-Wno-implicit-function-declaration -Wno-deprecated-declarations")
|
||||
# fix unused direct dependency analysis
|
||||
shelltools.export("LDSHARED", "x86_64-pc-linux-gnu-gcc -Wl,-O1,--as-needed -shared")
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
+45
@@ -0,0 +1,45 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-pysmbc</Name>
|
||||
<Homepage>http://cyberelk.net/tim/software/pysmbc</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>GPLv2</License>
|
||||
<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="b53e522f224662130ddd9286afdccae4491c6602" type="tarbz2">https://files.pythonhosted.org/packages/22/88/a8bfec18f47d435db7838ee90f0b1ae4f73889ffcaade6abad83f277c314/pysmbc-1.0.18.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>samba-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-pysmbc</Name>
|
||||
<Summary>Python3 interface to the libsmbclient library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>samba</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/python3-pysmbc</Path>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>1.0.18</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-pysmbc</Name>
|
||||
<Summary xml:lang="tr">libsmbclient kitaplığı için Python arayüzü</Summary>
|
||||
<Description xml:lang="tr">python3-pysmbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır.</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 pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
pisitools.remove("/usr/lib/python3*/site-packages/pyudev/pyside.py")
|
||||
@@ -0,0 +1,74 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-pyudev</Name>
|
||||
<Homepage>http://packages.python.org/pyudev</Homepage>
|
||||
<Packager>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python3 bindings for libudev library</Summary>
|
||||
<Description>These bindings enable using of udev library in Python programs.</Description>
|
||||
<Archive sha1sum="58263b4358951d3a990bce7661e2e2ff30ca6cbe" type="targz">https://pypi.python.org/packages/bc/a2/31a07829acea8e70a28c247f43fa5d981229ae0f9edfeddedf52de00709b/pyudev-0.21.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>eudev-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python3-pyudev</Name>
|
||||
<Summary>Python3 bindings for libudev library</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-six</Dependency>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<!--
|
||||
<Package>
|
||||
<Name>python3-udev-qt5</Name>
|
||||
<Summary>Qt5 bindings for libudev library</Summary>
|
||||
<Description>These bindings provide udev capability for Python programs where Qt5 is used.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-pyudev</Dependency>
|
||||
<Dependency>python3-qt5</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3*/site-packages/pyudev/pyqt5.py</Path>
|
||||
<Path fileType="library">/usr/lib/python3*/site-packages/pyudev/__pycache__/pyqt5.*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python3-udev-qt</Name>
|
||||
<Summary>Qt bindings for libudev library</Summary>
|
||||
<Description>These bindings provide udev capability for Python programs where Qt is used.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3-pyudev</Dependency>
|
||||
<Dependency>python3-qt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3*/site-packages/pyudev/pyqt4.py</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
-->
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>0.21.0</Version>
|
||||
<Comment>First pisi release</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python3-pyudev</Name>
|
||||
<Summary xml:lang="tr">libudev için Python3 bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">Bu bağlayıcı, Python3 programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar.</Description>
|
||||
</Source>
|
||||
<!--
|
||||
<Package>
|
||||
<Name>python3-pyudev-qt5</Name>
|
||||
<Summary xml:lang="tr">libudev için Qt5 bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">Bu bağlayıcı, Qt5 kullanan Python3 programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>python3-pyudev-qt</Name>
|
||||
<Summary xml:lang="tr">libudev için Qt bağlayıcısı</Summary>
|
||||
<Description xml:lang="tr">Bu bağlayıcı, Qt kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar.</Description>
|
||||
</Package>
|
||||
-->
|
||||
</PISI>
|
||||
@@ -3,8 +3,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 perlmodules
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
@@ -64,4 +64,4 @@ def install():
|
||||
|
||||
# remove .pod and .packlist files
|
||||
perlmodules.removePodfiles()
|
||||
perlmodules.removePacklist()
|
||||
perlmodules.removePacklist()
|
||||
@@ -0,0 +1,13 @@
|
||||
[Desktop Entry]
|
||||
Encoding=UTF-8
|
||||
Name=Git GUI
|
||||
Name[tr]=Git GKA
|
||||
GenericName=Git GUI
|
||||
GenericName[tr]=Git GKA
|
||||
Comment=A graphical interface to Git
|
||||
Comment[tr]=Git için grafik kullanıcı arayüzü
|
||||
Exec=git gui
|
||||
Icon=/usr/share/git-gui/lib/git-gui.ico
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Development;
|
||||
+109
-59
@@ -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>git</Name>
|
||||
@@ -8,24 +8,25 @@
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.scm</PartOf>
|
||||
<License>GPLv2</License>
|
||||
<Summary>Fast Version Control System</Summary>
|
||||
<Description>Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals.</Description>
|
||||
<Archive sha1sum="1930a8df36a193a7b5792b47ef3a904217b55bd9" type="tarxz">https://www.kernel.org/pub/software/scm/git/git-2.23.1.tar.xz</Archive>
|
||||
<Archive sha1sum="6ea4b553fbdd9112777902f2f6754439bdc20167" type="tarxz">https://www.kernel.org/pub/software/scm/git/git-2.25.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
<Dependency>libpcre2-devel</Dependency>
|
||||
<Dependency>openssl-devel</Dependency>
|
||||
<Dependency>libpcre-devel</Dependency>
|
||||
<Dependency>libpcre2-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>expat-devel</Dependency>
|
||||
<Dependency>xmlto</Dependency>
|
||||
<Dependency>asciidoc</Dependency>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
<Dependency>perl-Error</Dependency>
|
||||
<Dependency>perl</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>util-linux</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>asciidoc</Dependency>
|
||||
<Dependency>libxslt</Dependency>
|
||||
<Dependency>xmlto</Dependency>
|
||||
<Dependency>perl</Dependency>
|
||||
<!--Needed for emacs-Git package
|
||||
<Dependency>emacs</Dependency>-->
|
||||
</BuildDependencies>
|
||||
@@ -40,15 +41,16 @@
|
||||
|
||||
<Package>
|
||||
<Name>git</Name>
|
||||
<Summary>Fast Version Control System</Summary>
|
||||
<IsA>app:console</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">perl-Git</Dependency>
|
||||
<Dependency>perl-String-ShellQuote</Dependency>
|
||||
<Dependency>perl-Net-SMTP-SSL</Dependency>
|
||||
<Dependency>perl-Authen-SASL</Dependency>
|
||||
<Dependency>perl-libwww</Dependency>
|
||||
<Dependency>libpcre</Dependency>
|
||||
<Dependency>libpcre2</Dependency>
|
||||
<Dependency version="current">perl-Git</Dependency>
|
||||
<Dependency>openssh</Dependency>
|
||||
<Dependency>openssl</Dependency>
|
||||
<Dependency>rsync</Dependency>
|
||||
@@ -62,7 +64,39 @@
|
||||
<Path fileType="data">/etc/bash_completion.d</Path>
|
||||
<Path fileType="data">/usr/share/git-core</Path>
|
||||
<Path fileType="locale">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<!-- to fix "belongs in multiple packages" warning -->
|
||||
<Path fileType="man">/usr/share/man/man1/git.1*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-a*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-b*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-ca*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-ch*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-cl*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-co*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-credential-c*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-credential-s*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-credential.*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-cv*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-di*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-de*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-f*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-gc*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-ge*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-gr*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-h*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-i*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-l*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-m*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-n*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-p*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-q*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-r*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-s*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-t*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-u*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-v*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-w*</Path>
|
||||
<Path fileType="man">/usr/share/man/man5/</Path>
|
||||
<Path fileType="man">/usr/share/man/man7/</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
@@ -106,52 +140,6 @@
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<!-- <Package>
|
||||
<Name>emacs-Git</Name>
|
||||
<IsA>data</IsA>
|
||||
<PartOf>editor.emacs</PartOf>
|
||||
<Summary>Git support for emacs</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>emacs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/emacs/site-lisp/git*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/emacs-git</Path>
|
||||
</Files>
|
||||
</Package> -->
|
||||
|
||||
<!--Package>
|
||||
<Name>git-svn</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Git tools for importing Subversion repositories</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">git</Dependency>
|
||||
<Dependency>subversion</Dependency>
|
||||
<Dependency>perl-Term-ReadKey</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/libexec/git-core/*svn*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/*svn*.1*</Path>
|
||||
</Files>
|
||||
</Package-->
|
||||
|
||||
<!--Package>
|
||||
<Name>git-cvs</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Git tools for importing CVS repositories</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">git</Dependency>
|
||||
<Dependency>cvs</Dependency>
|
||||
<Dependency>cvsps</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/libexec/git-core/*cvs*</Path>
|
||||
<Path fileType="executable">/usr/bin/git-cvsserver</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/*cvs*.1*</Path>
|
||||
<Path fileType="man">/usr/share/man/man7/*cvs*.7*</Path>
|
||||
</Files>
|
||||
</Package-->
|
||||
|
||||
<Package>
|
||||
<Name>gitk</Name>
|
||||
<IsA>app:gui</IsA>
|
||||
@@ -182,7 +170,11 @@
|
||||
<Path fileType="data">/usr/share/git-gui</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-gui.1*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/git-citool.1*</Path>
|
||||
<Path fileType="data">/usr/share/applications/git-gui.desktop</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/git-gui.desktop">git-gui.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
@@ -197,6 +189,7 @@
|
||||
<Path fileType="data">/var/www/localhost</Path>
|
||||
<Path fileType="config">/etc/conf.d/gitweb</Path>
|
||||
<Path fileType="config">/etc/apache2/conf.d</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/gitweb.1*</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/etc/conf.d/gitweb">gitweb.confd</AdditionalFile>
|
||||
@@ -204,7 +197,64 @@
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<!--
|
||||
<Package>
|
||||
<Name>emacs-Git</Name>
|
||||
<IsA>data</IsA>
|
||||
<PartOf>editor.emacs</PartOf>
|
||||
<Summary>Git support for emacs</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>emacs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/emacs/site-lisp/git*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/emacs-git</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
-->
|
||||
|
||||
<!--Package>
|
||||
<Name>git-svn</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Git tools for importing Subversion repositories</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">git</Dependency>
|
||||
<Dependency>subversion</Dependency>
|
||||
<Dependency>perl-Term-ReadKey</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/libexec/git-core/*svn*</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/*svn*.1*</Path>
|
||||
</Files>
|
||||
</Package-->
|
||||
|
||||
<!--
|
||||
<Package>
|
||||
<Name>git-cvs</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Git tools for importing CVS repositories</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency version="current">git</Dependency>
|
||||
<Dependency>cvs</Dependency>
|
||||
<Dependency>cvsps</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/libexec/git-core/*cvs*</Path>
|
||||
<Path fileType="executable">/usr/bin/git-cvsserver</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/*cvs*.1*</Path>
|
||||
<Path fileType="man">/usr/share/man/man7/*cvs*.7*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
-->
|
||||
|
||||
<History>
|
||||
<Update release="7">
|
||||
<Date>2020-01-20</Date>
|
||||
<Version>2.25.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Blue Devil</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2020-01-18</Date>
|
||||
<Version>2.23.1</Version>
|
||||
@@ -255,4 +305,4 @@
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -2,54 +2,66 @@
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>git</Name>
|
||||
<Description xml:lang="tr">Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir.</Description>
|
||||
<Summary xml:lang="tr">Hızlı Sürüm Denetim Sistemi</Summary>
|
||||
<Description xml:lang="tr">Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir.</Description>
|
||||
<Description xml:lang="es">GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>git-emacs</Name>
|
||||
<Summary xml:lang="tr">emacs için GIT bütünleşmesi</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>git-daemon</Name>
|
||||
<Summary xml:lang="tr">GIT protokolü hizmeti</Summary>
|
||||
<Description xml:lang="tr">git-daemon, GIT protokolü hizmeti sunar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>perl-Git</Name>
|
||||
<Summary xml:lang="tr">GIT için perl arayüzü</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>emacs-Git</Name>
|
||||
<Summary xml:lang="tr">Emacs için git desteği</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>git-svn</Name>
|
||||
<Summary xml:lang="tr">Subversion depolarıyla etkileşmek için gerekli Git araçları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>git-cvs</Name>
|
||||
<Summary xml:lang="tr">CVS depolarıyla etkileşmek için gerekli Git araçları</Summary>
|
||||
<Description xml:lang="tr">perl-Git, GIT için perl arayüzü sunar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>gitk</Name>
|
||||
<Summary xml:lang="tr">Git sürüm ağacı görüntüleyici</Summary>
|
||||
<Description xml:lang="tr">gitk, Git sürüm ağacı görüntüleyicisi sunar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>git-gui</Name>
|
||||
<Summary xml:lang="tr">GIT için basit bir grafik arayüz</Summary>
|
||||
<Description xml:lang="tr">git-gui, GIT için basit bir grafik arayüz sunar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>gitweb</Name>
|
||||
<Summary xml:lang="tr">GIT için Web arayüzü</Summary>
|
||||
<Description xml:lang="tr">gitweb, GIT için Web arayüzü sunar.</Description>
|
||||
<Summary xml:lang="es">interfaz web para GIT</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
|
||||
<!--
|
||||
<Package>
|
||||
<Name>emacs-Git</Name>
|
||||
<Summary xml:lang="tr">Emacs için git desteği</Summary>
|
||||
<Description xml:lang="tr">emacs-Git, Emacs için git desteği sağlar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>git-svn</Name>
|
||||
<Summary xml:lang="tr">Subversion depolarıyla etkileşmek için gerekli Git araçları</Summary>
|
||||
<Description xml:lang="tr">git-svn, Subversion depolarıyla etkileşmek için gerekli Git araçları sağlar.</Description>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>git-cvs</Name>
|
||||
<Summary xml:lang="tr">CVS depolarıyla etkileşmek için gerekli Git araçları</Summary>
|
||||
<Description xml:lang="tr">git-cvs, CVS depolarıyla etkileşmek için gerekli Git araçları sağlar.</Description>
|
||||
</Package>
|
||||
|
||||
|
||||
<Package>
|
||||
<Name>git-emacs</Name>
|
||||
<Summary xml:lang="tr">emacs için GIT bütünleşmesi</Summary>
|
||||
<Description xml:lang="tr">git-emacs, emacs için GIT bütünleşmesi sağlar.</Description>
|
||||
</Package>
|
||||
-->
|
||||
</PISI>
|
||||
@@ -68,6 +68,7 @@
|
||||
<Description>cblas-devel provides development files for cblas</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">blas-devel</Dependency>
|
||||
<Dependency release="current">cblas</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/libcblas.a</Path>
|
||||
@@ -100,13 +101,20 @@
|
||||
<Dependency release="current">blas-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/cmake</Path>
|
||||
<Path fileType="library">/usr/lib/cmake/lapack*</Path>
|
||||
<Path fileType="library">/usr/lib/liblapack.a</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/lapack.pc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="8">
|
||||
<Date>2019-12-12</Date>
|
||||
<Version>3.9.0</Version>
|
||||
<Comment>Fix dependency</Comment>
|
||||
<Name>Blue DeviL</Name>
|
||||
<Email>bluedevil@sctzine.com</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2020-01-19</Date>
|
||||
<Version>3.9.0</Version>
|
||||
@@ -157,4 +165,4 @@
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
@@ -35,4 +35,4 @@
|
||||
<Summary xml:lang="tr">cblas için geliştirme dosyaları</Summary>
|
||||
<Description xml:lang="tr">cblas-devel, cblas için geliştirme dosyaları içerir</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user