[arch-commits] Commit in pyatspi/repos (2 files)

Jan Steffens heftig at archlinux.org
Tue Sep 4 17:59:00 UTC 2018


    Date: Tuesday, September 4, 2018 @ 17:59:00
  Author: heftig
Revision: 333318

archrelease: copy trunk to gnome-unstable-any

Added:
  pyatspi/repos/gnome-unstable-any/
  pyatspi/repos/gnome-unstable-any/PKGBUILD
    (from rev 333317, pyatspi/trunk/PKGBUILD)

----------+
 PKGBUILD |   54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 54 insertions(+)

Copied: pyatspi/repos/gnome-unstable-any/PKGBUILD (from rev 333317, pyatspi/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-any/PKGBUILD	                        (rev 0)
+++ gnome-unstable-any/PKGBUILD	2018-09-04 17:59:00 UTC (rev 333318)
@@ -0,0 +1,54 @@
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgbase=pyatspi
+pkgname=(python-atspi python2-atspi)
+pkgver=2.30.0
+pkgrel=1
+arch=(any)
+url="https://wiki.linuxfoundation.org/en/AT-SPI_on_D-Bus"
+license=(GPL2)
+makedepends=(python-gobject python2-gobject at-spi2-core git)
+_commit=d30a7395564409a2bc2a3190a27b179c02295596  # tags/PYATSPI_2_30_0^0
+source=("git+https://gitlab.gnome.org/GNOME/pyatspi2.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd pyatspi2
+  git describe --tags | sed 's/^PYATSPI_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  mkdir python2 python3
+  cd pyatspi2
+  NOCONFIGURE=1 ./autogen.sh
+}
+
+_build() (
+  cd python$1
+  ../pyatspi2/configure --prefix=/usr --with-python=/usr/bin/python$1
+  make
+)
+
+build() {
+  _build 2
+  _build 3
+}
+
+package_python-atspi() {
+  pkgdesc="Python 3 bindings for at-spi"
+  depends=(python-gobject at-spi2-core)
+
+  cd python3
+  make DESTDIR="$pkgdir" install
+}
+
+package_python2-atspi() {
+  pkgdesc="Python 2 bindings for at-spi"
+  depends=(python2-gobject at-spi2-core)
+
+  cd python2
+  make DESTDIR="$pkgdir" install
+}
+
+# vim:set ts=2 sw=2 et:



More information about the arch-commits mailing list