Updated Qt to 5.12.8.

This commit is contained in:
23rd 2020-03-01 14:38:25 +03:00 committed by John Preston
parent 5dcb232b77
commit d46e145c61
10 changed files with 48 additions and 49 deletions

View File

@ -25,8 +25,8 @@ jobs:
env: env:
GIT: "https://github.com" GIT: "https://github.com"
QT: "5_12_5" QT: "5_12_8"
QT_PREFIX: "/usr/local/desktop-app/Qt-5.12.5" QT_PREFIX: "/usr/local/desktop-app/Qt-5.12.8"
OPENSSL_VER: "1_1_1" OPENSSL_VER: "1_1_1"
OPENSSL_PREFIX: "/usr/local/desktop-app/openssl-1.1.1" OPENSSL_PREFIX: "/usr/local/desktop-app/openssl-1.1.1"
CMAKE_VER: "3.17.0" CMAKE_VER: "3.17.0"
@ -391,18 +391,18 @@ jobs:
cd .. cd ..
rm -rf wayland rm -rf wayland
- name: Qt 5.12.5 cache. - name: Qt 5.12.8 cache.
id: cache-qt id: cache-qt
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: ${{ env.LibrariesPath }}/qt-cache path: ${{ env.LibrariesPath }}/qt-cache
key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_5.diff') }} key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8.diff') }}
- name: Qt 5.12.5 build. - name: Qt 5.12.8 build.
if: steps.cache-qt.outputs.cache-hit != 'true' if: steps.cache-qt.outputs.cache-hit != 'true'
run: | run: |
cd $LibrariesPath cd $LibrariesPath
git clone -b v5.12.5 --depth=1 git://code.qt.io/qt/qt5.git qt_${QT} git clone -b v5.12.8 --depth=1 git://code.qt.io/qt/qt5.git qt_${QT}
cd qt_${QT} cd qt_${QT}
perl init-repository --module-subset=qtbase,qtwayland,qtimageformats,qtsvg perl init-repository --module-subset=qtbase,qtwayland,qtimageformats,qtsvg
git submodule update qtbase qtwayland qtimageformats qtsvg git submodule update qtbase qtwayland qtimageformats qtsvg
@ -436,7 +436,7 @@ jobs:
sudo make INSTALL_ROOT="$LibrariesPath/qt-cache" install sudo make INSTALL_ROOT="$LibrariesPath/qt-cache" install
cd .. cd ..
rm -rf qt_${QT} rm -rf qt_${QT}
- name: Qt 5.12.5 install. - name: Qt 5.12.8 install.
run: | run: |
cd $LibrariesPath cd $LibrariesPath
sudo cp -R qt-cache/. / sudo cp -R qt-cache/. /

View File

@ -27,9 +27,9 @@ jobs:
PREFIX: "/usr/local/macos" PREFIX: "/usr/local/macos"
MACOSX_DEPLOYMENT_TARGET: "10.12" MACOSX_DEPLOYMENT_TARGET: "10.12"
XZ: "xz-5.2.4" XZ: "xz-5.2.4"
QT: "5_12_5" QT: "5_12_8"
OPENSSL_VER: "1_1_1" OPENSSL_VER: "1_1_1"
QT_PREFIX: "/usr/local/desktop-app/Qt-5.12.5" QT_PREFIX: "/usr/local/desktop-app/Qt-5.12.8"
LIBICONV_VER: "libiconv-1.16" LIBICONV_VER: "libiconv-1.16"
UPLOAD_ARTIFACT: "false" UPLOAD_ARTIFACT: "false"
ONLY_CACHE: "false" ONLY_CACHE: "false"
@ -376,20 +376,20 @@ jobs:
build/gyp_crashpad.py -Dmac_deployment_target=10.10 build/gyp_crashpad.py -Dmac_deployment_target=10.10
ninja -C out/Debug ninja -C out/Debug
- name: Qt 5.12.5 cache. - name: Qt 5.12.8 cache.
id: cache-qt id: cache-qt
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: ${{ env.LibrariesPath }}/qt-cache path: ${{ env.LibrariesPath }}/qt-cache
key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_5.diff') }} key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8.diff') }}
- name: Use cached Qt 5.12.5. - name: Use cached Qt 5.12.8.
if: steps.cache-qt.outputs.cache-hit == 'true' if: steps.cache-qt.outputs.cache-hit == 'true'
run: | run: |
cd $LibrariesPath cd $LibrariesPath
mv qt-cache Qt-5.12.5 mv qt-cache Qt-5.12.8
sudo mkdir -p $QT_PREFIX sudo mkdir -p $QT_PREFIX
sudo mv -f Qt-5.12.5 "$(dirname "$QT_PREFIX")"/ sudo mv -f Qt-5.12.8 "$(dirname "$QT_PREFIX")"/
- name: Qt 5.12.5 build. - name: Qt 5.12.8 build.
if: steps.cache-qt.outputs.cache-hit != 'true' if: steps.cache-qt.outputs.cache-hit != 'true'
run: | run: |
cd $LibrariesPath cd $LibrariesPath
@ -397,7 +397,7 @@ jobs:
git clone git://code.qt.io/qt/qt5.git qt$QT git clone git://code.qt.io/qt/qt5.git qt$QT
cd qt$QT cd qt$QT
perl init-repository --module-subset=qtbase,qtimageformats perl init-repository --module-subset=qtbase,qtimageformats
git checkout v5.12.5 git checkout v5.12.8
git submodule update qtbase git submodule update qtbase
git submodule update qtimageformats git submodule update qtimageformats
cd qtbase cd qtbase

