--- Begin Message ---
Package: release.debian.org
Severity: normal
X-Debbugs-Cc: lomiri-clock-app@packages.debian.org
Control: affects -1 + src:lomiri-clock-app
User: release.debian.org@packages.debian.org
Usertags: unblock
Please unblock package lomiri-clock-app
In lomiri-clock-app we spotted a typo in an Enum defined in lomiri-ui-toolkit.
[ Reason ]
+ * debian/patches:
+ + Add 0001_update-enum-to-typo-fix-in-LUITK.patch. Use correct enum
+ according to LUITK Alarm typo fix fixes.
-> The story behind this is: in lomiri-ui-toolkit, the Enum "Resetting"
existed as "Reseting" for ages. In a recent version of lomiri-ui-toolkit
this typo got fixed with a compat Enum provided if lomiri-ui-toolkit
gets build with ubuntu-uitk-compat compiler option. However, in Debian,
we don't build with that compat option. So, occurrences of this typo
elsewhere need to be amended. (Which this upload of lomiri-clock-app
does).
[ Impact ]
This upstream issue stays unfixed in Debian:
https://gitlab.com/ubports/development/apps/lomiri-clock-app/-/issues/201
[ Tests ]
Manual tests on Lomiri / Debian 13.
[ Risks ]
Not really, except for users of lomiri-clock-app.
[ 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-clock-app/4.1.1-2
diff -Nru lomiri-clock-app-4.1.1/debian/changelog lomiri-clock-app-4.1.1/debian/changelog
--- lomiri-clock-app-4.1.1/debian/changelog 2025-05-05 14:30:21.000000000 +0200
+++ lomiri-clock-app-4.1.1/debian/changelog 2025-07-24 08:04:53.000000000 +0200
@@ -1,3 +1,11 @@
+lomiri-clock-app (4.1.1-2) unstable; urgency=medium
+
+ * debian/patches:
+ + Add 0001_update-enum-to-typo-fix-in-LUITK.patch. Use correct enum
+ according to LUITK Alarm typo fix fixes.
+
+ -- Mike Gabriel <sunweaver@debian.org> Thu, 24 Jul 2025 08:04:53 +0200
+
lomiri-clock-app (4.1.1-1) unstable; urgency=medium
* New upstream release.
diff -Nru lomiri-clock-app-4.1.1/debian/patches/0001_update-enum-to-typo-fix-in-LUITK.patch lomiri-clock-app-4.1.1/debian/patches/0001_update-enum-to-typo-fix-in-LUITK.patch
--- lomiri-clock-app-4.1.1/debian/patches/0001_update-enum-to-typo-fix-in-LUITK.patch 1970-01-01 01:00:00.000000000 +0100
+++ lomiri-clock-app-4.1.1/debian/patches/0001_update-enum-to-typo-fix-in-LUITK.patch 2025-06-15 21:38:47.000000000 +0200
@@ -0,0 +1,25 @@
+From c63ab17b170d7d14ff814e9c6bbc5bd565deee6a Mon Sep 17 00:00:00 2001
+From: Lionel Duboeuf <lduboeuf@ouvaton.org>
+Date: Thu, 29 May 2025 12:23:05 +0200
+Subject: [PATCH] Update Enum according to LUITK Alarm typo fix fixes
+ https://gitlab.com/ubports/development/apps/lomiri-clock-app/-/issues/201
+
+---
+ app/alarm/EditAlarmPage.qml | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/app/alarm/EditAlarmPage.qml b/app/alarm/EditAlarmPage.qml
+index 56cdbc29..fc795b23 100644
+--- a/app/alarm/EditAlarmPage.qml
++++ b/app/alarm/EditAlarmPage.qml
+@@ -198,7 +198,7 @@ Page {
+ if (status !== Alarm.Ready)
+ return;
+ if ((operation > Alarm.NoOperation) &&
+- (operation < Alarm.Reseting)) {
++ (operation < Alarm.Resetting)) {
+ pageStack.pop();
+ }
+ }
+--
+GitLab
diff -Nru lomiri-clock-app-4.1.1/debian/patches/series lomiri-clock-app-4.1.1/debian/patches/series
--- lomiri-clock-app-4.1.1/debian/patches/series 2025-05-05 13:33:36.000000000 +0200
+++ lomiri-clock-app-4.1.1/debian/patches/series 2025-07-24 08:04:53.000000000 +0200
@@ -1,2 +1,3 @@
2001_disable-splash-screen.patch
2002_hide-on-other-desktops.patch
+0001_update-enum-to-typo-fix-in-LUITK.patch
--- End Message ---