Your message dated Tue, 10 May 2005 10:32:06 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#302706: fixed in lavaps 2.7-3
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; 2 Apr 2005 13:09:40 +0000
>From [EMAIL PROTECTED] Sat Apr 02 05:09:40 2005
Return-path: <[EMAIL PROTECTED]>
Received: from c156139.adsl.hansenet.de (localhost.localdomain)
[213.39.156.139]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DHiNg-0008BN-00; Sat, 02 Apr 2005 05:09:40 -0800
Received: from aj by localhost.localdomain with local (Exim 4.50)
id 1DHiNg-00087r-JE; Sat, 02 Apr 2005 15:09:40 +0200
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: lavaps: FTBFS (amd64/gcc-4.0): cast from 'process_model*' to 'int'
loses precision
Message-Id: <[EMAIL PROTECTED]>
Date: Sat, 02 Apr 2005 15:09:40 +0200
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-Status: No, hits=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level:
Package: lavaps
Version: 2.7-1
Severity: normal
Tags: patch
When building 'lavaps' on amd64/unstable with gcc-4.0,
I get the following error:
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -DUSE_GTK_BLOB -DORBIT2=1 -pthread
-DXTHREADS -I/usr/include/libgnomeui-2.0 -I/usr/include/libgnome-2.0
-I/usr/include/libgnomecanvas-2.0 -I/usr/include/gtk-2.0
-I/usr/include/libart-2.0 -I/usr/include/gconf/2 -I/usr/include/libbonoboui-2.0
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/orbit-2.0
-I/usr/include/libbonobo-2.0 -I/usr/include/gnome-vfs-2.0
-I/usr/lib/gnome-vfs-2.0/include -I/usr/include/bonobo-activation-2.0
-I/usr/include/pango-1.0 -I/usr/include/freetype2 -I/usr/lib/gtk-2.0/include
-I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/libxml2
-DUSE_PROCESS_SCAN_LINUX_PROC -Ilinux -g -Wall -DLAVAPS_STL_NAMESPACE=std
-DGNOMELOCALEDIR=\""/usr/share/locale"\" -g -O2 -MT process_model.o -MD -MP -MF
".deps/process_model.Tpo" -c -o process_model.o process_model.cc; \
then mv -f ".deps/process_model.Tpo" ".deps/process_model.Po"; else rm -f
".deps/process_model.Tpo"; exit 1; fi
process_model.cc: In member function 'void process_model::dump()':
process_model.cc:89: error: cast from 'process_model*' to 'int' loses precision
make[4]: *** [process_model.o] Error 1
make[4]: Leaving directory `/lavaps-2.7/src'
The attached patch fixes this problem.
Regards
Andreas Jochens
diff -urN ../tmp-orig/lavaps-2.7/src/blob.cc ./src/blob.cc
--- ../tmp-orig/lavaps-2.7/src/blob.cc 2004-12-16 06:12:38.000000000 +0100
+++ ./src/blob.cc 2005-04-02 14:32:14.069646690 +0200
@@ -503,7 +503,7 @@
blob::print()
{
ENTRY_TRACE(__FILE__,__LINE__);
- cout << O_("blob: ") << (unsigned)this << O_(" x=") << x_ << O_("
step=") << x_step_ << O_(" num=") << num_ << O_(":");
+ cout << O_("blob: ") << (unsigned long)this << O_(" x=") << x_ << O_("
step=") << x_step_ << O_(" num=") << num_ << O_(":");
for (int i = 0; i < num_; i++) {
cout << O_(" ") << y_lows_[i] << O_("-") << y_highs_[i];
};
diff -urN ../tmp-orig/lavaps-2.7/src/process_model.cc ./src/process_model.cc
--- ../tmp-orig/lavaps-2.7/src/process_model.cc 2003-07-15 05:32:09.000000000
+0200
+++ ./src/process_model.cc 2005-04-02 14:31:59.413394662 +0200
@@ -86,7 +86,7 @@
void
process_model::dump()
{
- cout << int(this) << " "<< pid_ << " " << uid_ << " " << cmd_.c_str()
<< " " <<
+ cout << long(this) << " "<< pid_ << " " << uid_ << " " << cmd_.c_str()
<< " " <<
endl;
}
---------------------------------------
Received: (at 302706-close) by bugs.debian.org; 10 May 2005 14:51:26 +0000
>From [EMAIL PROTECTED] Tue May 10 07:51:26 2005
Return-path: <[EMAIL PROTECTED]>
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DVW4x-0003Ti-00; Tue, 10 May 2005 07:51:23 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DVVmI-0007ss-00; Tue, 10 May 2005 10:32:06 -0400
From: [EMAIL PROTECTED] (Ashley T. Howes)
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.55 $
Subject: Bug#302706: fixed in lavaps 2.7-3
Message-Id: <[EMAIL PROTECTED]>
Sender: Archive Administrator <[EMAIL PROTECTED]>
Date: Tue, 10 May 2005 10:32:06 -0400
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-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
X-Spam-Level:
Source: lavaps
Source-Version: 2.7-3
We believe that the bug you reported is fixed in the latest version of
lavaps, which is due to be installed in the Debian FTP archive:
lavaps_2.7-3.diff.gz
to pool/main/l/lavaps/lavaps_2.7-3.diff.gz
lavaps_2.7-3.dsc
to pool/main/l/lavaps/lavaps_2.7-3.dsc
lavaps_2.7-3_alpha.deb
to pool/main/l/lavaps/lavaps_2.7-3_alpha.deb
lavaps_2.7-3_i386.deb
to pool/main/l/lavaps/lavaps_2.7-3_i386.deb
lavaps_2.7-3_ia64.deb
to pool/main/l/lavaps/lavaps_2.7-3_ia64.deb
lavaps_2.7-3_mips.deb
to pool/main/l/lavaps/lavaps_2.7-3_mips.deb
lavaps_2.7-3_powerpc.deb
to pool/main/l/lavaps/lavaps_2.7-3_powerpc.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.
Ashley T. Howes <[EMAIL PROTECTED]> (supplier of updated lavaps 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, 12 Apr 2005 12:54:08 +0100
Source: lavaps
Binary: lavaps
Architecture: alpha i386 ia64 mips powerpc source
Version: 2.7-3
Distribution: unstable
Urgency: low
Maintainer: Ashley T. Howes <[EMAIL PROTECTED]>
Changed-By: Ashley T. Howes <[EMAIL PROTECTED]>
Description:
lavaps - a lava lamp of currently running processes
Closes: 302706
Changes:
lavaps (2.7-3) unstable; urgency=low
.
* 2.7-2 was rejected by ftpmasters as it was felt that a version of lavaps
specifically for tcl/tk does not warrant an extra package. Therefore this
source package now outputs only a single lavaps binary.
* Apply patch from Andreas Jochen to src/blob.cc and src/process_model.cc to
fix FTBFS with gcc-4.0 and 64 bit architectures. Closes: #302706.
Files:
260abc92e9380ac15bcd6f58e2fe4ebc 154932 admin optional lavaps_2.7-3_mips.deb
38b35a51db5ea48b6c49c43d58457fb0 172540 admin optional lavaps_2.7-3_ia64.deb
7cfa31b98219ef2eb86d80e1b693a014 6184 admin optional lavaps_2.7-3.diff.gz
ac9009dce49a3b28f85797090f1bdec8 157272 admin optional lavaps_2.7-3_alpha.deb
e45c19e1da9bbc9cf448c44e52b69717 142646 admin optional lavaps_2.7-3_i386.deb
e4fcbf4f0d657c1097093231077e9c77 153264 admin optional lavaps_2.7-3_powerpc.deb
6019e11092c46c3e5372069d75d0b67c 614 admin optional lavaps_2.7-3.dsc
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.5 (GNU/Linux)
iD8DBQFCgMBlfDt5cIjHwfcRAhm/AKCAsXX8IxXB8lq0HF7HzCOsw9QdlACgonuQ
NLMOp8Ax6uxRvZPgZhHtN8w=
=XvbB
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]