mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add kde-cli-tools.
* gnu/packages/kde-plasma.scm (kde-cli-tools): New variable. * gnu/local.mk (dist_patch_DATA): Add patch. * gnu/packages/patches/kde-cli-tools-delay-mime-db.patch: New file. Signed-off-by: Marius Bakke <marius@gnu.org>
This commit is contained in:
parent
12f8ea204a
commit
20d7c6b1a2
3 changed files with 75 additions and 0 deletions
26
gnu/packages/patches/kde-cli-tools-delay-mime-db.patch
Normal file
26
gnu/packages/patches/kde-cli-tools-delay-mime-db.patch
Normal file
|
@ -0,0 +1,26 @@
|
|||
From f8cfb96a1540fc3256af95adf8003b75c305183c Mon Sep 17 00:00:00 2001
|
||||
From: Petr Hodina <phodina@protonmail.com>
|
||||
Date: Fri, 30 Sep 2022 21:55:55 +0200
|
||||
Subject: [PATCH] Add delay to update the mime db in testCreateMimeType test
|
||||
function.
|
||||
|
||||
|
||||
diff --git a/keditfiletype/tests/filetypestest.cpp b/keditfiletype/tests/filetypestest.cpp
|
||||
index e58e6f2..a41d4ad 100644
|
||||
--- a/keditfiletype/tests/filetypestest.cpp
|
||||
+++ b/keditfiletype/tests/filetypestest.cpp
|
||||
@@ -315,6 +315,9 @@ private Q_SLOTS:
|
||||
QVERIFY(data.isDirty());
|
||||
QVERIFY(data.sync());
|
||||
MimeTypeWriter::runUpdateMimeDatabase();
|
||||
+ // QMimeDatabase doesn't even try to update the cache if less than
|
||||
+ // 5000 ms have passed (can't use qmime_secondsBetweenChecks)
|
||||
+ QTest::qSleep(5000);
|
||||
QMimeType mime = db.mimeTypeForName(mimeTypeName);
|
||||
QVERIFY(mime.isValid());
|
||||
QCOMPARE(mime.comment(), fakeComment);
|
||||
|
||||
base-commit: b5911cda17521156b22429436e19b508aa442a57
|
||||
--
|
||||
2.37.2
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue