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 C7FA315813A for ; Tue, 07 Jan 2025 17:26:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 942C7E0817; Tue, 07 Jan 2025 17:26:04 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (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 pigeon.gentoo.org (Postfix) with ESMTPS id 58457E07D8 for ; Tue, 07 Jan 2025 17:26:04 +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 2/2] dev-dotnet/dotnet-sdk: use DOTNET_VERBOSITY, like the dotnet-pkg-base eclass Date: Tue, 7 Jan 2025 18:25:37 +0100 Message-ID: <20250107172550.62144-2-xgqt@gentoo.org> X-Mailer: git-send-email 2.45.2 In-Reply-To: <20250107172550.62144-1-xgqt@gentoo.org> References: <20250107172550.62144-1-xgqt@gentoo.org> 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: ea3effe7-1e7b-4ba9-a5aa-3daedad5c8f8 X-Archives-Hash: d0b455e2a22979debc9ec709e3211714 From: Maciej Barć Signed-off-by: Maciej Barć --- dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild | 6 +++--- dev-dotnet/dotnet-sdk/dotnet-sdk-9.0.101.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild b/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild index e275af4d57..6cb26506ce 100644 --- a/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild +++ b/dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Pre-build (and distribution preparation) @@ -15,7 +15,7 @@ # Build ("src_compile") # To learn about arguments that are passed to the "build.sh" script see: # https://github.com/dotnet/source-build/discussions/4082 -# User variable: GENTOO_DOTNET_BUILD_VERBOSITY - set other verbosity log level. +# User variable: DOTNET_VERBOSITY - set other verbosity log level. EAPI=8 @@ -199,7 +199,7 @@ src_compile() { # The "source_repository" should always be the same. local source_repository="https://github.com/dotnet/dotnet" - local verbosity="${GENTOO_DOTNET_BUILD_VERBOSITY:-minimal}" + local verbosity="${DOTNET_VERBOSITY:-minimal}" ebegin "Building the .NET SDK ${SDK_SLOT}" local -a buildopts=( diff --git a/dev-dotnet/dotnet-sdk/dotnet-sdk-9.0.101.ebuild b/dev-dotnet/dotnet-sdk/dotnet-sdk-9.0.101.ebuild index d5bce67a81..5067599f96 100644 --- a/dev-dotnet/dotnet-sdk/dotnet-sdk-9.0.101.ebuild +++ b/dev-dotnet/dotnet-sdk/dotnet-sdk-9.0.101.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 # Pre-build (and distribution preparation) @@ -15,7 +15,7 @@ # Build ("src_compile") # To learn about arguments that are passed to the "build.sh" script see: # https://github.com/dotnet/source-build/discussions/4082 -# User variable: GENTOO_DOTNET_BUILD_VERBOSITY - set other verbosity log level. +# User variable: DOTNET_VERBOSITY - set other verbosity log level. EAPI=8 @@ -245,7 +245,7 @@ src_compile() { # The "source_repository" should always be the same. local source_repository="https://github.com/dotnet/dotnet" - local verbosity="${GENTOO_DOTNET_BUILD_VERBOSITY:-minimal}" + local verbosity="${DOTNET_VERBOSITY:-minimal}" ebegin "Building the .NET SDK ${SDK_SLOT}" local -a buildopts=( -- 2.45.2