From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A89C4158092 for ; Sat, 11 Sep 2021 13:16:02 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DE605E07C5; Sat, 11 Sep 2021 13:16:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C414BE07C5 for ; Sat, 11 Sep 2021 13:16:01 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 997B1342C8A for ; Sat, 11 Sep 2021 13:16:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 07C682A for ; Sat, 11 Sep 2021 13:15:59 +0000 (UTC) From: "Mart Raudsepp" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mart Raudsepp" Message-ID: <1631366052.2491ef999d22a19b61a466c5d8df8542eb516435.leio@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gui-libs/gtk/ X-VCS-Repository: repo/gentoo X-VCS-Files: gui-libs/gtk/gtk-4.4.0.ebuild X-VCS-Directories: gui-libs/gtk/ X-VCS-Committer: leio X-VCS-Committer-Name: Mart Raudsepp X-VCS-Revision: 2491ef999d22a19b61a466c5d8df8542eb516435 X-VCS-Branch: master Date: Sat, 11 Sep 2021 13:15:59 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 67841505-a3b4-4d52-bd37-5bc3cd21a139 X-Archives-Hash: 142f66e13f396f174911382123f7c337 commit: 2491ef999d22a19b61a466c5d8df8542eb516435 Author: Mart Raudsepp gentoo org> AuthorDate: Sat Sep 11 13:13:56 2021 +0000 Commit: Mart Raudsepp gentoo org> CommitDate: Sat Sep 11 13:14:12 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2491ef99 gui-libs/gtk: fix missing icon cache update with USE=examples xdg.eclass was already used, but the phases were overridden without chaining up to them for the eclass to just take care of it with the code that automatically checks if any icons are installed. Package-Manager: Portage-3.0.20, Repoman-3.0.2 Signed-off-by: Mart Raudsepp gentoo.org> gui-libs/gtk/gtk-4.4.0.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/gui-libs/gtk/gtk-4.4.0.ebuild b/gui-libs/gtk/gtk-4.4.0.ebuild index f0a65fdf2fe..aaac1d34fc3 100644 --- a/gui-libs/gtk/gtk-4.4.0.ebuild +++ b/gui-libs/gtk/gtk-4.4.0.ebuild @@ -176,10 +176,12 @@ src_install() { } pkg_preinst() { + xdg_pkg_preinst gnome2_schemas_savelist } pkg_postinst() { + xdg_pkg_postinst gnome2_schemas_update if ! has_version "app-text/evince"; then @@ -190,5 +192,6 @@ pkg_postinst() { } pkg_postrm() { + xdg_pkg_postrm gnome2_schemas_update }