From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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 finch.gentoo.org (Postfix) with ESMTPS id 3291E15806C for ; Sun, 13 Jul 2025 04:20:08 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange x25519) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 0D6A0341F65 for ; Sun, 13 Jul 2025 04:20:08 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id EAB52110563; Sun, 13 Jul 2025 04:19:53 +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) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id DE150110561 for ; Sun, 13 Jul 2025 04:19:53 +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) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9150B341F0F for ; Sun, 13 Jul 2025 04:19:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0EE9F30DD for ; Sun, 13 Jul 2025 04:19:51 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1752380343.fd92f3d7ee4577e63a069beb1da2df4727e4a422.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: bin/ X-VCS-Repository: proj/portage X-VCS-Files: bin/emerge-webrsync X-VCS-Directories: bin/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: fd92f3d7ee4577e63a069beb1da2df4727e4a422 X-VCS-Branch: master Date: Sun, 13 Jul 2025 04:19:51 +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: f526c255-f7cd-405a-bb7e-cf31cfef369a X-Archives-Hash: a9339d8b9cab3f10a8da1250b028ab42 commit: fd92f3d7ee4577e63a069beb1da2df4727e4a422 Author: Kerin Millar plushkava net> AuthorDate: Sun Jul 6 17:14:06 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sun Jul 13 04:19:03 2025 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=fd92f3d7 emerge-webrsync: drop a superfluous comment from fetch_file() A considerable number of variables are defined by evaluating the output of portageq envvar -v. As regards the fetch_file() function, there is no particular need to observe that 'DISTDIR' is among them, nor exclusively do so for one particular command within said function. Signed-off-by: Kerin Millar plushkava.net> Signed-off-by: Sam James gentoo.org> bin/emerge-webrsync | 1 - 1 file changed, 1 deletion(-) diff --git a/bin/emerge-webrsync b/bin/emerge-webrsync index 69f18302b8..8807c8e737 100755 --- a/bin/emerge-webrsync +++ b/bin/emerge-webrsync @@ -192,7 +192,6 @@ fetch_file() { rm -f -- "${DISTDIR}/${FILE}" fi - # Already set DISTDIR= if ! eval "${fetchcommand}" || [[ ! -s ${DISTDIR}/${FILE} ]]; then rm -f -- "${DISTDIR}/${FILE}" return 1