Bug: boost archive url not available anymore

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
This commit is contained in:
Julien Zoubian 2025-03-11 19:52:34 +01:00
parent b78ff2bd52
commit 3868e6a061

View file

@ -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)