Skip to content
Snippets Groups Projects
Commit 04c2e75b authored by Debian Python Modules Team's avatar Debian Python Modules Team
Browse files

Imported Debian patch 3.3.1-9

parents 80abcaeb 760166ac
No related branches found
No related tags found
No related merge requests found
libapache2-mod-python (3.3.1-9) unstable; urgency=low
[ Sandro Tosi ]
* debian/libapache2-mod-python.{prerm, postrm}
- move a2dismod from postrm (executed too late in the purge process) to
prerm, so purge can disable the module when it's still available; thanks
to Lucas Nussbaum for the report; Closes: #574229
* debian/control
- bump Standards-Version to 3.8.4 (no changes needed)
- updated Section to 'httpd' to match override file
-- Debian Python Modules Team <python-modules-team@lists.alioth.debian.org> Sat, 27 Mar 2010 14:41:02 +0100
libapache2-mod-python (3.3.1-8) unstable; urgency=medium
[ Emilio Pozuelo Monfort ]
......
Source: libapache2-mod-python
Section: python
Section: httpd
Priority: optional
Maintainer: Debian Python Modules Team <python-modules-team@lists.alioth.debian.org>
Uploaders: Robert S. Edmonds <edmonds@debian.org>
......@@ -9,7 +9,7 @@ XS-Python-Version: current
Vcs-Svn: svn://svn.debian.org/python-modules/packages/libapache2-mod-python/trunk/
Vcs-Browser: http://svn.debian.org/viewsvn/python-modules/packages/libapache2-mod-python/trunk/
Homepage: http://www.modpython.org/
Standards-Version: 3.8.2
Standards-Version: 3.8.4
Package: libapache2-mod-python
Architecture: any
......
......@@ -2,10 +2,6 @@
set -e
if [ "$1" = "remove" -o "$1" = "purge" ]; then
a2dismod python
fi
# mod_python.load renamed to python.load in 3.3.1-3
if dpkg --compare-versions "$2" lt-nl "3.3.1-3"; then
# downgrading to < 3.3.1-3 -- we have to restore pseudo conffile
......
#!/bin/sh
set -e
if [ "$1" = remove ] || [ "$1" = purge ]; then
if [ -e /etc/apache2/apache2.conf ] && [ -x /usr/sbin/a2dismod ]; then
a2dismod python || true
fi
fi
#DEBHELPER#
exit 0
1.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment