Skip to content

Commit

Permalink
scripts/bootstrap-prefix: bump snapshot (for macOS Sequoia)
Browse files Browse the repository at this point in the history
- 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>
  • Loading branch information
grobian committed Oct 1, 2024
1 parent a5f19d4 commit f6632ea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/bootstrap-prefix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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
}

Expand Down

0 comments on commit f6632ea

Please sign in to comment.