Merge pull request #4824 from suvari/master
python-pyatspi, liblouis: new packages for accesibility
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pythonmodules
|
||||
|
||||
def setup():
|
||||
# autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make("-j1")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog")
|
||||
|
||||
|
||||
shelltools.export("LD_PRELOAD","%s/liblouis/.libs/liblouis.so.12" % get.curDIR())
|
||||
shelltools.cd("python")
|
||||
|
||||
pythonmodules.install("--prefix=/usr --optimize=1")
|
||||
pythonmodules.install("--prefix=/usr --optimize=1",pyVer = "3")
|
||||
|
||||
@@ -0,0 +1,54 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>liblouis</Name>
|
||||
<Homepage>http://liblouis.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<Summary>Open-source braille translator and back-translator</Summary>
|
||||
<Description>Open-source braille translator and back-translator</Description>
|
||||
<Archive sha1sum="d880925ea38081dc3484281f2487679912de6689" type="targz">https://github.com/liblouis/liblouis/releases/download/v3.5.0/liblouis-3.5.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>liblouis</Name>
|
||||
<Files>
|
||||
<Path fileType="config">/etc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>liblouis-devel</Name>
|
||||
<Summary>Development files for liblouis</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">liblouis</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="2">
|
||||
<Date>2018-05-06</Date>
|
||||
<Version>3.5.0</Version>
|
||||
<Comment>First Release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
WorkDir = "pyatspi-%s" % get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
autotools.autoreconf("-fi")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "README", "NEWS")
|
||||
@@ -0,0 +1,42 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pyatspi</Name>
|
||||
<Homepage>http://www.linuxfoundation.org/collaborate/workgroups/accessibility</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<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>
|
||||
<BuildDependencies>
|
||||
<Dependency>python-pygobject3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-pyatspi</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>at-spi2-core</Dependency>
|
||||
<Dependency>python-pygobject3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/lib/python*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-05-06</Date>
|
||||
<Version>2.26.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-pyatspi</Name>
|
||||
<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>
|
||||
+148764
-148671
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
4e29105dbd7a14a097d03f49546dffbdb660b5c7
|
||||
b81abde42017f2717ae76f530cc788c3057a3b38
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
daf8992ea687ee5c56be3285298bc6b6c35f8597
|
||||
f6d7a94128afc29fac3830fad48ce98a1bf01ac7
|
||||
Reference in New Issue
Block a user