Attached is the patch for the NMU I'm going to be uploading in a little
while. It fixes two bugs, one which is is currently release critical
(failure to build from source), and which is a policy violation and
therefore at least technically RC (leaves log files on disk after
purged), although the damage it does is minor, and isn't marked with an
RC severity. I filed the latter bug myself earlier today.

I hope this helps. Happy hacking.

-- 
It's 1978! Things should be round by now -- Michael Kelso (That 70's
show)
diff -u yaws-1.58/debian/changelog yaws-1.58/debian/changelog
--- yaws-1.58/debian/changelog
+++ yaws-1.58/debian/changelog
@@ -1,3 +1,13 @@
+yaws (1.58-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * debian/control: Removed the build dependency on erlang-src, which doesn't
+    exist. Added a build dependency on libpam0g-dev. Closes: #353189.
+  * debian/yaws.postrm: Added. Now removes /var/log/yaws on purge
+    (see policy 10.8, Log files, last paragraph). Closes: #356272.
+
+ -- Lars Wirzenius <[EMAIL PROTECTED]>  Fri, 10 Mar 2006 18:35:58 +0000
+
 yaws (1.58-1) unstable; urgency=low
 
   * New upstream release.
diff -u yaws-1.58/debian/control yaws-1.58/debian/control
--- yaws-1.58/debian/control
+++ yaws-1.58/debian/control
@@ -2,7 +2,7 @@
 Section: web
 Priority: optional
 Maintainer: Will Newton <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 5.0.0), autotools-dev, erlang, erlang-src, mime-support
+Build-Depends: debhelper (>= 5.0.0), autotools-dev, erlang, mime-support, libpam0g-dev
 Standards-Version: 3.6.2
 
 Package: yaws
only in patch2:
unchanged:
--- yaws-1.58.orig/debian/yaws.postrm
+++ yaws-1.58/debian/yaws.postrm
@@ -0,0 +1,9 @@
+#!/bin/sh
+
+set -e
+
+case "$1" in
+purge) rm -rf /var/log/yaws ;;
+esac
+
+#DEBHELPER#

Reply via email to