commit: b20fb0275a32e51daf4a31707f9fe65b35964e11 Author: Maciej Barć <xgqt <AT> gentoo <DOT> org> AuthorDate: Tue Jan 30 14:53:34 2024 +0000 Commit: Maciej Barć <xgqt <AT> gentoo <DOT> org> CommitDate: Tue Jan 30 19:58:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b20fb027
dev-dotnet/fable: remove bad test for USE=debug Closes: https://bugs.gentoo.org/922684 Signed-off-by: Maciej Barć <xgqt <AT> gentoo.org> dev-dotnet/fable/fable-4.9.0.ebuild | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/dev-dotnet/fable/fable-4.9.0.ebuild b/dev-dotnet/fable/fable-4.9.0.ebuild index a36d9e9e9072..e564ab360793 100644 --- a/dev-dotnet/fable/fable-4.9.0.ebuild +++ b/dev-dotnet/fable/fable-4.9.0.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 @@ -318,6 +318,13 @@ src_unpack() { src_prepare() { rm Fable.Standalone.sln || die + if use debug ; then + DOTNET_PKG_REMOVE_PROJECTS+=( + # Seems to hang but in reality it fails with USE=debug, bug #922684 + tests/Python/Fable.Tests.Python.fsproj + ) + fi + dotnet-pkg_src_prepare edotnet sln ./Fable.sln remove "${DOTNET_PKG_REMOVE_PROJECTS[@]}" }
