Version in base suite: 0.9.35+15.04.20150126-3 Base version: notify-osd_0.9.35+15.04.20150126-3 Target version: notify-osd_0.9.35+15.04.20150126-3+deb12u1 Base file: /srv/ftp-master.debian.org/ftp/pool/main/n/notify-osd/notify-osd_0.9.35+15.04.20150126-3.dsc Target file: /srv/ftp-master.debian.org/policy/pool/main/n/notify-osd/notify-osd_0.9.35+15.04.20150126-3+deb12u1.dsc changelog | 9 +++++++++ clean | 1 + notify-osd.desktop | 8 -------- notify-osd.desktop.in | 8 ++++++++ rules | 11 ++++++++++- 5 files changed, 28 insertions(+), 9 deletions(-) diff -Nru notify-osd-0.9.35+15.04.20150126/debian/changelog notify-osd-0.9.35+15.04.20150126/debian/changelog --- notify-osd-0.9.35+15.04.20150126/debian/changelog 2023-02-17 09:46:59.000000000 +0000 +++ notify-osd-0.9.35+15.04.20150126/debian/changelog 2024-09-22 23:04:29.000000000 +0000 @@ -1,3 +1,12 @@ +notify-osd (0.9.35+15.04.20150126-3+deb12u1) bookworm; urgency=medium + + * debian/rules, debian/notify-osd.desktop{,in}: Dynamically generate + the Exec path in notify-osd.desktop with DEB_HOST_MULTIARCH to fix + the incorrect executable path in /etc/xdg/autostart/notify-osd.desktop. + (Closes: #1027272) + + -- Boyuan Yang Sun, 22 Sep 2024 19:04:29 -0400 + notify-osd (0.9.35+15.04.20150126-3) unstable; urgency=medium * QA upload. diff -Nru notify-osd-0.9.35+15.04.20150126/debian/clean notify-osd-0.9.35+15.04.20150126/debian/clean --- notify-osd-0.9.35+15.04.20150126/debian/clean 1970-01-01 00:00:00.000000000 +0000 +++ notify-osd-0.9.35+15.04.20150126/debian/clean 2024-09-22 23:04:29.000000000 +0000 @@ -0,0 +1 @@ +debian/notify-osd.desktop diff -Nru notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop --- notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop 2015-05-26 03:10:43.000000000 +0000 +++ notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop 1970-01-01 00:00:00.000000000 +0000 @@ -1,8 +0,0 @@ -[Desktop Entry] -Name=Notify OSD -Comment=Display notifications -Exec=/usr/lib/notify-osd/notify-osd -Terminal=false -Type=Application -NotShowIn=KDE; -X-GNOME-Autostart-enabled=false diff -Nru notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop.in notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop.in --- notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop.in 1970-01-01 00:00:00.000000000 +0000 +++ notify-osd-0.9.35+15.04.20150126/debian/notify-osd.desktop.in 2024-09-22 23:04:29.000000000 +0000 @@ -0,0 +1,8 @@ +[Desktop Entry] +Name=Notify OSD +Comment=Display notifications +Exec=/usr/lib/@DEB_HOST_MULTIARCH@/notify-osd +Terminal=false +Type=Application +NotShowIn=KDE; +X-GNOME-Autostart-enabled=false diff -Nru notify-osd-0.9.35+15.04.20150126/debian/rules notify-osd-0.9.35+15.04.20150126/debian/rules --- notify-osd-0.9.35+15.04.20150126/debian/rules 2015-05-26 03:10:43.000000000 +0000 +++ notify-osd-0.9.35+15.04.20150126/debian/rules 2024-09-22 23:04:29.000000000 +0000 @@ -2,12 +2,21 @@ export DPKG_GENSYMBOLS_CHECK_LEVEL=4 +# For DEB_HOST_MULTIARCH +include /usr/share/dpkg/default.mk +include /usr/share/dpkg/architecture.mk + %: dh $@ --with autoreconf override_dh_autoreconf: NOCONFIGURE=1 dh_autoreconf ./autogen.sh +override_dh_auto_configure: + # https://bugs.debian.org/1027272 + sed 's|@DEB_HOST_MULTIARCH@|$(DEB_HOST_MULTIARCH)|g' debian/notify-osd.desktop.in > debian/notify-osd.desktop + dh_auto_configure + # tests require being run against a system install override_dh_auto_test: @@ -30,4 +39,4 @@ nosmart+lp:notify-osd > debian/changelog.upstream endif -.PHONY: pre-build \ No newline at end of file +.PHONY: pre-build