View File

@ -24,7 +24,7 @@ jobs:
SDK: "10.0.18362.0" SDK: "10.0.18362.0"
VC: "call vcvars32.bat && cd Libraries" VC: "call vcvars32.bat && cd Libraries"
GIT: "https://github.com" GIT: "https://github.com"
QT: "5_12_5" QT: "5_12_8"
OPENSSL_VER: "1_1_1" OPENSSL_VER: "1_1_1"
UPLOAD_ARTIFACT: "false" UPLOAD_ARTIFACT: "false"
ONLY_CACHE: "false" ONLY_CACHE: "false"
@ -263,13 +263,13 @@ jobs:
rmdir /S /Q .git rmdir /S /Q .git
- name: Qt 5.12.5 cache. - name: Qt 5.12.8 cache.
id: cache-qt id: cache-qt
uses: actions/cache@v1 uses: actions/cache@v1
with: with:
path: ${{ env.LibrariesPath }}/Qt-5.12.5 path: ${{ env.LibrariesPath }}/Qt-5.12.8
key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_5.diff') }} key: ${{ runner.OS }}-qt-${{ env.CACHE_KEY }}-${{ hashFiles('**/qtbase_5_12_8.diff') }}
- name: Configure Qt 5.12.5. - name: Configure Qt 5.12.8.
if: steps.cache-qt.outputs.cache-hit != 'true' if: steps.cache-qt.outputs.cache-hit != 'true'
shell: cmd shell: cmd
run: | run: |
@ -278,7 +278,7 @@ jobs:
git clone git://code.qt.io/qt/qt5.git qt_%QT% git clone git://code.qt.io/qt/qt5.git qt_%QT%
cd qt_%QT% cd qt_%QT%
perl init-repository --module-subset=qtbase,qtimageformats perl init-repository --module-subset=qtbase,qtimageformats
git checkout v5.12.5 git checkout v5.12.8
git submodule update qtbase git submodule update qtbase
git submodule update qtimageformats git submodule update qtimageformats
cd qtbase cd qtbase
@ -289,7 +289,7 @@ jobs:
SET LIBS=libcrypto.lib Ws2_32.lib Gdi32.lib Advapi32.lib Crypt32.lib User32.lib SET LIBS=libcrypto.lib Ws2_32.lib Gdi32.lib Advapi32.lib Crypt32.lib User32.lib
configure ^ configure ^
-prefix "%LibrariesPath%\Qt-5.12.5" ^ -prefix "%LibrariesPath%\Qt-5.12.8" ^
-debug ^ -debug ^
-force-debug-info ^ -force-debug-info ^
-opensource ^ -opensource ^
@ -304,7 +304,7 @@ jobs:
-nomake examples ^ -nomake examples ^
-nomake tests ^ -nomake tests ^
-platform win32-msvc -platform win32-msvc
- name: Qt 5.12.5 build. - name: Qt 5.12.8 build.
if: steps.cache-qt.outputs.cache-hit != 'true' if: steps.cache-qt.outputs.cache-hit != 'true'
shell: cmd shell: cmd
run: | run: |

View File

