[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/28: gnu: qtdeclarative: Update to 6.6.2.
From: |
guix-commits |
Subject: |
05/28: gnu: qtdeclarative: Update to 6.6.2. |
Date: |
Mon, 25 Mar 2024 22:10:45 -0400 (EDT) |
apteryx pushed a commit to branch qt-team
in repository guix.
commit 52b125519001d18800544b05194cfea4405806c2
Author: Zheng Junjie <zhengjunjie@iscas.ac.cn>
AuthorDate: Wed Mar 13 16:57:59 2024 +0800
gnu: qtdeclarative: Update to 6.6.2.
* gnu/packages/qt.scm (qtdeclarative): Update to 6.6.2.
[arguments]<#:phases>: Disable flaky tst_qmltyperegistrar test. Disable
failing tst_qquickiconimage test.
* gnu/packages/patches/qtdeclarative-disable-qmlcache.patch: Adjust it.
Change-Id: Ic7ddb603524ff07916d57b2ce92b7ffa407a5004
Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
---
.../patches/qtdeclarative-disable-qmlcache.patch | 27 +++++++++++++++++-----
gnu/packages/qt.scm | 14 ++++++++---
2 files changed, 32 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/patches/qtdeclarative-disable-qmlcache.patch
b/gnu/packages/patches/qtdeclarative-disable-qmlcache.patch
index 5f06ec53b4..df76fab910 100644
--- a/gnu/packages/patches/qtdeclarative-disable-qmlcache.patch
+++ b/gnu/packages/patches/qtdeclarative-disable-qmlcache.patch
@@ -1,16 +1,31 @@
Retrieved from
https://raw.githubusercontent.com/NixOS/nixpkgs/master/pkgs/development/libraries/qt-6/patches/qtdeclarative-default-disable-qmlcache.patch
+From 2d561e0a80f2d123a7348187975ee845f9dcd9e0 Mon Sep 17 00:00:00 2001
+From: Nick Cao <nickcao@nichi.co>
+Date: Tue, 10 Oct 2023 11:12:27 -0400
+Subject: [PATCH] qtdeclarative: disable qml disk cache
+
+---
+ src/qml/jsruntime/qv4engine.cpp | 6 +-----
+ 1 file changed, 1 insertion(+), 5 deletions(-)
+
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
-index 852cde9e..165f1b57 100644
+index d1b4c4fff6..50f8a07420 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
-@@ -2093,7 +2093,7 @@ void ExecutionEngine::registerModule(const QString
&_name, const QJSValue &modul
-
- bool ExecutionEngine::diskCacheEnabled() const
+@@ -2232,11 +2232,7 @@ ExecutionEngine::DiskCacheOptions
ExecutionEngine::diskCacheOptions() const
{
-- return (!disableDiskCache() && !debugger()) || forceDiskCache();
-+ return forceDiskCache();
+ if (forceDiskCache())
+ return DiskCache::Enabled;
+- if (disableDiskCache() || debugger())
+- return DiskCache::Disabled;
+- static const DiskCacheOptions options = qmlGetConfigOption<
+- DiskCacheOptions, transFormDiskCache>("QML_DISK_CACHE");
+- return options;
++ return DiskCache::Disabled;
}
void ExecutionEngine::callInContext(QV4::Function *function, QObject *self,
+--
+2.42.0
diff --git a/gnu/packages/qt.scm b/gnu/packages/qt.scm
index 2effd6d94b..90a959d70a 100644
--- a/gnu/packages/qt.scm
+++ b/gnu/packages/qt.scm
@@ -1431,14 +1431,14 @@ with JavaScript and C++.")))
(define-public qtdeclarative
(package
(name "qtdeclarative")
- (version "6.5.2")
+ (version "6.6.2")
;; TODO: Package 'masm' and unbundle from sources.
(source (origin
(method url-fetch)
(uri (qt-url name version))
(sha256
(base32
- "06c7xfqn2a5s2m8j1bcvx3pyjqg1rgqkjvp49737gb4z9vjiz8gk"))
+ "0k6qndjvkkx3g8lr7f64xx86b3cwxzkgpl6fr6cp73s6qjkyk763"))
(patches (search-patches
"qtdeclarative-disable-qmlcache.patch"))))
(outputs '("out" "debug"))
(build-system cmake-build-system)
@@ -1508,6 +1508,10 @@ with JavaScript and C++.")))
"("
(string-join
(list
+ ;; The 'tst_qmltyperegistrar' tests may fail
+ ;; non-deterministically (see:
+ ;; https://bugreports.qt.io/browse/QTBUG-123634).
+ "tst_qmltyperegistrar"
;; This test is marked as flaky upstream (see:
;; https://bugreports.qt.io/browse/QTBUG-101488).
"tst_qquickfiledialogimpl"
@@ -1550,7 +1554,11 @@ with JavaScript and C++.")))
"tst_dom_all"
"tst_qmlls"
"tst_qmllscompletions"
- ) "|")
+
+ ;; This test fails starting with 6.6.2 (see:
+ ;; https://bugreports.qt.io/browse/QTBUG-123748), for
+ ;; unknown reasons.
+ "tst_qquickiconimage") "|")
")")))))
(add-after 'install 'delete-installed-tests
(lambda _
- branch qt-team created (now 4ef88067b3), guix-commits, 2024/03/25
- 03/28: gnu: qtsvg: Update to 6.6.2., guix-commits, 2024/03/25
- 07/28: gnu: qtshadertools: Update to 6.6.2., guix-commits, 2024/03/25
- 01/28: gnu: qtbase: Update to 6.6.2., guix-commits, 2024/03/25
- 06/28: gnu: qtwebsockets: Update to 6.6.2., guix-commits, 2024/03/25
- 08/28: gnu: qtmultimedia: Update to 6.6.2., guix-commits, 2024/03/25
- 12/28: gnu: qtlottie: Update to 6.6.2., guix-commits, 2024/03/25
- 16/28: gnu: qtnetworkauth: Update to 6.6.2., guix-commits, 2024/03/25
- 02/28: gnu: qt5compat: Update to 6.6.2., guix-commits, 2024/03/25
- 04/28: gnu: qtimageformats: Update to 6.6.2., guix-commits, 2024/03/25
- 05/28: gnu: qtdeclarative: Update to 6.6.2.,
guix-commits <=
- 09/28: gnu: qtwayland: Update to 6.6.2., guix-commits, 2024/03/25
- 10/28: gnu: qtwebchannel: Update to 6.6.2., guix-commits, 2024/03/25
- 11/28: gnu: qtlanguageserver: Update to 6.6.2., guix-commits, 2024/03/25
- 13/28: gnu: qttools: Update to 6.6.2., guix-commits, 2024/03/25
- 18/28: gnu: qtwebengine: Update to 6.6.2., guix-commits, 2024/03/25
- 22/28: gnu: qtspeech: Rename package to qtspeech-5., guix-commits, 2024/03/25
- 20/28: gnu: qtsensors: Rename package to qtsensors-5., guix-commits, 2024/03/25
- 24/28: gnu: qt-creator: Update to 12.0.2., guix-commits, 2024/03/25
- 25/28: gnu: qtscxml: Update to 6.6.2., guix-commits, 2024/03/25
- 26/28: build: qt-utils: Use QML_IMPORT_PATH for Qt 6., guix-commits, 2024/03/25