diff --git a/desktop/misc/at-spi2-atk/actions.py b/desktop/misc/at-spi2-atk/actions.py new file mode 100644 index 0000000000..59e7d1e981 --- /dev/null +++ b/desktop/misc/at-spi2-atk/actions.py @@ -0,0 +1,21 @@ +#!/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 + +def setup(): + autotools.configure("--disable-static \ + --libexecdir=/usr/libexec/at-spi2") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("AUTHORS", "COPYING", "README", "NEWS") \ No newline at end of file diff --git a/desktop/misc/at-spi2-atk/pspec.xml b/desktop/misc/at-spi2-atk/pspec.xml new file mode 100644 index 0000000000..04dbf1cd19 --- /dev/null +++ b/desktop/misc/at-spi2-atk/pspec.xml @@ -0,0 +1,135 @@ + + + + + at-spi2-atk + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + Protocol definitions and daemons for D-Bus at-spi + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + mirrors://gnome/at-spi2-atk/2.16/at-spi2-atk-2.16.0.tar.xz + + at-spi2-core-devel + glib2-devel + atk-devel + libX11-devel + dbus-devel + libXtst-devel + + + + + at-spi2-atk + + atk + dbus + glib2 + at-spi2-core + + + /usr/lib + /usr/share/doc + + + + + at-spi2-atk-32bit + emul32 + 32-bit shared libraries for at-spi2-atk + emul32 + + glibc-32bit + at-spi2-core-32bit + atk-32bit + dbus-32bit + glib2-32bit + + + glibc-32bit + atk-32bit + dbus-32bit + glib2-32bit + at-spi2-core-32bit + + + /usr/lib32 + + + + + at-spi2-atk-devel + at-spi2-atk için geliştirme dosyaları + + at-spi2-atk + + + /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include + + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-15 + 2.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-27 + 2.8.1 + Move pc files to devel pack, rebuild + split packages + PisiLinux Community + admins@pisilinux.org + + + 2013-06-01 + 2.8.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 2.8.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-17 + 2.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/desktop/misc/at-spi2-atk/translations.xml b/desktop/misc/at-spi2-atk/translations.xml new file mode 100644 index 0000000000..a5556d2f9c --- /dev/null +++ b/desktop/misc/at-spi2-atk/translations.xml @@ -0,0 +1,18 @@ + + + + at-spi2-core + D-Bus at-spi için protokol tanımları ve hizmetleri + at-spi2-atk, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. + + + + at-spi2-atk-32bit + 32-bit shared libraries for at-spi2-atk + + + + at-spi2-atk-devel + at-spi2-atk için geliştirme dosyaları + + diff --git a/programming/misc/json-glib/actions.py b/programming/misc/json-glib/actions.py new file mode 100644 index 0000000000..9b439e2e70 --- /dev/null +++ b/programming/misc/json-glib/actions.py @@ -0,0 +1,41 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools + + +def setup(): + options = "--disable-gtk-doc-html \ + --disable-gtk-doc \ + --enable-introspection \ + " + + if get.buildTYPE() == "_emul32": + options += " --libdir=/usr/lib32 \ + --bindir=/_emul32/bin \ + --sbindir=/_emul32/sbin \ + " + shelltools.export("CC", "%s -m32" % get.CC()) + shelltools.export("CXX", "%s -m32" % get.CXX()) + shelltools.export("PKG_CONFIG_PATH", "/usr/lib32/pkgconfig") + + autotools.configure(options) + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + if get.buildTYPE() == "_emul32": + pisitools.removeDir("/_emul32") + + pisitools.removeDir("/usr/share/gtk-doc") + + pisitools.dodoc("ChangeLog", "NEWS") \ No newline at end of file diff --git a/programming/misc/json-glib/pspec.xml b/programming/misc/json-glib/pspec.xml new file mode 100644 index 0000000000..677e3539f8 --- /dev/null +++ b/programming/misc/json-glib/pspec.xml @@ -0,0 +1,121 @@ + + + + + json-glib + http://live.gnome.org/JsonGlib + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + Library for JavaScript Object Notation format + json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. + mirrors://gnome/json-glib/1.0/json-glib-1.0.2.tar.xz + + gobject-introspection-devel + glib2-devel + + + + + json-glib + + gobject-introspection + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + + json-glib-devel + Development files for json-glib + + json-glib + + + /usr/include + /usr/share/gir* + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + json-glib-32bit + emul32 + 32-bit shared libraries for json-glib + _emul32 + + glibc-32bit + glib2-32bit + + + glibc-32bit + glib2-32bit + json-glib + + + /usr/lib32 + + + + + + 2015-03-18 + 1.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-18 + 1.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-30 + 1.0.0 + 32bit split packages. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-30 + 1.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-13 + 0.16.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-09 + 0.16.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 0.15.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + diff --git a/programming/misc/json-glib/translations.xml b/programming/misc/json-glib/translations.xml new file mode 100644 index 0000000000..a0aa7674d7 --- /dev/null +++ b/programming/misc/json-glib/translations.xml @@ -0,0 +1,18 @@ + + + + json-glib + JavaScript Nesne Notasyon biçimi için bir kitaplık + json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. + + + + json-glib-devel + json-glib için geliştirme dosyaları + + + + json-glib-32bit + json-glib için 32-bit paylaşımlı kitaplıklar + + \ No newline at end of file