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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B1EBE158088 for ; Mon, 13 Dec 2021 00:11:44 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B9852BC032; Mon, 13 Dec 2021 00:11:44 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D81BA2BC035 for ; Mon, 13 Dec 2021 00:11:43 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0D6C3342E7A for ; Mon, 13 Dec 2021 00:11:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B9B4B233 for ; Mon, 13 Dec 2021 00:11:41 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1639354290.53bb19912117d36da9df66dca656213347391006.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-util/clazy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-util/clazy/clazy-1.10-r1.ebuild X-VCS-Directories: dev-util/clazy/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 53bb19912117d36da9df66dca656213347391006 X-VCS-Branch: master Date: Mon, 13 Dec 2021 00:11:41 +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: 6ec0c5de-e07e-45ac-9888-623400ff1a8f X-Archives-Hash: e9f3dbb9e633d126308b0b83c0fcdf9a commit: 53bb19912117d36da9df66dca656213347391006 Author: Sam James gentoo org> AuthorDate: Fri Dec 10 23:59:25 2021 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 13 00:11:30 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53bb1991 dev-util/clazy: BDEPEND on Python for tests Avoid using 'python3' directly. Still not passing for me though. Bug: https://bugs.gentoo.org/811723 Signed-off-by: Sam James gentoo.org> Closes: https://github.com/gentoo/gentoo/pull/23246 Signed-off-by: Sam James gentoo.org> dev-util/clazy/clazy-1.10-r1.ebuild | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/dev-util/clazy/clazy-1.10-r1.ebuild b/dev-util/clazy/clazy-1.10-r1.ebuild index d8369600c480..f6c1247cc4ed 100644 --- a/dev-util/clazy/clazy-1.10-r1.ebuild +++ b/dev-util/clazy/clazy-1.10-r1.ebuild @@ -4,7 +4,8 @@ EAPI=7 LLVM_MAX_SLOT=12 -inherit cmake llvm +PYTHON_COMPAT=( python3_{8,9,10} ) +inherit cmake llvm python-any-r1 DESCRIPTION="Compiler plugin which allows clang to understand Qt semantics" HOMEPAGE="https://apps.kde.org/clazy" @@ -13,10 +14,12 @@ SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz" LICENSE="LGPL-2+" SLOT="0" KEYWORDS="~amd64 arm64 ~x86" -IUSE="" +IUSE="test" +RESTRICT="!test? ( test )" RDEPEND="