Version in base suite: 48.1-1+deb13u1 Base version: orca_48.1-1+deb13u1 Target version: orca_48.1-1+deb13u2 Base file: /srv/ftp-master.debian.org/ftp/pool/main/o/orca/orca_48.1-1+deb13u1.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/o/orca/orca_48.1-1+deb13u2.dsc changelog | 6 ++++++ prerm | 9 +++++++++ 2 files changed, 15 insertions(+) dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpvy9dxruw/orca_48.1-1+deb13u1.dsc: no acceptable signature found dpkg-source: warning: cannot verify inline signature for /srv/release.debian.org/tmp/tmpvy9dxruw/orca_48.1-1+deb13u2.dsc: no acceptable signature found diff -Nru orca-48.1/debian/changelog orca-48.1/debian/changelog --- orca-48.1/debian/changelog 2025-08-23 21:00:42.000000000 +0000 +++ orca-48.1/debian/changelog 2026-04-30 21:24:49.000000000 +0000 @@ -1,3 +1,9 @@ +orca (48.1-1+deb13u2) trixie; urgency=medium + + * prerm: Remove lightdm wrapper on package removal (closes: #826542) + + -- Samuel Thibault 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 00:00:00.000000000 +0000 +++ orca-48.1/debian/prerm 2026-04-30 21:23:38.000000000 +0000 @@ -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#