diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-31 10:12:18 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2019-05-31 10:30:16 +0000 |
commit | dcedaed3e5d35a1c15a707f03d8f8f78123051e0 (patch) | |
tree | ed41a9d14d189c9a537dee6f21ec7246b4176c6b /testing | |
parent | e8549d3a7df184630d46688c2b355ccb8283c808 (diff) | |
download | aports-dcedaed3e5d35a1c15a707f03d8f8f78123051e0.tar.bz2 aports-dcedaed3e5d35a1c15a707f03d8f8f78123051e0.tar.xz |
community/ibus: move from testing
needed by gtksourceview testsuite
Diffstat (limited to 'testing')
-rw-r--r-- | testing/ibus/0001-Use-more-portable-call-to-mktemp.patch | 28 | ||||
-rw-r--r-- | testing/ibus/APKBUILD | 56 | ||||
-rwxr-xr-x | testing/ibus/ibus.post-install | 3 |
3 files changed, 0 insertions, 87 deletions
diff --git a/testing/ibus/0001-Use-more-portable-call-to-mktemp.patch b/testing/ibus/0001-Use-more-portable-call-to-mktemp.patch deleted file mode 100644 index 2e15dae89d..0000000000 --- a/testing/ibus/0001-Use-more-portable-call-to-mktemp.patch +++ /dev/null @@ -1,28 +0,0 @@ -From 2083455a9e1de2980d229b5f98788b563498e2dc Mon Sep 17 00:00:00 2001 -From: Drew DeVault <sir@cmpwn.com> -Date: Mon, 15 Jan 2018 13:49:09 -0500 -Subject: [PATCH] Use more portable call to mktemp - ---tmpdir is not supported by BusyBox. - -Signed-off-by: Drew DeVault <sir@cmpwn.com> ---- - data/dconf/make-dconf-override-db.sh | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/data/dconf/make-dconf-override-db.sh b/data/dconf/make-dconf-override-db.sh -index 9c650e97..38838d09 100755 ---- a/data/dconf/make-dconf-override-db.sh -+++ b/data/dconf/make-dconf-override-db.sh -@@ -6,7 +6,7 @@ set -e - # breaks dbus-launch. There's dbus-run-session which is - # better, but not everyone has it yet. - export DBUS_FATAL_WARNINGS=0 --export TMPDIR=$(mktemp -d --tmpdir="$PWD") -+export TMPDIR=$(TMPDIR="$PWD" mktemp -d) - export XDG_CONFIG_HOME="$TMPDIR/config" - export XDG_CACHE_HOME="$TMPDIR/cache" - export GSETTINGS_SCHEMA_DIR="$TMPDIR/schemas" --- -2.15.0 - diff --git a/testing/ibus/APKBUILD b/testing/ibus/APKBUILD deleted file mode 100644 index cba626c984..0000000000 --- a/testing/ibus/APKBUILD +++ /dev/null @@ -1,56 +0,0 @@ -# Maintainer: Drew DeVault <sir@cmpwn.com> -pkgname=ibus -pkgver=1.5.20 -pkgrel=1 -pkgdesc="Next Generation Input Bus for Linux" -url="https://github.com/ibus/ibus/wiki" -arch="all" -license="LGPL-2.1-or-later" -depends=" - dconf hicolor-icon-theme iso-codes dbus py-gobject3 -" -makedepends=" - dconf-dev gtk+-dev gtk+3.0-dev libnotify-dev iso-codes-dev librsvg-dev - gobject-introspection-dev vala intltool qt5-qtbase - automake autoconf gnome-common gtk-doc wayland-dev wayland-protocols gconf - dbus-x11 unicode-character-database -" -subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" -source=" - $pkgname-$pkgver.tar.gz::https://github.com/ibus/ibus/archive/$pkgver.tar.gz - 0001-Use-more-portable-call-to-mktemp.patch -" -install="$pkgname.post-install" -builddir="$srcdir/$pkgname-$pkgver" - -prepare() { - default_prepare - NOCONFIGURE=1 ./autogen.sh -} - -build() { - ./configure \ - --prefix=/usr \ - --libexecdir=/usr/lib/ibus \ - --sysconfdir=/etc \ - --disable-gconf \ - --enable-dconf \ - --enable-wayland \ - --disable-memconf \ - --enable-ui \ - --disable-gtk-doc \ - --disable-emoji-dict \ - --with-ucd-dir=/usr/share/unicode/ - make -} - -check() { - ./bus/ibus-daemon --version -} - -package() { - make DESTDIR="$pkgdir" install -} - -sha512sums="a8174c5a8266a546310b14fae442cb9f03dd8f284f2c2db626fe4ccddb06810af9dde69939b3074c714442e4ee07596a0fb875478328eba9c0c8017fff2128e9 ibus-1.5.20.tar.gz -1e2e62ce52becf75d794c403e8f21bb72e8406aacbdbc5189f62a3b7c54166c40da0032d3f3865f5a23d9d2c782f974b7bcc9ba5ce437d9eb435dd3db3ff0b06 0001-Use-more-portable-call-to-mktemp.patch" diff --git a/testing/ibus/ibus.post-install b/testing/ibus/ibus.post-install deleted file mode 100755 index 8d323626f0..0000000000 --- a/testing/ibus/ibus.post-install +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh -which gtk-query-immodules-2.0 && gtk-query-immodules-2.0 --update-cache -which gtk-query-immodules-3.0 && gtk-query-immodules-3.0 --update-cache |