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 1492B158042 for ; Fri, 25 Oct 2024 16:16:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9A526E08F9; Fri, 25 Oct 2024 16:16:10 +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 50C6BE08A0 for ; Fri, 25 Oct 2024 16:16:10 +0000 (UTC) From: Sam James To: xgqt@gentoo.org Cc: gentoo-dev@lists.gentoo.org, dotnet@gentoo.org Subject: Re: [gentoo-dev] [PATCH 1/2] eclass/dotnet-pkg-base: turn off DOTNET_NUGET_SIGNATURE_VERIFICATION In-Reply-To: <20241023195546.87280-1-xgqt@gentoo.org> (xgqt@gentoo.org's message of "Wed, 23 Oct 2024 21:55:42 +0200") Organization: Gentoo References: <20241023195546.87280-1-xgqt@gentoo.org> Date: Fri, 25 Oct 2024 17:16:05 +0100 Message-ID: <87ldycyx8a.fsf@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: quoted-printable X-Archives-Salt: cb6a0a7f-4c83-4596-ac9d-4314faa07be5 X-Archives-Hash: dd09a76d6168a771ecc81c26dffe7e18 xgqt@gentoo.org writes: > From: Maciej Bar=C4=87 > > Speeds up "dotnet restore". Especially can be noticed when running > without network sandbox. > Suggested by vimproved on IRC - thanks! > > See also: https://github.com/NuGet/Home/issues/13062 > > Signed-off-by: Maciej Bar=C4=87 lgtm > --- > 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 15e9ba703b..8cedde073b 100644 > --- a/eclass/dotnet-pkg-base.eclass > +++ b/eclass/dotnet-pkg-base.eclass > @@ -101,6 +101,9 @@ export DOTNET_SKIP_FIRST_TIME_EXPERIENCE=3D1 > export MSBUILDDISABLENODEREUSE=3D1 > export POWERSHELL_TELEMETRY_OPTOUT=3D1 > export POWERSHELL_UPDATECHECK=3D0 > +# Speeds up restore. Using this is redundant with Portage manifests. > +# See also: https://github.com/NuGet/Home/issues/13062 > +export DOTNET_NUGET_SIGNATURE_VERIFICATION=3Dfalse > # Overwrite selected MSBuild properties ("-p:XYZ"). > export UseSharedCompilation=3Dfalse