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 5339D158245 for ; Sat, 7 Dec 2024 03:42:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4D91FE09A2; Sat, 7 Dec 2024 03:42:36 +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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A9163E09A2 for ; Sat, 7 Dec 2024 03:42:35 +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 87D3E340C7B for ; Sat, 7 Dec 2024 03:42:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD8381F28 for ; Sat, 7 Dec 2024 03:42:32 +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: <1733542950.ef85eedf0aa34fbc5f2bd8aa36c1433211b1524b.xgqt@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-dotnet/dotnet-sdk/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild X-VCS-Directories: dev-dotnet/dotnet-sdk/ X-VCS-Committer: xgqt X-VCS-Committer-Name: Maciej Barć X-VCS-Revision: ef85eedf0aa34fbc5f2bd8aa36c1433211b1524b X-VCS-Branch: master Date: Sat, 7 Dec 2024 03:42:32 +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: 78854dcd-f3ac-4b0b-a954-504ef598690d X-Archives-Hash: ffccd51c1d46033652913a6489ad9383 commit: ef85eedf0aa34fbc5f2bd8aa36c1433211b1524b Author: Maciej Barć gentoo org> AuthorDate: Fri Dec 6 23:19:18 2024 +0000 Commit: Maciej Barć gentoo org> CommitDate: Sat Dec 7 03:42:30 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef85eedf dev-dotnet/dotnet-sdk: incorporate 9.0 tweaks into 8.0 Signed-off-by: Maciej Barć gentoo.org> dev-dotnet/dotnet-sdk/dotnet-sdk-8.0.107-r2.ebuild | 25 ++++++++++++++++++---- 1 file changed, 21 insertions(+), 4 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 cbf2186a4e0f..1686abfd6443 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 @@ -92,10 +92,12 @@ IDEPEND=" " CHECKREQS_DISK_BUILD="20G" +CHECKREQS_DISK_USR="650M" # Created by dotnet itself: QA_PREBUILT=" -usr/lib.*/dotnet-sdk-.*/dotnet +.*/dotnet +.*/ilc " # .NET runtime, better to not touch it if they want some specific flags. @@ -166,9 +168,14 @@ src_prepare() { unset DOTNET_ROOT unset NUGET_PACKAGES + unset CLR_ICU_VERSION_OVERRIDE + unset USER_CLR_ICU_VERSION_OVERRIDE + export DOTNET_CLI_TELEMETRY_OPTOUT="1" + export DOTNET_NUGET_SIGNATURE_VERIFICATION="false" export DOTNET_SKIP_FIRST_TIME_EXPERIENCE="1" export MSBUILDDISABLENODEREUSE="1" + export MSBUILDTERMINALLOGGER="off" export UseSharedCompilation="false" local dotnet_sdk_tmp_directory="${WORKDIR}/dotnet-sdk-tmp" @@ -194,17 +201,24 @@ src_compile() { ebegin "Building the .NET SDK ${SDK_SLOT}" local -a buildopts=( - --clean-while-building + # URLs, version specification, etc. ... --source-repository "${source_repository}" --source-version "${COMMIT}" + # How it should be built. + --clean-while-building + + # Auxiliary options. -- -maxCpuCount:"$(makeopts_jobs)" - -verbosity:"${verbosity}" + -p:MaxCpuCount="$(makeopts_jobs)" -p:ContinueOnPrebuiltBaselineError="true" + + # Verbosity settings. + -verbosity:"${verbosity}" -p:LogVerbosity="${verbosity}" - -p:MinimalConsoleLogOutput="false" -p:verbosity="${verbosity}" + -p:MinimalConsoleLogOutput="false" ) bash ./build.sh "${buildopts[@]}" eend ${?} || die "build failed" @@ -220,6 +234,9 @@ src_install() { fperms 0755 "${dest}" dosym -r "${dest}/dotnet" "/usr/bin/dotnet-${SDK_SLOT}" + + # Fix permissions again for what is already marked as executable. + find "${ED}" -type f -executable -exec chmod +x {} + || die } pkg_postinst() {