[arch-commits] Commit in at-spi2-core/repos/extra-x86_64 (3 files)

Jan Steffens heftig at archlinux.org
Wed Mar 13 20:55:45 UTC 2019


    Date: Wednesday, March 13, 2019 @ 20:55:44
  Author: heftig
Revision: 347863

archrelease: copy trunk to extra-x86_64

Added:
  at-spi2-core/repos/extra-x86_64/PKGBUILD
    (from rev 347862, at-spi2-core/trunk/PKGBUILD)
Deleted:
  at-spi2-core/repos/extra-x86_64/PKGBUILD
  at-spi2-core/repos/extra-x86_64/fallback.diff

---------------+
 PKGBUILD      |   93 ++++++++++++++++++++++++++------------------------------
 fallback.diff |   27 ----------------
 2 files changed, 44 insertions(+), 76 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2019-03-13 20:55:05 UTC (rev 347862)
+++ PKGBUILD	2019-03-13 20:55:44 UTC (rev 347863)
@@ -1,49 +0,0 @@
-# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
-# Contributor: Ionut Biru <ibiru at archlinux.org>
-
-pkgname=at-spi2-core
-pkgver=2.30.1
-pkgrel=1
-pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
-url="https://gitlab.gnome.org/GNOME/at-spi2-core"
-arch=(x86_64)
-license=(GPL2)
-depends=(dbus glib2 libxtst)
-makedepends=(intltool gobject-introspection git gtk-doc meson dbus-broker)
-optdepends=('dbus-broker: Alternative bus implementation')
-_commit=92a98cc17f6aa624ca501def329af4efd8196050  # tags/AT_SPI2_CORE_2_30_1^0
-source=("git+https://gitlab.gnome.org/GNOME/at-spi2-core.git#commit=$_commit"
-        fallback.diff)
-sha256sums=('SKIP'
-            'e2254af6fe94a42402544dc9fd0f322318d2809be01ef1e9e944388f2aa3cad7')
-
-pkgver() {
-  cd $pkgname
-  git describe --tags | sed 's/^AT_SPI2_CORE_//;s/_/./g;s/-/+/g'
-}
-
-prepare() {
-  cd $pkgname
-
-  # Try to unbreak fallback
-  patch -Np1 -i ../fallback.diff
-}
-
-build() {
-  arch-meson $pkgname build \
-    -D default_bus=dbus-broker \
-    -D enable_docs=true
-  ninja -C build
-}
-
-check() {
-  # memory test fails without desktop
-  # broker fails to launch without journald
-  dbus-run-session meson test -C build || :
-}
-
-package() {
-  DESTDIR="$pkgdir" meson install -C build
-}
-
-# vim:set ts=2 sw=2 et:

Copied: at-spi2-core/repos/extra-x86_64/PKGBUILD (from rev 347862, at-spi2-core/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2019-03-13 20:55:44 UTC (rev 347863)
@@ -0,0 +1,44 @@
+# Maintainer: Jan Alexander Steffens (heftig) <jan.steffens at gmail.com>
+# Contributor: Ionut Biru <ibiru at archlinux.org>
+
+pkgname=at-spi2-core
+pkgver=2.32.0
+pkgrel=1
+pkgdesc="Protocol definitions and daemon for D-Bus at-spi"
+url="https://gitlab.gnome.org/GNOME/at-spi2-core"
+arch=(x86_64)
+license=(GPL2)
+depends=(dbus glib2 libxtst)
+makedepends=(intltool gobject-introspection git gtk-doc meson dbus-broker)
+optdepends=('dbus-broker: Alternative bus implementation')
+_commit=cd55a73884a1371718f45dd22340b5d4ddf41dbb  # tags/AT_SPI2_CORE_2_32_0^0
+source=("git+https://gitlab.gnome.org/GNOME/at-spi2-core.git#commit=$_commit")
+sha256sums=('SKIP')
+
+pkgver() {
+  cd $pkgname
+  git describe --tags | sed 's/^AT_SPI2_CORE_//;s/_/./g;s/-/+/g'
+}
+
+prepare() {
+  cd $pkgname
+}
+
+build() {
+  arch-meson $pkgname build \
+    -D default_bus=dbus-broker \
+    -D docs=true
+  ninja -C build
+}
+
+check() {
+  # memory test fails without desktop
+  # broker fails to launch without journald
+  dbus-run-session meson test -C build || :
+}
+
+package() {
+  DESTDIR="$pkgdir" meson install -C build
+}
+
+# vim:set ts=2 sw=2 et:

Deleted: fallback.diff
===================================================================
--- fallback.diff	2019-03-13 20:55:05 UTC (rev 347862)
+++ fallback.diff	2019-03-13 20:55:44 UTC (rev 347863)
@@ -1,27 +0,0 @@
- bus/at-spi-bus-launcher.c | 6 +++++-
- 1 file changed, 5 insertions(+), 1 deletion(-)
-
-diff --git c/bus/at-spi-bus-launcher.c i/bus/at-spi-bus-launcher.c
-index 5d58dff..994a767 100644
---- c/bus/at-spi-bus-launcher.c
-+++ i/bus/at-spi-bus-launcher.c
-@@ -293,7 +293,9 @@ ensure_a11y_bus_daemon (A11yBusLauncher *app, char *config_path)
- 
-   if (pipe (app->pipefd) < 0)
-     g_error ("Failed to create pipe: %s", strerror (errno));
--  
-+
-+  g_clear_pointer (&app->a11y_launch_error_message, g_free);
-+
-   if (!g_spawn_async (NULL,
-                       argv,
-                       NULL,
-@@ -389,6 +391,8 @@ ensure_a11y_bus_broker (A11yBusLauncher *app, char *config_path)
-   if (listen (app->listenfd, 1024) < 0)
-     g_error ("Failed to listen on socket: %s", strerror(errno));
- 
-+  g_clear_pointer (&app->a11y_launch_error_message, g_free);
-+
-   if (!g_spawn_async (NULL,
-                       argv,
-                       NULL,



More information about the arch-commits mailing list