Unless there are objections, I will NMU irmp3 using Russ's patch (full
diff with changelog entry attached) tomorrow, with an upload to unstable
and a request to [email protected] for the release
managers to consider letting the new version into testing.
diff -ruN old/debian/changelog irmp3-0.4.3pre6/debian/changelog
--- old/debian/changelog 2002-04-30 07:13:47.000000000 +0300
+++ irmp3-0.4.3pre6/debian/changelog 2005-05-13 19:27:41.000000000 +0300
@@ -1,3 +1,12 @@
+irmp3 (0.4.3pre6-3.1) unstable; urgency=high
+
+ * Non-maintainer upload.
+ * Applied patch from Russ Allbery ([EMAIL PROTECTED]): add depend on
+ adduser and move postrm to prerm (since deluser can't be used in
+ postrm, since it is non-essential). Closes: #308398.
+
+ -- Lars Wirzenius <[EMAIL PROTECTED]> Fri, 13 May 2005 18:47:00 +0300
+
irmp3 (0.4.3pre6-3) unstable; urgency=low
* The oh-crap-there-are-so-many-details release
diff -ruN old/debian/control irmp3-0.4.3pre6/debian/control
--- old/debian/control 2002-04-30 07:11:04.000000000 +0300
+++ irmp3-0.4.3pre6/debian/control 2005-05-13 18:47:13.000000000 +0300
@@ -7,7 +7,7 @@
Package: irmp3
Architecture: any
-Depends: ${shlibs:Depends}, mpg321 | mpg123
+Depends: ${shlibs:Depends}, adduser, mpg321 | mpg123
Suggests: lirc (>= 0.6), lcdproc
Description: A Multimedia Audio Jukebox application.
With irmp3 you can control mpg321 (currently, other players are
diff -ruN old/debian/postrm irmp3-0.4.3pre6/debian/postrm
--- old/debian/postrm 2002-04-30 06:08:59.000000000 +0300
+++ irmp3-0.4.3pre6/debian/postrm 1970-01-01 02:00:00.000000000 +0200
@@ -1,10 +0,0 @@
-#!/bin/sh
-
-set -e
-
-# Clean up the irmp3 user if it exists.
-if test -n "`getent passwd irmp3`"; then
- deluser --remove-home irmp3
-fi
-
-#DEBHELPER#
diff -ruN old/debian/prerm irmp3-0.4.3pre6/debian/prerm
--- old/debian/prerm 1970-01-01 02:00:00.000000000 +0200
+++ irmp3-0.4.3pre6/debian/prerm 2005-05-13 18:47:13.000000000 +0300
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+# Clean up the irmp3 user if it exists.
+if test -n "`getent passwd irmp3`"; then
+ deluser --remove-home irmp3
+fi
+
+#DEBHELPER#