Package: mini-dinstall
Version: 0.6.21
Severity: normal
Note sure how this happened... maybe it works with a different version
of dnotify (then again, stable, testing, and unstable all have
0.18.0-1).
Anyway, mini-dinstall calls dnotify with:
['dnotify', '-m', '-c', '-d', '-a', '-r']
dnotify gives an unknown argument error; I assume -M -C -D -A were
meant. Patch attached.
-- System Information:
Debian Release: testing/unstable
APT prefers testing
APT policy: (500, 'testing'), (500, 'stable'), (100, 'unstable')
Architecture: i386 (i686)
Shell: /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-1-686
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Versions of packages mini-dinstall depends on:
ii apt-utils 0.6.46 APT utility programs
ii python 2.3.5-2 An interactive high-level object-o
ii python-apt 0.6.19 Python interface to libapt-pkg
mini-dinstall recommends no packages.
-- no debconf information
diff -rdbU3 mini-dinstall-0.6.21.old/lib/Dnotify.py
mini-dinstall-0.6.21/lib/Dnotify.py
--- mini-dinstall-0.6.21.old/lib/Dnotify.py 2004-08-15 04:38:32.000000000
-0400
+++ mini-dinstall-0.6.21/lib/Dnotify.py 2006-10-02 18:16:06.000000000 -0400
@@ -172,7 +172,7 @@
if pid == 0:
os.close(infd)
misc.dup2(outfd, 1)
- args = ['dnotify', '-m', '-c', '-d', '-a', '-r'] +
list(self._dirs) + ['-e', 'printf', '"{}\\0"']
+ args = ['dnotify', '-M', '-C', '-D', '-A', '-r'] +
list(self._dirs) + ['-e', 'printf', '"{}\\0"']
os.execv('/usr/bin/dnotify', args)
os.exit(1)