Skip to content

Commit 4b38d73

Browse files
authored
Merge pull request #42177 from facebook/cipolleschi/071-fix-boost-url
[0.71][RN][General] Migrate boost download url away from JFrog
2 parents 3df6a77 + ab19fd6 commit 4b38d73

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ReactAndroid/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ task createNativeDepsDirectories {
241241
}
242242

243243
task downloadBoost(dependsOn: createNativeDepsDirectories, type: Download) {
244-
src("https://boostorg.jfrog.io/artifactory/main/release/${BOOST_VERSION.replace("_", ".")}/source/boost_${BOOST_VERSION}.tar.gz")
244+
src("https://archives.boost.io/release/${BOOST_VERSION.replace("_", ".")}/source/boost_${BOOST_VERSION}.tar.gz")
245245
onlyIfNewer(true)
246246
overwrite(false)
247247
dest(new File(downloadsDir, "boost_${BOOST_VERSION}.tar.gz"))

third-party-podspecs/boost.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Pod::Spec.new do |spec|
1010
spec.homepage = 'http://www.boost.org'
1111
spec.summary = 'Boost provides free peer-reviewed portable C++ source libraries.'
1212
spec.authors = 'Rene Rivera'
13-
spec.source = { :http => 'https://boostorg.jfrog.io/artifactory/main/release/1.76.0/source/boost_1_76_0.tar.bz2',
13+
spec.source = { :http => 'https://archives.boost.io/release/1.76.0/source/boost_1_76_0.tar.bz2',
1414
:sha256 => 'f0397ba6e982c4450f27bf32a2a83292aba035b827a5623a14636ea583318c41' }
1515

1616
# Pinning to the same version as React.podspec.

0 commit comments

Comments
 (0)