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 76176138334 for ; Thu, 13 Dec 2018 22:26:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id ED85CE0E22; 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 C28DBE0E22 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 E80F8335CEB 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 B10EF4E9 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.afc171329b46bf5dcc75f21294b730088cedafbf.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/print-manager/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-apps/print-manager/print-manager-18.12.0.ebuild X-VCS-Directories: kde-apps/print-manager/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: afc171329b46bf5dcc75f21294b730088cedafbf 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: 7365fffd-2b03-41c5-8f85-3921a41c13fc X-Archives-Hash: 13f49f5c5a265af8c7997e44895c0c7e commit: afc171329b46bf5dcc75f21294b730088cedafbf Author: Andreas Sturmlechner gentoo org> AuthorDate: Thu Dec 13 22:08:04 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=afc17132 kde-apps/print-manager: Reduce pkg_postinst spam Package-Manager: Portage-2.3.52, Repoman-2.3.12 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-apps/print-manager/print-manager-18.12.0.ebuild | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/kde-apps/print-manager/print-manager-18.12.0.ebuild b/kde-apps/print-manager/print-manager-18.12.0.ebuild index 2339cfc9baf..6076351f157 100644 --- a/kde-apps/print-manager/print-manager-18.12.0.ebuild +++ b/kde-apps/print-manager/print-manager-18.12.0.ebuild @@ -36,8 +36,9 @@ RDEPEND="${DEPEND} " pkg_postinst(){ - if ! use gtk ; then - ewarn + kde5_pkg_postinst + + if [[ -z "${REPLACING_VERSIONS}" ]] && ! use gtk ; then ewarn "By switching off \"gtk\" USE flag, you have chosen to do without" ewarn "an important, though optional, runtime dependency:" ewarn @@ -48,6 +49,5 @@ pkg_postinst(){ ewarn ewarn "\"Failed to group devices: 'The name org.fedoraproject.Config.Printing" ewarn "was not provided by any .service files'\"" - ewarn fi }