Package: sipp Version: 3.1-10 Severity: normal Tags: patch Hi,
Attached is the diff for my sipp 3.1-10.1 NMU. -- ยท''`. Policy is your friend. Trust the Policy. : :' : Love the Policy. Obey the Policy. -- Lars Wirzenius `. `' Proudly running unstable Debian GNU/Linux `- www.amayita.com www.malapecora.com www.chicasduras.com
diff -u sipp-3.1/debian/changelog sipp-3.1/debian/changelog --- sipp-3.1/debian/changelog +++ sipp-3.1/debian/changelog @@ -1,3 +1,12 @@ +sipp (3.1-10.1) unstable; urgency=low + + * Non-maintainer upload. + * sipp: Get rid of the /usr/doc link in postinst (Closes: #359571). + * sipp-dev: Get rid of the /usr/doc link in postinst (Closes: + #359575). + + -- Amaya Rodrigo Sastre <[EMAIL PROTECTED]> Mon, 17 Jul 2006 22:05:19 +0200 + sipp (3.1-10) unstable; urgency=low * `install' has changed its behavior, and now notices redundant copying. diff -u sipp-3.1/debian/sipp-dev.postinst sipp-3.1/debian/sipp-dev.postinst --- sipp-3.1/debian/sipp-dev.postinst +++ sipp-3.1/debian/sipp-dev.postinst @@ -1,8 +1,10 @@ -#!/bin/sh -e +#!/bin/sh if [ "$1" = "configure" ]; then - if [ -d /usr/doc -a ! -e /usr/doc/sipp -a -d /usr/share/doc/sipp ]; then - ln -sf ../share/doc/sipp /usr/doc/sipp - fi + if [ -d /usr/doc -a -h /usr/doc/sipp-dev -a -d /usr/share/doc/sipp-dev ]; then + rm -f /usr/doc/sipp-dev + fi fi +#DEBHELPER# + diff -u sipp-3.1/debian/postinst sipp-3.1/debian/postinst --- sipp-3.1/debian/postinst +++ sipp-3.1/debian/postinst @@ -1,10 +1,11 @@ -#!/bin/sh -e +#!/bin/sh if [ "$1" = "configure" ]; then - /sbin/ldconfig - if [ -d /usr/doc -a ! -e /usr/doc/sipp -a -d /usr/share/doc/sipp ]; then - ln -sf ../share/doc/sipp /usr/doc/sipp - fi + if [ -d /usr/doc -a -h /usr/doc/sipp -a -d /usr/share/doc/sipp ]; then + rm -f /usr/doc/sipp + fi fi +ldconfig +#DEBHELPER#