···11-WGET_ARGS=( https://download.qt.io/official_releases/qt/6.5/6.5.3/submodules/ -A '*.tar.xz' )
11+WGET_ARGS=( https://download.qt.io/official_releases/qt/6.6/6.6.0/submodules/ -A '*.tar.xz' )
···11-From 4e8c14f1af9c332826e0454f4fd63e541edbaf5c Mon Sep 17 00:00:00 2001
11+From 880fe5653a86d8091f3f577977f8af93552c48fd Mon Sep 17 00:00:00 2001
22From: Nick Cao <nickcao@nichi.co>
33Date: Tue, 21 Mar 2023 15:48:49 +0800
44-Subject: [PATCH 5/6] qtbase: deal with a font face at index 0 as Regular for
44+Subject: [PATCH 05/11] qtbase: deal with a font face at index 0 as Regular for
55 Variable fonts
6677Reference: https://bugreports.qt.io/browse/QTBUG-111994
···2222 FcObjectSetDestroy(os);
2323 FcPatternDestroy(pattern);
2424--
2525-2.39.2
2525+2.42.0
2626
···11-From 32df59bea18bebc18d6d308750e88be325522d2e Mon Sep 17 00:00:00 2001
22-From: =?UTF-8?q?Juan=20Pedro=20Bol=C3=ADvar=20Puente?= <raskolnikov@gnu.org>
33-Date: Thu, 10 Aug 2023 14:15:34 +0200
44-Subject: [PATCH 2/3] Check in the QML folder of this library does actually
55- exist
11+From 617d27ee91aaa59c59c4f3a2cca7bab8167d9f5f Mon Sep 17 00:00:00 2001
22+From: Nick Cao <nickcao@nichi.co>
33+Date: Tue, 10 Oct 2023 10:17:00 -0400
44+Subject: [PATCH 11/11] qtbase: check in the QML folder of this library does
55+ actually exist
6677In a modularized installation, this folder will be the location where
88`qtbase` itself is installed, but `qtbase` does not have any QML
···1212 1 file changed, 5 insertions(+), 2 deletions(-)
13131414diff --git a/src/tools/macdeployqt/shared/shared.cpp b/src/tools/macdeployqt/shared/shared.cpp
1515-index b8fcc9c9bd..676d34d545 100644
1515+index 48979195f40..8415680ecda 100644
1616--- a/src/tools/macdeployqt/shared/shared.cpp
1717+++ b/src/tools/macdeployqt/shared/shared.cpp
1818-@@ -1290,9 +1290,12 @@ bool deployQmlImports(const QString &appBundlePath, DeploymentInfo deploymentInf
1818+@@ -1293,9 +1293,12 @@ bool deployQmlImports(const QString &appBundlePath, DeploymentInfo deploymentInf
1919 }
2020 for (const QString &importPath : qmlImportPaths)
2121 argumentList << "-importPath" << importPath;
···2828+ argumentList.append(qmlImportsPath);
2929+ }
30303131- // run qmlimportscanner
3232- QProcess qmlImportScanner;
3131+ // In a modularized installation of qt as we have in Nix, instead, we will
3232+ // read the paths from the environment, as they are spread in multiple
3333--
3434-2.26.2
3434+2.42.0
3535