Package: release.debian.org Severity: normal User: release.debian....@packages.debian.org Usertags: unblock
Please unblock package blackbox, it fixes an RC-bug: directory to symlink upgrade in postinst. Thanks in advance, regards David unblock blackbox/0.70.1-13 -- System Information: Debian Release: wheezy/sid APT prefers unstable APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (1, 'experimental') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.2.0-3-amd64 (SMP w/1 CPU core) Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
diff -Nru blackbox-0.70.1/debian/changelog blackbox-0.70.1/debian/changelog --- blackbox-0.70.1/debian/changelog 2012-06-02 11:42:52.000000000 -0400 +++ blackbox-0.70.1/debian/changelog 2012-09-16 18:14:20.000000000 -0400 @@ -1,3 +1,11 @@ +blackbox (0.70.1-13) unstable; urgency=low + + * QA upload. + * debian/libbt.postinst: Fix directory to symlink upgrade in postinst. + (Closes: #687859) + + -- David Prévot <taf...@debian.org> Sun, 16 Sep 2012 18:14:16 -0400 + blackbox (0.70.1-12) unstable; urgency=medium * QA upload. diff -Nru blackbox-0.70.1/debian/libbt.postinst blackbox-0.70.1/debian/libbt.postinst --- blackbox-0.70.1/debian/libbt.postinst 1969-12-31 20:00:00.000000000 -0400 +++ blackbox-0.70.1/debian/libbt.postinst 2012-09-16 18:12:07.000000000 -0400 @@ -0,0 +1,14 @@ +#!/bin/sh +set -e + +# Replace documentation directory with symlink +docdir="/usr/share/doc/libbt" +if [ -d $docdir ] && [ ! -L $docdir ]; then + if rmdir $docdir 2>/dev/null; then + ln -sf libbt0 $docdir + fi +fi + +#DEBHELPER# + +exit 0