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 2B0A31382C5 for ; Wed, 28 Apr 2021 07:49:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7419DE083B; Wed, 28 Apr 2021 07:49:28 +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 5CFD0E083B for ; Wed, 28 Apr 2021 07:49:28 +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 386E9340E4D for ; Wed, 28 Apr 2021 07:49:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E671B643 for ; Wed, 28 Apr 2021 07:49:25 +0000 (UTC) From: "Anton Filimonov" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anton Filimonov" Message-ID: <1619596031.2b4d9a6848c3a632f2fc38a2d5c9358da993b7fd.anton.filimonov@gentoo> Subject: [gentoo-commits] repo/proj/guru:dev commit in: app-text/klogg/ X-VCS-Repository: repo/proj/guru X-VCS-Files: app-text/klogg/klogg-20.12.ebuild X-VCS-Directories: app-text/klogg/ X-VCS-Committer: anton.filimonov X-VCS-Committer-Name: Anton Filimonov X-VCS-Revision: 2b4d9a6848c3a632f2fc38a2d5c9358da993b7fd X-VCS-Branch: dev Date: Wed, 28 Apr 2021 07:49:25 +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: 1f5a3c0b-cd87-429e-8642-97a70956fbdd X-Archives-Hash: e10ed142048caf327cc07dbb4a076bcd commit: 2b4d9a6848c3a632f2fc38a2d5c9358da993b7fd Author: Anton Filimonov gmail com> AuthorDate: Wed Apr 28 07:45:48 2021 +0000 Commit: Anton Filimonov gmail com> CommitDate: Wed Apr 28 07:47:11 2021 +0000 URL: https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2b4d9a68 app-text/klogg: fix building tests Closes: https://bugs.gentoo.org/786219 Package-Manager: Portage-3.0.18, Repoman-3.0.2 Signed-off-by: Anton Filimonov gmail.com> app-text/klogg/klogg-20.12.ebuild | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/app-text/klogg/klogg-20.12.ebuild b/app-text/klogg/klogg-20.12.ebuild index 13be48640..5c12b31af 100644 --- a/app-text/klogg/klogg-20.12.ebuild +++ b/app-text/klogg/klogg-20.12.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://github.com/variar/klogg/archive/refs/tags/v${PV}.tar.gz -> ${P} LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="+sentry lto" +IUSE="+sentry lto test" DEPEND=" dev-qt/qtcore:5 @@ -26,6 +26,9 @@ RDEPEND=" ${DEPEND} x11-themes/hicolor-icon-theme " +BDEPEND=" + test? ( dev-qt/qttest:5 ) +" QA_PREBUILT="usr/bin/klogg_minidump_dump" @@ -40,6 +43,7 @@ src_configure() { local mycmakeargs=( -DDISABLE_WERROR=ON -DKLOGG_USE_SENTRY=$(usex sentry) + -DBUILD_TESTS=$(usex test) -DUSE_LTO=$(usex lto) -DWARNINGS_AS_ERRORS=OFF )