diff options
author | Ulrich Müller <ulm@gentoo.org> | 2024-02-20 16:34:12 +0100 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2024-02-20 16:34:12 +0100 |
commit | 8ac1511edf7d186fab7e7eaf9f039e67b9206939 (patch) | |
tree | c97433bb189858d79da8f523352dd26bba6d4209 /app-editors | |
parent | www-apps/radarr: drop 5.3.5.8592 (diff) | |
download | gentoo-8ac1511edf7d186fab7e7eaf9f039e67b9206939.tar.gz gentoo-8ac1511edf7d186fab7e7eaf9f039e67b9206939.tar.bz2 gentoo-8ac1511edf7d186fab7e7eaf9f039e67b9206939.zip |
app-editors/emacs: Suppress false positive QA warnings with musl libc
Bug: https://bugs.gentoo.org/925091
Signed-off-by: Ulrich Müller <ulm@gentoo.org>
Diffstat (limited to 'app-editors')
-rw-r--r-- | app-editors/emacs/emacs-29.2-r1.ebuild | 7 | ||||
-rw-r--r-- | app-editors/emacs/emacs-29.2.9999.ebuild | 7 | ||||
-rw-r--r-- | 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() { |