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 4E7AB138359 for ; Wed, 14 Oct 2020 23:22:50 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 85EE2E0969; Wed, 14 Oct 2020 23:22:49 +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 6BCA9E0969 for ; Wed, 14 Oct 2020 23:22:49 +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 2E590340E6C for ; Wed, 14 Oct 2020 23:22:48 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 95D78388 for ; Wed, 14 Oct 2020 23:22:46 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1602717751.770065afe985c7f3bc4a9a4f7f2e2a14eea027c4.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/catalyst/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/catalyst/catalyst-9999.ebuild X-VCS-Directories: dev-util/catalyst/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 770065afe985c7f3bc4a9a4f7f2e2a14eea027c4 X-VCS-Branch: master Date: Wed, 14 Oct 2020 23:22:46 +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: 6e662684-ea6e-4840-af70-43842f0dfdc5 X-Archives-Hash: 4424d0c81bd824a23b470e40bf2d24e8 commit: 770065afe985c7f3bc4a9a4f7f2e2a14eea027c4 Author: Matt Turner gentoo org> AuthorDate: Wed Oct 14 23:20:53 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Oct 14 23:22:31 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=770065af dev-util/catalyst: Improve pkg_postinst() Signed-off-by: Matt Turner gentoo.org> dev-util/catalyst/catalyst-9999.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/dev-util/catalyst/catalyst-9999.ebuild b/dev-util/catalyst/catalyst-9999.ebuild index 1edccfd19e6..aa0697220eb 100644 --- a/dev-util/catalyst/catalyst-9999.ebuild +++ b/dev-util/catalyst/catalyst-9999.ebuild @@ -94,5 +94,9 @@ python_install_all() { } pkg_postinst() { - optfeature "ccache support" "dev-util/ccache" + if [[ -z ${REPLACING_VERSIONS} ]]; then + elog + elog "You may consider installing the following optional packages:" + optfeature "ccache support" dev-util/ccache + fi }