From 250630d076cb0c0602cfd2e1fe56f80b48febe34 Mon Sep 17 00:00:00 2001 From: Simon Zeni <simon@bl4ckb0ne.ca> Date: Mon, 5 Jul 2021 12:28:42 -0400 Subject: [PATCH] community/gedit: add runtime dependency to gsettings-desktop-schemas Otherwise the following error is printed out on screen ``` (gedit:16586): GLib-GIO-ERROR **: 12:27:23.399: Settings schema 'org.gnome.desktop.interface' is not installed Trace/breakpoint trap ``` --- community/gedit/APKBUILD | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/community/gedit/APKBUILD b/community/gedit/APKBUILD index cee576a467ce..b79a84f576a7 100644 --- a/community/gedit/APKBUILD +++ b/community/gedit/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Rasmus Thomsen <oss@cogitri.dev> pkgname=gedit pkgver=40.1 -pkgrel=0 +pkgrel=1 pkgdesc="gedit is the GNOME text editor" url="https://wiki.gnome.org/Apps/Gedit" arch="all !s390x !mips !mips64 !riscv64" # limited by librsvg -> rust @@ -12,6 +12,7 @@ makedepends="meson glib-dev gtk+3.0-dev gtksourceview4-dev libpeas-dev libxml2-dev libsoup-dev gspell-dev libx11-dev gobject-introspection-dev vala gtk-doc itstool perl tepl-dev" checkdepends="appstream-glib desktop-file-utils" +depends="gsettings-desktop-schemas" subpackages="$pkgname-dev $pkgname-doc $pkgname-lang" source="https://download.gnome.org/sources/gedit/${pkgver%.*}/gedit-$pkgver.tar.xz" -- GitLab