Skip to content

Commit f6632ea

Browse files
committed
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 <[email protected]>
1 parent a5f19d4 commit f6632ea

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/bootstrap-prefix.sh

+3-3
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ efetch() {
7272
# Try to find a download manager, we only deal with wget,
7373
# curl, FreeBSD's fetch and ftp.
7474
if [[ $(type -t wget) == "file" ]] ; then
75-
FETCH_COMMAND="wget"
75+
FETCH_COMMAND="wget -t 3 -T 3" # 3x3s wait
7676
[[ $(wget -h) == *"--no-check-certificate"* ]] \
7777
&& FETCH_COMMAND+=" --no-check-certificate"
7878
elif [[ $(type -t curl) == "file" ]] ; then
@@ -531,7 +531,7 @@ bootstrap_tree() {
531531
# retain this comment and the line below to
532532
# keep this snapshot around in the snapshots
533533
# MKSNAPSHOT-ANCHOR -- directory of rsync slaves
534-
local PV="20240922"
534+
local PV="20240930"
535535

536536
# RAP uses the latest gentoo main repo snapshot to bootstrap.
537537
is-rap && LATEST_TREE_YES=1
@@ -1308,7 +1308,7 @@ bootstrap_gcc5() {
13081308
}
13091309

13101310
bootstrap_sed() {
1311-
bootstrap_gnu sed 4.5 || \
1311+
bootstrap_gnu sed 4.9 || bootstrap_gnu sed 4.5 || \
13121312
bootstrap_gnu sed 4.2.2 || bootstrap_gnu sed 4.2.1
13131313
}
13141314

0 commit comments

Comments
 (0)