diff options
author | Fabian Groffen <grobian@gentoo.org> | 2024-10-01 15:29:38 +0200 |
---|---|---|
committer | Fabian Groffen <grobian@gentoo.org> | 2024-10-01 15:29:38 +0200 |
commit | f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11 (patch) | |
tree | 7cc0142cecb72f4c006d9a0f2af424d00bccaebe | |
parent | scripts/bootstrap-prefix: switch compiler to a properly bootstrapped one (diff) | |
download | prefix-f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11.tar.gz prefix-f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11.tar.bz2 prefix-f6632ea6ca8f1b28c54d7a6a852259bcb13c3e11.zip |
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@gentoo.org>
-rwxr-xr-x | scripts/bootstrap-prefix.sh | 6 |
1 files 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 } |