Package: release.debian.org Severity: normal X-Debbugs-Cc: lomiri-terminal-...@packages.debian.org Control: affects -1 + src:lomiri-terminal-app User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package lomiri-terminal-app [ Reason ] Previous versions of lomiri-terminal-app would clobber syslog / the user journal with one line of logging on every keyboard event (i.e. when typing). [ Impact ] Two many log messages deriving from the user session if users use the Lomiri Terminal App. [ Tests ] Manual tests on notebook hardware. [ Risks ] None, only Lomiri's terminal app will be affected. Patch is very minimal. [ Checklist ] [x] all changes are documented in the d/changelog [x] I reviewed all changes and I approve them [x] attach debdiff against the package in testing [ Other info ] Relevant for Lomiri in Debian. unblock lomiri-terminal-app/2.0.5-2
diff -Nru lomiri-terminal-app-2.0.5/debian/changelog lomiri-terminal-app-2.0.5/debian/changelog --- lomiri-terminal-app-2.0.5/debian/changelog 2025-05-05 22:50:52.000000000 +0200 +++ lomiri-terminal-app-2.0.5/debian/changelog 2025-06-20 14:02:09.000000000 +0200 @@ -1,3 +1,12 @@ +lomiri-terminal-app (2.0.5-2) unstable; urgency=medium + + [ Robert Tari ] + * debian/patches: + + Add 2005_suppress-xkb-compose.patch. app/main.cpp: Suppress qt.xkb.compose + error messages. + + -- Mike Gabriel <sunwea...@debian.org> Fri, 20 Jun 2025 14:02:09 +0200 + lomiri-terminal-app (2.0.5-1) unstable; urgency=medium * New upstream release. diff -Nru lomiri-terminal-app-2.0.5/debian/patches/2005_suppress-xkb-compose.patch lomiri-terminal-app-2.0.5/debian/patches/2005_suppress-xkb-compose.patch --- lomiri-terminal-app-2.0.5/debian/patches/2005_suppress-xkb-compose.patch 1970-01-01 01:00:00.000000000 +0100 +++ lomiri-terminal-app-2.0.5/debian/patches/2005_suppress-xkb-compose.patch 2025-06-20 14:01:58.000000000 +0200 @@ -0,0 +1,26 @@ +From 64fd2d2fea76ce19abca57577574d2ede8b1b2ad Mon Sep 17 00:00:00 2001 +From: Robert Tari <rob...@tari.in> +Date: Thu, 19 Jun 2025 14:37:43 +0200 +Subject: [PATCH] app/main.cpp: Suppress qt.xkb.compose error messages + +fixes https://salsa.debian.org/ubports-team/lomiri-terminal-app/-/issues/4 +--- + app/main.cpp | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/app/main.cpp b/app/main.cpp +index 87bdbee..66a73fa 100644 +--- a/app/main.cpp ++++ b/app/main.cpp +@@ -78,6 +78,8 @@ MAKE_SINGLETON_FACTORY(StandardPaths) + + int main(int argc, char *argv[]) + { ++ QLoggingCategory::setFilterRules ("qt.xkb.compose=false"); ++ + QApplication a(argc, argv); + QQmlApplicationEngine engine; + +-- +GitLab + diff -Nru lomiri-terminal-app-2.0.5/debian/patches/series lomiri-terminal-app-2.0.5/debian/patches/series --- lomiri-terminal-app-2.0.5/debian/patches/series 2025-05-05 22:50:52.000000000 +0200 +++ lomiri-terminal-app-2.0.5/debian/patches/series 2025-06-20 14:01:58.000000000 +0200 @@ -1,3 +1,4 @@ 2001_use-noto-fonts.patch 2003_ignore-autopilot.patch 2004_hide-app-if-not-in-lomiri.patch +2005_suppress-xkb-compose.patch