Your message dated Tue, 20 Sep 2005 14:02:12 -0700
with message-id <[EMAIL PROTECTED]>
and subject line Bug#327500: fixed in freedoom 0.3-2
has caused the attached Bug report to be marked as done.
This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.
(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere. Please contact me immediately.)
Debian bug tracking system administrator
(administrator, Debian Bugs database)
--------------------------------------
Received: (at submit) by bugs.debian.org; 10 Sep 2005 14:54:42 +0000
>From [EMAIL PROTECTED] Sat Sep 10 07:54:42 2005
Return-path: <[EMAIL PROTECTED]>
Received: from smtp-out3.blueyonder.co.uk [195.188.213.6]
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1EE6kb-0006jy-00; Sat, 10 Sep 2005 07:54:42 -0700
Received: from localhost.localdomain ([82.39.115.248]) by
smtp-out3.blueyonder.co.uk with Microsoft SMTPSVC(5.0.2195.6713);
Sat, 10 Sep 2005 15:55:29 +0100
Received: by localhost.localdomain (Postfix, from userid 1000)
id 1FE99DE804; Sat, 10 Sep 2005 15:55:47 +0100 (BST)
Date: Sat, 10 Sep 2005 15:55:46 +0100
From: Jon Dowland <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Cc: [EMAIL PROTECTED]
Subject: freedoom: use alternatives system for doom2.wad
Message-ID: <[EMAIL PROTECTED]>
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol="application/pgp-signature"; boundary="98e8jtXdkpgskNou"
Content-Disposition: inline
X-Reportbug-Version: 3.8
User-Agent: Mutt/1.5.9i
X-OriginalArrivalTime: 10 Sep 2005 14:55:29.0383 (UTC)
FILETIME=[AF70B770:01C5B617]
X-BadReturnPath: [EMAIL PROTECTED] rewritten as [EMAIL PROTECTED]
using "From" header
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no
version=2.60-bugs.debian.org_2005_01_02
--98e8jtXdkpgskNou
Content-Type: multipart/mixed; boundary="HcAYCG3uE/tztfnV"
Content-Disposition: inline
--HcAYCG3uE/tztfnV
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable
Package: freedoom
Severity: normal
Tags: patch
Hello - I am working on a package to facilitate the installation of
commercial IWAD files into debian[1], in order to close a bug against
prboom[2].
In order for this package to exist alongside freedoom, the
/usr/share/games/doom/doom2.wad file needs to be managed by the
alternatives system.
Please find attached a patch to adjust the freedoom package to install
into /usr/share/games/freedoom, and add an alternative for doom2.wad at
priority 50.
50 is an arbitrary value. I will probably use priority 25 for doom-data
in order for freedoom to take priority over the commercial IWADs (in the
spirit of free software :))
I shall be writing a similar patch for doom-wad-shareware at some point.
[1] http://jon.dowland.name/code/doom/doom-data/
[2] http://bugs.debian.org/280045
--=20
Jon Dowland
http://jon.dowland.name/
--HcAYCG3uE/tztfnV
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename="freedoom_use_alternatives.diff"
Content-Transfer-Encoding: quoted-printable
diff -ruN freedoom-0.3/debian/dirs freedoom-0.3~/debian/dirs
--- freedoom-0.3/debian/dirs 2005-09-10 16:42:20.000000000 +0100
+++ freedoom-0.3~/debian/dirs 2005-09-10 16:41:04.000000000 +0100
@@ -1,4 +1,2 @@
-usr
-usr/share
-usr/share/games
usr/share/games/doom
+usr/share/games/freedoom
diff -ruN freedoom-0.3/debian/postinst freedoom-0.3~/debian/postinst
--- freedoom-0.3/debian/postinst 1970-01-01 01:00:00.000000000 +0100
+++ freedoom-0.3~/debian/postinst 2005-09-10 16:17:41.000000000 +0100
@@ -0,0 +1,26 @@
+#! /bin/sh
+# postinst script for freedoom
+
+set -e
+
+case "$1" in
+ configure|abort-upgrade)
+ update-alternatives --install /usr/share/games/doom/doom2.wad \
+ doom2.wad \
+ /usr/share/games/freedoom/doom2.wad \
+ 50
+ ;;
+
+ abort-remove|abort-deconfigure)
+
+ ;;
+
+ *)
+ echo "postinst called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0
diff -ruN freedoom-0.3/debian/prerm freedoom-0.3~/debian/prerm
--- freedoom-0.3/debian/prerm 1970-01-01 01:00:00.000000000 +0100
+++ freedoom-0.3~/debian/prerm 2005-09-10 16:19:16.000000000 +0100
@@ -0,0 +1,21 @@
+#! /bin/sh
+# prerm script for nodm
+
+set -e
+
+case "$1" in
+ remove)
+ update-alternatives --remove doom2.wad \
+ /usr/share/games/freedoom/doom2.wad
+ ;;
+ upgrade|deconfigure|failed-upgrade)
+ ;;
+ *)
+ echo "prerm called with unknown argument \`$1'" >&2
+ exit 1
+ ;;
+esac
+
+#DEBHELPER#
+
+exit 0
diff -ruN freedoom-0.3/debian/rules freedoom-0.3~/debian/rules
--- freedoom-0.3/debian/rules 2005-09-10 16:42:20.000000000 +0100
+++ freedoom-0.3~/debian/rules 2005-09-10 16:44:16.000000000 +0100
@@ -21,8 +21,7 @@
dh_clean -k
dh_installdirs
=20
- mkdir -p debian/freedoom/usr/share/games/doom
- install -m 644 doom2.wad debian/freedoom/usr/share/games/doom
+ install -m 644 doom2.wad debian/freedoom/usr/share/games/freedoom
=20
binary: binary-indep
=20
--HcAYCG3uE/tztfnV--
--98e8jtXdkpgskNou
Content-Type: application/pgp-signature; name="signature.asc"
Content-Description: Digital signature
Content-Disposition: inline
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDIvPyFotOcXAy8jgRApBeAJ4rQFPkxjizmaq14BDiAE1WK+tergCfcNg5
4kdl0/7nGfTG9O25UgkVdSc=
=2wes
-----END PGP SIGNATURE-----
--98e8jtXdkpgskNou--
---------------------------------------
Received: (at 327500-close) by bugs.debian.org; 20 Sep 2005 21:10:02 +0000
>From [EMAIL PROTECTED] Tue Sep 20 14:10:02 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1EHpFk-0007Fp-00; Tue, 20 Sep 2005 14:02:12 -0700
From: Moritz Muehlenhoff <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#327500: fixed in freedoom 0.3-2
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 20 Sep 2005 14:02:12 -0700
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level:
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER
autolearn=no version=2.60-bugs.debian.org_2005_01_02
Source: freedoom
Source-Version: 0.3-2
We believe that the bug you reported is fixed in the latest version of
freedoom, which is due to be installed in the Debian FTP archive:
freedoom_0.3-2.diff.gz
to pool/main/f/freedoom/freedoom_0.3-2.diff.gz
freedoom_0.3-2.dsc
to pool/main/f/freedoom/freedoom_0.3-2.dsc
freedoom_0.3-2_all.deb
to pool/main/f/freedoom/freedoom_0.3-2_all.deb
A summary of the changes between this version and the previous one is
attached.
Thank you for reporting the bug, which will now be closed. If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.
Debian distribution maintenance software
pp.
Moritz Muehlenhoff <[EMAIL PROTECTED]> (supplier of updated freedoom package)
(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
Format: 1.7
Date: Tue, 13 Sep 2005 15:46:50 +0200
Source: freedoom
Binary: freedoom
Architecture: source all
Version: 0.3-2
Distribution: unstable
Urgency: low
Maintainer: Moritz Muehlenhoff <[EMAIL PROTECTED]>
Changed-By: Moritz Muehlenhoff <[EMAIL PROTECTED]>
Description:
freedoom - free game files for the 3D game DOOM
Closes: 327500
Changes:
freedoom (0.3-2) unstable; urgency=low
.
* Add alternative to allow freedoom's WAD file to co-exist with the
WAD file packages generated by the upcoming doom-data installer.
(Closes: #327500)
* Bumped Standards-Version (no changed needed).
Files:
274cf741642da3d7c9e95166636e9543 560 games optional freedoom_0.3-2.dsc
ce903c3b0f875033a613eda7501fb8cb 2457 games optional freedoom_0.3-2.diff.gz
b4c9586530668e5b18bc99c64bdcde7a 6644766 games optional freedoom_0.3-2_all.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.1 (GNU/Linux)
iD8DBQFDMFyyC6DuA+rxm2ARAktBAJ9miDtMAi3QlHI4AfYaFCwBcSlNgQCfUnC2
t0HyIircP5Japmb0ydQiSks=
=KlRk
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]