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 1E14A15800F for ; Sun, 5 Feb 2023 21:56:48 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3967EE07D1; Sun, 5 Feb 2023 21:56:47 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 1E042E07D1 for ; Sun, 5 Feb 2023 21:56:47 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CEB82335D0F for ; Sun, 5 Feb 2023 21:56:45 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 42BFF7FB for ; Sun, 5 Feb 2023 21:56:43 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1675634166.c2bd024be802b2ee95216744d2eb9cff44af2461.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-admin/kube-bench/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-admin/kube-bench/kube-bench-0.6.8.ebuild X-VCS-Directories: app-admin/kube-bench/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: c2bd024be802b2ee95216744d2eb9cff44af2461 X-VCS-Branch: master Date: Sun, 5 Feb 2023 21:56:43 +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: b2191ef9-dff0-4fb4-b75b-059e4532a30e X-Archives-Hash: 8636aa360ae10484d6d405079a03bcf2 commit: c2bd024be802b2ee95216744d2eb9cff44af2461 Author: William Hubbs gentoo org> AuthorDate: Sun Feb 5 21:56:06 2023 +0000 Commit: William Hubbs gentoo org> CommitDate: Sun Feb 5 21:56:06 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2bd024b app-admin/kube-bench: fix tests Closes: https://bugs.gentoo.org/892894 Signed-off-by: William Hubbs gentoo.org> app-admin/kube-bench/kube-bench-0.6.8.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-admin/kube-bench/kube-bench-0.6.8.ebuild b/app-admin/kube-bench/kube-bench-0.6.8.ebuild index 4d7ff54265c5..0e29d40ffca4 100644 --- a/app-admin/kube-bench/kube-bench-0.6.8.ebuild +++ b/app-admin/kube-bench/kube-bench-0.6.8.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2023 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -13,6 +13,11 @@ LICENSE="Apache-2.0 MIT MPL-2.0 BSD BSD-2" SLOT="0" KEYWORDS="~amd64" +src_prepare() { + default + sed -i -e 's/-short -race/-short/' makefile || die +} + src_compile() { emake KUBEBENCH_VERSION=v${PV} build }