diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2023-03-08 04:58:08 -0500 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2023-03-08 05:03:16 -0500 |
commit | 538a9b0d5b4da1675ff93908999e3e88ce38be4d (patch) | |
tree | 7d0834e1ab5dffc44effaae11a41781e3104983d /app-emulation/wine-staging | |
parent | app-emulation/wine-vanilla: skip QA for implicit __clear_cache too (diff) | |
download | gentoo-538a9b0d5b4da1675ff93908999e3e88ce38be4d.tar.gz gentoo-538a9b0d5b4da1675ff93908999e3e88ce38be4d.tar.bz2 gentoo-538a9b0d5b4da1675ff93908999e3e88ce38be4d.zip |
app-emulation/wine-staging: skip QA for implicit __clear_cache too
Tests for a compiler builtin that is not declared by anything, however
we can lazily ignore it because __clear_cache is not used by wine on
amd64+x86 either way.
Closes: https://bugs.gentoo.org/900334
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'app-emulation/wine-staging')
5 files changed, 20 insertions, 5 deletions
diff --git a/app-emulation/wine-staging/wine-staging-8.0.ebuild b/app-emulation/wine-staging/wine-staging-8.0.ebuild index 6d0fce43bdc4..46496d8f280b 100644 --- a/app-emulation/wine-staging/wine-staging-8.0.ebuild +++ b/app-emulation/wine-staging/wine-staging-8.0.ebuild @@ -122,7 +122,10 @@ BDEPEND=" nls? ( sys-devel/gettext )" IDEPEND=">=app-eselect/eselect-wine-2" -QA_CONFIG_IMPL_DECL_SKIP=( res_getservers ) +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext PATCHES=( diff --git a/app-emulation/wine-staging/wine-staging-8.1.ebuild b/app-emulation/wine-staging/wine-staging-8.1.ebuild index 4c27aba38ee4..99e23c456d39 100644 --- a/app-emulation/wine-staging/wine-staging-8.1.ebuild +++ b/app-emulation/wine-staging/wine-staging-8.1.ebuild @@ -122,7 +122,10 @@ BDEPEND=" nls? ( sys-devel/gettext )" IDEPEND=">=app-eselect/eselect-wine-2" -QA_CONFIG_IMPL_DECL_SKIP=( res_getservers ) +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext PATCHES=( diff --git a/app-emulation/wine-staging/wine-staging-8.2.ebuild b/app-emulation/wine-staging/wine-staging-8.2.ebuild index 9457d9533997..6a7f5b83594b 100644 --- a/app-emulation/wine-staging/wine-staging-8.2.ebuild +++ b/app-emulation/wine-staging/wine-staging-8.2.ebuild @@ -132,7 +132,10 @@ BDEPEND=" nls? ( sys-devel/gettext )" IDEPEND=">=app-eselect/eselect-wine-2" -QA_CONFIG_IMPL_DECL_SKIP=( res_getservers ) +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) QA_FLAGS_IGNORED="usr/lib/.*/wine/.*-unix/odbc32.so" # has no compiled objects QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext diff --git a/app-emulation/wine-staging/wine-staging-8.3.ebuild b/app-emulation/wine-staging/wine-staging-8.3.ebuild index bcdbcf4db2b8..48fe559d673c 100644 --- a/app-emulation/wine-staging/wine-staging-8.3.ebuild +++ b/app-emulation/wine-staging/wine-staging-8.3.ebuild @@ -133,7 +133,10 @@ BDEPEND=" nls? ( sys-devel/gettext )" IDEPEND=">=app-eselect/eselect-wine-2" -QA_CONFIG_IMPL_DECL_SKIP=( res_getservers ) +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) QA_FLAGS_IGNORED="usr/lib/.*/wine/.*-unix/odbc32.so" # has no compiled objects QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext diff --git a/app-emulation/wine-staging/wine-staging-9999.ebuild b/app-emulation/wine-staging/wine-staging-9999.ebuild index bcdbcf4db2b8..48fe559d673c 100644 --- a/app-emulation/wine-staging/wine-staging-9999.ebuild +++ b/app-emulation/wine-staging/wine-staging-9999.ebuild @@ -133,7 +133,10 @@ BDEPEND=" nls? ( sys-devel/gettext )" IDEPEND=">=app-eselect/eselect-wine-2" -QA_CONFIG_IMPL_DECL_SKIP=( res_getservers ) +QA_CONFIG_IMPL_DECL_SKIP=( + __clear_cache # unused on amd64+x86 (bug #900334) + res_getservers # false positive +) QA_FLAGS_IGNORED="usr/lib/.*/wine/.*-unix/odbc32.so" # has no compiled objects QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext |