Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Please unblock package virt-viewer This removes a dangling alternative and drops a superfluous build-dep. unblock virt-viewer/7.0-2 -- System Information: Debian Release: buster/sid APT prefers testing APT policy: (990, 'testing'), (500, 'unstable-debug'), (500, 'testing-debug'), (500, 'stable-updates'), (500, 'unstable'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386, armhf Kernel: Linux 4.19.0-2-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=en_US:en (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
diff --git a/debian/changelog b/debian/changelog index a9c7ec7..91e20c9 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,14 @@ +virt-viewer (7.0-2) unstable; urgency=medium + + [ Andreas Beckmann ] + * [b6ce527] Remove obsolete /usr/bin/spice-xpi-client alternative on + upgrades. (Closes: #915030) + + [ Guido Günther ] + * [1a38fe4] Drop useless autotools-dev build-dep + + -- Guido Günther <[email protected]> Fri, 05 Apr 2019 10:04:04 +0200 + virt-viewer (7.0-1) unstable; urgency=medium * [62b4ac8] New upstream version 7.0 diff --git a/debian/control b/debian/control index 231e39e..87635e5 100644 --- a/debian/control +++ b/debian/control @@ -12,7 +12,6 @@ Build-Depends: libxml2-dev, libglib2.0-dev (>= 2.38), libgtk-3-dev (>= 3.10), - autotools-dev, automake, libffi-dev, libtool, diff --git a/debian/postinst b/debian/postinst new file mode 100644 index 0000000..b1a5276 --- /dev/null +++ b/debian/postinst @@ -0,0 +1,10 @@ +#!/bin/sh +set -e + +# remove obsolete alternative from stretch +if [ "$1" = "configure" ] ; then + update-alternatives --remove spice-xpi-client \ + /usr/bin/spice-xpi-client-remote-viewer +fi + +#DEBHELPER#

