This is an automated email from the ASF dual-hosted git repository.

brycemecum pushed a commit to branch maint-20.0.0.1-r
in repository https://gitbox.apache.org/repos/asf/arrow.git

commit 95e0b2ba63358c72ee10e9e11b102b865bb72bcc
Author: Jonathan Keane <[email protected]>
AuthorDate: Thu May 15 19:10:58 2025 -0500

    GH-40756: [C++] Remove dead Boost urls (#46452)
    
    One of the URLs is dead 
(https://boostorg.jfrog.io/artifactory/main/release/1.81.0/source/boost_1_81_0.tar.gz)
 and the sourceforge link is to the non-trimmed version.
    
    We are seeing these multiple downloads and fails on CRAN — I believe they 
get cleaned up so aren't the cause of those runners running out of space (See: 
https://www.r-project.org/nosvn/R.check/r-release-macos-x86_64/arrow-00install.txt
 and 
https://www.r-project.org/nosvn/R.check/r-oldrel-macos-x86_64/arrow-00install.html),
 but it still isn't great to have it download things we know will fail.
    
    ### Rationale for this change
    Don't download things we know will fail
    
    ### What changes are included in this PR?
    Removed two URLs
    
    ### Are these changes tested?
    Extensively.
    
    ### Are there any user-facing changes?
    No.
    * GitHub Issue: #40756
    
    Authored-by: Jonathan Keane <[email protected]>
    Signed-off-by: Sutou Kouhei <[email protected]>
---
 cpp/cmake_modules/ThirdpartyToolchain.cmake | 2 --
 1 file changed, 2 deletions(-)

diff --git a/cpp/cmake_modules/ThirdpartyToolchain.cmake 
b/cpp/cmake_modules/ThirdpartyToolchain.cmake
index 63bdd4ab76..0a01e94251 100644
--- a/cpp/cmake_modules/ThirdpartyToolchain.cmake
+++ b/cpp/cmake_modules/ThirdpartyToolchain.cmake
@@ -610,8 +610,6 @@ else()
            # our currently used packages and doesn't fall out of sync with
            # ${ARROW_BOOST_BUILD_VERSION_UNDERSCORES}
            
"${THIRDPARTY_MIRROR_URL}/boost_${ARROW_BOOST_BUILD_VERSION_UNDERSCORES}.tar.gz"
-           
"https://boostorg.jfrog.io/artifactory/main/release/${ARROW_BOOST_BUILD_VERSION}/source/boost_${ARROW_BOOST_BUILD_VERSION_UNDERSCORES}.tar.gz";
-           
"https://sourceforge.net/projects/boost/files/boost/${ARROW_BOOST_BUILD_VERSION}/boost_${ARROW_BOOST_BUILD_VERSION_UNDERSCORES}.tar.gz";
   )
 endif()
 

Reply via email to