Your message dated Sat, 26 Nov 2005 14:02:39 -0800
with message-id <[EMAIL PROTECTED]>
and subject line Bug#337852: fixed in sirc 2.211-9
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; 6 Nov 2005 21:50:16 +0000
>From [EMAIL PROTECTED] Sun Nov 06 13:50:16 2005
Return-path: <[EMAIL PROTECTED]>
Received: from 66-23-211-5.clients.speedfactory.net (peff.net) [66.23.211.5] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1EYsP2-00076b-00; Sun, 06 Nov 2005 13:50:16 -0800
Received: (qmail 82516 invoked from network); 6 Nov 2005 21:50:12 -0000
Received: from unknown (HELO coredump.intra.peff.net) (10.0.0.2)
  by 0 with SMTP; 6 Nov 2005 21:50:12 -0000
Received: by coredump.intra.peff.net (sSMTP sendmail emulation); Sun,  6 Nov 
2005 16:50:12 -0500
Content-Type: multipart/mixed; boundary="===============1998945884=="
MIME-Version: 1.0
From: Jeff King <[EMAIL PROTECTED]>
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: sirc fails to install without update-menus
X-Mailer: reportbug 3.17
Date: Sun, 06 Nov 2005 16:50:12 -0500
Message-Id: <[EMAIL PROTECTED]>
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
        autolearn=no version=2.60-bugs.debian.org_2005_01_02

This is a multi-part MIME message sent by reportbug.

--===============1998945884==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: inline

Package: sirc
Version: 2.211-8
Severity: important
Tags: patch

The final line in sirc's postinst is:
  test -e /usr/bin/update-menus && update-menus
The desired effect is to only run update-menus if it exists. However,
there is a secondary effect, which is that the statement's exit code is
'1' if update-menus does not exist. Because it's the last line of the
script, the script exits with code '1', and dpkg interprets this as an
error code.

The script should either explicitly exit with a successful status code,
or should utilize an if/then statement instead of relying on short
circuit behavior. A patch to do the latter is attached.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.6.14-1-k7-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages sirc depends on:
ii  libc6                         2.3.5-7    GNU C Library: Shared libraries an
ii  libncurses5                   5.5-1      Shared libraries for terminal hand
ii  perl [perl5]                  5.8.7-7    Larry Wall's Practical Extraction 

sirc recommends no packages.

-- no debconf information

--===============1998945884==
Content-Type: text/plain; charset="us-ascii"
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename="sirc-postinst.patch"

--- debian/postinst.orig        2005-11-06 16:48:30.000000000 -0500
+++ debian/postinst     2005-11-06 16:47:22.000000000 -0500
@@ -2,5 +2,6 @@
 update-alternatives --install /usr/bin/irc irc /usr/bin/sirc 20 \
                     --slave /usr/share/man/man1/irc.1.gz irc.1 
/usr/share/man/man1/sirc.1.gz
 
-test -e /usr/bin/update-menus && update-menus
-
+if test -e /usr/bin/update-menus; then
+  update-menus
+fi

--===============1998945884==--

---------------------------------------
Received: (at 337852-close) by bugs.debian.org; 26 Nov 2005 22:12:00 +0000
>From [EMAIL PROTECTED] Sat Nov 26 14:12:00 2005
Return-path: <[EMAIL PROTECTED]>
Received: from katie by spohr.debian.org with local (Exim 4.50)
        id 1Eg87z-0002WD-5j; Sat, 26 Nov 2005 14:02:39 -0800
From: Rudolf Weeber <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.60 $
Subject: Bug#337852: fixed in sirc 2.211-9
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Sat, 26 Nov 2005 14:02:39 -0800
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: sirc
Source-Version: 2.211-9

We believe that the bug you reported is fixed in the latest version of
sirc, which is due to be installed in the Debian FTP archive:

sirc_2.211-9.diff.gz
  to pool/main/s/sirc/sirc_2.211-9.diff.gz
sirc_2.211-9.dsc
  to pool/main/s/sirc/sirc_2.211-9.dsc
sirc_2.211-9_i386.deb
  to pool/main/s/sirc/sirc_2.211-9_i386.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.
Rudolf Weeber <[EMAIL PROTECTED]> (supplier of updated sirc 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: Sat, 26 Nov 2005 18:00:00 +1000
Source: sirc
Binary: sirc
Architecture: source i386
Version: 2.211-9
Distribution: unstable
Urgency: low
Maintainer: Rudolf Weeber <[EMAIL PROTECTED]>
Changed-By: Rudolf Weeber <[EMAIL PROTECTED]>
Description: 
 sirc       - The full-featured Perl IRC client
Closes: 337852
Changes: 
 sirc (2.211-9) unstable; urgency=low
 .
   * Fixed bug in postinst script (closes: #337852)
Files: 
 36fdf6fe078dea5e967cfa1a8dc8e366 575 net optional sirc_2.211-9.dsc
 5e356f68cca9cd8c0be65f4529efbb94 38387 net optional sirc_2.211-9.diff.gz
 584d4639cd6db0dcc66befd8e4676fde 106622 net optional sirc_2.211-9_i386.deb

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDiMkChQui3hP+/EARAjj0AKDXMmij5go1O031TTQEo+EkS4+iZACfR225
9ZrY8k0CXcEOjFtdJH2HRRc=
=myKP
-----END PGP SIGNATURE-----


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to