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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A9E9B1581EC for ; Wed, 20 Nov 2024 21:52:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 641AEE07FA; Wed, 20 Nov 2024 21:52: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 183EBE07EA for ; Wed, 20 Nov 2024 21:52:48 +0000 (UTC) From: xgqt@gentoo.org To: gentoo-dev@lists.gentoo.org Cc: dotnet@gentoo.org, =?UTF-8?q?Maciej=20Bar=C4=87?= Subject: [gentoo-dev] [PATCH 1/2] eclass/dotnet-pkg-base: disable MSBUILDTERMINALLOGGER for new .NET 9.0 pkgs Date: Wed, 20 Nov 2024 22:50:58 +0100 Message-ID: <20241120215226.86454-1-xgqt@gentoo.org> X-Mailer: git-send-email 2.45.2 Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: a982fa7a-dda2-471e-9d09-fd42b7923125 X-Archives-Hash: c62d703519fc15ef920bfed91da3ab60 From: Maciej Barć Disable the fancy terminal logger introduced in .NET 9.0. If enabled, it messes up the Portage log file output. Signed-off-by: Maciej Barć --- eclass/dotnet-pkg-base.eclass | 3 +++ 1 file changed, 3 insertions(+) diff --git a/eclass/dotnet-pkg-base.eclass b/eclass/dotnet-pkg-base.eclass index 8ec21c9a27..d9abff3859 100644 --- a/eclass/dotnet-pkg-base.eclass +++ b/eclass/dotnet-pkg-base.eclass @@ -104,6 +104,9 @@ export POWERSHELL_UPDATECHECK=0 # Speeds up restore. Having this turned on is redundant with Portage manifests. # See also: https://github.com/NuGet/Home/issues/13062 export DOTNET_NUGET_SIGNATURE_VERIFICATION=false +# Disable the fancy terminal logger introduced in .NET 9.0. +# It messes up the Portage log file output. +export MSBUILDTERMINALLOGGER=off # Overwrite selected MSBuild properties ("-p:XYZ"). export UseSharedCompilation=false -- 2.45.2