Your message dated Tue, 9 Aug 2005 20:18:30 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Removed
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; 11 Nov 2004 08:12:02 +0000
>From [EMAIL PROTECTED] Thu Nov 11 00:12:02 2004
Return-path: <[EMAIL PROTECTED]>
Received: from hall.mail.mindspring.net [207.69.200.60] 
        by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
        id 1CSA3l-00086s-00; Thu, 11 Nov 2004 00:12:02 -0800
Received: from user-119bq03.biz.mindspring.com ([66.149.232.3] 
helo=frobnitz.homelinux.net)
        by hall.mail.mindspring.net with esmtp (Exim 3.33 #1)
        id 1CSA3j-0006OA-00
        for [EMAIL PROTECTED]; Thu, 11 Nov 2004 03:11:59 -0500
Received: from daniel by frobnitz.homelinux.net with local (Exim 4.34)
        id 1CSA3i-00006u-JQ
        for [EMAIL PROTECTED]; Thu, 11 Nov 2004 00:11:58 -0800
To: Debian Bug Tracking System <[EMAIL PROTECTED]>
Subject: libdebtags: FTBFS with g++-3.4: Template lookup errors
From: Daniel Schepler <[EMAIL PROTECTED]>
Date: Thu, 11 Nov 2004 00:11:58 -0800
Message-ID: <[EMAIL PROTECTED]>
MIME-Version: 1.0
Content-Type: multipart/mixed; boundary="=-=-="
Sender: Daniel Schepler <[EMAIL PROTECTED]>
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: libdebtags
Severity: normal
Version: 0.9.8
Tags: patch

>From my build log:

...
 g++ -DHAVE_CONFIG_H -I. -I. -I.. -DSTATEDIR=\"/var/lib/debtags\" -g -Wall -O2 
-Wall -MT TagDB.lo -MD -MP -MF .deps/TagDB.Tpo -c TagDB.cc  -fPIC -DPIC -o 
.libs/TagDB.o
TagDB.cc: In member function `virtual void Debtags::FacetTagAdder<ITEM, 
TAG>::consume(const std::string&)':
TagDB.cc:278: error: `consumer' undeclared (first use this function)
TagDB.cc:278: error: (Each undeclared identifier is reported only once for each 
function it appears in.)
TagDB.cc: In member function `virtual void Debtags::FacetTagAdder<ITEM, 
TAG>::consume(const std::string&, const Tagcoll::OpSet<std::string>&)':
TagDB.cc:294: error: `consumer' undeclared (first use this function)
TagDB.cc: In member function `virtual void Debtags::FacetTagAdder<ITEM, 
TAG>::consume(const Tagcoll::OpSet<ITEM>&)':
TagDB.cc:303: error: `consumer' undeclared (first use this function)
TagDB.cc: In member function `virtual void Debtags::FacetTagAdder<ITEM, 
TAG>::consume(const Tagcoll::OpSet<ITEM>&, const Tagcoll::OpSet<TAG>&)':
TagDB.cc:320: error: `consumer' undeclared (first use this function)
make[3]: *** [TagDB.lo] Error 1
make[3]: Leaving directory `/tmp/buildd/libdebtags-0.9.8/debtags'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/libdebtags-0.9.8'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/libdebtags-0.9.8'
make: *** [debian/stamp-makefile-build] Error 2

I've attached a patch that makes the package build with g++-3.4.
-- 
Daniel Schepler              "Please don't disillusion me.  I
[EMAIL PROTECTED]    haven't had breakfast yet."
                                 -- Orson Scott Card

--=-=-=
Content-Type: text/x-patch
Content-Disposition: attachment; filename=libdebtags.diff
Content-Description: libdebtags g++-3.4 patch

diff -urN libdebtags-0.9.8.old/debtags/TagDB.cc 
libdebtags-0.9.8/debtags/TagDB.cc
--- libdebtags-0.9.8.old/debtags/TagDB.cc       2004-10-22 10:13:46.000000000 
+0000
+++ libdebtags-0.9.8/debtags/TagDB.cc   2004-11-11 08:07:47.176849813 +0000
@@ -275,7 +275,7 @@
 template<class ITEM, class TAG>
 void FacetTagAdder<ITEM, TAG>::consume(const string& item) throw ()
 {
-       consumer->consume(item);
+       this->consumer->consume(item);
 }
 
 template<class ITEM, class TAG>
@@ -291,16 +291,16 @@
        }
 
        if (added.size())
-               consumer->consume(item, tags + added);
+               this->consumer->consume(item, tags + added);
        else
-               consumer->consume(item, tags);
+               this->consumer->consume(item, tags);
 }
 
 // Process a set of items, all with no tags
 template<class ITEM, class TAG>
 void FacetTagAdder<ITEM, TAG>::consume(const OpSet<ITEM>& items) throw ()
 {
-       consumer->consume(items);
+       this->consumer->consume(items);
 }
 
 // Process a set of items identically tagged, with their tags
@@ -317,9 +317,9 @@
        }
 
        if (added.size())
-               consumer->consume(items, tags + added);
+               this->consumer->consume(items, tags + added);
        else
-               consumer->consume(items, tags);
+               this->consumer->consume(items, tags);
 }
 
 
diff -urN libdebtags-0.9.8.old/debtags/Update.cc 
libdebtags-0.9.8/debtags/Update.cc
--- libdebtags-0.9.8.old/debtags/Update.cc      2004-10-22 10:13:46.000000000 
+0000
+++ libdebtags-0.9.8/debtags/Update.cc  2004-11-11 08:09:15.812540522 +0000
@@ -71,12 +71,12 @@
 template<class ITEM, class TAG>
 void VocabularyFilter<ITEM, TAG>::consume(const string& item) throw ()
 {
-       consumer->consume(item);
+       this->consumer->consume(item);
 }
 template<class ITEM, class TAG>
 void VocabularyFilter<ITEM, TAG>::consume(const OpSet<ITEM>& items) throw ()
 {
-       consumer->consume(items);
+       this->consumer->consume(items);
 }
 
 
@@ -92,9 +92,9 @@
                        fprintf(stderr, "Removing tag %.*s not found in 
vocabulary (package %.*s)\n", PFSTR(*i), PFSTR(item));
 
        if (patched.size())
-               consumer->consume(item, patched);
+               this->consumer->consume(item, patched);
        else
-               consumer->consume(item);
+               this->consumer->consume(item);
 }
 
 // Process a set of items identically tagged, with their tags
@@ -121,9 +121,9 @@
                }
 
        if (patched.size())
-               consumer->consume(items, patched);
+               this->consumer->consume(items, patched);
        else
-               consumer->consume(items);
+               this->consumer->consume(items);
 }
 
 // TagcollFilter that removes items not in the APT database
@@ -145,7 +145,7 @@
 void APTFilter<ITEM, TAG>::consume(const string& item) throw ()
 {
        if (packageDB.hasPackage(item))
-               consumer->consume(item);
+               this->consumer->consume(item);
        else
                fprintf(stderr, "Removing package %.*s not found in APT 
database\n", PFSTR(item));
 }
@@ -159,7 +159,7 @@
                        filtered += *i;
                else
                        fprintf(stderr, "Removing package %.*s not found in APT 
database\n", PFSTR(*i));
-       consumer->consume(filtered);
+       this->consumer->consume(filtered);
 }
 
 
@@ -167,7 +167,7 @@
 void APTFilter<ITEM, TAG>::consume(const string& item, const OpSet<string>& 
tags) throw ()
 {
        if (packageDB.hasPackage(item))
-               consumer->consume(item, tags);
+               this->consumer->consume(item, tags);
        else
                fprintf(stderr, "Removing package %.*s not found in APT 
database\n", PFSTR(item));
 }
@@ -183,7 +183,7 @@
                        filtered += *i;
                else
                        fprintf(stderr, "Removing package %.*s not found in APT 
database\n", PFSTR(*i));
-       consumer->consume(filtered, tags);
+       this->consumer->consume(filtered, tags);
 }
 
 };

--=-=-=--

---------------------------------------
Received: (at 280708-done) by bugs.debian.org; 9 Aug 2005 19:18:44 +0000
>From [EMAIL PROTECTED] Tue Aug 09 12:18:44 2005
Return-path: <[EMAIL PROTECTED]>
Received: from sorrow.cyrius.com [65.19.161.204] 
        by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
        id 1E2Zca-0006q2-00; Tue, 09 Aug 2005 12:18:44 -0700
Received: by sorrow.cyrius.com (Postfix, from userid 10)
        id F070964D54; Tue,  9 Aug 2005 19:18:38 +0000 (UTC)
Received: by deprecation.cyrius.com (Postfix, from userid 1000)
        id 81BA9838B; Tue,  9 Aug 2005 20:18:30 +0100 (BST)
Date: Tue, 9 Aug 2005 20:18:30 +0100
From: Martin Michlmayr <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Removed
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=-2.0 required=4.0 tests=BAYES_00,ONEWORD autolearn=no 
        version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2

These packages have been removed because they are superseded by
libdebtgas1, libtagcoll1.
-- 
Martin Michlmayr
http://www.cyrius.com/


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

Reply via email to