commit: 4b2c2f030d327789d1a6dbe6cd7468a0dac98be2 Author: Eli Schwartz <eschwartz93 <AT> gmail <DOT> com> AuthorDate: Tue May 21 05:16:53 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue May 21 10:43:39 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2c2f03
x11-misc/stalonetray: squelch FP for implicit decl in configure It only appears on musl since it is a fallback for execinfo. The check always fails, but is expectd to since this isn't solaris. Closes: https://bugs.gentoo.org/928850 Signed-off-by: Eli Schwartz <eschwartz93 <AT> gmail.com> Signed-off-by: Sam James <sam <AT> gentoo.org> x11-misc/stalonetray/stalonetray-0.8.4.ebuild | 8 +++++++- x11-misc/stalonetray/stalonetray-0.8.5.ebuild | 8 +++++++- 2 files changed, 14 insertions(+), 2 deletions(-) diff --git a/x11-misc/stalonetray/stalonetray-0.8.4.ebuild b/x11-misc/stalonetray/stalonetray-0.8.4.ebuild index f63dff437496..778490e7e88a 100644 --- a/x11-misc/stalonetray/stalonetray-0.8.4.ebuild +++ b/x11-misc/stalonetray/stalonetray-0.8.4.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -25,6 +25,12 @@ BDEPEND="app-text/docbook-xml-dtd DOCS=( AUTHORS BUGS COPYING NEWS README.md TODO stalonetrayrc.sample stalonetray.html ) +QA_CONFIG_IMPL_DECL_SKIP+=( + # Only on solaris. + # Produces an undefined reference on gcc 13. + printstack +) + src_prepare() { default eautoreconf diff --git a/x11-misc/stalonetray/stalonetray-0.8.5.ebuild b/x11-misc/stalonetray/stalonetray-0.8.5.ebuild index 15991a24a54d..5831b163f7d3 100644 --- a/x11-misc/stalonetray/stalonetray-0.8.5.ebuild +++ b/x11-misc/stalonetray/stalonetray-0.8.5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -25,6 +25,12 @@ BDEPEND="app-text/docbook-xml-dtd DOCS=( AUTHORS BUGS COPYING NEWS README.md TODO stalonetrayrc.sample stalonetray.html ) +QA_CONFIG_IMPL_DECL_SKIP+=( + # Only on solaris. + # Produces an undefined reference on gcc 13. + printstack +) + src_prepare() { default eautoreconf
