From 3868e6a061c7e81294ded5cd2fd5b316ecb2b3a6 Mon Sep 17 00:00:00 2001 From: Julien Zoubian Date: Tue, 11 Mar 2025 19:52:34 +0100 Subject: [PATCH] Bug: boost archive url not available anymore MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue: build failed because hash mismatch for file boost_1_76_0.tar.gz The file was not downloaded, testing the url in a browers gave: ''' Time flies when you’re having fun. Your 14-day trial may be over, but you have options! Need help choosing the right subscription or additional time on your trial? Just let us know and a DevOps expert will reach out to assist you. ''' Solution: change the url to the boost archive: https://archives.boost.io/release/1.76.0/source/boost_1_76_0.tar.gz --- external/external_build.cmake | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/external/external_build.cmake b/external/external_build.cmake index df13071..0abb8f7 100644 --- a/external/external_build.cmake +++ b/external/external_build.cmake @@ -40,7 +40,7 @@ IF(INTERNAL_NETCDF) ENDIF(INTERNAL_NETCDF) IF(INTERNAL_BOOST) - SET(BOOST_URL "https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.gz" CACHE STRING "URL to download Boost from") + SET(BOOST_URL "https://archives.boost.io/release/1.76.0/source/boost_1_76_0.tar.gz" CACHE STRING "URL to download Boost from") mark_as_advanced(BOOST_URL) ELSE(INTERNAL_BOOST) find_package(Boost 1.74.0 COMPONENTS format spirit phoenix python FATAL_ERROR)