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 94C2B158041 for ; Sun, 25 Feb 2024 07:14:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4270E29CF; Sun, 25 Feb 2024 07:14:34 +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 B30B0E29CD for ; Sun, 25 Feb 2024 07:14:34 +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 E6568343070 for ; Sun, 25 Feb 2024 07:14:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 518EC14C8 for ; Sun, 25 Feb 2024 07:14:32 +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: <1708845163.9c49b3c3d1eae9d807790f51387d6c9c1533d3d8.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-27.2-r14.ebuild app-editors/emacs/emacs-28.2-r10.ebuild X-VCS-Directories: app-editors/emacs/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: 9c49b3c3d1eae9d807790f51387d6c9c1533d3d8 X-VCS-Branch: master Date: Sun, 25 Feb 2024 07:14:32 +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: 9fd7431d-3c20-4408-b473-743bac7ab129 X-Archives-Hash: 6bf6fd4c101277d7b4a13504469b3807 commit: 9c49b3c3d1eae9d807790f51387d6c9c1533d3d8 Author: Ulrich Müller gentoo org> AuthorDate: Sun Feb 25 07:12:43 2024 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sun Feb 25 07:12:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c49b3c3 app-editors/emacs: Suppress false positive QA warnings with musl libc Bug: https://bugs.gentoo.org/925449 Signed-off-by: Ulrich Müller gentoo.org> app-editors/emacs/emacs-27.2-r14.ebuild | 7 +++++-- app-editors/emacs/emacs-28.2-r10.ebuild | 7 +++++-- 2 files changed, 10 insertions(+), 4 deletions(-) diff --git a/app-editors/emacs/emacs-27.2-r14.ebuild b/app-editors/emacs/emacs-27.2-r14.ebuild index 42baba127e62..e78f3b3c6a1b 100644 --- a/app-editors/emacs/emacs-27.2-r14.ebuild +++ b/app-editors/emacs/emacs-27.2-r14.ebuild @@ -139,8 +139,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 ) +# Suppress false positive QA warnings #898304 #925449 +QA_CONFIG_IMPL_DECL_SKIP=( + malloc_set_state malloc_get_state MIN + statvfs64 re_set_syntax re_compile_pattern re_search re_match +) src_prepare() { if [[ ${PV##*.} = 9999 ]]; then diff --git a/app-editors/emacs/emacs-28.2-r10.ebuild b/app-editors/emacs/emacs-28.2-r10.ebuild index de1a1fffe463..586ed615a6f0 100644 --- a/app-editors/emacs/emacs-28.2-r10.ebuild +++ b/app-editors/emacs/emacs-28.2-r10.ebuild @@ -142,8 +142,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 ) +# Suppress false positive QA warnings #898304 #925449 +QA_CONFIG_IMPL_DECL_SKIP=( + malloc_set_state malloc_get_state MIN + statvfs64 re_set_syntax re_compile_pattern re_search re_match +) src_prepare() { if [[ ${PV##*.} = 9999 ]]; then