Skip to content

Commit b07d539

Browse files
committed
Adapts to new Boost download location
1 parent 13943d9 commit b07d539

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.circleci/osx_install_dependencies.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ then
6666
boost_version="1.84.0"
6767
boost_package="boost_${boost_version//./_}.tar.bz2"
6868
boost_dir="boost_${boost_version//./_}"
69-
wget "https://boostorg.jfrog.io/artifactory/main/release/$boost_version/source/$boost_package"
69+
wget "https://archives.boost.io/release/$boost_version/source/$boost_package"
7070
tar xf "$boost_package"
7171
rm "$boost_package"
7272
cd "$boost_dir"

scripts/docker/buildpack-deps/Dockerfile.emscripten

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RUN set -ex && \
7070
# Install Boost
7171
RUN set -ex && \
7272
cd /usr/src && \
73-
wget -q 'https://boostorg.jfrog.io/artifactory/main/release/1.75.0/source/boost_1_75_0.tar.bz2' -O boost.tar.bz2 && \
73+
wget -q 'https://archives.boost.io/release/1.75.0/source/boost_1_75_0.tar.bz2' -O boost.tar.bz2 && \
7474
test "$(sha256sum boost.tar.bz2)" = "953db31e016db7bb207f11432bef7df100516eeb746843fa0486a222e3fd49cb boost.tar.bz2" && \
7575
tar -xf boost.tar.bz2 && \
7676
rm boost.tar.bz2 && \

scripts/docker/buildpack-deps/Dockerfile.ubuntu.clang.ossfuzz

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ FROM base AS libraries
7373
# Boost
7474
RUN set -ex; \
7575
cd /usr/src; \
76-
wget -q 'https://boostorg.jfrog.io/artifactory/main/release/1.74.0/source/boost_1_74_0.tar.bz2' -O boost.tar.bz2; \
76+
wget -q 'https://archives.boost.io/release/1.74.0/source/boost_1_74_0.tar.bz2' -O boost.tar.bz2; \
7777
test "$(sha256sum boost.tar.bz2)" = "83bfc1507731a0906e387fc28b7ef5417d591429e51e788417fe9ff025e116b1 boost.tar.bz2" && \
7878
tar -xf boost.tar.bz2; \
7979
rm boost.tar.bz2; \

scripts/install_deps.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ if ( -not (Test-Path "$PSScriptRoot\..\deps\boost") ) {
1616

1717
# FIXME: The default user agent results in Artifactory treating Invoke-WebRequest as a browser
1818
# and serving it a page that requires JavaScript.
19-
Invoke-WebRequest -URI "https://boostorg.jfrog.io/artifactory/main/release/1.83.0/source/boost_1_83_0.zip" -OutFile boost.zip -UserAgent ""
19+
Invoke-WebRequest -URI "https://archives.boost.io/release/1.83.0/source/boost_1_83_0.zip" -OutFile boost.zip -UserAgent ""
2020
if ((Get-FileHash boost.zip).Hash -ne "c86bd9d9eef795b4b0d3802279419fde5221922805b073b9bd822edecb1ca28e") {
2121
throw 'Downloaded Boost source package has wrong checksum.'
2222
}

0 commit comments

Comments
 (0)