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 D24C6138334 for ; Mon, 29 Apr 2019 14:53:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 79776E086F; Mon, 29 Apr 2019 14:53:13 +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 16013E087B for ; Mon, 29 Apr 2019 14:53:12 +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 60662342F3C for ; Mon, 29 Apr 2019 14:53:11 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 510F2326 for ; Mon, 29 Apr 2019 14:53:09 +0000 (UTC) From: "Matthias Maier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matthias Maier" Message-ID: <1556549509.691672731023785351a4f049cb749957474ecfeb.tamiko@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/qemu/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/qemu/qemu-4.0.0.ebuild X-VCS-Directories: app-emulation/qemu/ X-VCS-Committer: tamiko X-VCS-Committer-Name: Matthias Maier X-VCS-Revision: 691672731023785351a4f049cb749957474ecfeb X-VCS-Branch: master Date: Mon, 29 Apr 2019 14:53:09 +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: 80df6ab9-831d-4007-8d70-88be939b5a9d X-Archives-Hash: dd99bc991df9b04df83e2702ad754097 commit: 691672731023785351a4f049cb749957474ecfeb Author: Matthias Maier gentoo org> AuthorDate: Mon Apr 29 14:47:06 2019 +0000 Commit: Matthias Maier gentoo org> CommitDate: Mon Apr 29 14:51:49 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69167273 app-emulation/qemu: update icon cache Closes: https://bugs.gentoo.org/684726 Package-Manager: Portage-2.3.65, Repoman-2.3.12 Signed-off-by: Matthias Maier gentoo.org> app-emulation/qemu/qemu-4.0.0.ebuild | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/app-emulation/qemu/qemu-4.0.0.ebuild b/app-emulation/qemu/qemu-4.0.0.ebuild index 9d2e78ef09c..c3556790105 100644 --- a/app-emulation/qemu/qemu-4.0.0.ebuild +++ b/app-emulation/qemu/qemu-4.0.0.ebuild @@ -11,7 +11,7 @@ PLOCALES="bg de_DE fr_FR hu it tr zh_CN" FIRMWARE_ABI_VERSION="2.11.1-r50" inherit eutils linux-info toolchain-funcs multilib python-r1 \ - user udev fcaps readme.gentoo-r1 pax-utils l10n + user udev fcaps readme.gentoo-r1 pax-utils l10n xdg-utils if [[ ${PV} = *9999* ]]; then EGIT_REPO_URI="git://git.qemu.org/qemu.git" @@ -758,6 +758,8 @@ pkg_postinst() { udev_reload fi + xdg_icon_cache_update + [[ -f ${EROOT}/usr/libexec/qemu-bridge-helper ]] && \ fcaps cap_net_admin /usr/libexec/qemu-bridge-helper @@ -797,3 +799,7 @@ pkg_info() { fi echo " $(best_version sys-firmware/sgabios)" } + +pkg_postrm() { + xdg_icon_cache_update +}