Package: sope
Version: 4.4rc.2-3
Severity: normal
Tags: patch
Hi,
Attached is the diff for my sope 4.4rc.2-3.1 NMU.
bye,
- michael
diff -u sope-4.4rc.2/debian/control sope-4.4rc.2/debian/control
--- sope-4.4rc.2/debian/control
+++ sope-4.4rc.2/debian/control
@@ -276,7 +276,7 @@
Package: libapache2-mod-ngobjweb
Section: web
Architecture: any
-Depends: ${shlibs:Depends}, ${misc:Depends}, apache2-common
+Depends: ${shlibs:Depends}, ${misc:Depends}, apache2.2-common
Description: Apache2 module for the SOPE application server
This package contains an apache module which enables the apache2
webserver to deliver pages generated by the SOPE application server.
diff -u sope-4.4rc.2/debian/changelog sope-4.4rc.2/debian/changelog
--- sope-4.4rc.2/debian/changelog
+++ sope-4.4rc.2/debian/changelog
@@ -1,3 +1,12 @@
+sope (4.4rc.2-3.1) unstable; urgency=medium
+
+ * Non-maintainer upload.
+ * Check for ucf availability in postrm (Closes: #389965)
+ * Remove obsolete Dependency on apache2-common with
+ apache2.2-common (Closes: #391754)
+
+ -- Michael Ablassmeier <[EMAIL PROTECTED]> Thu, 5 Oct 2006 10:35:23 +0200
+
sope (4.4rc.2-3) unstable; urgency=low
* Get rid of automake dependency. Depend on autotools-dev instead and use
only in patch2:
unchanged:
--- sope-4.4rc.2.orig/debian/libapache-mod-ngobjweb.postrm
+++ sope-4.4rc.2/debian/libapache-mod-ngobjweb.postrm
@@ -9,7 +9,9 @@
for ext in .dpkg-tmp .dpkg-new .dpkg-old .dpkg-dist; do
rm -f /etc/$i/conf.d/mod_ngobjweb$ext
done
- ucf --purge /etc/$i/conf.d/mod_ngobjweb
+ if which ucf > /dev/null ; then
+ ucf --purge /etc/$i/conf.d/mod_ngobjweb
+ fi
done
;;
*)