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 B6047138334 for ; Mon, 19 Nov 2018 02:28:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7E175E09D1; Mon, 19 Nov 2018 02:28:31 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 523E5E09D1 for ; Mon, 19 Nov 2018 02:28:31 +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 A1687335C58 for ; Mon, 19 Nov 2018 02:28:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9115C472 for ; Mon, 19 Nov 2018 02:28:27 +0000 (UTC) From: "Maciej Mrozowski" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Mrozowski" Message-ID: <1542592869.32a81f0cd818477a16f424b69e94faa2d3f1c5d1.reavertm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: dev-util/kdevelop/ X-VCS-Repository: proj/kde X-VCS-Files: dev-util/kdevelop/kdevelop-5.3.9999.ebuild dev-util/kdevelop/kdevelop-9999.ebuild X-VCS-Directories: dev-util/kdevelop/ X-VCS-Committer: reavertm X-VCS-Committer-Name: Maciej Mrozowski X-VCS-Revision: 32a81f0cd818477a16f424b69e94faa2d3f1c5d1 X-VCS-Branch: master Date: Mon, 19 Nov 2018 02:28:27 +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: 0ba33bb0-ec2f-4f66-9af1-83cf6726c794 X-Archives-Hash: 940d7256ec3adecdcc5e29fb65bac7d5 commit: 32a81f0cd818477a16f424b69e94faa2d3f1c5d1 Author: Maciej Mrozowski gentoo org> AuthorDate: Mon Nov 19 02:01:09 2018 +0000 Commit: Maciej Mrozowski gentoo org> CommitDate: Mon Nov 19 02:01:09 2018 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=32a81f0c dev-util/kdevelop: add post-inst message for optional clazy plugin support Signed-off-by: Maciej Mrozowski gentoo.org> dev-util/kdevelop/kdevelop-5.3.9999.ebuild | 4 ++++ dev-util/kdevelop/kdevelop-9999.ebuild | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/dev-util/kdevelop/kdevelop-5.3.9999.ebuild b/dev-util/kdevelop/kdevelop-5.3.9999.ebuild index 891ec74222..a503019e34 100644 --- a/dev-util/kdevelop/kdevelop-5.3.9999.ebuild +++ b/dev-util/kdevelop/kdevelop-5.3.9999.ebuild @@ -126,4 +126,8 @@ pkg_postinst() { if ! has_version "dev-util/heaptrack[qt5]" ; then elog "For heap memory profiling support, please install dev-util/heaptrack" fi + + if ! has_version "dev-util/clazy" ; then + elog "For static C++ Qt code analysis support, please install dev-util/clazy" + fi } diff --git a/dev-util/kdevelop/kdevelop-9999.ebuild b/dev-util/kdevelop/kdevelop-9999.ebuild index e0b0543a37..7e85423a1d 100644 --- a/dev-util/kdevelop/kdevelop-9999.ebuild +++ b/dev-util/kdevelop/kdevelop-9999.ebuild @@ -125,4 +125,8 @@ pkg_postinst() { if ! has_version "dev-util/heaptrack[qt5]" ; then elog "For heap memory profiling support, please install dev-util/heaptrack" fi + + if ! has_version "dev-util/clazy" ; then + elog "For static C++ Qt code analysis support, please install dev-util/clazy" + fi }