Your message dated Tue, 27 Dec 2005 17:44:34 +0100 with message-id <[EMAIL PROTECTED]> and subject line done 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; 15 Oct 2005 06:35:30 +0000 >From [EMAIL PROTECTED] Fri Oct 14 23:35:30 2005 Return-path: <[EMAIL PROTECTED]> Received: from mmjgroup.com [192.34.35.33] by spohr.debian.org with esmtp (Exim 3.36 1 (Debian)) id 1EQfdh-0005vU-00; Fri, 14 Oct 2005 23:35:30 -0700 Received: from mix.mmjgroup.com (mix.mmjgroup.com [192.34.35.16]) by mmjgroup.com (Postfix) with ESMTP id CED6116DCE for <[EMAIL PROTECTED]>; Sat, 15 Oct 2005 00:35:28 -0600 (MDT) Received: by mix.mmjgroup.com (Postfix, from userid 1000) id CE29890770; Sat, 15 Oct 2005 00:35:28 -0600 (MDT) Date: Sat, 15 Oct 2005 00:35:28 -0600 From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: kuake_0.3-3(hppa/unstable): FTBFS: gcc-4.0 workaround needed Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.9i 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.4 required=4.0 tests=BAYES_00,HAS_PACKAGE, NO_REAL_NAME autolearn=no version=2.60-bugs.debian.org_2005_01_02 Package: kuake Version: 0.3-3 Severity: serious Tags: patch There was an error while trying to autobuild your package: > Automatic build of kuake_0.3-3 on sarti by sbuild/hppa 69 > Build started at 20051013-1130 [...] > ** Using build dependencies supplied by package: > Build-Depends: debhelper (>= 4.0.0), kdelibs4-dev (>= 4:3.4.2-1) [...] > /usr/lib/gcc/hppa-linux-gnu/4.0.2/../../../../include/c++/4.0.2/bits/basic_string.h:278: > warning: cast from 'char*' to 'std::basic_string<char, > std::char_traits<char>, std::allocator<char> >::_Rep*' increases required > alignment of target type > kuakeiface_skel.cpp: In member function 'QCStringList > KuakeIface::_ZTv0_n36_N10KuakeIface9functionsEv()': > kuakeiface_skel.cpp:55: internal compiler error: in cp_expr_size, at > cp/cp-objcp-common.c:101 > Please submit a full bug report, > with preprocessed source if appropriate. > See <URL:http://gcc.gnu.org/bugs.html> for instructions. > For Debian GNU/Linux specific bug reporting instructions, > see <URL:file:///usr/share/doc/gcc-4.0/README.Bugs>. > make[3]: *** [kuakeiface_skel.o] Error 1 > make[3]: Leaving directory `/build/buildd/kuake-0.3/src' > make[2]: *** [all-recursive] Error 1 > make[2]: Leaving directory `/build/buildd/kuake-0.3' > make[1]: *** [all] Error 2 > make[1]: Leaving directory `/build/buildd/kuake-0.3' > make: *** [build-stamp] Error 2 A full build log can be found at: http://buildd.debian.org/build.php?arch=hppa&pkg=kuake&ver=0.3-3 Patch for the NMU, based on http://lists.debian.org/debian-devel/2005/09/msg00020.html diff -ur ../../t/kuake-0.3/debian/changelog kuake-0.3/debian/changelog --- ../../t/kuake-0.3/debian/changelog 2005-10-14 13:22:34.000000000 -0600 +++ kuake-0.3/debian/changelog 2005-10-15 00:29:42.000000000 -0600 @@ -1,3 +1,10 @@ +kuake (0.3-3.1) unstable; urgency=low + + * Non-maintainer upload. + * work around gcc-4.0 FTBFS on some architectures + + -- LaMont Jones <[EMAIL PROTECTED]> Fri, 14 Oct 2005 19:28:36 +0000 + kuake (0.3-3) unstable; urgency=low * Add kdelibs4-dev (>= 4:3.4.2-1) in Build-Depends to build with a diff -ur ../../t/kuake-0.3/debian/control kuake-0.3/debian/control --- ../../t/kuake-0.3/debian/control 2005-10-14 13:22:34.000000000 -0600 +++ kuake-0.3/debian/control 2005-10-15 00:29:42.000000000 -0600 @@ -2,7 +2,7 @@ Section: kde Priority: optional Maintainer: Jean-Michel Kelbert <[EMAIL PROTECTED]> -Build-Depends: debhelper (>= 4.0.0), kdelibs4-dev (>= 4:3.4.2-1) +Build-Depends: debhelper (>= 4.0.0), kdelibs4-dev (>= 4:3.4.2-1), g++-3.4 [arm m68k hppa] Standards-Version: 3.6.1 Package: kuake diff -ur ../../t/kuake-0.3/debian/rules kuake-0.3/debian/rules --- ../../t/kuake-0.3/debian/rules 2005-10-14 13:22:34.000000000 -0600 +++ kuake-0.3/debian/rules 2005-10-15 00:29:42.000000000 -0600 @@ -15,6 +15,15 @@ DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) +GCC4_ICES_HERE := arm m68k hppa +DEB_HOST_ARCH_CPU ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_CPU) + +ifneq (,$(filter $(DEB_HOST_ARCH_CPU),$(GCC4_ICES_HERE))) + export CC=gcc-3.4 + export CPP=cpp-3.4 + export CXX=g++-3.4 +endif + CFLAGS = -Wall -g --------------------------------------- Received: (at 334037-close) by bugs.debian.org; 27 Dec 2005 16:44:28 +0000 >From [EMAIL PROTECTED] Tue Dec 27 08:44:28 2005 Return-path: <[EMAIL PROTECTED]> Received: from smtp3-g19.free.fr ([212.27.42.29]) by spohr.debian.org with esmtp (Exim 4.50) id 1ErHw4-0005jC-5j for [EMAIL PROTECTED]; Tue, 27 Dec 2005 08:44:28 -0800 Received: from mars.ephaone.org (mars.ephaone.org [81.56.115.55]) by smtp3-g19.free.fr (Postfix) with ESMTP id 3CCC0440C3 for <[EMAIL PROTECTED]>; Tue, 27 Dec 2005 17:44:27 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by mars.ephaone.org (Postfix) with ESMTP id 47A55D3820 for <[EMAIL PROTECTED]>; Tue, 27 Dec 2005 17:44:38 +0100 (CET) Received: from mars.ephaone.org ([127.0.0.1]) by localhost (mars.ephaone.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 20412-09 for <[EMAIL PROTECTED]>; Tue, 27 Dec 2005 17:44:34 +0100 (CET) Received: by mars.ephaone.org (Postfix, from userid 1000) id 39D8AD386A; Tue, 27 Dec 2005 17:44:34 +0100 (CET) Date: Tue, 27 Dec 2005 17:44:34 +0100 From: Jean-Michel Kelbert <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: done Message-ID: <[EMAIL PROTECTED]> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable X-Operating-System: Debian GNU Linux running Linux kernel 2.6.10-1-k7 on (i686) User-Agent: Mutt/1.5.9i X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at ephaone.org 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=-1.5 required=4.0 tests=BAYES_00,ONEWORD, RCVD_IN_SORBS autolearn=no version=2.60-bugs.debian.org_2005_01_02 --=20 Jean-Michel Kelbert -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]