diff options
author | Krzysztof Krzyżaniak <eloy@debian.org> | 2009-07-09 13:59:42 +0000 |
---|---|---|
committer | Krzysztof Krzyżaniak <eloy@debian.org> | 2009-07-09 13:59:42 +0000 |
commit | 8aa3f91ccf0c2fb6141df80cee5e17454ac52c7c (patch) | |
tree | 9299a846fb5025befc97267e91a3e6c9a1e6a0df | |
parent | 8da81565af1409a0ef9af312697826ef6ee55a8b (diff) | |
download | lighttpd-8aa3f91ccf0c2fb6141df80cee5e17454ac52c7c.tar.gz |
update NEWS file
-rw-r--r-- | debian/NEWS | 7 | ||||
-rw-r--r-- | debian/changelog | 2 | ||||
-rw-r--r-- | debian/lighttpd.prerm | 4 |
3 files changed, 12 insertions, 1 deletions
diff --git a/debian/NEWS b/debian/NEWS index e87c2be..47983bd 100644 --- a/debian/NEWS +++ b/debian/NEWS @@ -1,3 +1,10 @@ +lighttpd (1.4.23-1) unstable; urgency=low + + spawn-fcgi is now separate package. Please install "spawn-fcgi" package if you + need it. + + -- Krzysztof Krzyżaniak (eloy) <eloy@debian.org> Thu, 09 Jul 2009 15:53:14 +0200 + lighttpd (1.4.19-1) unstable; urgency=low Lighttpd must load mod_auth first, else some other modules may not work diff --git a/debian/changelog b/debian/changelog index 37b8452..7f54962 100644 --- a/debian/changelog +++ b/debian/changelog @@ -3,7 +3,7 @@ lighttpd (1.4.23-1) UNRELEASED; urgency=low * New upstream release * spawn-fcgi is now separate package, recommends it debian/control * Update Standards-Version to 3.8.2 without changes - * Remove cdbs, patchutils from Build-Depends, debian/rules use now + * Remove cdbs, patchutils from Build-Depends, debian/rules uses debhelper 7 scripts * lighttpd.logrotate apply patch (closes: #535523) from Ubuntu (Daniel Hahler, https://launchpad.net/bugs/393792) diff --git a/debian/lighttpd.prerm b/debian/lighttpd.prerm index 0c6b285..2ba6f93 100644 --- a/debian/lighttpd.prerm +++ b/debian/lighttpd.prerm @@ -1,5 +1,9 @@ #!/bin/sh -e +if test "$1" != "upgrade"; then + update-alternatives --remove spawn-fcgi /usr/bin/spawn-fcgi.lighttpd +fi + #DEBHELPER# exit 0 |