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 80A1F13835A for ; Sat, 6 Jun 2020 09:42:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9DE66E0965; Sat, 6 Jun 2020 09:42:13 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 888C2E0965 for ; Sat, 6 Jun 2020 09:42:13 +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 336AF34F23E for ; Sat, 6 Jun 2020 09:42:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1B3F27E for ; Sat, 6 Jun 2020 09:42:08 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1591436509.3b17e21c9cc528fed99d13c264aebe0e949b3b56.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/musique/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/musique/musique-1.5-r1.ebuild X-VCS-Directories: media-sound/musique/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 3b17e21c9cc528fed99d13c264aebe0e949b3b56 X-VCS-Branch: master Date: Sat, 6 Jun 2020 09:42:08 +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: a1c31fc0-4c53-4a49-9853-f2a779eebe1b X-Archives-Hash: b2209dc4866eb07aa19983ac368cac5a commit: 3b17e21c9cc528fed99d13c264aebe0e949b3b56 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sat Jun 6 08:13:09 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sat Jun 6 09:41:49 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b17e21c media-sound/musique: EAPI-7 bump, switch to xdg-utils Package-Manager: Portage-2.3.100, Repoman-2.3.22 Signed-off-by: Andreas Sturmlechner gentoo.org> media-sound/musique/musique-1.5-r1.ebuild | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/media-sound/musique/musique-1.5-r1.ebuild b/media-sound/musique/musique-1.5-r1.ebuild index 9e7f3e33e4c..1763328bfb0 100644 --- a/media-sound/musique/musique-1.5-r1.ebuild +++ b/media-sound/musique/musique-1.5-r1.ebuild @@ -1,9 +1,9 @@ # Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="6" +EAPI=7 -inherit gnome2-utils qmake-utils +inherit qmake-utils xdg-utils DESCRIPTION="Qt music player" HOMEPAGE="https://flavio.tordini.org/musique" @@ -28,6 +28,7 @@ RDEPEND=" DEPEND="${RDEPEND}" DOCS=( CHANGES TODO ) + PATCHES=( "${FILESDIR}/${P}-unbundle-qtsingleapplication.patch" ) src_prepare() { @@ -44,14 +45,10 @@ src_install() { einstalldocs } -pkg_preinst() { - gnome2_icon_savelist -} - pkg_postinst() { - gnome2_icon_cache_update + xdg_icon_cache_update } pkg_postrm() { - gnome2_icon_cache_update + xdg_icon_cache_update }