Skip to content

Commit e3ce543

Browse files
yukawahiroyuki-komatsu
authored andcommitted
Stop downloading Qt5 and jom.exe in update_deps.py
This is a cleanup after #775. As Qt6 migration has been successfully completed, we no longer need to download Qt5 source archive and jom.exe. #codehealth PiperOrigin-RevId: 561551977
1 parent c2230ea commit e3ce543

File tree

1 file changed

+0
-15
lines changed

1 file changed

+0
-15
lines changed

src/build_tools/update_deps.py

-15
Original file line numberDiff line numberDiff line change
@@ -80,24 +80,12 @@ def __hash__(self):
8080
return hash(self.sha256)
8181

8282

83-
QT5 = ArchiveInfo(
84-
url='https://download.qt.io/archive/qt/5.15/5.15.10/submodules/qtbase-everywhere-opensource-src-5.15.10.tar.xz',
85-
size=50422688,
86-
sha256='c0d06cb18d20f10bf7ad53552099e097ec39362d30a5d6f104724f55fa1c8fb9',
87-
)
88-
8983
QT6 = ArchiveInfo(
9084
url='https://download.qt.io/archive/qt/6.5/6.5.2/submodules/qtbase-everywhere-src-6.5.2.tar.xz',
9185
size=48410716,
9286
sha256='3db4c729b4d80a9d8fda8dd77128406353baff4755ca619177eda4cddae71269',
9387
)
9488

95-
JOM = ArchiveInfo(
96-
url='https://download.qt.io/official_releases/jom/jom_1_1_3.zip',
97-
size=1213852,
98-
sha256='128fdd846fe24f8594eed37d1d8929a0ea78df563537c0c1b1861a635013fff8',
99-
)
100-
10189
WIX = ArchiveInfo(
10290
url='https://wixtoolset.org/downloads/v3.14.0.6526/wix314-binaries.zip',
10391
size=41223699,
@@ -364,10 +352,7 @@ def main():
364352

365353
archives = []
366354
if (not args.noqt) and (is_windows() or is_mac()):
367-
archives.append(QT5)
368355
archives.append(QT6)
369-
if is_windows():
370-
archives.append(JOM)
371356
if (not args.noninja):
372357
if is_mac():
373358
archives.append(NINJA_MAC)

0 commit comments

Comments
 (0)