Bug#126770: linuxconf: Build failure with g++ 3.0 (hppa/unstable)

2001-12-28 Thread LaMont Jones
Package: linuxconf
Version: 1.26r4-1
Severity: important
Tags: patch

Filing important because hppa is in woody (and requires gcc 3.0)
The following patch allows linuxconf to build with g++ 3.0.

lamont

diff -ur t/linuxconf-1.26r4/libmodules/parsers/viewedit.cc 
linuxconf-1.26r4/libmodules/parsers/viewedit.cc
--- t/linuxconf-1.26r4/libmodules/parsers/viewedit.cc   Sat Dec 30 10:21:24 2000
+++ linuxconf-1.26r4/libmodules/parsers/viewedit.cc Fri Dec 28 11:01:15 2001
@@ -5,7 +5,7 @@
 };
 
 class VIEWEDIT_FIELD: public ARRAY_OBJ{
-   friend VIEWEDIT;
+   friend class VIEWEDIT;
const char *keyword;
VIEWITEM *it;
SSTRING val;
diff -ur t/linuxconf-1.26r4/modules/Xkbdconf/devicelist.cc 
linuxconf-1.26r4/modules/Xkbdconf/devicelist.cc
--- t/linuxconf-1.26r4/modules/Xkbdconf/devicelist.cc   Tue Dec 12 12:19:34 2000
+++ linuxconf-1.26r4/modules/Xkbdconf/devicelist.cc Fri Dec 28 09:50:02 2001
@@ -4,6 +4,7 @@
 #include 
 #include 
 #include "devicelist.h"
+using namespace std;
 
 DEVICE::DEVICE()
 {
diff -ur t/linuxconf-1.26r4/modules/Xkbdconf/devicelist.h 
linuxconf-1.26r4/modules/Xkbdconf/devicelist.h
--- t/linuxconf-1.26r4/modules/Xkbdconf/devicelist.hTue Nov 28 13:52:28 2000
+++ linuxconf-1.26r4/modules/Xkbdconf/devicelist.h  Fri Dec 28 09:49:47 2001
@@ -10,7 +10,7 @@
 class DEVICE: public ARRAY_OBJ
 {
private:
-   map options;
+   std::map options;
public:
DEVICE();
~DEVICE();
diff -ur t/linuxconf-1.26r4/modules/apache/viewedit.cc 
linuxconf-1.26r4/modules/apache/viewedit.cc
--- t/linuxconf-1.26r4/modules/apache/viewedit.cc   Tue Oct  9 22:47:38 2001
+++ linuxconf-1.26r4/modules/apache/viewedit.cc Fri Dec 28 01:58:20 2001
@@ -5,7 +5,7 @@
 };
 
 class VIEWEDIT_FIELD: public ARRAY_OBJ{
-   friend VIEWEDIT;
+   friend class VIEWEDIT;
const char *keyword;
VIEWITEM *it;
SSTRING val;
diff -ur t/linuxconf-1.26r4/modules/kbdconf/devicelist.cc 
linuxconf-1.26r4/modules/kbdconf/devicelist.cc
--- t/linuxconf-1.26r4/modules/kbdconf/devicelist.ccMon Dec 11 13:36:09 2000
+++ linuxconf-1.26r4/modules/kbdconf/devicelist.cc  Fri Dec 28 09:19:14 2001
@@ -19,7 +19,7 @@
 
 const char *DEVICE::get_option(const char *name)
 {
-map::iterator i = options.find(name);
+std::map::iterator i = options.find(name);
 if (i != options.end())
return i->second.c_str();
 return NULL;
diff -ur t/linuxconf-1.26r4/modules/kbdconf/devicelist.h 
linuxconf-1.26r4/modules/kbdconf/devicelist.h
--- t/linuxconf-1.26r4/modules/kbdconf/devicelist.h Mon Dec  4 17:52:51 2000
+++ linuxconf-1.26r4/modules/kbdconf/devicelist.h   Fri Dec 28 09:18:31 2001
@@ -10,7 +10,7 @@
 class DEVICE: public ARRAY_OBJ
 {
private:
-   map options;
+   std::map options;
public:
DEVICE();
~DEVICE();
diff -ur t/linuxconf-1.26r4/modules/modemconf/wv/wvlog.h 
linuxconf-1.26r4/modules/modemconf/wv/wvlog.h
--- t/linuxconf-1.26r4/modules/modemconf/wv/wvlog.h Tue May  9 07:59:38 2000
+++ linuxconf-1.26r4/modules/modemconf/wv/wvlog.h   Fri Dec 28 08:55:15 2001
@@ -25,7 +25,7 @@
 // or transmits log messages.
 class WvLogRcvBase
 {
-friend WvLog;
+friend class WvLog;
 protected:
 const char *appname(const WvLog *log) const;
 virtual void log(const WvLog *source, int loglevel,
@@ -43,7 +43,7 @@
 // to all registered WvLogRcv's.
 class WvLog : public WvStream
 {
-friend WvLogRcvBase;
+friend class WvLogRcvBase;
 public:
 enum LogLevel {
Critical = 0,
diff -ur t/linuxconf-1.26r4/modules/modemconf/wv/wvmodemscan.h 
linuxconf-1.26r4/modules/modemconf/wv/wvmodemscan.h
--- t/linuxconf-1.26r4/modules/modemconf/wv/wvmodemscan.h   Tue Sep 19 
13:53:06 2000
+++ linuxconf-1.26r4/modules/modemconf/wv/wvmodemscan.h Fri Dec 28 08:55:36 2001
@@ -61,7 +61,7 @@
 { return baud; }
 WvString initstr() const;
 
-friend WvModemScanList;
+friend class WvModemScanList;
 
 };
 
diff -ur t/linuxconf-1.26r4/modules/module_apis/devconf_api.h 
linuxconf-1.26r4/modules/module_apis/devconf_api.h
--- t/linuxconf-1.26r4/modules/module_apis/devconf_api.hThu Sep  7 
21:41:31 2000
+++ linuxconf-1.26r4/modules/module_apis/devconf_api.h  Fri Dec 28 08:42:11 2001
@@ -15,12 +15,12 @@
DEVCONF_API *tb[])
 {
return module_get_apis (DEVCONF_API_KEY,DEVCONF_API_REV
-   ,client,(void*[])tb);
+   ,client,(void**)tb);
 }
 
 inline void devconf_apis_end(DEVCONF_API *apis[], int nbapis)
 {
-   module_release_apis (DEVCONF_API_KEY,(void*[])apis,nbapis);
+   module_release_apis (DEVCONF_API_KEY,(void**)apis,nbapis);
 }
 
 inline bool devconf_api_available(const char *client)
diff -ur t/linuxconf-1.26r4/modules/module_apis/fwinfo_api.h 
linuxconf-1.26r4/modules/modu

Bug#124305: marked as done (wordinspect: override disparity)

2001-12-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Dec 2001 15:12:38 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#124305: fixed in wordinspect 0.1a-8
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; 17 Dec 2001 06:25:23 +
>From [EMAIL PROTECTED] Mon Dec 17 00:25:22 2001
Return-path: <[EMAIL PROTECTED]>
Received: from jagor.srce.hr [161.53.2.130] (root)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16FrDG-00010m-00; Mon, 17 Dec 2001 00:25:22 -0600
Received: from fuzz (asy196.cmu.carnet.hr [193.198.128.204])
by jagor.srce.hr (8.9.3/8.9.3) with ESMTP id HAA06867
for <[EMAIL PROTECTED]>; Mon, 17 Dec 2001 07:22:33 +0100 (MET)
Received: from mvela by fuzz with local (Exim 3.33 #1 (Debian))
id 16FrNy-K1-00
for <[EMAIL PROTECTED]>; Mon, 17 Dec 2001 07:36:26 +0100
From: Matej Vela <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: wordinspect: override disparity
References: <[EMAIL PROTECTED]>
Date: 17 Dec 2001 07:36:25 +0100
In-Reply-To: <[EMAIL PROTECTED]>
Message-ID: <[EMAIL PROTECTED]>
Lines: 11
User-Agent: Gnus/5.09 (Gnus v5.9.0) Emacs/21.1
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Sender: Matej Vela <[EMAIL PROTECTED]>
Delivered-To: [EMAIL PROTECTED]

Package: wordinspect
Version: 0.1a-7
Severity: minor

wordinspect's priority should be updated to extra as listed in the
override file.


Thanks,

Matej

---
Received: (at 124305-close) by bugs.debian.org; 28 Dec 2001 20:27:18 +
>From [EMAIL PROTECTED] Fri Dec 28 14:27:18 2001
Return-path: <[EMAIL PROTECTED]>
Received: from auric.debian.org [206.246.226.45] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16K3b3-0006HG-00; Fri, 28 Dec 2001 14:27:18 -0600
Received: from troup by auric.debian.org with local (Exim 3.12 1 (Debian))
id 16K3Ms-0002hI-00; Fri, 28 Dec 2001 15:12:38 -0500
From: Martin Schulze <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.66 $
Subject: Bug#124305: fixed in wordinspect 0.1a-8
Message-Id: <[EMAIL PROTECTED]>
Sender: James Troup <[EMAIL PROTECTED]>
Date: Fri, 28 Dec 2001 15:12:38 -0500
Delivered-To: [EMAIL PROTECTED]

We believe that the bug you reported is fixed in the latest version of
wordinspect, which has been installed in the Debian FTP archive:

wordinspect_0.1a-8.diff.gz
  to pool/main/w/wordinspect/wordinspect_0.1a-8.diff.gz
wordinspect_0.1a-8.dsc
  to pool/main/w/wordinspect/wordinspect_0.1a-8.dsc
wordinspect_0.1a-8_i386.deb
  to pool/main/w/wordinspect/wordinspect_0.1a-8_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.
Martin Schulze <[EMAIL PROTECTED]> (supplier of updated wordinspect 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, 28 Dec 2001 20:22:33 +0100
Source: wordinspect
Binary: wordinspect
Architecture: source i386
Version: 0.1a-8
Distribution: unstable
Urgency: low
Maintainer: Martin Schulze <[EMAIL PROTECTED]>
Changed-By: Martin Schulze <[EMAIL PROTECTED]>
Description: 
 wordinspect - GTK-based Dictionary Client
Closes: 105356 124094 124305
Changes: 
 wordinspect (0.1a-8) unstable; urgency=low
 .
   * New err... old maintainer (closes: Bug#105356)
   * Used new Joey-style debian/rules, hence reverted capitalization of
 doc files
   * Re-added support for DEB_BUILD_OPTIONS
   * Removed superflous TODO.Debian (closes: Bug#124094)
   * Fixed override disparity (closes: Bug#124305)
Files: 
 ce79c958158567efe3691706c6c92794 609 text extra wordinspect_0.1a-8.dsc
 e92a59688b3b6e9189a6540ff7266563 35093 text extra wordinspect_0.1a-8.diff.gz
 60829fc138b05d795ebb57baa462dc3c 20484 text extra wordinspect_0.1a-8_i386.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.0.6 (GNU/Linux)
Comment: For info see http://www.gnupg.org

iD8DBQE8LMgdW5ql+IAeqTIRApXgAJwOz6ldI/00ld3ckYhCCTS1aaivkwCgqf/+
M0uJhaeJ9eXf1A1CU9ZhjTs=
=E7Hq
-END PGP SIGNATURE-



Bug#124094: marked as done (Dupe in /usr/share/doc/wordinspect/)

2001-12-28 Thread Debian Bug Tracking System
Your message dated Fri, 28 Dec 2001 15:12:38 -0500
with message-id <[EMAIL PROTECTED]>
and subject line Bug#124094: fixed in wordinspect 0.1a-8
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 Dec 2001 15:22:50 +
>From [EMAIL PROTECTED] Sat Dec 15 09:22:50 2001
Return-path: <[EMAIL PROTECTED]>
Received: from kuolema.infodrom.north.de [217.89.86.35] (postfix)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16FGeI-Es-00; Sat, 15 Dec 2001 09:22:50 -0600
Received: from finlandia.infodrom.north.de (finlandia.Infodrom.North.DE 
[217.89.86.34])
by kuolema.infodrom.north.de (Postfix) with ESMTP id DDE974D73D
for <[EMAIL PROTECTED]>; Sat, 15 Dec 2001 16:21:20 +0100 (CET)
Received: by finlandia.infodrom.north.de (Postfix, from userid 501)
id 1D1C210134; Sat, 15 Dec 2001 16:21:20 +0100 (CET)
To: [EMAIL PROTECTED]
X-Header: dpkg-bug-report 0.1a-7
Subject: Dupe in /usr/share/doc/wordinspect/
Reply-To: [EMAIL PROTECTED] (Martin Schulze)
Message-Id: <[EMAIL PROTECTED]>
Date: Sat, 15 Dec 2001 16:21:20 +0100 (CET)
From: [EMAIL PROTECTED] (Martin Schulze)
Delivered-To: [EMAIL PROTECTED]

Package: wordinspect
Version: 0.1a-7


This doesn't look sane:

--- /usr/share/doc/wordinspect/TODO Sat Sep 19 05:31:09 1998
+++ /usr/share/doc/wordinspect/TODO.Debian  Sun Dec  9 19:51:33 2001
@@ -32,5 +32,3 @@
 
 Get rid of the horrible hacks my early beta of Glade makes me put in.
 Warnings, too.
-
-

Regards,

Joey

PS: I'm offering to take back maintainership of this package if the QA
team doesn't object.

-- 
The good thing about standards is that there are so many to choose from.
-- Andrew S. Tanenbaum

---
Received: (at 124094-close) by bugs.debian.org; 28 Dec 2001 20:27:03 +
>From [EMAIL PROTECTED] Fri Dec 28 14:27:03 2001
Return-path: <[EMAIL PROTECTED]>
Received: from auric.debian.org [206.246.226.45] (mail)
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 16K3ap-0006BF-00; Fri, 28 Dec 2001 14:27:03 -0600
Received: from troup by auric.debian.org with local (Exim 3.12 1 (Debian))
id 16K3Ms-0002hF-00; Fri, 28 Dec 2001 15:12:38 -0500
From: Martin Schulze <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.66 $
Subject: Bug#124094: fixed in wordinspect 0.1a-8
Message-Id: <[EMAIL PROTECTED]>
Sender: James Troup <[EMAIL PROTECTED]>
Date: Fri, 28 Dec 2001 15:12:38 -0500
Delivered-To: [EMAIL PROTECTED]

We believe that the bug you reported is fixed in the latest version of
wordinspect, which has been installed in the Debian FTP archive:

wordinspect_0.1a-8.diff.gz
  to pool/main/w/wordinspect/wordinspect_0.1a-8.diff.gz
wordinspect_0.1a-8.dsc
  to pool/main/w/wordinspect/wordinspect_0.1a-8.dsc
wordinspect_0.1a-8_i386.deb
  to pool/main/w/wordinspect/wordinspect_0.1a-8_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.
Martin Schulze <[EMAIL PROTECTED]> (supplier of updated wordinspect 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, 28 Dec 2001 20:22:33 +0100
Source: wordinspect
Binary: wordinspect
Architecture: source i386
Version: 0.1a-8
Distribution: unstable
Urgency: low
Maintainer: Martin Schulze <[EMAIL PROTECTED]>
Changed-By: Martin Schulze <[EMAIL PROTECTED]>
Description: 
 wordinspect - GTK-based Dictionary Client
Closes: 105356 124094 124305
Changes: 
 wordinspect (0.1a-8) unstable; urgency=low
 .
   * New err... old maintainer (closes: Bug#105356)
   * Used new Joey-style debian/rules, hence reverted capitalization of
 doc files
   * Re-added support for DEB_BUILD_OPTIONS
   * Removed superflous TODO.Debian (closes: Bug#124094)
   * Fixed override disparity (closes: Bug#124305)
Files: 
 ce79c958158567efe3691706c6c92794 609 text extra wordinspect_0.1a-8.dsc
 e92a59688b3b6e9189a6540ff7266563 35093 text extra wordinspect_0.1a-8.diff.gz
 60829fc138b05d795ebb57baa462dc3c 20484 text extra wordinspect_0.1a-8_i386.deb

-BEGIN PGP SIGNATURE