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 EE036158090 for ; Sat, 14 May 2022 21:30:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AFD03E096C; Sat, 14 May 2022 21:30:43 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 93C43E096C for ; Sat, 14 May 2022 21:30: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 7C1C4341BA9 for ; Sat, 14 May 2022 21:30:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 26C10480 for ; Sat, 14 May 2022 21:30:37 +0000 (UTC) From: "David Seifert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "David Seifert" Message-ID: <1652563816.9f7f50293dd0fc258d68c6b8092f5a87ff0003c7.soap@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-gfx/solvespace/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-gfx/solvespace/solvespace-3.0-r2.ebuild X-VCS-Directories: media-gfx/solvespace/ X-VCS-Committer: soap X-VCS-Committer-Name: David Seifert X-VCS-Revision: 9f7f50293dd0fc258d68c6b8092f5a87ff0003c7 X-VCS-Branch: master Date: Sat, 14 May 2022 21:30:37 +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: 03a6241d-f336-443b-a9b7-dbaa6be8f03e X-Archives-Hash: 1c8bb45974864dcc83725198658c7c57 commit: 9f7f50293dd0fc258d68c6b8092f5a87ff0003c7 Author: David Seifert gentoo org> AuthorDate: Sat May 14 21:30:16 2022 +0000 Commit: David Seifert gentoo org> CommitDate: Sat May 14 21:30:16 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f7f5029 media-gfx/solvespace: [QA] tc-has-openmp → tc-check-openmp Signed-off-by: David Seifert gentoo.org> media-gfx/solvespace/solvespace-3.0-r2.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/media-gfx/solvespace/solvespace-3.0-r2.ebuild b/media-gfx/solvespace/solvespace-3.0-r2.ebuild index c05f7413d643..f94aea515954 100644 --- a/media-gfx/solvespace/solvespace-3.0-r2.ebuild +++ b/media-gfx/solvespace/solvespace-3.0-r2.ebuild @@ -53,9 +53,11 @@ PATCHES=( "${FILESDIR}"/${PN}-3.0-use-system-mimalloc.patch ) MY_HASH="0e0b0252e23dd5bd4ae82ababcc54c44aee036d6" pkg_pretend() { - if use openmp; then - tc-has-openmp || die "Please switch to an openmp compatible compiler" - fi + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp +} + +pkg_setup() { + [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp } src_prepare() {