diff options
| author | Phoebe <20694052+PhoebeHui@users.noreply.github.com> | 2020-03-20 01:33:59 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-19 10:33:59 -0700 |
| commit | cbaafe76d63fd55718ef417c9e833cf389ee73ed (patch) | |
| tree | 21f9558466b68d05566a0011d0293a8ad7e54d2c /ports/qt5-base | |
| parent | b3bdac11f0b25544fbedc7c6913f0f1d16404aa2 (diff) | |
| download | vcpkg-cbaafe76d63fd55718ef417c9e833cf389ee73ed.tar.gz vcpkg-cbaafe76d63fd55718ef417c9e833cf389ee73ed.zip | |
Fix ci baseline (#10390)
* Rebuild failed ports on ci baseline
* Remove passed port osg-qt:x64-linux from ci baseline file
* Add mirrors for qt5
Diffstat (limited to 'ports/qt5-base')
| -rw-r--r-- | ports/qt5-base/CONTROL | 2 | ||||
| -rw-r--r-- | ports/qt5-base/cmake/qt_download_submodule.cmake | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/ports/qt5-base/CONTROL b/ports/qt5-base/CONTROL index 090d35799..c3159094a 100644 --- a/ports/qt5-base/CONTROL +++ b/ports/qt5-base/CONTROL @@ -1,5 +1,5 @@ Source: qt5-base -Version: 5.12.5-10 +Version: 5.12.5-11 Homepage: https://www.qt.io/ Description: Qt5 Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components. Build-Depends: zlib, libjpeg-turbo, libpng, freetype, pcre2, harfbuzz, sqlite3, libpq, double-conversion, openssl, angle (!windows), egl-registry, icu (!uwp), fontconfig (!windows) diff --git a/ports/qt5-base/cmake/qt_download_submodule.cmake b/ports/qt5-base/cmake/qt_download_submodule.cmake index 4241b6635..8e03b00a8 100644 --- a/ports/qt5-base/cmake/qt_download_submodule.cmake +++ b/ports/qt5-base/cmake/qt_download_submodule.cmake @@ -15,9 +15,11 @@ function(qt_download_submodule) set(FULL_VERSION "${QT_MAJOR_MINOR_VER}.${QT_PATCH_VER}")
set(ARCHIVE_NAME "${NAME}-everywhere-src-${FULL_VERSION}.tar.xz")
-
+ set(URLS "http://download.qt.io/official_releases/qt/${QT_MAJOR_MINOR_VER}/${FULL_VERSION}/submodules/${ARCHIVE_NAME}"
+ "http://mirrors.ocf.berkeley.edu/qt/official_releases/qt/${QT_MAJOR_MINOR_VER}/${FULL_VERSION}/submodules/${ARCHIVE_NAME}"
+ )
vcpkg_download_distfile(ARCHIVE_FILE
- URLS "http://download.qt.io/official_releases/qt/${QT_MAJOR_MINOR_VER}/${FULL_VERSION}/submodules/${ARCHIVE_NAME}"
+ URLS ${URLS}
FILENAME ${ARCHIVE_NAME}
SHA512 ${QT_HASH_${PORT}}
)
|
