Package: release.debian.org Severity: normal Tags: trixie X-Debbugs-Cc: [email protected] Control: affects -1 + src:orca User: [email protected] Usertags: pu
Hello, [ Reason ] As detailed in Bug#1134497, some USB braille devices are confused with USB uart adapters, and in that case accessibility support gets installed and enable. It is not that much a concern per se (though it's getting fixed by asking an additional question in the installed). The concern is that when the user requests to remove the thus-installed brltty, orca, and speech-dispatcher packages, the graphical gdm login banner does not show up any more. This is because the debian installer sets up a orca-dm wrapper configuration snippet to enable screen reading at the gdm login stage, but when the orca package is removed, the configuration remains, and gdm then refuses to start. This fixes it by removing that configuration snippet on package removal. [ Impact ] If a user installs Debian with a USB uart adapter and later on tries to remove the orca package, the gdm login banner doesn't show up. [ Tests ] This was tested manually [ Risks ] The code is trivial. [ 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 (old)stable [X] the issue is verified as fixed in unstable [ Changes ] This just adds a prerm script to remove the configuration snippet installed by the debian installer.
diff -Nru orca-48.1/debian/changelog orca-48.1/debian/changelog --- orca-48.1/debian/changelog 2025-08-23 23:00:42.000000000 +0200 +++ orca-48.1/debian/changelog 2026-04-30 23:24:49.000000000 +0200 @@ -1,3 +1,9 @@ +orca (48.1-1+deb13u2) trixie; urgency=medium + + * prerm: Remove lightdm wrapper on package removal (closes: #826542) + + -- Samuel Thibault <[email protected]> Thu, 30 Apr 2026 23:24:49 +0200 + orca (48.1-1+deb13u1) trixie; urgency=medium * control: Add python3-setproctitle and python3-psutil dependencies. diff -Nru orca-48.1/debian/prerm orca-48.1/debian/prerm --- orca-48.1/debian/prerm 1970-01-01 01:00:00.000000000 +0100 +++ orca-48.1/debian/prerm 2026-04-30 23:23:38.000000000 +0200 @@ -0,0 +1,9 @@ +#!/bin/sh +set -e + +if [ "$1" = remove ]; then + # Installed by brltty's brltty-udeb.prebaseconfig + rm -f /etc/xdg/lightdm/lightdm.conf.d/80_orca-dm-wrapper.conf +fi + +#DEBHELPER#

