commit: f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11
Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Tue Oct 1 13:29:38 2024 +0000
Commit: Fabian Groffen <grobian <AT> gentoo <DOT> 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 <grobian <AT> 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
}