python3-pyatspi:First release

This commit is contained in:
Rmys
2019-03-21 19:06:49 +03:00
parent 1b3953c148
commit 1572579fe8
8 changed files with 193 additions and 21 deletions
@@ -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 --with-python=/usr/bin/python3")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README", "NEWS")
@@ -0,0 +1,44 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>python3-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>python3-pyatspi provides a python client library for the AT-SPI D-Bus accessibility infrastructure.</Description>
<Archive sha1sum="6f74760981f4494bbfe831242eff820b6428611d" type="tarxz">http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.30/pyatspi-2.30.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>at-spi2-core-devel</Dependency>
<Dependency>python-pygobject3-devel</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>python3-pyatspi</Name>
<RuntimeDependencies>
<Dependency>at-spi2-core</Dependency>
<Dependency>python3-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-08-30</Date>
<Version>2.30.0</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@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">python3-pyatspi AT-SPI D-Bus erişilebilirlik altyapısı için python istemci kitaplığıdır.</Description>
</Source>
</PISI>