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 72FFD138350 for ; Thu, 19 Mar 2020 22:31:01 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AD58BE0E76; Thu, 19 Mar 2020 22:31:00 +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 9348AE0E76 for ; Thu, 19 Mar 2020 22:31:00 +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 C87A834F0C9 for ; Thu, 19 Mar 2020 22:30:58 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 596A2187 for ; Thu, 19 Mar 2020 22:30:56 +0000 (UTC) From: "Matt Turner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Turner" Message-ID: <1584657043.8a81af4d27ea251c534cc1ffa6b4812f5950f706.mattst88@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/mesa/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/mesa/mesa-19.3.5.ebuild media-libs/mesa/mesa-20.0.1-r1.ebuild media-libs/mesa/mesa-20.0.2.ebuild media-libs/mesa/mesa-9999.ebuild X-VCS-Directories: media-libs/mesa/ X-VCS-Committer: mattst88 X-VCS-Committer-Name: Matt Turner X-VCS-Revision: 8a81af4d27ea251c534cc1ffa6b4812f5950f706 X-VCS-Branch: master Date: Thu, 19 Mar 2020 22:30:56 +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: 90076263-18b2-4cee-9614-212f66300d6f X-Archives-Hash: 4bdbad48db3a1eb2d5587de61f72af09 commit: 8a81af4d27ea251c534cc1ffa6b4812f5950f706 Author: Matt Turner gentoo org> AuthorDate: Thu Mar 19 22:17:13 2020 +0000 Commit: Matt Turner gentoo org> CommitDate: Thu Mar 19 22:30:43 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a81af4d media-libs/mesa: Only call llvm_pkg_setup with USE="gallium llvm" Closes: https://bugs.gentoo.org/712896 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-19.3.5.ebuild | 2 +- media-libs/mesa/mesa-20.0.1-r1.ebuild | 2 +- media-libs/mesa/mesa-20.0.2.ebuild | 2 +- media-libs/mesa/mesa-9999.ebuild | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/media-libs/mesa/mesa-19.3.5.ebuild b/media-libs/mesa/mesa-19.3.5.ebuild index ea716c993c1..e0d7de8eec7 100644 --- a/media-libs/mesa/mesa-19.3.5.ebuild +++ b/media-libs/mesa/mesa-19.3.5.ebuild @@ -325,7 +325,7 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if use llvm; then + if use gallium && use llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/media-libs/mesa/mesa-20.0.1-r1.ebuild b/media-libs/mesa/mesa-20.0.1-r1.ebuild index 8997f8d06a3..e893b342e58 100644 --- a/media-libs/mesa/mesa-20.0.1-r1.ebuild +++ b/media-libs/mesa/mesa-20.0.1-r1.ebuild @@ -326,7 +326,7 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if use llvm; then + if use gallium && use llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/media-libs/mesa/mesa-20.0.2.ebuild b/media-libs/mesa/mesa-20.0.2.ebuild index 8997f8d06a3..e893b342e58 100644 --- a/media-libs/mesa/mesa-20.0.2.ebuild +++ b/media-libs/mesa/mesa-20.0.2.ebuild @@ -326,7 +326,7 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if use llvm; then + if use gallium && use llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index d6216736074..24b3afdd1fc 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -327,7 +327,7 @@ pkg_setup() { ewarn "detected! This can cause problems. For details, see bug 459306." fi - if use llvm; then + if use gallium && use llvm; then llvm_pkg_setup fi python-any-r1_pkg_setup