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 EDA66138335 for ; Wed, 31 Jul 2019 03:03:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D8029E078A; Wed, 31 Jul 2019 03:03:46 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 AA171E078A for ; Wed, 31 Jul 2019 03:03:46 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 4D955349030 for ; Wed, 31 Jul 2019 03:03:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC4E7738 for ; Wed, 31 Jul 2019 03:03:42 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1564541581.fd53c9129692c0ab8bb8a2e26ba92e5eb9aa3608.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/electrum/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-misc/electrum/electrum-3.3.6-r1.ebuild X-VCS-Directories: net-misc/electrum/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: fd53c9129692c0ab8bb8a2e26ba92e5eb9aa3608 X-VCS-Branch: master Date: Wed, 31 Jul 2019 03:03:42 +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: 87866b84-b4c1-4648-be55-92dc1d9fc680 X-Archives-Hash: 0455d2d2f2d38ded24d2bc6162fb8385 commit: fd53c9129692c0ab8bb8a2e26ba92e5eb9aa3608 Author: Michał Górny gentoo org> AuthorDate: Wed Jul 31 02:53:01 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jul 31 02:53:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd53c912 net-misc/electrum: Fix icon cache update Closes: https://bugs.gentoo.org/691040 Signed-off-by: Michał Górny gentoo.org> net-misc/electrum/electrum-3.3.6-r1.ebuild | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/net-misc/electrum/electrum-3.3.6-r1.ebuild b/net-misc/electrum/electrum-3.3.6-r1.ebuild index 330ad0367b4..f1295df3d32 100644 --- a/net-misc/electrum/electrum-3.3.6-r1.ebuild +++ b/net-misc/electrum/electrum-3.3.6-r1.ebuild @@ -6,7 +6,7 @@ EAPI="7" PYTHON_COMPAT=( python3_6 ) PYTHON_REQ_USE="ncurses?" -inherit desktop distutils-r1 gnome2-utils xdg-utils +inherit desktop distutils-r1 xdg-utils MY_P="Electrum-${PV}" DESCRIPTION="User friendly Bitcoin client" @@ -163,16 +163,12 @@ src_install() { distutils-r1_src_install } -pkg_preinst() { - gnome2_icon_savelist -} - pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update xdg_desktop_database_update } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update xdg_desktop_database_update }