From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8261115838C for ; Tue, 30 Jan 2024 19:58:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 747362BC07D; Tue, 30 Jan 2024 19:58:48 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4199C2BC07D for ; Tue, 30 Jan 2024 19:58:48 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 73F963430E6 for ; Tue, 30 Jan 2024 19:58:47 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BA6D8137E for ; Tue, 30 Jan 2024 19:58:45 +0000 (UTC) From: "Maciej Barć" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Maciej Barć" Message-ID: <1706644718.b20fb0275a32e51daf4a31707f9fe65b35964e11.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-dotnet/fable/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-dotnet/fable/fable-4.9.0.ebuild X-VCS-Directories: dev-dotnet/fable/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: b20fb0275a32e51daf4a31707f9fe65b35964e11 X-VCS-Branch: master Date: Tue, 30 Jan 2024 19:58:45 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f4265836-7ba2-41b4-be77-d1dcffe0c868 X-Archives-Hash: 88898d8bccb28286a7ae8df1e5bc49ff commit: b20fb0275a32e51daf4a31707f9fe65b35964e11 Author: Maciej Barć gentoo org> AuthorDate: Tue Jan 30 14:53:34 2024 +0000 Commit: Maciej Barć gentoo 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ć 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[@]}" }