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 40D7615838C for ; Tue, 16 Jan 2024 17:42:45 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 507AEE2A97; Tue, 16 Jan 2024 17:42:44 +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 34094E2A97 for ; Tue, 16 Jan 2024 17:42:44 +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 364573432B3 for ; Tue, 16 Jan 2024 17:42:43 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7245212C8 for ; Tue, 16 Jan 2024 17:42:41 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1705426798.e33d4b0286c7ba1ade27f66ff352ce18e1e3273f.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/grub/grub-2.06-r9.ebuild sys-boot/grub/grub-2.12-r1.ebuild sys-boot/grub/grub-9999.ebuild X-VCS-Directories: sys-boot/grub/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: e33d4b0286c7ba1ade27f66ff352ce18e1e3273f X-VCS-Branch: master Date: Tue, 16 Jan 2024 17:42:41 +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: b411cb67-440b-4452-9c5f-67b8864251eb X-Archives-Hash: 255f2dbd07c9d98448ce0449ed989b07 commit: e33d4b0286c7ba1ade27f66ff352ce18e1e3273f Author: Mike Gilbert gentoo org> AuthorDate: Tue Jan 16 17:39:58 2024 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Tue Jan 16 17:39:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e33d4b02 sys-boot/grub: set QA_CONFIG_IMPL_DECL_SKIP Closes: https://bugs.gentoo.org/900348 Signed-off-by: Mike Gilbert gentoo.org> sys-boot/grub/grub-2.06-r9.ebuild | 5 +++++ sys-boot/grub/grub-2.12-r1.ebuild | 5 +++++ sys-boot/grub/grub-9999.ebuild | 5 +++++ 3 files changed, 15 insertions(+) diff --git a/sys-boot/grub/grub-2.06-r9.ebuild b/sys-boot/grub/grub-2.06-r9.ebuild index 49676a74f04d..31dc1e97ca87 100644 --- a/sys-boot/grub/grub-2.06-r9.ebuild +++ b/sys-boot/grub/grub-2.06-r9.ebuild @@ -310,6 +310,11 @@ src_install() { # https://bugs.gentoo.org/231935 dostrip -x /usr/lib/grub + + if use elibc_musl; then + # https://bugs.gentoo.org/900348 + QA_CONFIG_IMPL_DECL_SKIP=( re_set_syntax re_compile_pattern re_search ) + fi } pkg_postinst() { diff --git a/sys-boot/grub/grub-2.12-r1.ebuild b/sys-boot/grub/grub-2.12-r1.ebuild index 80ebc54a6379..95e5fdb5c08e 100644 --- a/sys-boot/grub/grub-2.12-r1.ebuild +++ b/sys-boot/grub/grub-2.12-r1.ebuild @@ -314,6 +314,11 @@ src_install() { # https://bugs.gentoo.org/231935 dostrip -x /usr/lib/grub + + if use elibc_musl; then + # https://bugs.gentoo.org/900348 + QA_CONFIG_IMPL_DECL_SKIP=( re_set_syntax re_compile_pattern re_search ) + fi } pkg_postinst() { diff --git a/sys-boot/grub/grub-9999.ebuild b/sys-boot/grub/grub-9999.ebuild index a8801791925e..4146c10c16ea 100644 --- a/sys-boot/grub/grub-9999.ebuild +++ b/sys-boot/grub/grub-9999.ebuild @@ -310,6 +310,11 @@ src_install() { # https://bugs.gentoo.org/231935 dostrip -x /usr/lib/grub + + if use elibc_musl; then + # https://bugs.gentoo.org/900348 + QA_CONFIG_IMPL_DECL_SKIP=( re_set_syntax re_compile_pattern re_search ) + fi } pkg_postinst() {