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 05EA515814C for ; Fri, 29 Sep 2023 02:25:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DCD5E2BC01F; Fri, 29 Sep 2023 02:25:51 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C62BC2BC024 for ; Fri, 29 Sep 2023 02:25:51 +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 B8027335CAF for ; Fri, 29 Sep 2023 02:25:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id DADD71270 for ; Fri, 29 Sep 2023 02:25:48 +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: <1695954339.7500f8469f5704d3f71f9e4990b1158906283d78.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-23.1.8.ebuild media-libs/mesa/mesa-23.2.1.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: 7500f8469f5704d3f71f9e4990b1158906283d78 X-VCS-Branch: master Date: Fri, 29 Sep 2023 02:25:48 +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: ab6a725f-18fc-4401-9323-c9098bc6e0e5 X-Archives-Hash: 63226878ea9f1133ee035a6e43d0562b commit: 7500f8469f5704d3f71f9e4990b1158906283d78 Author: Matt Turner gentoo org> AuthorDate: Fri Sep 29 01:40:57 2023 +0000 Commit: Matt Turner gentoo org> CommitDate: Fri Sep 29 02:25:39 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7500f846 media-libs/mesa: Fix symbol check unit tests Closes: https://bugs.gentoo.org/830728 Signed-off-by: Matt Turner gentoo.org> media-libs/mesa/mesa-23.1.8.ebuild | 6 ++++++ media-libs/mesa/mesa-23.2.1.ebuild | 6 ++++++ media-libs/mesa/mesa-9999.ebuild | 6 ++++++ 3 files changed, 18 insertions(+) diff --git a/media-libs/mesa/mesa-23.1.8.ebuild b/media-libs/mesa/mesa-23.1.8.ebuild index dabe2d09e96b..5aee4342e659 100644 --- a/media-libs/mesa/mesa-23.1.8.ebuild +++ b/media-libs/mesa/mesa-23.1.8.ebuild @@ -291,6 +291,12 @@ pkg_setup() { python-any-r1_pkg_setup } +src_prepare() { + default + sed -i -e "/^PLATFORM_SYMBOLS/a '__gentoo_check_ldflags__'," \ + bin/symbols-check.py || die # bug #830728 +} + multilib_src_configure() { local emesonargs=() diff --git a/media-libs/mesa/mesa-23.2.1.ebuild b/media-libs/mesa/mesa-23.2.1.ebuild index f2d088041259..d57733c8420f 100644 --- a/media-libs/mesa/mesa-23.2.1.ebuild +++ b/media-libs/mesa/mesa-23.2.1.ebuild @@ -289,6 +289,12 @@ pkg_setup() { python-any-r1_pkg_setup } +src_prepare() { + default + sed -i -e "/^PLATFORM_SYMBOLS/a '__gentoo_check_ldflags__'," \ + bin/symbols-check.py || die # bug #830728 +} + multilib_src_configure() { local emesonargs=() diff --git a/media-libs/mesa/mesa-9999.ebuild b/media-libs/mesa/mesa-9999.ebuild index 25ed409ab65a..08cf94dc4000 100644 --- a/media-libs/mesa/mesa-9999.ebuild +++ b/media-libs/mesa/mesa-9999.ebuild @@ -290,6 +290,12 @@ pkg_setup() { python-any-r1_pkg_setup } +src_prepare() { + default + sed -i -e "/^PLATFORM_SYMBOLS/a '__gentoo_check_ldflags__'," \ + bin/symbols-check.py || die # bug #830728 +} + multilib_src_configure() { local emesonargs=()