Package: ausweisapp2 Version: 1.20.2-1 Severity: normal Dear Maintainer,
since 1.20.0-2~bpo10+1 didn't start the GUI I tried backporting 1.20.2-1 to buster. Backporting worked, but the GUI still didn't start. However, the output of 'AusweisApp2 --show' was detailed enough to locate the problem: one of the qml files contains a function with default values for arguments, which is not yet supported by Qt 5.11 in buster. The following small patch fixes the issue, i.e., version 1.20.2-1 can be backported and the GUI starts on buster: --- ausweisapp2-1.20.2.orig/resources/qml/Governikus/Global/NumberField.qml +++ ausweisapp2-1.20.2/resources/qml/Governikus/Global/NumberField.qml @@ -40,7 +40,8 @@ Item { + SettingsModel.translationTrigger Keys.onPressed: event.accepted = root.handleKeyEvent(event.key, event.modifiers) - function handleKeyEvent(eventKey, eventModifiers = Qt.NoModifier) { + function handleKeyEvent(eventKey, eventModifiers) { + if (eventModifiers === undefined) eventModifiers = Qt.NoModifier if (eventKey >= Qt.Key_0 && eventKey <= Qt.Key_9) { root.append(eventKey - Qt.Key_0) } -- System Information: Debian Release: 10.6 APT prefers stable-updates APT policy: (500, 'stable-updates'), (500, 'stable') Architecture: amd64 (x86_64) Kernel: Linux 4.19.0-12-amd64 (SMP w/4 CPU cores) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_CRAP, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled Versions of packages ausweisapp2 depends on: ii libc6 2.28-10 ii libgcc1 1:8.3.0-6 ii libhttp-parser2.8 2.8.1-1 ii libpcsclite1 1.8.24-1 ii libqt5concurrent5 5.11.3+dfsg1-1+deb10u4 ii libqt5core5a 5.11.3+dfsg1-1+deb10u4 ii libqt5gui5 5.11.3+dfsg1-1+deb10u4 ii libqt5network5 5.11.3+dfsg1-1+deb10u4 ii libqt5qml5 5.11.3-4 ii libqt5quick5 5.11.3-4 ii libqt5quickcontrols2-5 5.11.3+dfsg-2 ii libqt5svg5 5.11.3-2 ii libqt5websockets5 5.11.3-5 ii libqt5widgets5 5.11.3+dfsg1-1+deb10u4 ii libssl1.1 1.1.1d-0+deb10u3 ii libstdc++6 8.3.0-6 ii libudev1 241-7~deb10u4 ii qml-module-qt-labs-platform 5.11.3+dfsg-2 ii qml-module-qtqml-models2 5.11.3-4 ii qml-module-qtquick-controls2 5.11.3+dfsg-2 ausweisapp2 recommends no packages. ausweisapp2 suggests no packages. -- no debconf information