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 76AA815808B for ; Tue, 1 Oct 2024 13:31:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id AF736E29B4; Tue, 1 Oct 2024 13:31:22 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 97C29E29B4 for ; Tue, 1 Oct 2024 13:31:22 +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 2C28134313A for ; Tue, 1 Oct 2024 13:31:21 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7E2A6F32 for ; Tue, 1 Oct 2024 13:31:19 +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: <1727789378.f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11.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: f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11 X-VCS-Branch: master Date: Tue, 1 Oct 2024 13:31:19 +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: 85dac38e-30a3-414c-a8b5-aca479289e17 X-Archives-Hash: e048e065282059838b3460bffc37858c commit: f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11 Author: Fabian Groffen gentoo org> AuthorDate: Tue Oct 1 13:29:38 2024 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Tue Oct 1 13:29:38 2024 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=f6632ea6 scripts/bootstrap-prefix: bump snapshot (for macOS Sequoia) - add timeout to wget (because defaults are unbearable, and gnu is down for the moment) - update snapshot including gcc-14.2.0 fix for macOS - add sed-4.9 to the list of seds to try Signed-off-by: Fabian Groffen gentoo.org> scripts/bootstrap-prefix.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/bootstrap-prefix.sh b/scripts/bootstrap-prefix.sh index 9a21185e04..ac38ff7b9f 100755 --- a/scripts/bootstrap-prefix.sh +++ b/scripts/bootstrap-prefix.sh @@ -72,7 +72,7 @@ efetch() { # Try to find a download manager, we only deal with wget, # curl, FreeBSD's fetch and ftp. if [[ $(type -t wget) == "file" ]] ; then - FETCH_COMMAND="wget" + FETCH_COMMAND="wget -t 3 -T 3" # 3x3s wait [[ $(wget -h) == *"--no-check-certificate"* ]] \ && FETCH_COMMAND+=" --no-check-certificate" elif [[ $(type -t curl) == "file" ]] ; then @@ -531,7 +531,7 @@ bootstrap_tree() { # retain this comment and the line below to # keep this snapshot around in the snapshots # MKSNAPSHOT-ANCHOR -- directory of rsync slaves - local PV="20240922" + local PV="20240930" # RAP uses the latest gentoo main repo snapshot to bootstrap. is-rap && LATEST_TREE_YES=1 @@ -1308,7 +1308,7 @@ bootstrap_gcc5() { } bootstrap_sed() { - bootstrap_gnu sed 4.5 || \ + bootstrap_gnu sed 4.9 || bootstrap_gnu sed 4.5 || \ bootstrap_gnu sed 4.2.2 || bootstrap_gnu sed 4.2.1 }