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 8F43215828E for ; Wed, 5 Jun 2024 20:02:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2D06AE2B30; Wed, 5 Jun 2024 20:01:43 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 14FC2E2B30 for ; Wed, 5 Jun 2024 20:01:43 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 27F13340BDE for ; Wed, 5 Jun 2024 20:01:42 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 388421C80 for ; Wed, 5 Jun 2024 20:01:39 +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: <1717617691.5b8579dc9bf057de5bf0c150a68432d0213d036d.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-24.1.0-r1.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: 5b8579dc9bf057de5bf0c150a68432d0213d036d X-VCS-Branch: master Date: Wed, 5 Jun 2024 20:01:39 +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: e7aece07-9234-4108-9f2c-235b977dfb61 X-Archives-Hash: a3377eb03daa222869beeb42f173fbfd commit: 5b8579dc9bf057de5bf0c150a68432d0213d036d Author: Paul Zander gmail com> AuthorDate: Mon May 13 14:53:43 2024 +0000 Commit: Matt Turner gentoo org> CommitDate: Wed Jun 5 20:01:31 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b8579dc media-libs/mesa: update USE=xa dependencies Update vaapi/gallium-xa to match meson.build. - add intel https://gitlab.freedesktop.org/mesa/mesa/-/blob/mesa-24.1.0-r1/meson.build?ref_type=tags#L735 Signed-off-by: Paul Zander gmail.com> Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-24.1.0-r1.ebuild | 4 +++- media-libs/mesa/mesa-9999.ebuild | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/media-libs/mesa/mesa-24.1.0-r1.ebuild b/media-libs/mesa/mesa-24.1.0-r1.ebuild index 1e0717ab75a1..193388098fd4 100644 --- a/media-libs/mesa/mesa-24.1.0-r1.ebuild +++ b/media-libs/mesa/mesa-24.1.0-r1.ebuild @@ -228,9 +228,10 @@ pkg_pretend() { if use xa; then if ! use video_cards_freedreno && + ! use video_cards_intel && ! use video_cards_nouveau && ! use video_cards_vmware; then - ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno, nouveau, or vmware" + ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno, intel, nouveau, or vmware" fi fi @@ -347,6 +348,7 @@ multilib_src_configure() { fi if use video_cards_freedreno || + use video_cards_intel || use video_cards_nouveau || use video_cards_vmware; then emesonargs+=($(meson_feature xa gallium-xa)) diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index ac812afd990b..2ecab1a2a381 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -225,9 +225,10 @@ pkg_pretend() { if use xa; then if ! use video_cards_freedreno && + ! use video_cards_intel && ! use video_cards_nouveau && ! use video_cards_vmware; then - ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno, nouveau, or vmware" + ewarn "Ignoring USE=xa since VIDEO_CARDS does not contain freedreno, intel, nouveau, or vmware" fi fi @@ -344,6 +345,7 @@ multilib_src_configure() { fi if use video_cards_freedreno || + use video_cards_intel || use video_cards_nouveau || use video_cards_vmware; then emesonargs+=($(meson_feature xa gallium-xa))