Your message dated Mon, 31 Jan 2005 07:45:19 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#287423: fixed in libmetakit2.4.9.3 2.4.9.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; 27 Dec 2004 16:15:13 +0000
>From [EMAIL PROTECTED] Mon Dec 27 08:15:13 2004
Return-path: <[EMAIL PROTECTED]>
Received: from c156115.adsl.hansenet.de (localhost.localdomain)
[213.39.156.115]
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CixWb-0006vg-00; Mon, 27 Dec 2004 08:15:13 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1Cixbi-0000oF-0k; Mon, 27 Dec 2004 17:20:30 +0100
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
From: Andreas Jochens <[EMAIL PROTECTED]>
Subject: libmetakit2.4.9.3: FTBFS (amd64/gcc-4.0): cast from 'PyRowRef*' to
'int' loses precision
Message-Id: <[EMAIL PROTECTED]>
Date: Mon, 27 Dec 2004 17:20:30 +0100
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_25
(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_2004_03_25
X-Spam-Level:
Package: libmetakit2.4.9.3
Severity: normal
Tags: patch
When building 'libmetakit2.4.9.3' on amd64 with gcc-4.0,
I get the following error:
g++ -c -g -fomit-frame-pointer -DNDEBUG -O3 -I../unix/../include
-I../unix/../python/scxx -I/usr/include/python2.3
../unix/../python/PyRowRef.cpp -fPIC -DPIC
../unix/../python/PyRowRef.cpp: In function 'int PyRowRef_print(PyRowRef*,
FILE*, int)':
../unix/../python/PyRowRef.cpp:27: error: cast from 'PyRowRef*' to 'int' loses
precision
../unix/../python/PyRowRef.cpp: In function 'int PyRORowRef_print(PyRowRef*,
FILE*, int)':
../unix/../python/PyRowRef.cpp:32: error: cast from 'PyRowRef*' to 'int' loses
precision
make[1]: *** [PyRowRef.o] Error 1
make[1]: Leaving directory `/libmetakit2.4.9.3-2.4.9.3/builds'
make: *** [build-stamp] Error 2
With the attached patch 'libmetakit2.4.9.3' can be compiled
on amd64 using gcc-4.0.
Regards
Andreas Jochens
diff -urN ../tmp-orig/libmetakit2.4.9.3-2.4.9.3/python/PyRowRef.cpp
./python/PyRowRef.cpp
--- ../tmp-orig/libmetakit2.4.9.3-2.4.9.3/python/PyRowRef.cpp 2004-01-21
02:46:06.000000000 +0100
+++ ./python/PyRowRef.cpp 2004-12-27 17:06:14.233581456 +0100
@@ -24,12 +24,12 @@
}
static int PyRowRef_print(PyRowRef *o, FILE *f, int) {
- fprintf(f, "<PyRowRef object at %x>", (int)o);
+ fprintf(f, "<PyRowRef object at %x>", (long)o);
return 0;
}
static int PyRORowRef_print(PyRowRef *o, FILE *f, int) {
- fprintf(f, "<PyRORowRef object at %x>", (int)o);
+ fprintf(f, "<PyRORowRef object at %x>", (long)o);
return 0;
}
diff -urN ../tmp-orig/libmetakit2.4.9.3-2.4.9.3/python/PyView.cpp
./python/PyView.cpp
--- ../tmp-orig/libmetakit2.4.9.3-2.4.9.3/python/PyView.cpp 2004-01-21
02:46:06.000000000 +0100
+++ ./python/PyView.cpp 2004-12-27 17:09:50.782660992 +0100
@@ -971,15 +971,15 @@
}
static int PyView_print(PyView *o, FILE *f, int) {
- fprintf(f, "<PyView object at %x>", (int)o);
+ fprintf(f, "<PyView object at %x>", (long)o);
return 0;
}
static int PyViewer_print(PyView *o, FILE *f, int) {
- fprintf(f, "<PyViewer object at %x>", (int)o);
+ fprintf(f, "<PyViewer object at %x>", (long)o);
return 0;
}
static int PyROViewer_print(PyView *o, FILE *f, int) {
- fprintf(f, "<PyROViewer object at %x>", (int)o);
+ fprintf(f, "<PyROViewer object at %x>", (long)o);
return 0;
}
---------------------------------------
Received: (at 287423-close) by bugs.debian.org; 31 Jan 2005 12:53:21 +0000
>From [EMAIL PROTECTED] Mon Jan 31 04:53:21 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 1Cvb3Q-0001Df-00; Mon, 31 Jan 2005 04:53:21 -0800
Received: from troup by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1Cvavf-0001cn-00; Mon, 31 Jan 2005 07:45:19 -0500
From: Gerfried Fuchs <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#287423: fixed in libmetakit2.4.9.3 2.4.9.3-2
Message-Id: <[EMAIL PROTECTED]>
Sender: James Troup <[EMAIL PROTECTED]>
Date: Mon, 31 Jan 2005 07:45:19 -0500
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:
X-CrossAssassin-Score: 3
Source: libmetakit2.4.9.3
Source-Version: 2.4.9.3-2
We believe that the bug you reported is fixed in the latest version of
libmetakit2.4.9.3, which is due to be installed in the Debian FTP archive:
libmetakit-tcl_2.4.9.3-2_i386.deb
to pool/main/libm/libmetakit2.4.9.3/libmetakit-tcl_2.4.9.3-2_i386.deb
libmetakit2.4.9.3-dev_2.4.9.3-2_i386.deb
to pool/main/libm/libmetakit2.4.9.3/libmetakit2.4.9.3-dev_2.4.9.3-2_i386.deb
libmetakit2.4.9.3_2.4.9.3-2.diff.gz
to pool/main/libm/libmetakit2.4.9.3/libmetakit2.4.9.3_2.4.9.3-2.diff.gz
libmetakit2.4.9.3_2.4.9.3-2.dsc
to pool/main/libm/libmetakit2.4.9.3/libmetakit2.4.9.3_2.4.9.3-2.dsc
libmetakit2.4.9.3_2.4.9.3-2_i386.deb
to pool/main/libm/libmetakit2.4.9.3/libmetakit2.4.9.3_2.4.9.3-2_i386.deb
python-metakit_2.4.9.3-2_all.deb
to pool/main/libm/libmetakit2.4.9.3/python-metakit_2.4.9.3-2_all.deb
python2.3-metakit_2.4.9.3-2_i386.deb
to pool/main/libm/libmetakit2.4.9.3/python2.3-metakit_2.4.9.3-2_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.
Gerfried Fuchs <[EMAIL PROTECTED]> (supplier of updated libmetakit2.4.9.3
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: Fri, 21 Jan 2005 19:00:49 +0100
Source: libmetakit2.4.9.3
Binary: python2.3-metakit libmetakit2.4.9.3-dev libmetakit-tcl python-metakit
libmetakit2.4.9.3
Architecture: source i386 all
Version: 2.4.9.3-2
Distribution: unstable
Urgency: low
Maintainer: Gerfried Fuchs <[EMAIL PROTECTED]>
Changed-By: Gerfried Fuchs <[EMAIL PROTECTED]>
Description:
libmetakit-tcl - Metakit bindings for tcl
libmetakit2.4.9.3 - MetaKit embeddable database -- shared libraries
libmetakit2.4.9.3-dev - MetaKit embeddable database -- development files
python-metakit - Metakit bindings for python
python2.3-metakit - Metakit bindings for python2.3
Closes: 247692 251893 287423
Changes:
libmetakit2.4.9.3 (2.4.9.3-2) unstable; urgency=low
.
* Updated config.guess and config.sub scripts (closes: #287423)
* Renamed libmetakit-python to python2.3-metakit, and added an empty
depending python-metakit package (closes: #247692)
* Let python2.3-metakit provide libmetakit-python to ease the upgrade. DO
NOT DEPEND ON THIS, this will be removed in future versions!!
* Fixed long description of libmetakit2.4.9.3-dev (closes: #251893)
* Added lintian override files for the uppercase MetaKit in the description
synopsis.
* Switched from dh_movefiles to dh_install.
Files:
9382487f95f235e126664a10cc0f9997 715 libs optional
libmetakit2.4.9.3_2.4.9.3-2.dsc
b129ace1d4d587119fc754280e239ece 15006 libs optional
libmetakit2.4.9.3_2.4.9.3-2.diff.gz
96b0a171203c6e45fc7e44655e115e85 143104 libs optional
libmetakit2.4.9.3_2.4.9.3-2_i386.deb
dc3c9b5f2490bc794b8475b1463be678 1632 python optional
python-metakit_2.4.9.3-2_all.deb
43f71b6c5b29d7989809480395432911 197168 python optional
python2.3-metakit_2.4.9.3-2_i386.deb
3b89ce4c84f71374d22dedd2be4aa252 178110 devel optional
libmetakit-tcl_2.4.9.3-2_i386.deb
0c5441e76f755e4e99ab6868b62e262a 275784 libdevel optional
libmetakit2.4.9.3-dev_2.4.9.3-2_i386.deb
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.4 (GNU/Linux)
iEYEARECAAYFAkHxmeQACgkQELuA/Ba9d8YJWACeJ5ZKTu60puSQjrpLi7N/ioc1
fg0AnjrePEcQZOPcW1pUvJGXwbhVYN4k
=htnj
-----END PGP SIGNATURE-----
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]