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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 0019A15800A for ; Fri, 1 Sep 2023 15:26:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3632E2BC014; Fri, 1 Sep 2023 15:26:03 +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 15B562BC014 for ; Fri, 1 Sep 2023 15:26:03 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1E1E3335D2B for ; Fri, 1 Sep 2023 15:26:02 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AED36EA2 for ; Fri, 1 Sep 2023 15:26:00 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1693581929.e392ba57a6cbcd5401f53c5a8a3fc9bd304f2040.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/bootstrap-prefix.sh X-VCS-Directories: scripts/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: e392ba57a6cbcd5401f53c5a8a3fc9bd304f2040 X-VCS-Branch: master Date: Fri, 1 Sep 2023 15:26:00 +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: 33779cd7-ee7f-4779-9b4a-22420bc0e950 X-Archives-Hash: ef00e8e1c639c5b171832b7047162988 commit: e392ba57a6cbcd5401f53c5a8a3fc9bd304f2040 Author: Fabian Groffen gentoo org> AuthorDate: Fri Sep 1 15:25:29 2023 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Fri Sep 1 15:25:29 2023 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=e392ba57 scripts/bootstrap-prefix: only use Prefix mirrors for Prefix tree Bug: https://bugs.gentoo.org/913415 Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 8e5d6e8b6e..142ef8213e 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -546,11 +546,12 @@ do_tree() { # latest tree cannot be fetched from mirrors, always have to # respect the source to get the latest if [[ -n ${LATEST_TREE_YES} ]] ; then - echo "$1" ( export GENTOO_MIRRORS= DISTFILES_G_O= DISTFILES_PFX= ; efetch "$1/$2" ) || return 1 else - efetch "$1/$2" || return 1 + # use only Prefix mirror + ( export GENTOO_MIRRORS= DISTFILES_G_O= ; + efetch "$1/$2" ) || return 1 fi einfo "Unpacking, this may take a while" estatus "stage1: unpacking Portage tree"