@ -23,7 +23,7 @@ The source code is published under GPLv3 with OpenSSL exception, the license is
## Third-party ## Third-party
* Qt 5.12.5 and 5.6.2, slightly patched ([LGPL](http://doc.qt.io/qt-5/lgpl.html)) * Qt 5.12.8 and 5.6.2, slightly patched ([LGPL](http://doc.qt.io/qt-5/lgpl.html))
* OpenSSL 1.1.1 ([OpenSSL License](https://www.openssl.org/source/license.html)) * OpenSSL 1.1.1 ([OpenSSL License](https://www.openssl.org/source/license.html))
* zlib 1.2.11 ([zlib License](http://www.zlib.net/zlib_license.html)) * zlib 1.2.11 ([zlib License](http://www.zlib.net/zlib_license.html))
* LZMA SDK 9.20 ([public domain](http://www.7-zip.org/sdk.html)) * LZMA SDK 9.20 ([public domain](http://www.7-zip.org/sdk.html))

@ -1 +1 @@
Subproject commit 0ce28e94b29c34eb9f3b271b4b3252b37c02ef12 Subproject commit eedb8afcf5f1709f3e02db9b06b977bb57aca182

@ -1 +1 @@
Subproject commit 9f3bb0e2a97f9f31b4f2e5d655ad0395c4249e1c Subproject commit df918b9d3e2cce729cf21de5c69a01a847e7107c

2
cmake

@ -1 +1 @@
Subproject commit b4ea62dfda376354aaae1482441a21ee06348580 Subproject commit 4a8061d2b04c59cf1665c96cf0ca659690a15715

View File

@ -54,7 +54,7 @@ Go to ***BuildPath*** and run
git clone https://github.com/desktop-app/patches.git git clone https://github.com/desktop-app/patches.git
cd patches cd patches
git checkout 395b620 git checkout 10aeaf6
cd ../ cd ../
git clone --branch 0.10.0 https://github.com/ericniebler/range-v3 git clone --branch 0.10.0 https://github.com/ericniebler/range-v3
@ -235,16 +235,16 @@ Go to ***BuildPath*** and run
sudo make install sudo make install
cd .. cd ..
git clone git://code.qt.io/qt/qt5.git qt_5_12_5 git clone git://code.qt.io/qt/qt5.git qt_5_12_8
cd qt_5_12_5 cd qt_5_12_8
perl init-repository --module-subset=qtbase,qtwayland,qtimageformats,qtsvg perl init-repository --module-subset=qtbase,qtwayland,qtimageformats,qtsvg
git checkout v5.12.5 git checkout v5.12.8
git submodule update qtbase git submodule update qtbase
git submodule update qtwayland git submodule update qtwayland
git submodule update qtimageformats git submodule update qtimageformats
git submodule update qtsvg git submodule update qtsvg
cd qtbase cd qtbase
git apply ../../patches/qtbase_5_12_5.diff git apply ../../patches/qtbase_5_12_8.diff
cd src/plugins/platforminputcontexts cd src/plugins/platforminputcontexts
git clone https://github.com/desktop-app/fcitx.git git clone https://github.com/desktop-app/fcitx.git
git clone https://github.com/desktop-app/hime.git git clone https://github.com/desktop-app/hime.git
@ -252,7 +252,7 @@ Go to ***BuildPath*** and run
cd ../../../.. cd ../../../..
OPENSSL_DIR=/usr/local/desktop-app/openssl-1.1.1 OPENSSL_DIR=/usr/local/desktop-app/openssl-1.1.1
./configure -prefix "/usr/local/desktop-app/Qt-5.12.5" \ ./configure -prefix "/usr/local/desktop-app/Qt-5.12.8" \
-release \ -release \
-force-debug-info \ -force-debug-info \
-opensource \ -opensource \

View File

@ -32,7 +32,7 @@ Open **x86 Native Tools Command Prompt for VS 2019.bat**, go to ***BuildPath***
cd ThirdParty cd ThirdParty
git clone https://github.com/desktop-app/patches.git git clone https://github.com/desktop-app/patches.git
cd patches cd patches
git checkout 395b620 git checkout 10aeaf6
cd ../ cd ../
git clone https://chromium.googlesource.com/external/gyp git clone https://chromium.googlesource.com/external/gyp
cd gyp cd gyp
@ -64,7 +64,7 @@ Open **x86 Native Tools Command Prompt for VS 2019.bat**, go to ***BuildPath***
git clone https://github.com/desktop-app/patches.git git clone https://github.com/desktop-app/patches.git
cd patches cd patches
git checkout 395b620 git checkout 10aeaf6
cd .. cd ..
git clone --branch 0.10.0 https://github.com/ericniebler/range-v3 range-v3 git clone --branch 0.10.0 https://github.com/ericniebler/range-v3 range-v3
@ -148,17 +148,17 @@ Open **x86 Native Tools Command Prompt for VS 2019.bat**, go to ***BuildPath***
SET PATH=%PATH_BACKUP_% SET PATH=%PATH_BACKUP_%
cd .. cd ..
git clone git://code.qt.io/qt/qt5.git qt_5_12_5 git clone git://code.qt.io/qt/qt5.git qt_5_12_8
cd qt_5_12_5 cd qt_5_12_8
perl init-repository --module-subset=qtbase,qtimageformats perl init-repository --module-subset=qtbase,qtimageformats
git checkout v5.12.5 git checkout v5.12.8
git submodule update qtbase git submodule update qtbase
git submodule update qtimageformats git submodule update qtimageformats
cd qtbase cd qtbase
git apply ../../patches/qtbase_5_12_5.diff git apply ../../patches/qtbase_5_12_8.diff
cd .. cd ..
configure -prefix "%LibrariesPath%\Qt-5.12.5" -debug-and-release -force-debug-info -opensource -confirm-license -static -static-runtime -I "%LibrariesPath%\openssl_1_1_1\include" -no-opengl -openssl-linked OPENSSL_LIBS_DEBUG="%LibrariesPath%\openssl_1_1_1\out32.dbg\libssl.lib %LibrariesPath%\openssl_1_1_1\out32.dbg\libcrypto.lib Ws2_32.lib Gdi32.lib Advapi32.lib Crypt32.lib User32.lib" OPENSSL_LIBS_RELEASE="%LibrariesPath%\openssl_1_1_1\out32\libssl.lib %LibrariesPath%\openssl_1_1_1\out32\libcrypto.lib Ws2_32.lib Gdi32.lib Advapi32.lib Crypt32.lib User32.lib" -mp -nomake examples -nomake tests -platform win32-msvc configure -prefix "%LibrariesPath%\Qt-5.12.8" -debug-and-release -force-debug-info -opensource -confirm-license -static -static-runtime -I "%LibrariesPath%\openssl_1_1_1\include" -no-opengl -openssl-linked OPENSSL_LIBS_DEBUG="%LibrariesPath%\openssl_1_1_1\out32.dbg\libssl.lib %LibrariesPath%\openssl_1_1_1\out32.dbg\libcrypto.lib Ws2_32.lib Gdi32.lib Advapi32.lib Crypt32.lib User32.lib" OPENSSL_LIBS_RELEASE="%LibrariesPath%\openssl_1_1_1\out32\libssl.lib %LibrariesPath%\openssl_1_1_1\out32\libcrypto.lib Ws2_32.lib Gdi32.lib Advapi32.lib Crypt32.lib User32.lib" -mp -nomake examples -nomake tests -platform win32-msvc
jom -j4 jom -j4
jom -j4 install jom -j4 install

View File

@ -29,7 +29,7 @@ Go to ***BuildPath*** and run
git clone https://github.com/desktop-app/patches.git git clone https://github.com/desktop-app/patches.git
cd patches cd patches
git checkout 4f1cffb git checkout 10aeaf6
cd ../ cd ../
git clone https://chromium.googlesource.com/external/gyp git clone https://chromium.googlesource.com/external/gyp
git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git
@ -47,7 +47,7 @@ Go to ***BuildPath*** and run
git clone https://github.com/desktop-app/patches.git git clone https://github.com/desktop-app/patches.git
cd patches cd patches
git checkout 4f1cffb git checkout 10aeaf6
cd .. cd ..
git clone --branch 0.10.0 https://github.com/ericniebler/range-v3 git clone --branch 0.10.0 https://github.com/ericniebler/range-v3
@ -235,18 +235,17 @@ Go to ***BuildPath*** and run
ninja -C out/Release ninja -C out/Release
cd .. cd ..
git clone git://code.qt.io/qt/qt5.git qt5_12_5 git clone git://code.qt.io/qt/qt5.git qt5_12_8
cd qt5_12_5 cd qt5_12_8
perl init-repository --module-subset=qtbase,qtimageformats perl init-repository --module-subset=qtbase,qtimageformats
git checkout v5.12.5 git checkout v5.12.8
git submodule update qtbase git submodule update qtbase
git submodule update qtimageformats git submodule update qtimageformats
cd qtbase cd qtbase
git cherry-pick 7ac4e55 git apply ../../patches/qtbase_5_12_8.diff
git apply ../../patches/qtbase_5_12_5.diff
cd .. cd ..
./configure -prefix "/usr/local/desktop-app/Qt-5.12.5" \ ./configure -prefix "/usr/local/desktop-app/Qt-5.12.8" \
-debug-and-release \ -debug-and-release \
-force-debug-info \ -force-debug-info \
-opensource \ -opensource \