Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/electrum/
Date: Wed, 31 Jul 2019 03:03:47
Message-Id: 1564541581.fd53c9129692c0ab8bb8a2e26ba92e5eb9aa3608.mgorny@gentoo
1 commit: fd53c9129692c0ab8bb8a2e26ba92e5eb9aa3608
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jul 31 02:53:01 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Wed Jul 31 02:53:01 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd53c912
7
8 net-misc/electrum: Fix icon cache update
9
10 Closes: https://bugs.gentoo.org/691040
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 net-misc/electrum/electrum-3.3.6-r1.ebuild | 10 +++-------
14 1 file changed, 3 insertions(+), 7 deletions(-)
15
16 diff --git a/net-misc/electrum/electrum-3.3.6-r1.ebuild b/net-misc/electrum/electrum-3.3.6-r1.ebuild
17 index 330ad0367b4..f1295df3d32 100644
18 --- a/net-misc/electrum/electrum-3.3.6-r1.ebuild
19 +++ b/net-misc/electrum/electrum-3.3.6-r1.ebuild
20 @@ -6,7 +6,7 @@ EAPI="7"
21 PYTHON_COMPAT=( python3_6 )
22 PYTHON_REQ_USE="ncurses?"
23
24 -inherit desktop distutils-r1 gnome2-utils xdg-utils
25 +inherit desktop distutils-r1 xdg-utils
26
27 MY_P="Electrum-${PV}"
28 DESCRIPTION="User friendly Bitcoin client"
29 @@ -163,16 +163,12 @@ src_install() {
30 distutils-r1_src_install
31 }
32
33 -pkg_preinst() {
34 - gnome2_icon_savelist
35 -}
36 -
37 pkg_postinst() {
38 - gnome2_icon_cache_update
39 + xdg_icon_cache_update
40 xdg_desktop_database_update
41 }
42
43 pkg_postrm() {
44 - gnome2_icon_cache_update
45 + xdg_icon_cache_update
46 xdg_desktop_database_update
47 }