Skip to content

Commit

Permalink
app-emulation/wine-proton: skip QA for implicit __clear_cache too
Browse files Browse the repository at this point in the history
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/900332
Signed-off-by: Ionen Wolkens <[email protected]>
  • Loading branch information
ionenwks committed Mar 8, 2023
1 parent 538a9b0 commit 7347dcb
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
5 changes: 4 additions & 1 deletion app-emulation/wine-proton/wine-proton-7.0.5.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ BDEPEND="
!crossdev-mingw? ( dev-util/mingw64-toolchain[${MULTILIB_USEDEP}] )"
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 #900332)
res_getservers # false positive
)
QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext

PATCHES=(
Expand Down
5 changes: 4 additions & 1 deletion app-emulation/wine-proton/wine-proton-7.0.6.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ BDEPEND="
!crossdev-mingw? ( dev-util/mingw64-toolchain[${MULTILIB_USEDEP}] )"
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 #900332)
res_getservers # false positive
)
QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext

PATCHES=(
Expand Down
5 changes: 4 additions & 1 deletion app-emulation/wine-proton/wine-proton-7.0.9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,10 @@ BDEPEND="
!crossdev-mingw? ( dev-util/mingw64-toolchain[${MULTILIB_USEDEP}] )"
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 #900332)
res_getservers # false positive
)
QA_TEXTRELS="usr/lib/*/wine/i386-unix/*.so" # uses -fno-PIC -Wl,-z,notext

PATCHES=(
Expand Down

0 comments on commit 7347dcb

Please sign in to comment.