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 3336B139084 for ; Wed, 20 Dec 2017 22:40:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3B80AE0FB8; Wed, 20 Dec 2017 22:40:23 +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 1B40FE0FB8 for ; Wed, 20 Dec 2017 22:40:23 +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 AA53733D4A6 for ; Wed, 20 Dec 2017 22:40:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FB13AE89 for ; Wed, 20 Dec 2017 22:40:20 +0000 (UTC) From: "Patrice Clement" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Patrice Clement" Message-ID: <1513809509.d503828cfe88f7cd3ce262cc40f0db31316f46b2.monsieurp@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/patchage/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/patchage/patchage-0.5.0-r2.ebuild media-sound/patchage/patchage-1.0.0-r1.ebuild X-VCS-Directories: media-sound/patchage/ X-VCS-Committer: monsieurp X-VCS-Committer-Name: Patrice Clement X-VCS-Revision: d503828cfe88f7cd3ce262cc40f0db31316f46b2 X-VCS-Branch: master Date: Wed, 20 Dec 2017 22:40:20 +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-Archives-Salt: 6408e0c8-f1ae-4f55-ad7b-9d7538883f9b X-Archives-Hash: 97c80f018b2af057a8dac5ffc04c4423 commit: d503828cfe88f7cd3ce262cc40f0db31316f46b2 Author: Karl Linden gmail com> AuthorDate: Tue Dec 5 12:44:44 2017 +0000 Commit: Patrice Clement gentoo org> CommitDate: Wed Dec 20 22:38:29 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d503828c media-sound/patchage: update icons cache. This fixes QA warnings about missing calls to gnome2_icon_cache_update. Package-Manager: Portage-2.3.16, Repoman-2.3.6 media-sound/patchage/patchage-0.5.0-r2.ebuild | 10 +++++++++- media-sound/patchage/patchage-1.0.0-r1.ebuild | 10 +++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/media-sound/patchage/patchage-0.5.0-r2.ebuild b/media-sound/patchage/patchage-0.5.0-r2.ebuild index ecd4516090e..98b3a269c3f 100644 --- a/media-sound/patchage/patchage-0.5.0-r2.ebuild +++ b/media-sound/patchage/patchage-0.5.0-r2.ebuild @@ -5,7 +5,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE='threads(+)' -inherit flag-o-matic waf-utils python-any-r1 +inherit flag-o-matic gnome2-utils waf-utils python-any-r1 DESCRIPTION="Modular patch bay for audio and MIDI systems" HOMEPAGE="http://wiki.drobilla.net/Patchage" @@ -43,3 +43,11 @@ src_configure() { $(use alsa || echo "--no-alsa") \ $(use lash || echo "--no-lash") } + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +} diff --git a/media-sound/patchage/patchage-1.0.0-r1.ebuild b/media-sound/patchage/patchage-1.0.0-r1.ebuild index 98c7403ade2..6fe9924872d 100644 --- a/media-sound/patchage/patchage-1.0.0-r1.ebuild +++ b/media-sound/patchage/patchage-1.0.0-r1.ebuild @@ -4,7 +4,7 @@ EAPI=6 PYTHON_COMPAT=( python2_7 ) PYTHON_REQ_USE='threads(+)' -inherit waf-utils python-any-r1 +inherit gnome2-utils waf-utils python-any-r1 DESCRIPTION="Modular patch bay for JACK-based audio and MIDI systems" HOMEPAGE="http://drobilla.net/software/patchage" @@ -38,3 +38,11 @@ src_configure() { $(use jack-dbus && echo "--jack-dbus") \ $(use session && echo "--jack-session-manage") } + +pkg_postinst() { + gnome2_icon_cache_update +} + +pkg_postrm() { + gnome2_icon_cache_update +}