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 E3856138335 for ; Thu, 13 Dec 2018 22:26:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E714DE0E20; Thu, 13 Dec 2018 22:26: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 BAC06E0E20 for ; Thu, 13 Dec 2018 22:26: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 DC079335CE7 for ; Thu, 13 Dec 2018 22:26:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9E10A4E8 for ; Thu, 13 Dec 2018 22:26:09 +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: <1544739947.eec553abbf4ddc2b063218c62730cd33250e720c.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/gwenview/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/gwenview/gwenview-18.12.0.ebuild X-VCS-Directories: kde-apps/gwenview/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: eec553abbf4ddc2b063218c62730cd33250e720c X-VCS-Branch: master Date: Thu, 13 Dec 2018 22:26: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: 34765526-d24a-488e-a424-f4ba093d21b3 X-Archives-Hash: 672e0456422f82b45f3d0bf37caa0ba4 commit: eec553abbf4ddc2b063218c62730cd33250e720c Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 13 22:07:42 2018 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Thu Dec 13 22:25:47 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eec553ab kde-apps/gwenview: Reduce pkg_postinst spam Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/gwenview/gwenview-18.12.0.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/kde-apps/gwenview/gwenview-18.12.0.ebuild b/kde-apps/gwenview/gwenview-18.12.0.ebuild index 5481e1d6300..a580d5a58cc 100644 --- a/kde-apps/gwenview/gwenview-18.12.0.ebuild +++ b/kde-apps/gwenview/gwenview-18.12.0.ebuild @@ -68,6 +68,7 @@ DEPEND="${COMMON_DEPEND} RDEPEND="${COMMON_DEPEND} $(add_frameworks_dep kimageformats) $(add_qt_dep qtimageformats) + kipi? ( media-plugins/kipi-plugins:5 ) " src_prepare() { @@ -99,11 +100,7 @@ src_configure() { pkg_postinst() { kde5_pkg_postinst - if ! has_version kde-apps/svgpart:${SLOT} ; then + if [[ -z "${REPLACING_VERSIONS}" ]] && ! has_version kde-apps/svgpart:${SLOT} ; then elog "For SVG support, install kde-apps/svgpart:${SLOT}" fi - - if use kipi && ! has_version media-plugins/kipi-plugins ; then - elog "Plugins for the KIPI interface can be found in media-plugins/kipi-plugins" - fi }