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 4608C158041 for ; Tue, 20 Feb 2024 15:34:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4EA74E2A57; Tue, 20 Feb 2024 15:34:51 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 30E81E2A57 for ; Tue, 20 Feb 2024 15:34: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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 5EBB33430D6 for ; Tue, 20 Feb 2024 15:34:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CB7E9118C for ; Tue, 20 Feb 2024 15:34:48 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1708443252.8ac1511edf7d186fab7e7eaf9f039e67b9206939.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/emacs/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/emacs/emacs-29.2-r1.ebuild app-editors/emacs/emacs-29.2.9999.ebuild app-editors/emacs/emacs-30.0.9999.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 8ac1511edf7d186fab7e7eaf9f039e67b9206939 X-VCS-Branch: master Date: Tue, 20 Feb 2024 15:34: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: 6c18b083-5199-42f3-820e-3f669be134f8 X-Archives-Hash: 85ee486d1aa28eed615724e2d1e20300 commit: 8ac1511edf7d186fab7e7eaf9f039e67b9206939 Author: Ulrich Müller gentoo org> AuthorDate: Tue Feb 20 15:34:12 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Feb 20 15:34:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ac1511e app-editors/emacs: Suppress false positive QA warnings with musl libc Bug: https://bugs.gentoo.org/925091 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-29.2-r1.ebuild | 7 +++++-- app-editors/emacs/emacs-29.2.9999.ebuild | 7 +++++-- app-editors/emacs/emacs-30.0.9999.ebuild | 5 +++-- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/app-editors/emacs/emacs-29.2-r1.ebuild b/app-editors/emacs/emacs-29.2-r1.ebuild index 8900504bed84..f661ec646411 100644 --- a/app-editors/emacs/emacs-29.2-r1.ebuild +++ b/app-editors/emacs/emacs-29.2-r1.ebuild @@ -171,8 +171,11 @@ RDEPEND+=" ${IDEPEND}" EMACS_SUFFIX="emacs-${SLOT}" SITEFILE="20${EMACS_SUFFIX}-gentoo.el" -# Suppress false positive QA warnings #898304 -QA_CONFIG_IMPL_DECL_SKIP=( malloc_{set,get}_state MIN static_assert alignof ) +# Suppress false positive QA warnings #898304 #925091 +QA_CONFIG_IMPL_DECL_SKIP=( + malloc_set_state malloc_get_state MIN static_assert alignof + statvfs64 re_set_syntax re_compile_pattern re_search re_match +) src_prepare() { if [[ ${PV##*.} = 9999 ]]; then diff --git a/app-editors/emacs/emacs-29.2.9999.ebuild b/app-editors/emacs/emacs-29.2.9999.ebuild index 0e12f1110e50..e478453357b9 100644 --- a/app-editors/emacs/emacs-29.2.9999.ebuild +++ b/app-editors/emacs/emacs-29.2.9999.ebuild @@ -168,8 +168,11 @@ RDEPEND+=" ${IDEPEND}" EMACS_SUFFIX="emacs-${SLOT}" SITEFILE="20${EMACS_SUFFIX}-gentoo.el" -# Suppress false positive QA warnings #898304 -QA_CONFIG_IMPL_DECL_SKIP=( malloc_{set,get}_state MIN static_assert alignof ) +# Suppress false positive QA warnings #898304 #925091 +QA_CONFIG_IMPL_DECL_SKIP=( + malloc_set_state malloc_get_state MIN static_assert alignof + statvfs64 re_set_syntax re_compile_pattern re_search re_match +) src_prepare() { if [[ ${PV##*.} = 9999 ]]; then diff --git a/app-editors/emacs/emacs-30.0.9999.ebuild b/app-editors/emacs/emacs-30.0.9999.ebuild index cecc57a1f940..f1c545bffd0b 100644 --- a/app-editors/emacs/emacs-30.0.9999.ebuild +++ b/app-editors/emacs/emacs-30.0.9999.ebuild @@ -169,9 +169,10 @@ RDEPEND+=" ${IDEPEND}" EMACS_SUFFIX="emacs-${SLOT}" SITEFILE="20${EMACS_SUFFIX}-gentoo.el" -# Suppress false positive QA warnings #898304 +# Suppress false positive QA warnings #898304 #925091 QA_CONFIG_IMPL_DECL_SKIP=( - malloc_{set,get}_state MIN static_assert alignof unreachable + malloc_set_state malloc_get_state MIN static_assert alignof unreachable + statvfs64 re_set_syntax re_compile_pattern re_search re_match ) src_prepare() {