Bug#255402: marked as done (Multiple security vulnerabilities: CAN-2004-0393, CAN-2004-0454 (DSA 524))

2005-08-13 Thread Debian Bug Tracking System
Your message dated Fri, 12 Aug 2005 23:32:05 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#255402: fixed in rlpr 2.05-1
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; 20 Jun 2004 18:08:19 +
From [EMAIL PROTECTED] Sun Jun 20 11:08:19 2004
Return-path: [EMAIL PROTECTED]
Received: from mta11.adelphia.net [68.168.78.205] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bc6jr-0007H5-00; Sun, 20 Jun 2004 11:08:19 -0700
Received: from mizar.alcor.net ([69.167.148.207]) by mta11.adelphia.net
  (InterMail vM.5.01.06.08 201-253-122-130-108-20031117) with ESMTP
  id [EMAIL PROTECTED]
  for [EMAIL PROTECTED]; Sun, 20 Jun 2004 14:07:49 -0400
Received: from mdz by mizar.alcor.net with local (Exim 4.34)
id 1Bc6jM-0004d8-ME
for [EMAIL PROTECTED]; Sun, 20 Jun 2004 11:07:48 -0700
Date: Sun, 20 Jun 2004 11:07:48 -0700
From: Matt Zimmerman [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: Multiple security vulnerabilities: CAN-2004-0393, CAN-2004-0454 (DSA 
524)
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary=vkogqOf2sHV7VnPd
Content-Disposition: inline
X-Reportbug-Version: 2.61
User-Agent: Mutt/1.5.6+20040523i
Sender: Matt Zimmerman [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: 


--vkogqOf2sHV7VnPd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: rlpr
Version: 2.02-7
Severity: grave
Tags: security

A Debian security advisory was recently released for rlpr.  Please merge
these fixes into unstable.

-- 
 - mdz

--vkogqOf2sHV7VnPd
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; 
filename=rlpr-CAN-2004-0393-CAN-2004-0454.diff

diff -u rlpr-2.02/debian/changelog rlpr-2.02/debian/changelog
--- rlpr-2.02/debian/changelog
+++ rlpr-2.02/debian/changelog
@@ -1,3 +1,11 @@
+rlpr (2.02-7woody1) stable-security; urgency=high
+
+  * Non-maintainer upload by the Security Team
+  * Fix format string vulnerability in msg() (CAN-2004-0393)
+  * Fix buffer overflow vulnerability in msg() (CAN-2004-0454)
+
+ -- Matt Zimmerman [EMAIL PROTECTED]  Sat, 12 Jun 2004 13:00:53 -0700
+
 rlpr (2.02-7) unstable; urgency=medium
 
   * Modified postinst to ignore an existing /usr/doc/$package directory.
only in patch2:
unchanged:
--- rlpr-2.02.orig/src/msg.c
+++ rlpr-2.02/src/msg.c
@@ -159,22 +159,15 @@
return;
 
 } else if (rlpr_msg-use_syslog) {
-
-   /*
-* sigh.  this really sucks, but what can we do: vsnprintf()
-* isn't yet standard enough to rely on.  maybe if i can find
-* a portable implementation lying around somewhere i can make
-* a ../lib/vsnprintf.c
-*/
-
charbuf[BUFSIZ];
 
-   vsprintf(buf, _(format), ap);
-
-   if (errno != 0)
-   strcat(buf, : %m);
+   if (errno != 0) {
+   snprintf(buf, sizeof(buf), %s: %%m, _(format));
+   } else {
+snprintf(buf, sizeof(buf), %s, _(format));
+   }
 
-   syslog(rlpr_msg-syslog_prio[level], buf);
+   vsyslog(rlpr_msg-syslog_prio[level], buf, ap);
 
 } else {
 

--vkogqOf2sHV7VnPd--

---
Received: (at 255402-close) by bugs.debian.org; 13 Aug 2005 06:38:30 +
From [EMAIL PROTECTED] Fri Aug 12 23:38:30 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E3pYr-LZ-00; Fri, 12 Aug 2005 23:32:05 -0700
From: Ari Pollak [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#255402: fixed in rlpr 2.05-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 12 Aug 2005 23:32:05 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: rlpr
Source-Version: 2.05-1

We believe that the bug you reported is fixed in the latest version of
rlpr, which is due to be 

Bug#322869: fprobe: allocates all available memory

2005-08-13 Thread Florian Weimer
Package: fprobe
Version: 0.4-4
Severity: grave
Justification: renders package unusable

Upon start, fprobe allocates all available memory and is killed by the
OOM handler.  (This happens with very light network traffic.)

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (800, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13-rc6fw
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


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



Processed: Re: Bug#285371: exim4-daemon-heavy: gnutls-parms not recreated on startup, takes 20min after first tls conn

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 285371 pending
Bug#285371: exim4-daemon-heavy: gnutls-params not being re-created and hangs 
STARTTLS connections
Tags were: sarge help
Tags added: pending

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#285371: exim4-daemon-heavy: gnutls-parms not recreated on startup, takes 20min after first tls conn

2005-08-13 Thread Andreas Metzler
tags 285371 pending
thanks
On 2005-08-12 tom schorpp [EMAIL PROTECTED] wrote:
[...]
 maybe params creation takes too long at tls-connection, better
 recreate at startup of daemon.
[...]

Something like this has been done in SVN:
-
  * Use certtool from gnutls-bin in cron.daily to re-generate gnutls-params
instead of only removing the file and letting exim4 re-generate it at SMTP
time after receiving STARTTLS. The maximum runtime of certtool is limited
to 2*1800 seconds per default by using timeout.pl by Piotr Roszatycki
(checked and beautified by Marc 'HE' Brockschmidt). Add gnutls-bin to
exim4-base' Suggests. (am) Closes: #285371

 cu andreas
-- 
See, I told you they'd listen to Reason, [SPOILER] Svfurlr fnlf,
fuhggvat qbja gur juveyvat tha.
Neal Stephenson in Snow Crash
   http://downhill.aus.cc/


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



Processed: tagging 266645

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.4
 tags 266645 pending
Bug#266645: clanlib: FTBFS with gcc-3.4: class FileConfig::ConfigGroup 
redeclared with different access
Tags were: patch
Tags added: pending


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: non-free doc retitling

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 retitle 193787 [NONFREE-DOC] GCC documentation is non-free
Bug#193787: GCC documentation is non-free
Changed Bug title.

 retitle 207549 [NONFREE-DOC] copyright status of some documents unclear
Bug#207549: doc-debian: copyright status of some documents unclear
Changed Bug title.

 retitle 266405 [NONFREE-DOC] lg-issue10 is not DFSG free
Bug#266405: lg-issue10 is not DFSG free
Changed Bug title.

 retitle 266406 [NONFREE-DOC] lg-issue100 is not DFSG free
Bug#266406: lg-issue100 is not DFSG free
Changed Bug title.

 retitle 266413 [NONFREE-DOC] lg-issue101 is not DFSG free
Bug#266413: lg-issue101 is not DFSG free
Changed Bug title.

 retitle 266411 [NONFREE-DOC] lg-issue102 is not DFSG free
Bug#266411: lg-issue102 is not DFSG free
Changed Bug title.

 retitle 266412 [NONFREE-DOC] lg-issue103 is not DFSG free
Bug#266412: lg-issue103 is not DFSG free
Changed Bug title.

 retitle 266408 [NONFREE-DOC] lg-issue97 is not DFSG free
Bug#266408: lg-issue97 is not DFSG free
Changed Bug title.

 retitle 266409 [NONFREE-DOC] lg-issue98 is not DFSG free
Bug#266409: lg-issue98 is not DFSG free
Changed Bug title.

 retitle 266427 [NONFREE-DOC] lg-issue99 is not DFSG free
Bug#266427: lg-issue99 is not DFSG free
Changed Bug title.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322671: libfwbuilder: rebuild needed for C++ ABI transition (NMU patch attached)

2005-08-13 Thread Steve Langasek
On Fri, Aug 12, 2005 at 01:05:55PM -0700, Jeremy T. Bouse wrote:
Looks fine to me... I will be sure to include it and #322690 into 
 the 2.0.8 packaging I've been currently working on. Can you please 
 forward details on how/why regarding the renaming for my information as 
 I'm obviously behind on the info relating to the ABI changes.

That would be this announcement from last month:
http://lists.debian.org/debian-devel-announce/2005/07/msg1.html

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Processed: Re: Bug#322859: FTBFS: Cannot find apr.h

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 322859 fixed-upstream
Bug#322859: FTBFS: Cannot find apr.h
There were no tags set.
Tags added: fixed-upstream

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322352: [Powerdns-debian] Bug#322352: pdns and pdns-doc both contain /usr/share/doc-base/pdns (sarge security update version)

2005-08-13 Thread Matthijs Mohlmann
Hi,

Martin Schulze wrote:
 Matthijs Mohlmann wrote:
 
Hi,

Daniel Dickinson wrote:

Package: pdns
Version: 2.9.17-13sarge1
Severity: serious
Justification: Policy 6.5.4

Both pdns-doc_2.9.17-13sarge1_all.deb and pdns_2.9.17-13sarge1_all.deb 
contain /usr/share/doc-base/pdns.  This prevents whichever of these 
packages is second in the installation order from being installed.  Plus 
it is a violation of Debian Policy 6.5.4


You are right, the bug exist in the current security release of sarge,
but I don't know how it comes there. I've build it twice by myself and I
couldn't find the bug.
 
 
 Please retry in the sarge chroot on gluck or escher.  I've just
 rebuilt it in both environments and both times the pdns_*.deb
 contained both /usr/share/doc/pdns and /usr/share/doc-base/pdns,
 while the package in sarge does not.
 
 Looking at the file contents, it shouldn't be an architecture.deb
 but an all.deb, btw., but that's not an issue we need to fix now.
 
True. Fixed for the next upload.

 
Martin Schulze:
How did you build the package ? (I'm pretty curious right now because I
can't reproduce it)
 
 
 I could send you the build log, but since it can still be reproduced,
 just build it on your own.
 
Please send me the build logs, I don't have access to the chroots of
gluck or escher. My mentor is on vacation so i can't ask him at this moment.

 When you know the reason why, please come back to me so an
 update could go in via proposed-updates.
 
 Regards,
 
   Joey
 

Regards,

Matthijs Mohlmann


signature.asc
Description: OpenPGP digital signature


Bug#322859: FTBFS: Cannot find apr.h

2005-08-13 Thread Marc 'HE' Brockschmidt
tags 322859 fixed-upstream
thanks

Matt Kraai [EMAIL PROTECTED] writes:
 Package: libembperl-perl
 Version: 2.0rc3-1
 Severity: serious

 libembperl-perl fails to build because it cannot find apr.h:
[...]

This problem is caused by a radical API change in libapach2-mod-perl2
1.999_22. Upstream has already reacted, so packaging the new 2.0rc5
version should fix this FTBFS.

Marc
-- 
BOFH #276:
U.S. Postal Service


pgpT6pcQVdr0q.pgp
Description: PGP signature


Bug#322706: marked as done (/usr/bin/ghemical: Missing dependency on lapack3 and refblas3)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 11:29:12 +0200 (METDST)
with message-id [EMAIL PROTECTED]
and subject line Bug#322706: /usr/bin/ghemical: Missing dependency on lapack3 
and refblas3
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; 12 Aug 2005 10:40:26 +
From [EMAIL PROTECTED] Fri Aug 12 03:40:26 2005
Return-path: [EMAIL PROTECTED]
Received: from kalium.kiku.dk [130.225.100.59] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3Wxe-0005Nr-00; Fri, 12 Aug 2005 03:40:26 -0700
Received: from positron.kiku.dk ([130.225.100.61])
by kalium.kiku.dk with esmtp (Exim 3.36 #2)
id 1E3WxU-0005Ep-00; Fri, 12 Aug 2005 12:40:16 +0200
Received: from moffe by positron.kiku.dk with local (Exim 4.52)
id 1E3WxT-00041g-Mq; Fri, 12 Aug 2005 12:40:15 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: =?iso-8859-1?q?Rasmus_B=F8g_Hansen?= [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: /usr/bin/ghemical: Missing dependency on lapack3 and refblas3
X-Mailer: reportbug 3.15
Date: Fri, 12 Aug 2005 12:40:14 +0200
Message-Id: [EMAIL PROTECTED]
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: ghemical
Version: 1.51-1
Severity: grave
File: /usr/bin/ghemical
Justification: renders package unusable

Ghemical is missing dependency on lapack3 and refblas3:

[EMAIL PROTECTED]:~# ldd /usr/bin/ghemical
[...]
liblapack.so.3 = not found
libblas.so.3 = not found
[...]

apt-get install lapack3 refblas3 installs the missing packages after
which ghemical works fine.

Regards
/Rasmus

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.3
Locale: LANG=da_DK.ISO8859-1, LC_CTYPE=da_DK.ISO8859-1 (charmap=ISO-8859-1) 
(ignored: LC_ALL set to da_DK.ISO8859-1)

Versions of packages ghemical depends on:
ii  atlas3-base [liblapack.so 3.6.0-19   Automatically Tuned Linear Algebra
ii  freeglut3 2.2.0-8.1  OpenGL Utility Toolkit
ii  gdk-imlib11.9.14-16.2imaging library for use with gtk (
ii  gtkglarea51.2.3-2Gimp Toolkit OpenGL area widget sh
ii  libart2   1.4.2-20   The GNOME canvas widget - runtime 
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libdb33.2.9-22   Berkeley v3 Database Libraries [ru
ii  libesd0   0.2.36-1   Enlightened Sound Daemon - Shared 
ii  libg2c0   1:3.4.4-5  Runtime library for GNU Fortran 77
ii  libgcc1   1:4.0.1-4  GCC support library
ii  libghemical0  1.90-1 Molecular Modelling Library
ii  libglade-gnome0   1:0.17-3   Library to load .glade files at ru
ii  libglade0 1:0.17-3   Library to load .glade files at ru
ii  libglib1.21.2.10-10  The GLib library of C routines
ii  libglu1-xorg [libglu1]6.8.2.dfsg.1-5 Mesa OpenGL utility library [X.Org
ii  libgnome321.4.2-20   The GNOME libraries
ii  libgnomesupport0  1.4.2-20   The GNOME libraries (Support libra
ii  libgnomeui32  1.4.2-20   The GNOME libraries (User Interfac
ii  libgtk1.2 1.2.10-17  The GIMP Toolkit set of widgets fo
ii  libice6   6.8.2.dfsg.1-5 Inter-Client Exchange library
ii  libopenbabel0c2   1.100.2-3  Convert and manipulate chemical da
ii  libsc6c2  2.2.3-2The Scientific Computing Toolkit
ii  libsm66.8.2.dfsg.1-5 X Window System Session Management
ii  libstdc++64.0.1-4The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-5 X Window System protocol client li
ii  libxext6  6.8.2.dfsg.1-5 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-5 X Window System Input extension li
ii  libxml1  

Bug#322869: fprobe: allocates all available memory

2005-08-13 Thread Radu Spineanu
Hello
Florian Weimer wrote:
 Upon start, fprobe allocates all available memory and is killed by the
 OOM handler.  (This happens with very light network traffic.)
 

I can't seem to reproduce this. Could you give me some more information?
How you ran fprobe, under what traffic circumstances etc.

Also i would suggest you use fprobe-ng. The last version of fprobe was
released in March of 2003, and from then upstream seemed reluctant to
fix whatever bugs i found.

On long term i would like to remove this package from main.

Thanks,
Radu



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



Bug#322780: marked as done (FTBFS with gcc4.0)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 02:32:10 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#322780: fixed in widelands build9-7
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; 12 Aug 2005 20:12:31 +
From [EMAIL PROTECTED] Fri Aug 12 13:12:31 2005
Return-path: [EMAIL PROTECTED]
Received: from imag.imag.fr [129.88.30.1] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3ftG-0007ws-00; Fri, 12 Aug 2005 13:12:30 -0700
Received: from pamunkey.imag.fr (pamunkey.imag.fr [129.88.69.8])
by imag.imag.fr (8.13.0/8.13.0) with ESMTP id j7CKCHVR027198
(version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO)
for [EMAIL PROTECTED]; Fri, 12 Aug 2005 22:12:17 +0200 (CEST)
Received: from localhost.localdomain (navajo.imag.fr [129.88.69.1])
by pamunkey.imag.fr (8.13.4/8.13.4/ImagV2.1) with ESMTP id 
j7CKCULu023468
for [EMAIL PROTECTED]; Fri, 12 Aug 2005 22:12:30 +0200
Received: by localhost.localdomain (Postfix, from userid 1000)
id BE5D04FA48; Fri, 12 Aug 2005 22:13:22 +0200 (CEST)
Date: Fri, 12 Aug 2005 22:13:22 +0200
From: Martin Quinson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS with gcc4.0
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=2DT8m24oj8Onh3Jp
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040907i
X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-1.6 
(imag.imag.fr [129.88.30.1]); Fri, 12 Aug 2005 22:12:23 +0200 (CEST)
X-IMAG-MailScanner: Found to be clean
X-IMAG-MailScanner-Information: Please contact the ISP for more information
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02


--2DT8m24oj8Onh3Jp
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

Package: widelands
Severity: critical
Version: build9-6

Hello,

I just tried to transition this package to gcc4, and it failed to build. So,
I open this bug to prevent other to give it a try.

That's something I need to sort out with upstream (I'm widelands
maintainer), and I'm hoping it may be fixed in next upstream version, due
some day this summer.

Bye, Mt.

--2DT8m24oj8Onh3Jp
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFC/QLhIiC/MeFF8zQRAvDWAJ9P48lCNMhuKXS6HSsArBf5BlCuXQCgoxQF
FpG46FZ7i4F7JK8DhbWurnI=
=0iq0
-END PGP SIGNATURE-

--2DT8m24oj8Onh3Jp--

---
Received: (at 322780-close) by bugs.debian.org; 13 Aug 2005 09:38:39 +
From [EMAIL PROTECTED] Sat Aug 13 02:38:39 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E3sN8-0003ha-00; Sat, 13 Aug 2005 02:32:10 -0700
From: Martin Quinson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#322780: fixed in widelands build9-7
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 02:32:10 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: widelands
Source-Version: build9-7

We believe that the bug you reported is fixed in the latest version of
widelands, which is due to be installed in the Debian FTP archive:

widelands-data_build9-7_all.deb
  to pool/main/w/widelands/widelands-data_build9-7_all.deb
widelands_build9-7.diff.gz
  to pool/main/w/widelands/widelands_build9-7.diff.gz
widelands_build9-7.dsc
  to pool/main/w/widelands/widelands_build9-7.dsc
widelands_build9-7_i386.deb
  to pool/main/w/widelands/widelands_build9-7_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 

Bug#322884: cgilib FTBFS (at least with glibc-2.3.5)

2005-08-13 Thread Matthias Klose
Package: cgilib
Version: 0.5-4
Severity: serious

Package needs a recompilation, I'm preparing a NMU.

 char cgiInit ();
 int
 main ()
 {
 cgiInit ();
   ;
   return 0;
 }


configure:25719: gcc -o conftest -O2 -I/usr/include/tcl8.4  -fPIC -DPIC  
-I/usr/include/libart-2.0 -I/usr/include/freetype2  conftest.c -lcgi  
-lfreetype -lpng -lz -lart_lgpl_2 -lm  5
/usr/lib/gcc/i486-linux-gnu/4.0.2/../../../../lib/libcgi.a(cgi.o): In function 
`cgiDecodeString':
: undefined reference to `__ctype_b'
/usr/lib/gcc/i486-linux-gnu/4.0.2/../../../../lib/libcgi.a(cgi.o): In function 
`cgiDecodeString':
: undefined reference to `__ctype_toupper'
/usr/lib/gcc/i486-linux-gnu/4.0.2/../../../../lib/libcgi.a(cgi.o): In function 
`cgiDecodeString':
: undefined reference to `__ctype_b'
/usr/lib/gcc/i486-linux-gnu/4.0.2/../../../../lib/libcgi.a(cgi.o): In function 
`cgiDecodeString':
: undefined reference to `__ctype_toupper'
collect2: ld returned 1 exit status


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



Bug#297096: marked as done (adonthell: FTBFS: Link errors)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 03:02:05 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#297096: fixed in adonthell 0.3.4.cvs.20050813-1
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 Feb 2005 03:17:47 +
From [EMAIL PROTECTED] Sat Feb 26 19:17:47 2005
Return-path: [EMAIL PROTECTED]
Received: from blount.mail.mindspring.net [207.69.200.226] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1D5EwF-0001qR-00; Sat, 26 Feb 2005 19:17:47 -0800
Received: from user-119bq03.biz.mindspring.com ([66.149.232.3] 
helo=frobnitz.homelinux.net)
by blount.mail.mindspring.net with esmtp (Exim 3.33 #1)
id 1D5EwE-0006Gu-00
for [EMAIL PROTECTED]; Sat, 26 Feb 2005 22:17:46 -0500
Received: from daniel by frobnitz.homelinux.net with local (Exim 4.44)
id 1D5EwD-00054y-56
for [EMAIL PROTECTED]; Sat, 26 Feb 2005 19:17:45 -0800
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: adonthell: FTBFS: Link errors
From: Daniel Schepler [EMAIL PROTECTED]
Date: Sat, 26 Feb 2005 19:17:44 -0800
Message-ID: [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
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: adonthell
Severity: serious
Version: 0.3.3.cvs.20031022-2

From my build log, using pbuilder in an i386 chroot:

...
/bin/sh ../libtool --mode=link i386-linux-g++  -Wall -fno-exceptions 
-DSWIG_GLOBAL -DDATA_DIR=\/usr/share/games/adonthell\ -O2   -o adonthell  
main.o libadonthell.a -L/usr/lib -lSDL -lpthread -lvorbisfile -L/usr/lib 
-lvorbis -lm -Wl,-E -L/usr/lib/python2.3/config -lpython2.3 -ldl -lpthread 
-lutil -lz 
mkdir .libs
i386-linux-g++ -Wall -fno-exceptions -DSWIG_GLOBAL 
-DDATA_DIR=\/usr/share/games/adonthell\ -O2 -o adonthell main.o -Wl,-E  
libadonthell.a -L/usr/lib /usr/lib/libSDL.so /usr/lib/libartsc.so 
-L/usr/X11R6/lib -L/usr/share/qt3/lib /usr/lib/libgmodule-2.0.so 
/usr/lib/libgthread-2.0.so /usr/lib/libglib-2.0.so /usr/lib/libesd.so 
/usr/lib/libaudiofile.so -laudio -lXt -lX11 -lXext -lvga /usr/lib/libaa.so 
-lncurses -lslang /usr/lib/libasound.so /usr/lib/libvorbisfile.so 
/usr/lib/libvorbis.so /usr/lib/libogg.so -lm -L/usr/lib/python2.3/config 
-lpython2.3 -ldl -lpthread -lutil -lz
libadonthell.a(item_base.o)(.text+0x76c): In function 
`item_base::combine(item_base*)':
: undefined reference to `SWIG_Python_TypeQuery'
libadonthell.a(item_base.o)(.text+0x788): In function 
`item_base::combine(item_base*)':
: undefined reference to `SWIG_Python_ConvertPtr'
collect2: ld returned 1 exit status
make[4]: *** [adonthell] Error 1
make[4]: Leaving directory `/tmp/buildd/adonthell-0.3.3.cvs.20031022/src'
make[3]: *** [all-recursive] Error 1
make[3]: Leaving directory `/tmp/buildd/adonthell-0.3.3.cvs.20031022/src'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/adonthell-0.3.3.cvs.20031022'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/tmp/buildd/adonthell-0.3.3.cvs.20031022'
make: *** [build-stamp] Error 2

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.9-9-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)

-- 
Daniel Schepler  Please don't disillusion me.  I
[EMAIL PROTECTED]haven't had breakfast yet.
 -- Orson Scott Card

---
Received: (at 297096-close) by bugs.debian.org; 13 Aug 2005 10:08:58 +
From [EMAIL PROTECTED] Sat Aug 13 03:08:58 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E3sq5-00026v-00; Sat, 13 Aug 2005 03:02:05 -0700
From: Gordon Fraser [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#297096: fixed in adonthell 0.3.4.cvs.20050813-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 03:02:05 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER

Bug#303326: file conflicts in libcgi-dev cgilib

2005-08-13 Thread Matthias Klose
I'm adding a Conflicts: line, both packages are development packages.


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



Bug#322535: Patch

2005-08-13 Thread Ulf Harnhammar
If you don't want to upgrade to 2.3.7, which is unstable, you
can use our unofficial patch:

  o  http://www.sitic.se/dokument/evolution.formatstring.patch

// Ulf



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



Bug#258962: marked as done (ipchains: FTBFS with gcc-3.4: label at end of compound statement)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 04:02:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#258962: fixed in ipchains 1.3.10-16
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; 12 Jul 2004 12:31:18 +
From [EMAIL PROTECTED] Mon Jul 12 05:31:18 2004
Return-path: [EMAIL PROTECTED]
Received: from c186225.adsl.hansenet.de (localhost) [213.39.186.225] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Bjzxm-0001q4-00; Mon, 12 Jul 2004 05:31:18 -0700
Received: from aj by localhost with local (Exim 4.34)
id 1Bjzxk-00074U-Kr; Mon, 12 Jul 2004 14:31:16 +0200
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: ipchains: FTBFS with gcc-3.4: label at end of compound statement
Message-Id: [EMAIL PROTECTED]
Date: Mon, 12 Jul 2004 14:31:16 +0200
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=-7.0 required=4.0 tests=BAYES_01,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: ipchains
Severity: normal
Tags: patch

When building 'ipchains' with gcc-3.4 I get the following error:

make[2]: Entering directory `/ipchains-1.3.10/libipfwc'
gcc -Wall -Wunused -O2-c -o libipfwc.o libipfwc.c
libipfwc.c: In function `ipfwc_strerror':
libipfwc.c:504: error: label at end of compound statement
make[2]: *** [libipfwc.o] Error 1
make[2]: Leaving directory `/ipchains-1.3.10/libipfwc'
make[1]: *** [libipfwc/libipfwc.a] Error 2
make[1]: Leaving directory `/ipchains-1.3.10'
make: *** [build-stamp] Error 2

With the attached patch 'ipchains' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/ipchains-1.3.10/libipfwc/libipfwc.c ./libipfwc/libipfwc.c
--- ../tmp-orig/ipchains-1.3.10/libipfwc/libipfwc.c 1999-03-23 
04:41:17.0 +0100
+++ ./libipfwc/libipfwc.c   2004-07-12 12:36:12.980655598 +0200
@@ -500,7 +500,6 @@
doesn't support
transparent proxying?));
break;
-   default:
}
return message;
}

---
Received: (at 258962-close) by bugs.debian.org; 13 Aug 2005 11:08:44 +
From [EMAIL PROTECTED] Sat Aug 13 04:08:44 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E3tmA-0004mD-00; Sat, 13 Aug 2005 04:02:06 -0700
From: LENART Janos [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#258962: fixed in ipchains 1.3.10-16
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 04:02:06 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 3

Source: ipchains
Source-Version: 1.3.10-16

We believe that the bug you reported is fixed in the latest version of
ipchains, which is due to be installed in the Debian FTP archive:

ipchains_1.3.10-16.diff.gz
  to pool/main/i/ipchains/ipchains_1.3.10-16.diff.gz
ipchains_1.3.10-16.dsc
  to pool/main/i/ipchains/ipchains_1.3.10-16.dsc
ipchains_1.3.10-16_i386.deb
  to pool/main/i/ipchains/ipchains_1.3.10-16_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.
LENART Janos [EMAIL PROTECTED] (supplier of updated ipchains 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: Sat, 13 Aug 2005 12:32:23 +0200
Source: ipchains
Binary: ipchains
Architecture: source i386
Version: 1.3.10-16
Distribution: unstable
Urgency: low

Processed: Fixed in NMU of cgilib 0.5-4.1

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 303326 + fixed
Bug#303326: file conflicts in libcgi-dev cgilib
Tags were: sid
Tags added: fixed

 tag 322884 + fixed
Bug#322884: cgilib FTBFS (at least with glibc-2.3.5)
There were no tags set.
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Fix version tags for #318290

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 found 318290 2.04-dev-1
Bug#318290: libapache2-request-perl: Upload is broken. Only one upload can be 
retrieved
Bug marked as found in version 2.04-dev-1.

 notfound 318290 2.05-dev-1
Bug#318290: libapache2-request-perl: Upload is broken. Only one upload can be 
retrieved
Bug marked as not found in version 2.05-dev-1.

 kthxbye
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322897: azureus: Unusable because of constant segmentation faults

2005-08-13 Thread Max
Package: azureus
Version: 2.3.0.4-1
Severity: grave
Justification: renders package unusable

Azuzeus crashes immediately after start, no GUI window appears or whatever.

$ azureus

Segmentation fault
$

The last thing I see in strace log is

04:39:05 open(/usr/lib/libexpat.so.1, O_RDONLY) = 19
04:39:05 read(19, \177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0\0\1\0\0\0\300\0\0..., 
640) = 640
04:39:05 fstat(19, {st_mode=S_IFREG|0644, st_size=143232, ...}) = 0
04:39:05 mmap(NULL, 1190168, PROT_READ|PROT_EXEC, MAP_PRIVATE|MAP_DENYWRITE, 
19, 0) = 0x2aaafa6ae000
04:39:05 mprotect(0x2aaafa6cc000, 1067288, PROT_NONE) = 0
04:39:05 mmap(0x2aaafa7cc000, 20480, PROT_READ|PROT_WRITE, 
MAP_PRIVATE|MAP_FIXED|MAP_DENYWRITE, 19, 0x1e000) = 0x2aaafa7cc000
04:39:05 close(19)  = 0
04:39:05 munmap(0x2aaaf876d000, 76009)  = 0
04:39:05 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
04:39:05 rt_sigaction(SIGSEGV, {0x2b440ff0, ~[RTMIN RT_1], 
SA_RESTORER|SA_RESTART|SA_SIGINFO, 0x2abcf770}, {0x2b43f560, ~[KILL 
STOP RTMIN RT_1], SA_RESTORER|SA_STACK|SA_RESTART|SA_SIGINFO, 0x2abcf770}, 
8) = 0
04:39:05 write(1, \n, 1)  = 1
04:39:05 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
04:39:05 +++ killed by SIGSEGV +++

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.2.64
Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages azureus depends on:
ii  j2re1.4 [java2-runtime]  1.4.2.02-1  Blackdown Java(TM) 2 Runtime Envir
ii  libcommons-cli-java  1.0-6   API for working with the command l
ii  liblog4j1.2-java 1.2.9-1 Logging library for java
ii  libseda-java 3.0-2   the Staged Event-Driven Architectu
ii  libswt-gtk-3.1-java  3.0+3.1M4-3 Standard Widget Toolkit for GTK Ja
pn  sun-j2sdk1.5 | java-virtual- none  (no description available)

azureus recommends no packages.

-- debconf-show failed


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



Bug#322896: quelcom: FTBFS (amd64): cast from 'qwavsample::sample*' to 'int' loses precision

2005-08-13 Thread Andreas Jochens
Package: quelcom
Version: 0.4.0-8
Severity: serious
Tags: patch

When building 'quelcom' on amd64/unstable,
I get the following error:

g++ -g -DNLS -Wall -fPIC -o qwavsample.o -c qwavsample.cc
qwavsample.cc: In constructor 'qwavsample::qwavsample(qwav*, u_int32_t)':
qwavsample.cc:29: error: cast from 'qwavsample::sample*' to 'int' loses 
precision
qwavsample.cc: In constructor 'qwavsample::qwavsample(char*, u_int32_t, 
u_int32_t)':
qwavsample.cc:66: error: cast from 'qwavsample::sample*' to 'int' loses 
precision
make[2]: *** [qwavsample.o] Error 1

With the attached patch 'quelcom' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN 
../tmp-orig/quelcom-0.4.0/debian/patches/05_wavheaderdump-endian.patch 
./debian/patches/05_wavheaderdump-endian.patch
--- ../tmp-orig/quelcom-0.4.0/debian/patches/05_wavheaderdump-endian.patch  
2005-08-13 11:41:57.0 +
+++ ./debian/patches/05_wavheaderdump-endian.patch  2005-08-13 
11:41:25.0 +
@@ -24,7 +24,7 @@
  continue;
}
  
-+if ((int)f.getMap() % sizeof(u_int32_t) != 0) {
++if ((long)f.getMap() % sizeof(u_int32_t) != 0) {
 +  // should never happen with a mapping at offset 0, but if it 
does,
 +  // we need to catch it rather than tossing subtle memory misread
 +  // bugs.  32-bit alignment is adequate since no integer in a 
WAV header
diff -urN ../tmp-orig/quelcom-0.4.0/debian/patches/06_wavsample-endian.patch 
./debian/patches/06_wavsample-endian.patch
--- ../tmp-orig/quelcom-0.4.0/debian/patches/06_wavsample-endian.patch  
2005-08-13 11:41:57.0 +
+++ ./debian/patches/06_wavsample-endian.patch  2005-08-13 11:41:55.0 
+
@@ -14,7 +14,7 @@
sample = (union sample*) (wav-getMap()+wav-getOffset(s));
  
if (wav-getBitsPerSample()==16) {
-+  if ((int)sample % sizeof(int16_t) != 0)
++  if ((long)sample % sizeof(int16_t) != 0)
 +throw qexception(__PRETTY_FUNCTION__, _(misaligned 16-bit sample));
 +
  if (wav-getChannels()==2) {
@@ -24,7 +24,7 @@
sample = (union sample*) pointer;

if (bitspersample==16) {
-+  if ((int)sample % sizeof(int16_t) != 0)
++  if ((long)sample % sizeof(int16_t) != 0)
 +throw qexception(__PRETTY_FUNCTION__, _(misaligned 16-bit sample));
  if (channels==2) {
type = STEREO16;


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



Bug#317679: Final patch problem fixed

2005-08-13 Thread Roberto Roccatello
I've corrected some mistakes in the previous patch.
The patch in attachment corrects remap_page_range for
newer kernels = 2.6.11 and also fixes pci slot_name
compile error for kernels = 2.6.12.


patch-mga-vid-1.55-1.gz
Description: GNU Zip compressed data


Processed: Merge

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 322882 grave
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Severity set to `grave'.

 merge 322882 320582
Bug#320582: libdjvulibre1: soname of library changed
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Bug#320621: libdjvulibre1 3.5.14-6 changes soname without warning
Bug#320656: evince: libdjvulibre.so.14 has gone
Bug#320794: evince: Evince missing library libdjvulibre.so
Bug#321244: evince does not start, missing dependency on libdjvulibre1.so.14
Bug#321406: evince: libdjvulibre dependency problem
Bug#321509: evince is linked against libdjvulibre.so.14 when libdjvulibre1 
provides libdjvulibre.so.15
Bug#321652: evince: Evince shared library problem
Bug#322600: evince: Application will not start
Merged 320582 320621 320656 320794 321244 321406 321509 321652 322600 322882.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322900: xmms-modplug: uninstallable because of dependence to libmodplug0

2005-08-13 Thread Vasilis Vasaitis
Package: xmms-modplug
Version: 2.05-8
Severity: grave
Justification: renders package unusable


  Hello,

  The xmms-modplug package currently depends on libmodplug0, which
does not exist in the archive any more, due to the ongoing C++
transition. Therefore, it is uninstallable in sid.

  The solution, of course, is to recompile and reupload. I have
already recompiled it (as can be seen by the dependency table below),
and did not encounter any problems. So it should be fairly painless.

Thanks,
Vasilis


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-ck5
Locale: LANG=el_GR.UTF-8, LC_CTYPE=el_GR.UTF-8 (charmap=UTF-8)

Versions of packages xmms-modplug depends on:
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.1-4  GCC support library
ii  libmodplug0c2 1:0.7-4.1  shared libraries for mod music bas
ii  libstdc++64.0.1-4The GNU Standard C++ Library v3

Versions of packages xmms-modplug recommends:
ii  bzip2   1.0.2-8  high-quality block-sorting file co
ii  unzip   5.52-3   De-archiver for .zip files
ii  xmms1.2.10+cvs20050209-2 Versatile X audio player that look

-- no debconf information


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



Bug#322899: sidplay-base: uninstallable because of dependence to libsidplay1-c102

2005-08-13 Thread Vasilis Vasaitis
Package: sidplay-base
Version: 1.0.9-4
Severity: grave
Justification: renders package unusable


  Hello,

  The sidplay-base package currently depends on libsidplay-c102, which
does not exist in the archive any more, due to the ongoing C++
transition. Therefore, it is uninstallable in sid.

  The solution, of course, is to recompile and reupload. I have
already recompiled it (as can be seen by the dependency table below),
and did not encounter any problems. So it should be fairly painless.

Thanks,
Vasilis

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-ck5
Locale: LANG=el_GR.UTF-8, LC_CTYPE=el_GR.UTF-8 (charmap=UTF-8)

Versions of packages sidplay-base depends on:
ii  libc6  2.3.5-3   GNU C Library: Shared libraries an
ii  libgcc11:4.0.1-4 GCC support library
ii  libsidplay11.36.59-3.0.1 SID (MOS 6581) emulation library
ii  libstdc++6 4.0.1-4   The GNU Standard C++ Library v3

sidplay-base recommends no packages.

-- no debconf information


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



Bug#322467: Please Help

2005-08-13 Thread Frank Küster
Martin Schroeder [EMAIL PROTECTED] wrote:

 On 2005-08-12 13:36:32 +0200, Thomas Esser wrote:
  Now I'm wondering which changes you have made to the upstream sources,
  and whether they were on purpose; and whether this makes teTeX
  non-vulnerable, or requires a different patch to fix the vulnerability.
 
 For the reasons given above, I think that teTeX is only affected by a
 subset of all xpdf vulnerabilities.

 We already have xpdf 3.00pl3, so everything till then should be
 fixed. We checked sometime before CAN2005-2097 for effects of the
 known vulnerabilities on pdfTeX and found none.

Have you pdfTeX people ever considered to use libpoppler instead of
copied xpdf code - or are there any plans for a libxpdf?  In this case
it would be much easier, because all distributions would simply provide
a new version of the dynamic library and be done for all xpdf-derived
things. 

 I don't know about 2005-2097, but the worst would be a crash of
 pdfTeX. 

Unfortunately not, the worst is a DOS attack against a pdf server, as
explained in:

http://www.ubuntulinux.org/support/documentation/usn/usn-163-1

,
| xpdf and kpdf did not sufficiently verify the validity of the loca
| table in PDF files, a table that contains glyph description
| information for embedded TrueType fonts. After detecting the broken
| table, xpdf attempted to reconstruct the information in it, which
| caused the generation of a huge temporary file that quickly filled up
| available disk space and rendered the application unresponsive.
`

 Is a patch around?

Yes, as an attachment on http://bugs.debian.org/322467, or at
ftp://ftp.kde.org/pub/kde/security_patches/ where Hilmar took it from. 

Regards, Frank
-- 
Frank Küster
Inst. f. Biochemie der Univ. Zürich
Debian Developer




Processed: my bugs manipulation

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 322899 sid
Bug#322899: sidplay-base: uninstallable because of dependence to 
libsidplay1-c102
There were no tags set.
Tags added: sid

 tags 322900 sid
Bug#322900: xmms-modplug: uninstallable because of dependence to libmodplug0
There were no tags set.
Tags added: sid

 severity 320972 grave
Bug#320972: stalin: please recompile with newer libgc
Severity set to `grave'.

 tags 320972 sid
Bug#320972: stalin: please recompile with newer libgc
There were no tags set.
Tags added: sid

 quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322918: python2.3-pygame: Uninstallable, requires packages that does not exist anymore.

2005-08-13 Thread Vedran Furač
Package: python2.3-pygame
Severity: grave
Justification: renders package unusable

The following packages have unmet dependencies:
  python2.3-pygame: Depends: libsmpeg0 (= 0.4.4-7) but it is not going to be 
installed
E: Broken packages

It should depend on libsmpeg0c2.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (900, 'unstable'), (800, 'experimental'), (99, 'hoary-updates'), 
(99, 'hoary'), (99, 'breezy-updates'), (99, 'breezy')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-nitro5
Locale: LANG=hr_HR.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


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



Processed: downgrading severity since the bug is documented now

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 found 294953 0.6.4-12
Bug#294953: partimage - refuses to restore image on i386 which is created on 
s390
Bug marked as found in version 0.6.4-12.

 severity 294953 important
Bug#294953: partimage - refuses to restore image on i386 which is created on 
s390
Severity set to `important'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: tagging 318012

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.4
  #
 tags 318012 + fixed
Bug#318012: revelation: Can't be installed because of libgmp3 dependency
Tags were: sid
Tags added: fixed


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: retitle 318012 to python-crypto: uninstallable because of libgmp3 dependency

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.4
 retitle 318012 python-crypto: uninstallable because of libgmp3 dependency
Bug#318012: revelation: Can't be installed because of libgmp3 dependency
Changed Bug title.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#318012: Bug 318012: python-crypto is uninstallable

2005-08-13 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

I tagged this bug as fixed since the NMU version 2.0+dp1-2.2 is
installable.

Regards,
  Bastian
- -- 
  ,''`.  Bastian Kleineidam
 : :' :GnuPG Schlüssel
 `. `'gpg --keyserver wwwkeys.pgp.net --recv-keys 32EC6F3E
   `-

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC/g1LeBwlBDLsbz4RAvB4AJ4rXLEgUjYAjBwm3jEbZFWFelYzQQCcCC2z
RJ0CwE7PujLkZ8yhtHPI+CM=
=2Dqp
-END PGP SIGNATURE-


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



Bug#278507: marked as done (Crashes on loading listing)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:20:09 +0100
with message-id [EMAIL PROTECTED]
and subject line Removal of debbuggtk
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 Oct 2004 11:26:09 +
From [EMAIL PROTECTED] Wed Oct 27 04:26:09 2004
Return-path: [EMAIL PROTECTED]
Received: from neckar.trilos.net [62.145.18.234] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CMlwO-0002pn-00; Wed, 27 Oct 2004 04:26:09 -0700
Received: from [195.179.198.163] (helo=rudi.3linden)
by neckar.trilos.net with asmtp (Exim 4.24)
id 1CMlwH-0008KZ-LX
for [EMAIL PROTECTED]; Wed, 27 Oct 2004 13:26:01 +0200
Received: from jr by rudi.3linden with local (Exim 4.34)
id 1CMlwY-0007Cd-Ba
for [EMAIL PROTECTED]; Wed, 27 Oct 2004 13:26:18 +0200
Subject: Crashes on loading listing
From: Johannes Rohr [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-debbuggtk-Version: 0.28
Content-Type: multipart/mixed; boundary==-un6dPm9RtVji+lbyWE/r
Date: Wed, 27 Oct 2004 13:26:13 +0200
Message-Id: [EMAIL PROTECTED]
Mime-Version: 1.0
X-Mailer: Evolution 2.0.2 
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: 


--=-un6dPm9RtVji+lbyWE/r
Content-Type: text/plain
Content-Transfer-Encoding: 7bit

Package: debbuggtk
Version: 0.28-1
Severity: serious
Justification: Renders package unusable

[Probably] since I upgraded to experimental GNOME 2.8, debbuggtk has mostly 
stopped working, i.e. it is no longer capable of downloading listings and bugs. 

When in bugwatcher I click on a listing and choose update listing, an empty 
alert window pops up, containing no text. When I launch buglister, enter a 
package name and press enter, it crashes. Below is a log:


** (java-gnome:25027): WARNING **: Owner of /tmp/orbit-jrohr is not the current 
user

com.tildemh.debbug.CacheMiss: Package listing doesn't exist in cache
at com.tildemh.debbug.Cache.getListing(Cache.java:229)
at com.tildemh.debbug.BTS.getListingIfCached(BTS.java:69)
at com.tildemh.debbug.BTS.getListing(BTS.java:82)
at com.tildemh.debbuggtk.BugLister.setListing(BugLister.java:125)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:324)
at org.gnu.glade.ListenerDelegate.fireEvent(ListenerDelegate.java:114)
at org.gnu.glade.ListenerDelegate.fireEvent(ListenerDelegate.java:86)
at 
org.gnu.glade.ToolButtonDelegate.toolButtonEvent(ToolButtonDelegate.java:24)
at org.gnu.gtk.ToolButton.fireToolButtonEvent(ToolButton.java:141)
at org.gnu.gtk.ToolButton.handleClicked(ToolButton.java:148)
at org.gnu.gtk.Gtk.gtk_main(Native Method)
at org.gnu.gtk.Gtk.main(Gtk.java:53)
at com.tildemh.debbuggtk.BugLister.main(BugLister.java:157)
Maintainer,all ,maint= - [EMAIL PROTECTED]

An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : 11 occurred at PC=0x4E067E10
Function=(null)+0x4E067E10
Library=/usr/lib/libglib-2.0.so.0

NOTE: We are unable to locate the function name symbol for the error
  just occurred. Please refer to release documentation for possible
  reason and solutions.


Current Java thread:
at org.gnu.gtk.MessageDialog.gtk_message_dialog_new_with_markup(Native 
Method)
at org.gnu.gtk.MessageDialog.init(MessageDialog.java:45)
at org.gnu.gtk.MessageDialog.init(MessageDialog.java)
at com.tildemh.debbuggtk.ListingReport.showError(ListingReport.java:450)
- locked 0x457741a0 (a com.tildemh.debbuggtk.ListingReport)
at com.tildemh.debbuggtk.ListingReport$12.run(ListingReport.java:1038)
at org.gnu.glib.CustomEvents.runEvents(CustomEvents.java:88)
at org.gnu.gtk.Gtk.gtk_main(Native Method)
at org.gnu.gtk.Gtk.main(Gtk.java:53)
at com.tildemh.debbuggtk.BugLister.main(BugLister.java:157)

Dynamic libraries:
08048000-0804e000 r-xp  03:06 163546 /usr/lib/j2sdk1.4-sun/bin/java
0804e000-0804f000 rw-p 

Bug#290107: marked as done (debbuggtk: FTBFS: Cannot find org.gnu.glade)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:20:09 +0100
with message-id [EMAIL PROTECTED]
and subject line Removal of debbuggtk
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; 12 Jan 2005 19:53:33 +
From [EMAIL PROTECTED] Wed Jan 12 11:53:32 2005
Return-path: [EMAIL PROTECTED]
Received: from smtp6.mindspring.com [207.69.200.110] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CooYe-0004hO-00; Wed, 12 Jan 2005 11:53:32 -0800
Received: from user-119bq03.biz.mindspring.com ([66.149.232.3] 
helo=frobnitz.homelinux.net)
by smtp6.mindspring.com with esmtp (Exim 3.33 #1)
id 1CooYd-tY-00
for [EMAIL PROTECTED]; Wed, 12 Jan 2005 14:53:31 -0500
Received: from daniel by frobnitz.homelinux.net with local (Exim 4.34)
id 1CooYd-00031b-9L
for [EMAIL PROTECTED]; Wed, 12 Jan 2005 11:53:31 -0800
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: debbuggtk: FTBFS: Cannot find org.gnu.glade
From: Daniel Schepler [EMAIL PROTECTED]
Date: Wed, 12 Jan 2005 11:53:31 -0800
Message-ID: [EMAIL PROTECTED]
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii
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: debbuggtk
Severity: serious
Version: 0.28-1

From my build log, using pbuilder in an ia32 chroot:

...
jikes-classpath -classpath 
src:/usr/share/java/debbug.jar:/usr/share/java/gtk2.4.jar:/usr/share/java/gnome2.6.jar:/usr/share/java/glade2.6.jar:/usr/share/java/oro.jar:/usr/share/java/libgetenv-java.jar
 -d build --nowarn src/com/tildemh/debbuggtk/BugEdit.java

Found 9 semantic errors compiling src/com/tildemh/debbuggtk/BugEdit.java:

 5. import org.gnu.glade.*;
   ^---^
*** Semantic Error: You need to modify your classpath, sourcepath, 
bootclasspath, and/or extdirs setup. Jikes could not find package 
org.gnu.glade in: 
/usr/share/classpath/glibj.zip
src
/usr/share/java/debbug.jar
/usr/share/java/gtk2.4.jar
/usr/share/java/gnome2.6.jar
/usr/share/java/glade2.6.jar
/usr/share/java/oro.jar
/usr/share/java/libgetenv-java.jar
.
...
make[1]: *** [src/com/tildemh/debbuggtk/BugEdit.class] Error 1
make[1]: Leaving directory `/tmp/buildd/debbuggtk-0.28'
make: *** [build-stamp] Error 2

-- System Information:
Debian Release: 3.1
Architecture: amd64 (x86_64)
Kernel: Linux 2.6.9-9-amd64-k8
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.UTF-8)

-- 
Daniel Schepler  Please don't disillusion me.  I
[EMAIL PROTECTED]haven't had breakfast yet.
 -- Orson Scott Card

---
Received: (at 290107-done) by bugs.debian.org; 13 Aug 2005 15:20:16 +
From [EMAIL PROTECTED] Sat Aug 13 08:20:15 2005
Return-path: [EMAIL PROTECTED]
Received: from sv15.dfsv15.com [64.246.0.30] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3xnz-000612-00; Sat, 13 Aug 2005 08:20:15 -0700
Received: from host86-132-246-8.range86-132.btcentralplus.com ([86.132.246.8] 
helo=localhost.localdomain)
by sv15.dfsv15.com with esmtpsa (TLSv1:AES256-SHA:256)
(Exim 4.51)
id 1E3xnw-00074D-MY; Sat, 13 Aug 2005 16:19:51 +0100
Received: by localhost.localdomain (Postfix, from userid 1000)
id E18A6D97EF; Sat, 13 Aug 2005 16:20:09 +0100 (BST)
Date: Sat, 13 Aug 2005 16:20:09 +0100
From: Mark Howard [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: Removal of debbuggtk
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-AntiAbuse: This header was added to 

Bug#293013: marked as done (java.lang.ClassNotFoundException: org.gnu.glade.LibGlade not found)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:20:09 +0100
with message-id [EMAIL PROTECTED]
and subject line Removal of debbuggtk
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; 31 Jan 2005 17:54:32 +
From [EMAIL PROTECTED] Mon Jan 31 09:54:32 2005
Return-path: [EMAIL PROTECTED]
Received: from diode.josefine.at [213.229.42.50] (Debian-exim)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Cvfkt-0008TE-00; Mon, 31 Jan 2005 09:54:32 -0800
Received: from chello062178045213.16.11.tuwien.teleweb.at ([62.178.45.213] 
helo=localhost)
by diode.josefine.at with esmtp (TLS-1.0:RSA_AES_128_CBC_SHA:16)
(Exim 4.34)
id 1CvfmA-vV-OO; Mon, 31 Jan 2005 18:55:52 +0100
Received: from david by localhost with local (Exim 4.44)
id 1Cvfkn-00045l-T3; Mon, 31 Jan 2005 18:54:25 +0100
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: David Schmitt [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: java.lang.ClassNotFoundException: org.gnu.glade.LibGlade not found
X-Mailer: reportbug 3.7.1
Date: Mon, 31 Jan 2005 18:54:25 +0100
Message-Id: [EMAIL PROTECTED]
X-test-SpamScore: +
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: debbuggtk
Version: 0.28-1
Severity: grave
Justification: renders package unusable


Hi!

Upon trying to start buglister (or any other bug* tool) following
messages are logged to /tmp/debbuggtk-log... and the program fails to
start:

[EMAIL PROTECTED]:~$ bugwatcher 
Using /usr/bin/gij-wrapper as JVM
lrwxrwxrwx  1 root root 15 2005-01-31 18:45 /usr/bin/gij-wrapper -
gij-wrapper-3.3

[EMAIL PROTECTED]:~$ cat  /tmp/debbuggtk-log-20050131.18:51
Exception in thread main java.lang.NoClassDefFoundError: while resolving 
class: com.tildemh.debbuggtk.BugLister
   at java.lang.ClassLoader.resolveClass0(java.lang.Class) 
(/usr/lib/libgcj.so.4.0.0)
   at java.lang.Class.initializeClass() (/usr/lib/libgcj.so.4.0.0)
   at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) 
(/usr/lib/libgcj.so.4.0.0)
   at java.lang.Class.forName(java.lang.String) (/usr/lib/libgcj.so.4.0.0)
   at gnu.gcj.runtime.FirstThread.run() (/usr/lib/libgcj.so.4.0.0)
   at _Jv_ThreadRun(java.lang.Thread) (/usr/lib/libgcj.so.4.0.0)
   at _Jv_RunMain(java.lang.Class, byte const, int, byte const, boolean) 
(/usr/lib/libgcj.so.4.0.0)
   at __libc_start_main (/lib/tls/libc-2.3.2.so)
Caused by: java.lang.ClassNotFoundException: org.gnu.glade.LibGlade not found 
in [file:/usr/share/java/oro.jar, file:/usr/share/java/gtk2.4.jar, 
file:/usr/share/java/debbuggtk.jar, file:/usr/share/java/debbug.jar, 
file:/usr/share/java/gnome2.6.jar, file:/usr/share/java/libgetenv-java.jar, 
file:/usr/share/java/glade2.6.jar, file:./, core:/]
   at java.net.URLClassLoader.findClass(java.lang.String) 
(/usr/lib/libgcj.so.4.0.0)
   at gnu.gcj.runtime.VMClassLoader.findClass(java.lang.String) 
(/usr/lib/libgcj.so.4.0.0)
   at java.lang.ClassLoader.loadClass(java.lang.String, boolean) 
(/usr/lib/libgcj.so.4.0.0)
   at _Jv_FindClass(_Jv_Utf8Const, java.lang.ClassLoader) 
(/usr/lib/libgcj.so.4.0.0)
   at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) 
(/usr/lib/libgcj.so.4.0.0)
   at _Jv_BytecodeVerifier.verify_instructions_0() (/usr/lib/libgcj.so.4.0.0)
   at _Jv_VerifyMethod(_Jv_InterpMethod) (/usr/lib/libgcj.so.4.0.0)
   at _Jv_PrepareClass(java.lang.Class) (/usr/lib/libgcj.so.4.0.0)
   at java.lang.ClassLoader.linkClass0(java.lang.Class) 
(/usr/lib/libgcj.so.4.0.0)
   at java.lang.ClassLoader.resolveClass0(java.lang.Class) 
(/usr/lib/libgcj.so.4.0.0)
   ...7 more


Regards, David

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.9-1-zion-custom.1
Locale: LANG=C, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)

Versions of packages debbuggtk depends on:
ii  blackdown-j2sdk1.4 [j2re1.4]  1.4.2+rc1  Java(TM) 2 SDK, Standard Edition, 
ii  blackdown-j2sdk1.4debian [j2s 0.18   Debian specific parts of Java(TM) 
ii  gij   4:3.3.5-1  The GNU Java bytecode interpreter
ii  libgetenv-java1.0-2  Java 

Bug#319439: marked as done (FTBFS: Broken build-dependency on libgtk2-java)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:20:09 +0100
with message-id [EMAIL PROTECTED]
and subject line Removal of debbuggtk
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; 22 Jul 2005 01:39:17 +
From [EMAIL PROTECTED] Thu Jul 21 18:39:17 2005
Return-path: [EMAIL PROTECTED]
Received: from zoot.lafn.org [206.117.18.6] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DvmVQ-0006Aa-00; Thu, 21 Jul 2005 18:39:17 -0700
Received: from localhost.localdomain 
(pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253])
(authenticated bits=0)
by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j6M1dF7a000111
(version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
for [EMAIL PROTECTED]; Thu, 21 Jul 2005 18:39:16 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.52)
id 1DvfN6-00011t-76
for [EMAIL PROTECTED]; Thu, 21 Jul 2005 11:02:12 -0700
Date: Thu, 21 Jul 2005 11:02:12 -0700
From: Matt Kraai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS: Broken build-dependency on libgtk2-java
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=ggdAeHltlv4tpqCr
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on 
zoot.lafn.org
X-Virus-Status: Clean
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=-7.3 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12,
HAS_PACKAGE autolearn=no version=2.60-bugs.debian.org_2005_01_02


--ggdAeHltlv4tpqCr
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: debbuggtk
Version: 0.28-1
Severity: serious

debbuggtk fails to build because it build-depends on libgtk2-java but
no such package is available:

 - Considering  libgtk2-java (=3D2.6.0.1-5)
  Tried versions:
   - Does not satisfy version, not trying
E: Could not satisfy build-dependency.

--=20
Matt

--ggdAeHltlv4tpqCr
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC3+MjfNdgYxVXvBARAtOlAJ9Utym0Asg+Q4E8X+Zugl7JymHK8QCfUaXQ
uSmfPt4YFqfbFXAqS0NWOTc=
=hfDC
-END PGP SIGNATURE-

--ggdAeHltlv4tpqCr--

---
Received: (at 319439-done) by bugs.debian.org; 13 Aug 2005 15:20:15 +
From [EMAIL PROTECTED] Sat Aug 13 08:20:15 2005
Return-path: [EMAIL PROTECTED]
Received: from sv15.dfsv15.com [64.246.0.30] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3xnz-000612-00; Sat, 13 Aug 2005 08:20:15 -0700
Received: from host86-132-246-8.range86-132.btcentralplus.com ([86.132.246.8] 
helo=localhost.localdomain)
by sv15.dfsv15.com with esmtpsa (TLSv1:AES256-SHA:256)
(Exim 4.51)
id 1E3xnw-00074D-MY; Sat, 13 Aug 2005 16:19:51 +0100
Received: by localhost.localdomain (Postfix, from userid 1000)
id E18A6D97EF; Sat, 13 Aug 2005 16:20:09 +0100 (BST)
Date: Sat, 13 Aug 2005 16:20:09 +0100
From: Mark Howard [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED], [EMAIL PROTECTED],
[EMAIL PROTECTED]
Subject: Removal of debbuggtk
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-AntiAbuse: This header was added to track abuse, please include it with any 
abuse report
X-AntiAbuse: Primary Hostname - sv15.dfsv15.com
X-AntiAbuse: Original Domain - bugs.debian.org
X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12]
X-AntiAbuse: Sender Address Domain - tildemh.com
X-Source: 
X-Source-Args: 
X-Source-Dir: 
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: 

Processed: reopening 196590

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.3
 reopen 196590
Bug#196590: stable is missing several security updates
Bug reopened, originator not changed.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#317735: marked as done (libautotrace3 needs rebuild with libplot2c2)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 09:17:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#317735: fixed in autotrace 0.31.1-9
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 Jul 2005 04:51:03 +
From [EMAIL PROTECTED] Sun Jul 10 21:51:03 2005
Return-path: [EMAIL PROTECTED]
Received: from science.horizon.com [192.35.100.1] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1DrqFz-0001Q0-00; Sun, 10 Jul 2005 21:51:03 -0700
Received: (qmail 32136 invoked by uid 1000); 11 Jul 2005 04:50:31 -
Date: 11 Jul 2005 04:50:31 -
Message-ID: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: libautotrace3 needs rebuild with libplot2c2
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.4 required=4.0 tests=BAYES_00,HAS_PACKAGE,
NO_REAL_NAME autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: libautotrace3
Version: 0.31.1-8

No biggie, it's just not installable now that the big GCC 4.0 migration
has begin.  Looking at the dependency list, you're probably waiting
until all the other libraries get upgraded, but I figured I'd create a
bug for it anyway.

Thanks!

---
Received: (at 317735-close) by bugs.debian.org; 13 Aug 2005 16:19:08 +
From [EMAIL PROTECTED] Sat Aug 13 09:19:07 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E3yh0-0004QG-00; Sat, 13 Aug 2005 09:17:06 -0700
From: Henning Makholm [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#317735: fixed in autotrace 0.31.1-9
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 09:17:06 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2

Source: autotrace
Source-Version: 0.31.1-9

We believe that the bug you reported is fixed in the latest version of
autotrace, which is due to be installed in the Debian FTP archive:

autotrace_0.31.1-9.diff.gz
  to pool/main/a/autotrace/autotrace_0.31.1-9.diff.gz
autotrace_0.31.1-9.dsc
  to pool/main/a/autotrace/autotrace_0.31.1-9.dsc
autotrace_0.31.1-9_i386.deb
  to pool/main/a/autotrace/autotrace_0.31.1-9_i386.deb
libautotrace-dev_0.31.1-9_i386.deb
  to pool/main/a/autotrace/libautotrace-dev_0.31.1-9_i386.deb
libautotrace3_0.31.1-9_i386.deb
  to pool/main/a/autotrace/libautotrace3_0.31.1-9_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.
Henning Makholm [EMAIL PROTECTED] (supplier of updated autotrace 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: Sat, 13 Aug 2005 16:59:05 +0200
Source: autotrace
Binary: libautotrace-dev libautotrace3 autotrace
Architecture: source i386
Version: 0.31.1-9
Distribution: unstable
Urgency: low
Maintainer: Henning Makholm [EMAIL PROTECTED]
Changed-By: Henning Makholm [EMAIL PROTECTED]
Description: 
 autotrace  - bitmap to vector graphics converter
 libautotrace-dev - bitmap to vector graphics converter, development files
 libautotrace3 - bitmap to vector graphics converter, shared library files
Closes: 292246 317735
Changes: 
 autotrace (0.31.1-9) unstable; urgency=low
 .
   * Reorder typedefs in autotrace.h to make C++ compilers like it better.
 (Closes: #292246).
   * New dependencies after C++ ABI transition. (Closes: #317735)
   * Bumped Standards-Version to 3.6.2; no changes were necessary.
Files: 
 05ac1d15a6f60c9c7a51de6a156c60ff 710 graphics optional autotrace_0.31.1-9.dsc
 b3f2ed801037abb18f6de8d5fc6a5ee6 287764 graphics optional 
autotrace_0.31.1-9.diff.gz
 

Bug#288190: qcad: FTBFS (amd64/gcc-4.0)

2005-08-13 Thread Bastian Kleineidam
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi Javier,

I noticed that this RC bug is open for several months now. Are there
any problems with applying the patch to the current version instead
of the next upstream version?


Regards,
  Bastian
- -- 
  ,''`.  Bastian Kleineidam
 : :' :GnuPG Schlüssel
 `. `'gpg --keyserver wwwkeys.pgp.net --recv-keys 32EC6F3E
   `-

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC/imeeBwlBDLsbz4RAiZ6AKCXSHk+ZZNsXWO/BB5E3cWncLqfnwCgzarw
eSMtY0b0eVQ6bm5aibfT4+I=
=oPE4
-END PGP SIGNATURE-


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



Processed: Fixed in NMU of nevow 0.4.1-1.1

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 319230 + fixed
Bug#319230: nevow: FTBFS: Missing Build-Depends on 'python2.4-dev'
Tags were: patch
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322541: patch to fix'

2005-08-13 Thread Bernd Eckenfels
On Sat, Aug 13, 2005 at 01:06:45AM -0400, Ari Pollak wrote:
 I'll be doing a 7-day-delayed NMU of this, with only the attached patch
 as the changes.

thanks. Please observe version numbering. It is the second NMU

Bernd
-- 
  (OO) -- [EMAIL PROTECTED] --
 ( .. )[EMAIL PROTECTED],linux.de,debian.org}  http://www.eckes.org/
  o--o   1024D/E383CD7E  [EMAIL PROTECTED]  v:+497211603874  f:+49721151516129
(OO)  When cryptography is outlawed, bayl bhgynjf jvyy unir cevinpl!


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



Bug#322946: x free86: x server fails to load

2005-08-13 Thread Malek
Package: x free86
Severity: grave
Justification: renders package unusable



-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-386
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
I hve just installed debian 3.1. Installation went fine until it tried 
to load the desktop package (xfree86, I am not sure this is the right 
name, I am very new at this). Unsure how to fix this issue


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



Bug#322691: Please force libgmp3c2 to be installed on upgrade from

2005-08-13 Thread Matthias Klose
yes, this can be removed now. this thing was a temporary thing to
allow packages depending on the C only library to migrate to testing
without having the libgmpcxx in testing.


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



Processed: bug exists

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 found 258977 2.1-2.1
Bug#258977: icu: FTBFS with gcc-3.4: using typedef-name 
`icu_2_1::Locale::LocaleProxy' after `struct'
Bug marked as found in version 2.1-2.1.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322239: marked as done (mozilla-firefox: firefox segfaults)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 14:28:22 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#322239: Bug is gone on my system.
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; 9 Aug 2005 21:46:45 +
From [EMAIL PROTECTED] Tue Aug 09 14:46:45 2005
Return-path: [EMAIL PROTECTED]
Received: from smtpq1.home.nl [213.51.128.196] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E2bvp-00025B-00; Tue, 09 Aug 2005 14:46:45 -0700
Received: from [213.51.128.136] (port=53384 helo=smtp5.home.nl)
by smtpq1.home.nl with esmtp (Exim 4.30)
id 1E2bvn-0001nX-M6
for [EMAIL PROTECTED]; Tue, 09 Aug 2005 23:46:43 +0200
Received: from cc203504-a.zwoll1.ov.home.nl ([82.74.134.22]:48889 
helo=moonshine.dnsalias.org)
by smtp5.home.nl with esmtp (Exim 4.30)
id 1E2bvm-0001zx-JQ; Tue, 09 Aug 2005 23:46:42 +0200
Received: from moonshine.dnsalias.org ([127.0.0.1] helo=localhost)
by moonshine.dnsalias.org with esmtp (Exim 4.50)
id 1E2bvm-0006sQ-BW; Tue, 09 Aug 2005 23:46:42 +0200
Received: from moonshine.dnsalias.org ([127.0.0.1])
by localhost (moonshine.dnsalias.org [127.0.0.1]) (amavisd-new, port 
10024)
with ESMTP id 04885-07; Tue, 9 Aug 2005 23:46:30 +0200 (CEST)
Received: from stardust.arriesoft.nl ([192.168.1.2])
by moonshine.dnsalias.org with esmtp (Exim 4.50)
id 1E2bva-0006sF-0v; Tue, 09 Aug 2005 23:46:30 +0200
Received: from arjan by stardust.arriesoft.nl with local (Exim 4.52)
id 1E2bv5-0003Q1-MD; Tue, 09 Aug 2005 23:45:59 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Arjan Oosting [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: mozilla-firefox: firefox segfaults
X-Mailer: reportbug 3.15
Date: Tue, 09 Aug 2005 23:45:58 +0200
Message-Id: [EMAIL PROTECTED]
X-Virus-Scanned: by amavisd-new-20030616-p10 (Debian) at moonshine.dnsalias.org
X-AtHome-MailScanner-Information: Neem contact op met [EMAIL PROTECTED] voor 
meer informatie
X-AtHome-MailScanner: Found to be clean
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: mozilla-firefox
Version: 1.0.6-2
Severity: grave
Justification: renders package unusable

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi, 

After yesterdays apt-get update  apt-get upgrade cycle, mozilla-firefox 
stopped working. 
If I execute firefox from a terminal it segfaults, but if I start 
mozilla-firefox with the 
following command: 
LD_LIBRARY_PATH=/usr/lib/mozilla-firefox/ /usr/lib/mozilla-firefox/firefox-bin
firefox does work. 

I removed my $HOME/.mozilla tree but that did not help. 
firefox --verbose gives the following output:
FIREFOX_DSP=esddsp
APPLICATION_ID=firefox
CMDLINE_DISPLAY=
DISPLAY=:0.0
REMOTE=0
TRY_USE_EXIST=0
OPTIONS=
DEBUG=0
DEBUGGER=
Running: /usr/lib/mozilla-firefox/firefox-bin -a firefox -remote 'ping()'
PING_STATUS=2
Cleaning user profile
Running: esddsp /usr/lib/mozilla-firefox/firefox-bin -a firefox
Segmentatie fout
 
Greetings Arjan Oosting


- -- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'testing-proposed-updates'), (500, 
'unstable'), (102, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-2-stardust
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)

Versions of packages mozilla-firefox depends on:
ii  debianutils   2.14.2 Miscellaneous utilities specific t
ii  fontconfig2.3.2-1generic font configuration library
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-4  GCC support library
ii  libglib2.0-0  2.6.6-1The GLib library of C routines
ii  libgtk2.0-0   2.6.9-1The GTK+ graphical user interface 
ii  libidl0   0.8.5-1library for parsing 

Bug#322952: evince: crashes looking for wrong verision of libdjvulibre

2005-08-13 Thread P. Oscar Boykin
Package: evince
Version: 0.3.0-2
Severity: grave
Justification: renders package unusable


Evince reports:

evince: error while loading shared libraries: libdjvulibre.so.14: cannot
open shared object file: No such file or directory

While the it seems that only libdjvulibre.so.15 is installed.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages evince depends on:
ii  gconf22.10.1-1   GNOME configuration database syste
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libatk1.0-0   1.10.1-2   The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-6Open-source version of SGI's audio
ii  libbonobo2-0  2.10.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.10.0-1   The Bonobo UI library
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libcairo1 0.4.0-1Multi-platform 2D graphics library
ii  libdjvulibre1 3.5.14-6   Runtime support for the DjVu image
ii  libesd0   0.2.36-1   Enlightened Sound Daemon - Shared 
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-3  GCC support library
ii  libgconf2-4   2.10.1-1   GNOME configuration database syste
ii  libgcrypt11   1.2.1-4LGPL Crypto library - runtime libr
ii  libglade2-0   1:2.5.1-2  library to load .glade files at ru
ii  libglib2.0-0  2.6.6-1The GLib library of C routines
ii  libgnome-keyring0 0.4.3-1GNOME keyring services library
ii  libgnome2-0   2.10.1-1   The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.10.2-2   A powerful object-oriented display
ii  libgnomeprint2.2-02.10.3-2   The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-0  2.10.2-2   GNOME 2.2 print architecture User 
ii  libgnomeui-0  2.10.1-1   The GNOME 2 libraries (User Interf
ii  libgnomevfs2-02.10.1-5   The GNOME virtual file-system libr
ii  libgnutls11   1.0.16-13.1GNU TLS library - runtime library
ii  libgpg-error0 1.1-4  library for common error values an
ii  libgtk2.0-0   2.6.9-1The GTK+ graphical user interface 
ii  libice6   6.8.2.dfsg.1-4 Inter-Client Exchange library
ii  libjpeg62 6b-10  The Independent JPEG Group's JPEG 
ii  libkpathsea3  2.0.2-31   path search library for teTeX (run
ii  liborbit2 1:2.12.2-3 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.8.2-1Layout and rendering of internatio
ii  libpixman10.1.6-1Cairo pixel manipulation library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libpoppler0   0.3.1-1PDF rendering library
ii  libpoppler0-glib  0.3.1-1PDF rendering library (GLib-based 
ii  libpopt0  1.7-5  lib for parsing cmdline parameters
ii  libsm66.8.2.dfsg.1-4 X Window System Session Management
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libtasn1-20.2.13-1   Manage ASN.1 structures (runtime)
ii  libx11-6  6.8.2.dfsg.1-4 X Window System protocol client li
ii  libxml2   2.6.20-1   GNOME XML library
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  xlibs 6.8.2.dfsg.1-4 X Window System client libraries m
ii  zlib1g1:1.2.3-3  compression library - runtime

evince recommends no packages.

-- no debconf information


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



Bug#322955: wstools: FTBFS (amd64): cast from 'void*' to 'int' loses precision

2005-08-13 Thread Andreas Jochens
Package: wstools
Version: 0.4.8d-1
Severity: serious
Tags: patch

When building 'wstools' on amd64/unstable,
I get the following error:

c++ -O2 -g -Wall -I.. -DHAVE_FFTW3=1 -I/usr/lib/wx/include/gtk-2.4 
-DGTK_NO_CHECK_CASTS -D__WXGTK__ -D_FILE_OFFSET_BITS=64 -D_LARGE_FILES 
-fexceptions -c FSK441Frame.cpp
../common/SoundDev.h:22: warning: 'class ISoundDev' has virtual functions but 
non-virtual destructor
FSK441Frame.cpp: In member function 'virtual void CFSK441Frame::onTXOrder(const 
wxCommandEvent)':
FSK441Frame.cpp:285: error: cast from 'void*' to 'int' loses precision
make[2]: *** [FSK441Frame.o] Error 1
make[2]: Leaving directory `/wstools-0.4.8d/fsk441'

With the attached patch 'wstools' can be compiled
on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/wstools-0.4.8d/fsk441/FSK441Frame.cpp 
./fsk441/FSK441Frame.cpp
--- ../tmp-orig/wstools-0.4.8d/fsk441/FSK441Frame.cpp   2004-06-05 
17:37:39.0 +
+++ ./fsk441/FSK441Frame.cpp2005-08-13 18:29:33.0 +
@@ -282,7 +282,7 @@
 
 void CFSK441Frame::onTXOrder(const wxCommandEvent event)
 {
-   bool txFirst = int(event.GetClientData()) == Transmit_First;
+   bool txFirst = long(event.GetClientData()) == Transmit_First;
 
::wxGetApp().setTXFirst(txFirst);
 }
diff -urN ../tmp-orig/wstools-0.4.8d/jt44/JT44Frame.cpp ./jt44/JT44Frame.cpp
--- ../tmp-orig/wstools-0.4.8d/jt44/JT44Frame.cpp   2004-06-05 
18:14:17.0 +
+++ ./jt44/JT44Frame.cpp2005-08-13 18:30:22.0 +
@@ -290,7 +290,7 @@
 
 void CJT44Frame::onTXOrder(const wxCommandEvent event)
 {
-   bool txFirst = int(event.GetClientData()) == Transmit_First;
+   bool txFirst = long(event.GetClientData()) == Transmit_First;
 
::wxGetApp().setTXFirst(txFirst);
 }
diff -urN ../tmp-orig/wstools-0.4.8d/jt6m/JT6MFrame.cpp ./jt6m/JT6MFrame.cpp
--- ../tmp-orig/wstools-0.4.8d/jt6m/JT6MFrame.cpp   2004-06-05 
18:46:44.0 +
+++ ./jt6m/JT6MFrame.cpp2005-08-13 18:30:46.0 +
@@ -282,7 +282,7 @@
 
 void CJT6MFrame::onTXOrder(const wxCommandEvent event)
 {
-   bool txFirst = int(event.GetClientData()) == Transmit_First;
+   bool txFirst = long(event.GetClientData()) == Transmit_First;
 
::wxGetApp().setTXFirst(txFirst);
 }


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



Bug#322691: marked as done (Please force libgmp3c2 to be installed on upgrade from)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 11:32:19 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#322691: fixed in gmp 4.1.4-10
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; 12 Aug 2005 08:35:26 +
From [EMAIL PROTECTED] Fri Aug 12 01:35:26 2005
Return-path: [EMAIL PROTECTED]
Received: from blabluga.hell.pl [62.121.102.27] (Debian-exim)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3V0g-0005Tg-00; Fri, 12 Aug 2005 01:35:26 -0700
Received: from arturcz by blabluga.hell.pl with local (Exim 4.52)
id 1E3V0c-Za-FJ; Fri, 12 Aug 2005 10:35:22 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Artur R. Czechowski [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: Please force libgmp3c2 to be installed on upgrade from
X-Mailer: reportbug 3.15
Date: Fri, 12 Aug 2005 10:35:22 +0200
Message-Id: [EMAIL PROTECTED]
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: gmp
Version: 4.1.4-9
Severity: normal

Hello,
When upgrading working system with old, non-splitted gmp package, old libgmp3
still stays installed.

Please note, that dependency on libgmp3c2 | libgmp3 would install libgmp3c2
only when no libgmp3* package is installed.

I can propose two solutions.
1. Provide only libgmp3c2 in libgmp3c2.shlib file and ask maintainers
   of packages depending on libgmp3 to recompile their packages.
2. Add an dummy libgmp3 package, depending on libgmp3c2. In this case
   libgmp3c2 should provide and conflict with libgmp3. Dummy libgmp3
   could be removed after etch release.

Best regards
Artur

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11blbl
Locale: LANG=C, LC_CTYPE=pl_PL (charmap=ISO-8859-2)

---
Received: (at 322691-close) by bugs.debian.org; 13 Aug 2005 18:43:10 +
From [EMAIL PROTECTED] Sat Aug 13 11:43:10 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E40nr-00021W-00; Sat, 13 Aug 2005 11:32:19 -0700
From: [EMAIL PROTECTED] (Steve M. Robbins)
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#322691: fixed in gmp 4.1.4-10
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 11:32:19 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: gmp
Source-Version: 4.1.4-10

We believe that the bug you reported is fixed in the latest version of
gmp, which is due to be installed in the Debian FTP archive:

gmp_4.1.4-10.diff.gz
  to pool/main/g/gmp/gmp_4.1.4-10.diff.gz
gmp_4.1.4-10.dsc
  to pool/main/g/gmp/gmp_4.1.4-10.dsc
libgmp3-dev_4.1.4-10_i386.deb
  to pool/main/g/gmp/libgmp3-dev_4.1.4-10_i386.deb
libgmp3-doc_4.1.4-10_all.deb
  to pool/main/g/gmp/libgmp3-doc_4.1.4-10_all.deb
libgmp3c2_4.1.4-10_i386.deb
  to pool/main/g/gmp/libgmp3c2_4.1.4-10_i386.deb
libgmpxx3_4.1.4-10_i386.deb
  to pool/main/g/gmp/libgmpxx3_4.1.4-10_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.
Steve M. Robbins [EMAIL PROTECTED] (supplier of updated gmp 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: Sat, 13 Aug 2005 13:38:00 -0400
Source: gmp
Binary: libgmp3-dev libgmpxx3 libgmp3-doc libgmp3c2
Architecture: source all i386
Version: 4.1.4-10
Distribution: 

Bug#221101: marked as done (libdebbug-java: Not good enough for sarge)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 20:12:21 +0100
with message-id [EMAIL PROTECTED]
and subject line Removal of debbuggtk
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; 16 Nov 2003 15:26:32 +
From [EMAIL PROTECTED] Sun Nov 16 09:26:31 2003
Return-path: [EMAIL PROTECTED]
Received: from orange.csi.cam.ac.uk [131.111.8.77] 
by master.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1ALOnH-0004M8-00; Sun, 16 Nov 2003 09:26:31 -0600
Received: from pathfinderii.chu.cam.ac.uk ([131.111.203.177] helo=localhost)
by orange.csi.cam.ac.uk with smtp (Exim 4.12)
id 1ALOnG-Eu-00
for [EMAIL PROTECTED]; Sun, 16 Nov 2003 15:26:30 +
Received: by localhost (sSMTP sendmail emulation); Sun, 16 Nov 2003 15:25:51 
+
Date: Sun, 16 Nov 2003 15:25:51 +
From: Mark Howard [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: libdebbug-java: Not good enough for sarge
Message-ID: 20031116152550.GA26893@(none)
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-Reportbug-Version: 2.36
User-Agent: Mutt/1.5.4i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Status: No, hits=-4.3 required=4.0
tests=HAS_PACKAGE,MAILTO_TO_SPAM_ADDR
version=2.53-bugs.debian.org_2003_11_15
X-Spam-Level: 
X-Spam-Checker-Version: SpamAssassin 2.53-bugs.debian.org_2003_11_15 
(1.174.2.15-2003-03-30-exp)

Package: libdebbug-java
Version: 0.16-1
Severity: serious

libdebbug-java is not of good enough quality for sarge. It is still
under heavy development and is unlikely to be ready for stable release
in the next 3 months.

-- 
  .''`. Mark Howard
 : :' :
 `. `'  http://www.tildemh.com 
   `-   [EMAIL PROTECTED] | [EMAIL PROTECTED] | [EMAIL PROTECTED] 

---
Received: (at 221101-done) by bugs.debian.org; 13 Aug 2005 19:12:24 +
From [EMAIL PROTECTED] Sat Aug 13 12:12:24 2005
Return-path: [EMAIL PROTECTED]
Received: from sv15.dfsv15.com [64.246.0.30] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E41Qe-0002Ar-00; Sat, 13 Aug 2005 12:12:24 -0700
Received: from host86-132-246-8.range86-132.btcentralplus.com ([86.132.246.8] 
helo=localhost.localdomain)
by sv15.dfsv15.com with esmtpsa (TLSv1:AES256-SHA:256)
(Exim 4.51)
id 1E41Qb-0007kl-QT; Sat, 13 Aug 2005 20:12:00 +0100
Received: by localhost.localdomain (Postfix, from userid 1000)
id 626B7CFDE9; Sat, 13 Aug 2005 20:12:21 +0100 (BST)
Date: Sat, 13 Aug 2005 20:12:21 +0100
From: Mark Howard [EMAIL PROTECTED]
To: [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Removal of debbuggtk
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-AntiAbuse: This header was added to track abuse, please include it with any 
abuse report
X-AntiAbuse: Primary Hostname - sv15.dfsv15.com
X-AntiAbuse: Original Domain - bugs.debian.org
X-AntiAbuse: Originator/Caller UID/GID - [0 0] / [47 12]
X-AntiAbuse: Sender Address Domain - tildemh.com
X-Source: 
X-Source-Args: 
X-Source-Dir: 
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=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 22

Debbuggtk has been broken for a long time now since bugs.debian.org has been
upgraded.  I was not able to restore the original cgi scripts which debbuggtk
used for http access and unfortunately do not have time to learn ldap and update
the debbuggtk application accordingly. 

Since the current package is unusable, I am going to request its removal from
Debian. Hence, I'm closing all related reports.

-- 
  .''`. Mark Howard
 : :' :
 `. `'  http://www.tildemh.com 
   `-   [EMAIL PROTECTED] | [EMAIL PROTECTED] 


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



Processed: boot-floppies is obsolete

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 246443 wishlist
Bug#246443: boot-floppies: Fails to advise admin of kernel vulnerabilities
Severity set to `wishlist'.

 tags 246443 wontfix
Bug#246443: boot-floppies: Fails to advise admin of kernel vulnerabilities
Tags were: woody security
Tags added: wontfix

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: #315923 Kernel panic after Sarge installation on Dell with SATA drive

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 315923 important
Bug#315923: Kernel panic after Sarge installation on Dell with SATA drive
Severity set to `important'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: #231885 stable installation gets stuck when configuring modules

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 231885 normal
Bug#231885: stable installation gets stuck when configuring modules
Severity set to `normal'.

 tags + wontfix
Unknown command or malformed arguments to command.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322961: kaffeine-mozilla: jri*.h use All rights reserved copyright boilerplate and have no other license info

2005-08-13 Thread Zack Cerza
Package: kaffeine-mozilla
Version: 0.4.3.1-4
Severity: serious
Justification: Policy 2.3

The files src/jri*.h state that their copyright is held by Netscape
Communications Corporation. There is no additional license information in 
those files.

Also, the files src/np*.[ch] contain no copyright information (though it
is likely that Netscape holds their copyright as well). There is no
license information in those files either.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (1, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-k7
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages kaffeine-mozilla depends on:
ii  kaffeine  0.7-1  versatile media player for KDE 3
ii  libc6 2.3.5-3GNU C Library: Shared libraries an
ii  libice6   6.8.2.dfsg.1-5 Inter-Client Exchange library
ii  libsm66.8.2.dfsg.1-5 X Window System Session Management
ii  libx11-6  6.8.2.dfsg.1-5 X Window System protocol client li
ii  libxaw7   6.8.2.dfsg.1-5 X Athena widget set library
ii  libxt66.8.2.dfsg.1-5 X Toolkit Intrinsics
ii  xlibs 6.8.2.dfsg.1-5 X Window System client libraries m

kaffeine-mozilla recommends no packages.

-- no debconf information


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



Bug#155374: marked as done (Where are Installation Manual and Release Notes)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 21:38:07 +0200
with message-id [EMAIL PROTECTED]
and subject line #155374 Where are Installation Manual and Release Notes
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; 4 Aug 2002 03:56:45 +
From [EMAIL PROTECTED] Sat Aug 03 22:56:45 2002
Return-path: [EMAIL PROTECTED]
Received: from sccrmhc01.attbi.com [204.127.202.61] 
by master.debian.org with esmtp (Exim 3.12 1 (Debian))
id 17bCVZ-kM-00; Sat, 03 Aug 2002 22:56:45 -0500
Received: from goofy.lan.aokiconsulting.com ([12.234.106.18])
  by sccrmhc01.attbi.com
  (InterMail vM.4.01.03.27 201-229-121-127-20010626) with ESMTP
  id [EMAIL PROTECTED]
  for [EMAIL PROTECTED]; Sun, 4 Aug 2002 03:56:09 +
Received: from nospam by goofy.lan.aokiconsulting.com with local (Exim 3.35 #1 
(Debian))
id 17bCUy-0007GI-00
for [EMAIL PROTECTED]; Sat, 03 Aug 2002 20:56:08 -0700
Date: Sat, 3 Aug 2002 20:56:08 -0700
From: Osamu Aoki [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Where are Installation Manual and Release Notes
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.3.28i
X-GPG-Fingerprint-old: 814E BD64 3288 40E7 E88E  3D92 C3F8 EA94 D5DE 453D
X-GPG-Fingerprint: 253A 4076 6A3B CCE2 A426  DEF5 E80F C4C1 A806 1F32
X-GPG-public-key-old: http://www.aokiconsulting.com/public-key
Sender: Osamu Aoki [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]

Package: install-doc
Version: 3.0.23
Severity: important

I can not find Installation Manual nor Release Notes as as a content
of package.

I thought we saw at least Installation Manual in testing days.

Where are dselect for begginer etc?  I can only get them from web site
but not as package.  Why???

At least html, text optionally pdf shall be included in 
   /usr/share/doc/install-doc/



Situation is same in 
  3.0.22 (stable/woody, testing/sarge) and 
  3.0.23 (unstable/sid)

# ls -la /usr/share/doc/install-doc/
total 108
drwxr-xr-x2 root root 4096 Aug  3 20:37 .
drwxr-xr-x  883 root root20480 Aug  3 20:20 ..
-rw-r--r--1 root root 1952 Dec  1  2001 README-CVS.gz
-rw-r--r--1 root root 1080 Jun 13  2001 README.Debian
-rw-r--r--1 root root5 May 15 18:56 changelog.gz
-rw-r--r--1 root root 1627 Jun 13  2001 copyright
# head /usr/share/doc/install-doc/README.Debian

  install-doc Debian Package
--

This packages contains the Installation Manual and Release Notes for
Debian GNU/Linux.  Several formats and languages are available.

Note that this package only contains documentation for the
architecture of this machine.  Documentation for other architectures
is available at
-



Desired=Unknown/Install/Remove/Purge/Hold
| Status=Not/Installed/Config-files/Unpacked/Failed-config/Half-installed
|/ Err?=(none)/Hold/Reinst-required/X=both-problems (Status,Err: uppercase=bad)
||/ Name   VersionDescription
+++-==-==-
ii  install-doc3.0.23 Documentation for Debian installation and re
-- 
+++
+  Osamu Aoki [EMAIL PROTECTED] @ Cupertino, CA USA +


---
Received: (at 155374-done) by bugs.debian.org; 13 Aug 2005 19:37:38 +
From [EMAIL PROTECTED] Sat Aug 13 12:37:38 2005
Return-path: [EMAIL PROTECTED]
Received: from smtp-out1.tiscali.nl [195.241.79.176] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E41p4-0005yd-00; Sat, 13 Aug 2005 12:37:38 -0700
Received: from [195.240.184.66] (helo=strider.fjphome.nl)
by smtp-out1.tiscali.nl with esmtp (Tiscali http://www.tiscali.nl)
id 1E41p3-0002at-RH
for [EMAIL PROTECTED]; Sat, 13 Aug 2005 21:37:37 +0200
From: Frans Pop [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: #155374 Where are Installation Manual and Release Notes
Date: Sat, 13 Aug 2005 21:38:07 +0200
User-Agent: KMail/1.7.2
MIME-Version: 1.0
Content-Type: multipart/signed;
  boundary=nextPart1281898.8nG1u4mzey;
  protocol=application/pgp-signature;
  micalg=pgp-sha1
Content-Transfer-Encoding: 7bit
Message-Id: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: 

Processed: Downgrade

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 292570 important
Bug#292570: [hppa][2005week3][install report] installer in sarge unusable on 
HPPA
Severity set to `important'.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#225693: marked as done (boot-floppies should never go into sarge)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 21:49:13 +0200
with message-id [EMAIL PROTECTED]
and subject line #225693 boot-floppies should never go into sarge
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; 31 Dec 2003 17:40:40 +
From [EMAIL PROTECTED] Wed Dec 31 11:40:31 2003
Return-path: [EMAIL PROTECTED]
Received: from ms-smtp-03-qfe0.nyroc.rr.com (ms-smtp-03.nyroc.rr.com) 
[24.24.2.57] 
by master.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1AbkE0-0008Ks-00; Wed, 31 Dec 2003 11:33:41 -0600
Received: from twcny.rr.com (syr-24-58-124-230.twcny.rr.com [24.58.124.230])
by ms-smtp-03.nyroc.rr.com (8.12.10/8.12.10) with ESMTP id 
hBVHXclK013106
for [EMAIL PROTECTED]; Wed, 31 Dec 2003 12:33:38 -0500 (EST)
Message-ID: [EMAIL PROTECTED]
Date: Wed, 31 Dec 2003 12:33:37 -0500
From: Nathanael Nerode [EMAIL PROTECTED]
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.3) 
Gecko/20030312
X-Accept-Language: en-us, en
MIME-Version: 1.0
To: [EMAIL PROTECTED]
Subject: boot-floppies should never go into sarge
Content-Type: text/plain; charset=us-ascii; format=flowed
Content-Transfer-Encoding: 7bit
X-Virus-Scanned: Symantec AntiVirus Scan Engine
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 
2.60-master.debian.org_2003_11_25-bugs.debian.org_2003_12_29 
(1.212-2003-09-23-exp) on master.debian.org
X-Spam-Status: No, hits=-5.0 required=4.0 tests=HAS_PACKAGE autolearn=no 
version=2.60-master.debian.org_2003_11_25-bugs.debian.org_2003_12_29
X-Spam-Level: 

Package: boot-floppies
Severity: serious

Duh.


---
Received: (at 225693-done) by bugs.debian.org; 13 Aug 2005 19:48:43 +
From [EMAIL PROTECTED] Sat Aug 13 12:48:43 2005
Return-path: [EMAIL PROTECTED]
Received: from smtp-out0.tiscali.nl [195.241.79.175] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E41zn-0001pw-00; Sat, 13 Aug 2005 12:48:43 -0700
Received: from [195.240.184.66] (helo=strider.fjphome.nl)
by smtp-out0.tiscali.nl with esmtp (Tiscali http://www.tiscali.nl)
id 1E41zm-0007Zk-TV
for [EMAIL PROTECTED]; Sat, 13 Aug 2005 21:48:42 +0200
From: Frans Pop [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: #225693 boot-floppies should never go into sarge
Date: Sat, 13 Aug 2005 21:49:13 +0200
User-Agent: KMail/1.7.2
MIME-Version: 1.0
Content-Type: text/plain;
  charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Disposition: inline
Message-Id: [EMAIL PROTECTED]
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=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
version=2.60-bugs.debian.org_2005_01_02

As boot-floppies is no longer in the archive, this bug can be closed.


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



Processed: #225693 boot-floppies should never go into sarge

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reopen 225693
Bug#225693: boot-floppies should never go into sarge
Bug reopened, originator not changed.

 retitle boot-floppies should never migrate to testing
Unknown command or malformed arguments to command.

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#225693: #225693 boot-floppies should never go into sarge

2005-08-13 Thread Frans Pop
reopen 225693
retitle boot-floppies should never migrate to testing
thanks

Oops. boot-floppies is the source package and that still _is_ in unstable.
There is also a bug in the BTS website which led me astray here...


pgp38HKiKvP0O.pgp
Description: PGP signature


Processed: retitle retry

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 retitle 225693 boot-floppies should never migrate to testing
Bug#225693: boot-floppies should never go into sarge
Changed Bug title.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322973: nautilus-cd-burner: ftbfs [sparc] multiple definition of `_PROCEDURE_LINKAGE_TABLE_'

2005-08-13 Thread Blars Blarson
Package: nautilus-cd-burner
Version: 2.10.2-1
Severity: serious
Justification: fails to build from source


nautilus-cd-burner failed to build on a sparc buildd, duplicated on my
sparc pbuilder.  The -Wl,--as-needed switch does not work on sparc.




/bin/sh ./libtool --mode=link cc  -Wall -g -Wall -O2  -Wl,-O1 -Wl,--as-needed 
-o test_blank `pkg-config --libs gthread-2.0` test_blank.o libnautilus-burn.la 
cc -Wall -g -Wall -O2 -Wl,-O1 -Wl,--as-needed -o .libs/test_blank -pthread 
test_blank.o  /usr/lib/libgthread-2.0.so -lpthread ./.libs/libnautilus-burn.so 
/usr/lib/libgtk-x11-2.0.so /usr/lib/libgdk-x11-2.0.so /usr/lib/libatk-1.0.so 
/usr/lib/libgdk_pixbuf-2.0.so /usr/lib/libpangoxft-1.0.so 
/usr/lib/libpangox-1.0.so /usr/lib/libpangoft2-1.0.so /usr/lib/libpango-1.0.so 
-lm /usr/lib/libgobject-2.0.so /usr/lib/libgmodule-2.0.so -ldl 
/usr/lib/libglib-2.0.so /usr/lib/libhal.so /usr/lib/libpopt.so 
/usr/lib/libdbus-1.so -lnsl
/usr/lib/gcc/sparc-linux-gnu/4.0.1/../../../../lib/crt1.o:../sysdeps/sparc/sparc32/elf/start.S:60:
 multiple definition of `_PROCEDURE_LINKAGE_TABLE_'
/usr/bin/ld: Disabling relaxation: it will not work with multiple definitions
collect2: ld returned 1 exit status
make[3]: *** [test_blank] Error 1
make[3]: Leaving directory `/build/buildd/nautilus-cd-burner-2.10.2'


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



Bug#322972: icon: ftbfs [sparc] Tests failed: ilib sorting table

2005-08-13 Thread Blars Blarson
Package: icon
Version: 9.4.2-2.3
Severity: serious
Justification: no longer builds from source

icon failed to build on a sparc buildd, duplicated on my sparc pbuilder:


Testing ilib
Test-icon: line 43: 14767 Bus error   ./$EXE /dev/null $F.out 21
16,277c16
 dayoweekFriday 
 julian  2445951 
 saytime just gone  three o'clock 
 
 factors:
 divisors1 2 3 4 5 6 8 9 10 12 15 18 20 24 30 36 40 45 60 72 90 120 
180 360 
 divisorl1 2 3 4 6 8 9 12 16 18 24 32 36 48 64 72 96 144 192 288 576 
 factorial   1 
 factorial   720 
 factors 2 2 2 3 3 5 
 genfactors  2 2 2 3 3 5 
 gfactorial  15 
 ispower 3 
 isprime 97 
 nxtprime101 
 pfactors2 3 5 
 prdecomp3 2 1 
 prdecomp3 2 0 1 
 prime   2 3 5 7 11 13 17 19 23 29 31 37 41 43 47 53 59 61 67 71 73 79 
83 89 97 
 sfactors2^3 3^2 5 
 squarefree  23 
 squarefree  
 squarefree  
 squarefree  26 
 squarefree  
 squarefree  
 squarefree  29 
 squarefree  30 
 [testing factorizations]
 [testing prime numbers]
 
 io:
 exists  
 directory   /tmp 
 
 lists:
 lcollate3 5 1 3 4 5 1 6 5 2 9 9 2 5 6 1 5 4 3 1 5 3 
 lcompact3 1 4 1 5 7 2 6 5 3 5 
 lclose  3 1 4 1 3 
 ldelete 3 1 1 5 9 2 6 5 3 5 
 ldupl   3 3 1 1 4 4 1 1 5 5 9 9 2 2 6 6 5 5 3 3 5 5 
 lequiv  3 1 4 1 5 9 2 6 5 3 5 
 lextend 3 1 4 1 5 9 2 6 5 3 5 3 1 4 1 5 9 2 6 5 
 lfliph  5 3 5 6 2 9 5 1 4 1 3 
 lflipv  7 9 6 9 5 1 8 4 5 7 5 
 limage  [ 3 , 1 , 4 , 1 , 5 , 9 , 2 , 6 , 5 , 3 , 5 ] 
 lindex  5 9 11 
 linterl 3 5 1 3 4 5 1 6 5 2 9 9 2 5 6 1 5 4 3 1 5 3 
 llayer  3 10 1 8 4 11 1 8 5 12 7 14 2 9 6 13 5 12 3 10 5 12 
 llpad   0 0 0 3 1 4 1 5 9 2 6 5 3 5 
 lltrim  1 4 1 5 9 2 6 5 3 5 
 lpalin  3 1 4 1 5 9 2 6 5 3 5 5 3 5 6 2 9 5 1 4 1 
 lpermute3 1 4 1 5 9 2 6 5 3 5 
 lreflect3 1 4 1 5 9 2 6 5 3 5 3 5 6 2 9 5 1 4 1 
 lremvals3 4 9 2 6 3 
 lrepl   3 1 4 1 5 9 2 6 5 3 5 3 1 4 1 5 9 2 6 5 3 5 
 lresidue0 1 1 1 2 0 2 0 2 0 2 
 lreverse5 3 5 6 2 9 5 1 4 1 3 
 lrotate 5 9 2 6 5 3 5 3 1 4 1 
 lrpad   3 1 4 1 5 9 2 6 5 3 5 0 0 0 
 lrtrim  3 1 4 1 5 9 2 6 
 lrundown3 3 2 3 2 1 3 2 1 3 1 1 4 3 4 3 2 4 3 2 1 4 4 3 2 
 lrunup  3 4 5 3 3 4 5 3 4 5 6 3 4 5 6 7 8 9 3 4 5 3 4 3 1 
 lshift  6 4 7 4 8 12 5 9 8 6 8 
 lswap   1 3 1 4 9 5 6 2 3 5 5 
 lunique 3 1 4 5 9 2 6 
 lmaxlen 9 
 lminlen 1 
 sortkeys3 4 5 2 5 5 
 sortvalues  1 1 9 6 3 
 str2lst Once  upon  a mid night  drea ry 
 
 math:
 binocoef4368 
 cosh1.600286858 
 sinh1.249367051 
 tanh0.7807144354 
 
 numbers:
 adp 3 
 adr 1 
 amean   10.6667 
 ceil4 
 commas  2,147,483,647 
 decimal 1. 
 decimal 0.5 
 decimal 0.[3] 
 decimal 0.25 
 decimal 0.2 
 decimal 0.1[6] 
 decimal 0.[142857] 
 decimal 0.125 
 decimal 0.[1] 
 decimal 0.1 
 decimal 0.[09] 
 decimal 0.08[3] 
 decimal 0.[076923] 
 decimal 0.0[714285] 
 decimal 0.0[6] 
 decimal 0.0625 
 decimal 0.[0588235294117647] 
 decimal 0.0[5] 
 decimal 0.[052631578947368421] 
 decimal 0.05 
 decipos 3.1415 
 digprod 903168 
 digred  1 
 digroot 1 
 digsum  46 10 1 
 distseq 13 24 10 21 7 18 4 15 1 12 23 9 20 6 17 3 14 25 11 22 8 19 5 
16 2 
 div 3.14159292 
 fix 3.1415 
 floor   1 
 frn 3.1416 
 gcd 6 
 gcdl3 
 gmean   5.194140423 
 hmean   2.721759118 
 large   214748364721474836472147483647 
 lcm 120 
 lcm 120 
 mantissa.7182818285 
 max 3.141592654 
 mdp 2 
 mdr 0 
 min 1.618033989 
 mod17 
 npalins 11 22 33 44 55 66 77 88 99 
 residue 7 
 roman   MCMLXXXIX 
 round   3 
 sign-1 
 spell   forty-seven thousand and seven thousand and one hundred and 
ninety-three 
 sum 96 
 trunc   1 
 unroman 1974 
 
 options:
 options a:1 b:1 c:1 i:1 r:1 s:1 v:1
 options a:1 b:1 c:1 i:1 r:1 s:1 v:1
 options a:bc i:42 r:98.6 s:-v
 options a:bc i:42 r:98.6 s:1 v:1
 options abc:- i:1 r:1 s:-v
 options a:bc i:42 r:1 s:1 v:1
argv - 98.6 -b x y 
 
 random:
 rand_num453816694 
 rand_int9 
 randomize
 randrange   41 
 randrangeseq59 65 71 77 83 89 95 54 60 66 72 78 84 90 96 55 61 67 73 79 
85 91 97 56 62 
 randseq 1903 204320185 193201979 

Processed: fixed in python2.3 2.3.5-5

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 close 320788 2.3.5-5
Bug#320788: Python 2.3.5 crashes on debian testing
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 2.3.5-5, send any further explanations to Heikki 
Orsila [EMAIL PROTECTED]

 close 314876 2.3.5-5
Bug#314876: ipython: segmentaion fault
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug#319192: ipython: IPython seqfaults when evaluating anything.
Bug marked as fixed in version 2.3.5-5, send any further explanations to Tom 
[EMAIL PROTECTED]
Removed pending tag.

 close 319192 2.3.5-5
Bug#319192: ipython: IPython seqfaults when evaluating anything.
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug#314876: ipython: segmentaion fault
Bug marked as fixed in version 2.3.5-5, send any further explanations to Thomas 
Christensen [EMAIL PROTECTED]

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#321588: marked as done (iso-codes: FTBFS: Missing Build-Depends on 'autoconf, automake')

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 13:47:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#321588: fixed in iso-codes 0.47-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; 6 Aug 2005 11:56:11 +
From [EMAIL PROTECTED] Sat Aug 06 04:56:11 2005
Return-path: [EMAIL PROTECTED]
Received: from d097194.adsl.hansenet.de (localhost.localdomain) [80.171.97.194] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E1NHe-0003sr-00; Sat, 06 Aug 2005 04:56:11 -0700
Received: from aj by localhost.localdomain with local (Exim 4.52)
id 1E1NHb-0002Mk-NS; Sat, 06 Aug 2005 13:56:07 +0200
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: iso-codes: FTBFS: Missing Build-Depends on 'autoconf, automake'
Message-Id: [EMAIL PROTECTED]
Date: Sat, 06 Aug 2005 13:56:07 +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-Level: 
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

Package: iso-codes
Version: 0.47-1
Severity: serious
Tags: patch

When building 'iso-codes' in a clean 'unstable' chroot,
I get the following error:

chmod +x ./autogen.sh
./autogen.sh
./autogen.sh: line 8: aclocal: command not found
./autogen.sh: line 9: autoconf: command not found
./autogen.sh: line 10: automake: command not found
./autogen.sh: line 12: ./configure: No such file or directory
make: *** [configure] Error 127

Please add the missing Build-Depends on 'autoconf, automake'
to debian/control.

Regards
Andreas Jochens

diff -urN ../tmp-orig/iso-codes-0.47/debian/control ./debian/control
--- ../tmp-orig/iso-codes-0.47/debian/control   2005-08-06 11:47:41.0 
+
+++ ./debian/control2005-08-06 11:47:38.0 +
@@ -1,7 +1,7 @@
 Source: iso-codes
 Priority: optional
 Section: misc
-Build-Depends-Indep: gettext, debhelper (= 3), python, python-xml
+Build-Depends-Indep: debhelper, autoconf, automake1.9, gettext, python, 
python-xml
 Maintainer: Alastair McKinstry [EMAIL PROTECTED]
 Standards-Version: 3.6.2
 

---
Received: (at 321588-close) by bugs.debian.org; 13 Aug 2005 20:50:31 +
From [EMAIL PROTECTED] Sat Aug 13 13:50:31 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E42uI-00025k-00; Sat, 13 Aug 2005 13:47:06 -0700
From: Alastair McKinstry [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#321588: fixed in iso-codes 0.47-2
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 13:47:06 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 3

Source: iso-codes
Source-Version: 0.47-2

We believe that the bug you reported is fixed in the latest version of
iso-codes, which is due to be installed in the Debian FTP archive:

iso-3166-udeb_0.47-2_all.udeb
  to pool/main/i/iso-codes/iso-3166-udeb_0.47-2_all.udeb
iso-codes_0.47-2.diff.gz
  to pool/main/i/iso-codes/iso-codes_0.47-2.diff.gz
iso-codes_0.47-2.dsc
  to pool/main/i/iso-codes/iso-codes_0.47-2.dsc
iso-codes_0.47-2_all.deb
  to pool/main/i/iso-codes/iso-codes_0.47-2_all.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.
Alastair McKinstry [EMAIL PROTECTED] (supplier of updated iso-codes 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: Sat, 13 Aug 2005 16:33:54 +0100
Source: iso-codes
Binary: iso-3166-udeb iso-codes
Architecture: source all
Version: 0.47-2
Distribution: unstable
Urgency: low
Maintainer: Alastair McKinstry [EMAIL 

Bug#322977: libcdk5: ftbfs [any] /bin/bash: ./configure: Permission denied

2005-08-13 Thread Blars Blarson
Package: libcdk5
Version: 5.0.20050424-1
Severity: serious
Justification: fails to build from source

libcdk5 failed to build on all buildds, duplicated on my sparc pbuilder.

dh_testdir
# Add here commands to configure the package.
CFLAGS=-Wall -g -O2 ./configure --host=sparc-linux-gnu 
--build=sparc-linux-gnu --prefix=/usr --mandir=\${prefix}/share/man 
--infodir=\${prefix}/share/info
/bin/bash: ./configure: Permission denied
make: *** [config.status] Error 126


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



Bug#314990: xdm: cannot log in (fwd)

2005-08-13 Thread Hubert Chan
This message from Scott Barker was just sent to me instead of to the 
BTS.


--
Hubert Chan [EMAIL PROTECTED] - http://www.uhoreg.ca/
PGP/GnuPG key: 1024D/124B61FA
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA
Key available at wwwkeys.pgp.net.   Encrypted e-mail preferred.
-- Forwarded message --
Date: 2005-08-08 10:32:38 -0400
From: Scott Barker [EMAIL PROTECTED]
Subject: Re: xdm: cannot log in

The same thing was happening to me. Downloading the debian source 
(apt-get
source xdm), removing the 099x* patch for xdm, and rebuilding seems to 
have

solved the problem for me.

On Sun, Jun 19, 2005 at 06:01:17PM -0400, Hubert Chan wrote:

Package: xdm
Version: 4.3.0.dfsg.1-14
Severity: grave
Justification: renders package unusable

As of xdm 4.3.0.dfsg.1-13, I cannot log in.  Downgrading to
4.3.0.dfsg.1-12.0.1 gets me in again.  Here is an excerpt from 
xdm.log:


- BEGIN -

Sun Jun 19 14:32:24 2005 xdm info (pid 9298): starting
Sun Jun 19 14:32:24 2005 xdm info (pid 9298): starting X server on :0
XFree86 Version 4.3.0.1 (Debian 4.3.0.dfsg.1-14 20050601051219 
[EMAIL PROTECTED])

Release Date: 15 August 2003
X Protocol Version 11, Revision 0, Release 6.6
Build Operating System: Linux 2.4.29-pre2 i686 [ELF]
Build Date: 01 June 2005

[... stuff about XFree86 being heavily modified ...]

Module Loader present
OS Kernel: Linux version 2.6.10-mm3 ([EMAIL PROTECTED]) (gcc version 
3.3.5 (Debian 1:3.3.5-5)) #1 Fri Feb 4 21:59:04 EST 2005

Markers: (--) probed, (**) from config file, (==) default setting,
 (++) from command line, (!!) notice, (II) informational,
 (WW) warning, (EE) error, (NI) not implemented, (??) unknown.
(==) Log file: /var/log/XFree86.0.log, Time: Sun Jun 19 14:32:24 
2005

(==) Using config file: /etc/X11/XF86Config-4
Skipping 
/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_clip.o:  No 
symbols found
Skipping 
/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_norm.o:  No 
symbols found
Skipping 
/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_xform.o:  No 
symbols found
Skipping 
/usr/X11R6/lib/modules/extensions/libGLcore.a:m_debug_vertex.o:  No 
symbols found
Skipping /usr/X11R6/lib/modules/fonts/libspeedo.a:spencode.o:  No 
symbols found

The XKEYBOARD keymap compiler (xkbcomp) reports:

[... a bunch of warnings about keys redefined ...]
[... a bunch of xf86OpenSerial errors, due to my Wacom not being 
plugged

in ...]
[... font renderer already registered warnings ...]

Sun Jun 19 14:32:31 2005 xdm info (pid 9301): sourcing 
/usr/X11R6/lib/X11/xdm/Xsetup
Sun Jun 19 14:32:37 2005 xdm info (pid 9301): sourcing 
/usr/X11R6/lib/X11/xdm/Xstartup
Sun Jun 19 14:32:37 2005 xdm error (pid 9298): display :0 (pid 2816) 
exited with unexpected status 9301

Sun Jun 19 14:32:37 2005 xdm info (pid 9298): exiting

- END -

The number after unexpected status in the second last line always
seems to be the PID reported in the previous two lines.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)
Kernel: Linux 2.6.10-mm3
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages xdm depends on:
ii  cpp  4:3.3.5-3   The GNU C preprocessor 
(cpp)
ii  debconf [debconf-2.0]1.4.51  Debian configuration 
management sy
ii  libc62.3.2.ds1-22GNU C Library: Shared 
libraries an
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange 
library
ii  libpam-modules   0.76-22 Pluggable Authentication 
Modules f
ii  libpam-runtime   0.76-22 Runtime support for the 
PAM librar
ii  libpam0g 0.76-22 Pluggable Authentication 
Modules l
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session 
Management
ii  libxaw7  4.3.0.dfsg.1-14 X Athena widget set 
library
ii  libxext6 4.3.0.dfsg.1-14 X Window System 
miscellaneous exte
ii  libxmu6  4.3.0.dfsg.1-14 X Window System 
miscellaneous util

ii  libxpm4  4.3.0.dfsg.1-14 X pixmap library
ii  libxt6   4.3.0.dfsg.1-14 X Toolkit Intrinsics
ii  xbase-clients4.3.0.dfsg.1-14 miscellaneous X clients
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension 
(XKB) configu


-- debconf information:
* shared/default-x-display-manager: gdm
  xdm/stop_running_server_with_children: false
  xdm/daemon_name: /usr/bin/X11/xdm





--
Scott Barker
[EMAIL PROTECTED]

Manager, Infrastructure 403-233-0740 x248
M-Tech Information Technology, Inc. http://mtechIT.com


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



Bug#314990: xdm: cannot log in

2005-08-13 Thread Hubert Chan
On 2005-08-11 05:09:07 -0400 Nathanael Nerode [EMAIL PROTECTED] 
wrote:



Doing a little bug work.

It looks like you're running unstable.  If so, can you still 
reproduce this 
bug with the xorg-x11 packages?  There've
been more than a few changes, and it will probably be easier for the 
developers to track down the bug with

the new source package.


Yes, the problem still exists with the xorg-x11 packages.  (The last 
version I tried was 6.8.2.dfsg.1-2.)


--
Hubert Chan [EMAIL PROTECTED] - http://www.uhoreg.ca/
PGP/GnuPG key: 1024D/124B61FA
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA
Key available at wwwkeys.pgp.net.   Encrypted e-mail preferred.


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



Bug#322768: libc6: sshd after upgrade not working

2005-08-13 Thread Adrian Bunk
On Sat, Aug 13, 2005 at 12:02:48PM +0900, GOTO Masanori wrote:
 At Fri, 12 Aug 2005 20:50:25 +0200,
 Adrian Bunk wrote:
  After upgrading from the sarge libc6, sshd on my computer no longer
  accepted connections.
  
  Restarting sshd fixed the problem.
  
  It seems the restart services question in the postinst should be
  asked for upgrades from  2.3.5 .
  
  I've set the severity of this bug based on the problems a non-working
  sshd can cause for non-local users (and the fix for this issue is
  trivial).
 
 Do you have your sshd error log?  If so, could you send us to prove
 definitely?  I intend to enable restarting sevice question again in
 2.3.5-4.

sshd didn't log any errors (with the default LogLevel INFO).

 Regards,
 -- gotom

cu
Adrian

-- 

   Is there not promise of rain? Ling Tan asked suddenly out
of the darkness. There had been need of rain for many days.
   Only a promise, Lao Er said.
   Pearl S. Buck - Dragon Seed



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



Bug#322999: Upgrade failure if /usr/doc does not exist

2005-08-13 Thread David Weinehall
Package: cpio
Version: 3.0-2
Severity: grave

The following line:

test -L /usr/doc/cpio  rm -f /usr/doc/cpio

Will cause the postinst script to fail if /usr/doc (or /usr/doc/cpio)
doesn't exist, since test -L will then return '1'.


Regards: David Weinehall
-- 
 /) David Weinehall [EMAIL PROTECTED] /) Rime on my window   (\
//  ~   //  Diamond-white roses of fire //
\)  http://www.acc.umu.se/~tao/(/   Beautiful hoar-frost   (/


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



Bug#322858: Incomplete YYSTYPE declaration in header

2005-08-13 Thread Dave Beckett
On Fri, 2005-08-12 at 10:30 -0700, Matt Kraai wrote:
 Package: byacc
 Version: 20050505-1
 Severity: serious
 
 groff fails to build from source because byacc generates an incomplete
 declaration of YYSTYPE in the header file.  The first attachement
 contains the header file it generates.  The second attachment contains
 a patch that fixes this problem.

Recording the diff in eql_tab.h from byacc-old/byacc-new:

--- eqn_tab.h.orig  2005-08-13 23:42:53.0 +0100
+++ eqn_tab.h   2005-08-13 23:43:13.0 +0100
@@ -56,12 +56,5 @@
 #define SET 312
 #define GRFONT 313
 #define GBFONT 314
-typedef union {
-   char *str;
-   box *b;
-   pile_box *pb;
-   matrix_box *mb;
-   int n;
-   column *col;
-} YYSTYPE;
+ YYSTYPE;
 extern YYSTYPE yylval;


 This is serious because it prevents groff from building.

OK, shame apt-cache rdepends doesn't show Build-Depends, which is what
byacc is likely most used for :/

I've looked at your patch and don't grok it yet.

Dave



signature.asc
Description: This is a digitally signed message part


Bug#322952: evince: crashes looking for wrong verision of libdjvulibre

2005-08-13 Thread Steve Langasek
block 322952 by 320582
thanks

On Sat, Aug 13, 2005 at 02:23:52PM -0400, P. Oscar Boykin wrote:
 Package: evince
 Version: 0.3.0-2
 Severity: grave
 Justification: renders package unusable

 Evince reports:

 evince: error while loading shared libraries: libdjvulibre.so.14: cannot
 open shared object file: No such file or directory

 While the it seems that only libdjvulibre.so.15 is installed.

This is a bug in libdjvulibre1, not in evince.

-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Processed: severity of 322946 is normal

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 severity 322946 normal
Bug#322946: x free86: x server fails to load
Warning: Unknown package 'x'
Warning: Unknown package 'free86'
Severity set to `normal'.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Re: evince: crashes looking for wrong verision of libdjvulibre

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reassign 322952 libdjvulibre1
Bug#322952: evince: crashes looking for wrong verision of libdjvulibre
Bug reassigned from package `evince' to `libdjvulibre1'.

 merge 322952 320582
Bug#320582: libdjvulibre1: soname of library changed
Bug#322952: evince: crashes looking for wrong verision of libdjvulibre
Bug#320621: libdjvulibre1 3.5.14-6 changes soname without warning
Bug#320656: evince: libdjvulibre.so.14 has gone
Bug#320794: evince: Evince missing library libdjvulibre.so
Bug#321244: evince does not start, missing dependency on libdjvulibre1.so.14
Bug#321406: evince: libdjvulibre dependency problem
Bug#321509: evince is linked against libdjvulibre.so.14 when libdjvulibre1 
provides libdjvulibre.so.15
Bug#321652: evince: Evince shared library problem
Bug#322600: evince: Application will not start
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Merged 320582 320621 320656 320794 321244 321406 321509 321652 322600 322882 
322952.

 thanks Debian BTS!
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Re: Bug#322952: evince: crashes looking for wrong verision of libdjvulibre

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 block 322952 by 320582
Bug#322952: evince: crashes looking for wrong verision of libdjvulibre
Was not blocked by any bugs.
Bug#320582: libdjvulibre1: soname of library changed
Bug#320621: libdjvulibre1 3.5.14-6 changes soname without warning
Bug#320656: evince: libdjvulibre.so.14 has gone
Bug#320794: evince: Evince missing library libdjvulibre.so
Bug#321244: evince does not start, missing dependency on libdjvulibre1.so.14
Bug#321406: evince: libdjvulibre dependency problem
Bug#321509: evince is linked against libdjvulibre.so.14 when libdjvulibre1 
provides libdjvulibre.so.15
Bug#321652: evince: Evince shared library problem
Bug#322600: evince: Application will not start
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Blocking bugs added: 320582, 320621, 320656, 320794, 321244, 321406, 321509, 
321652, 322600, 322882, 322952

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322977: marked as done (libcdk5: ftbfs [any] /bin/bash: ./configure: Permission denied)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:17:20 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#322977: fixed in libcdk5 5.0.20050424-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; 13 Aug 2005 20:55:43 +
From [EMAIL PROTECTED] Sat Aug 13 13:55:43 2005
Return-path: [EMAIL PROTECTED]
Received: from blars.org (renig.nat.blars.org) [64.81.35.59] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E432d-0003i8-00; Sat, 13 Aug 2005 13:55:43 -0700
Received: from quaff (quaff.nat.blars.org [172.16.2.7])
by renig.nat.blars.org (8.12.3/8.12.3/Debian-7.1) with ESMTP id 
j7DKtfMu006019
(version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO);
Sat, 13 Aug 2005 13:55:41 -0700
Received: from quaff.nat.blars.org (quaff [127.0.0.1])
by quaff (8.13.4/8.13.4/Debian-3) with ESMTP id j7DKsqEB024777;
Sat, 13 Aug 2005 13:54:52 -0700
Received: (from [EMAIL PROTECTED])
by quaff.nat.blars.org (8.13.4/8.13.4/Submit) id j7DKsqw0024775;
Sat, 13 Aug 2005 13:54:52 -0700
Date: Sat, 13 Aug 2005 13:54:52 -0700
From: Blars Blarson [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: libcdk5: ftbfs [any] /bin/bash: ./configure: Permission denied
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
X-Reportbug-Version: 3.15
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: libcdk5
Version: 5.0.20050424-1
Severity: serious
Justification: fails to build from source

libcdk5 failed to build on all buildds, duplicated on my sparc pbuilder.

dh_testdir
# Add here commands to configure the package.
CFLAGS=-Wall -g -O2 ./configure --host=sparc-linux-gnu 
--build=sparc-linux-gnu --prefix=/usr --mandir=\${prefix}/share/man 
--infodir=\${prefix}/share/info
/bin/bash: ./configure: Permission denied
make: *** [config.status] Error 126

---
Received: (at 322977-close) by bugs.debian.org; 13 Aug 2005 23:20:57 +
From [EMAIL PROTECTED] Sat Aug 13 16:20:57 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E45Fg-0006RY-00; Sat, 13 Aug 2005 16:17:20 -0700
From: John Goerzen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#322977: fixed in libcdk5 5.0.20050424-2
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 16:17:20 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: libcdk5
Source-Version: 5.0.20050424-2

We believe that the bug you reported is fixed in the latest version of
libcdk5, which is due to be installed in the Debian FTP archive:

libcdk5-dev_5.0.20050424-2_i386.deb
  to pool/main/libc/libcdk5/libcdk5-dev_5.0.20050424-2_i386.deb
libcdk5_5.0.20050424-2.diff.gz
  to pool/main/libc/libcdk5/libcdk5_5.0.20050424-2.diff.gz
libcdk5_5.0.20050424-2.dsc
  to pool/main/libc/libcdk5/libcdk5_5.0.20050424-2.dsc
libcdk5_5.0.20050424-2_i386.deb
  to pool/main/libc/libcdk5/libcdk5_5.0.20050424-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.
John Goerzen [EMAIL PROTECTED] (supplier of updated libcdk5 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: Sat, 13 Aug 2005 18:01:16 -0500
Source: libcdk5
Binary: libcdk5-dev libcdk5
Architecture: source i386
Version: 5.0.20050424-2
Distribution: unstable
Urgency: low
Maintainer: John 

Bug#285813: marked as done (euler: FTBFS (amd64/gcc-4.0): static declaration of 'command_count' follows non-static declaration)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:02:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#285813: fixed in euler 1.60.6fix-4
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 2004 19:05:29 +
From [EMAIL PROTECTED] Wed Dec 15 11:05:29 2004
Return-path: [EMAIL PROTECTED]
Received: from c203129.adsl.hansenet.de (localhost.localdomain) 
[213.39.203.129] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CeeSn-0001vi-00; Wed, 15 Dec 2004 11:05:29 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CeeX9-0007WZ-MA; Wed, 15 Dec 2004 20:09:59 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: euler: FTBFS (amd64/gcc-4.0): static declaration of 'command_count' 
follows non-static declaration
Message-Id: [EMAIL PROTECTED]
Date: Wed, 15 Dec 2004 20:09:59 +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: euler
Severity: normal
Tags: patch

When building 'euler' on amd64 with gcc-4.0,
I get the following error:

gcc -Wall -O2 -DINSTALL_DIR=\/usr\ -c  command.c
command.c:735: error: static declaration of 'command_count' follows non-static 
declaration
command.c:238: error: previous declaration of 'command_count' was here
make[2]: *** [command.o] Error 1
make[2]: Leaving directory `/euler-1.60.6fix/source'

With the attached patch 'euler' can be compiled
on amd64 using gcc-4.0.

This patch includes the patch from BTS #258655 which was already necessary 
to compile the package with gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/euler-1.60.6fix/source/command.c ./source/command.c
--- ../tmp-orig/euler-1.60.6fix/source/command.c2002-04-12 
10:52:15.0 +0200
+++ ./source/command.c  2004-12-15 19:57:38.309722112 +0100
@@ -235,7 +235,7 @@
 
 extern int builtin_count;
 extern builtintyp builtin_list[];
-extern int command_count;
+static int command_count;
 extern commandtyp command_list[];
 
 static void do_list (void)
@@ -732,8 +732,6 @@
 }
 
 
-static int command_count;
-
 commandtyp command_list[] = {
{quit,c_quit,do_quit},
{hold,c_hold,ghold},
diff -urN ../tmp-orig/euler-1.60.6fix/source/term.c ./source/term.c
--- ../tmp-orig/euler-1.60.6fix/source/term.c   2002-06-02 15:40:30.0 
+0200
+++ ./source/term.c 2004-12-15 19:58:26.501395864 +0100
@@ -2163,7 +2163,6 @@
case 'U':
ch = 
'Û';
break;
-   default:
}
deadkey=0;
break;
@@ -2206,7 +2205,6 @@
case 'U':
ch = 
'Ü';
break;
-   default:
}
deadkey=0;
break;
@@ -2586,7 +2584,6 @@
case 
'U':

ch = 'Û';

break;
-   default:
}
deadkey=0;
break;
@@ -2629,7 +2626,6 @@
case 
'U':

ch = 'Ü';
 

Bug#258655: marked as done (euler: FTBFS with gcc-3.4: label at end of compound statement)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:02:06 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#258655: fixed in euler 1.60.6fix-4
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; 10 Jul 2004 21:33:07 +
From [EMAIL PROTECTED] Sat Jul 10 14:33:07 2004
Return-path: [EMAIL PROTECTED]
Received: from c147245.adsl.hansenet.de (localhost) [213.39.147.245] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1BjPT1-hi-00; Sat, 10 Jul 2004 14:33:07 -0700
Received: from aj by localhost with local (Exim 4.34)
id 1BjPT0-a7-7a; Sat, 10 Jul 2004 23:33:06 +0200
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: euler: FTBFS with gcc-3.4: label at end of compound statement
Message-Id: [EMAIL PROTECTED]
Date: Sat, 10 Jul 2004 23:33:06 +0200
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: euler
Severity: normal
Tags: patch

When building 'euler' with gcc-3.4 I get the following error:

metaps.c:1401: warning: operation on `t' may be undefined
metaps.c: In function `ps_meta_vutext':
metaps.c:1463: warning: operation on `t' may be undefined
gcc -Wall -O2 -DINSTALL_DIR=\/usr\ `gtk-config --cflags` -c  main.c
main.c: In function `shellsort':
main.c:330: warning: operation on `s' may be undefined
gcc -Wall -O2 -DINSTALL_DIR=\/usr\ `gtk-config --cflags` -c  rc.c
gcc -Wall -O2 -DINSTALL_DIR=\/usr\ `gtk-config --cflags` -c  earray.c
gcc -Wall -O2 -DINSTALL_DIR=\/usr\ `gtk-config --cflags` -c term.c
term.c: In function `get_scan':
term.c:2167: error: label at end of compound statement
term.c:2210: error: label at end of compound statement
term.c: In function `gtk_term_key_press':
term.c:2590: error: label at end of compound statement
term.c:2633: error: label at end of compound statement
make[2]: *** [term.o] Error 1
make[2]: Leaving directory `/euler-1.60.6fix/source'
make[1]: *** [all] Error 2
make[1]: Leaving directory `/euler-1.60.6fix'
make: *** [build-stamp] Error 2

With the attached patch 'euler' can be compiled using gcc-3.4.

Regards
Andreas Jochens

diff -urN ../tmp-orig/euler-1.60.6fix/source/term.c ./source/term.c
--- ../tmp-orig/euler-1.60.6fix/source/term.c   2002-06-02 15:40:30.0 
+0200
+++ ./source/term.c 2004-07-10 23:17:05.361949864 +0200
@@ -2163,7 +2163,6 @@
case 'U':
ch = 
'Û';
break;
-   default:
}
deadkey=0;
break;
@@ -2206,7 +2205,6 @@
case 'U':
ch = 
'Ü';
break;
-   default:
}
deadkey=0;
break;
@@ -2586,7 +2584,6 @@
case 
'U':

ch = 'Û';

break;
-   default:
}
deadkey=0;
break;
@@ -2629,7 +2626,6 @@
case 
'U':

ch = 'Ü';

break;
-  

Bug#308714: marked as done (isdnutils: Dummy package still needed?)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:02:11 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#308714: fixed in isdnutils 1:3.7.2005-07-09-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; 12 May 2005 00:01:02 +
From [EMAIL PROTECTED] Wed May 11 17:01:02 2005
Return-path: [EMAIL PROTECTED]
Received: from tornado.dat.etsit.upm.es (dat.etsit.upm.es) [138.100.17.73] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1DW18Q-0002Ir-00; Wed, 11 May 2005 17:01:02 -0700
Received: (qmail 13451 invoked by uid 1013); 12 May 2005 00:01:00 -
Date: Thu, 12 May 2005 02:01:00 +0200
From: Javier =?iso-8859-1?Q?Fern=E1ndez-Sanguino_Pe=F1a?= [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: isdnutils: Dummy package still needed?
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.5.6+20040907i
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: isdnutils

This dummy package is present in sarge/sid and was also present in woody.
As this was a dummy transition-only package (for potato?), is there
any reason this package should still exist in the distribution? If not,
please remove it from the distribution.

Regards

Javier

---
Received: (at 308714-close) by bugs.debian.org; 13 Aug 2005 23:08:07 +
From [EMAIL PROTECTED] Sat Aug 13 16:08:07 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E4511-Hd-00; Sat, 13 Aug 2005 16:02:11 -0700
From: Matthias Klose [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#308714: fixed in isdnutils 1:3.7.2005-07-09-2
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 16:02:11 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Source: isdnutils
Source-Version: 1:3.7.2005-07-09-2

We believe that the bug you reported is fixed in the latest version of
isdnutils, which is due to be installed in the Debian FTP archive:

capiutils_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/capiutils_3.7.2005-07-09-2_i386.deb
ipppd_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/ipppd_3.7.2005-07-09-2_i386.deb
isdnactivecards_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnactivecards_3.7.2005-07-09-2_i386.deb
isdneurofile_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdneurofile_3.7.2005-07-09-2_i386.deb
isdnlog-data_3.7.2005-07-09-2_all.deb
  to pool/main/i/isdnutils/isdnlog-data_3.7.2005-07-09-2_all.deb
isdnlog_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnlog_3.7.2005-07-09-2_i386.deb
isdnutils-base_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnutils-base_3.7.2005-07-09-2_i386.deb
isdnutils-doc_3.7.2005-07-09-2_all.deb
  to pool/main/i/isdnutils/isdnutils-doc_3.7.2005-07-09-2_all.deb
isdnutils-xtools_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnutils-xtools_3.7.2005-07-09-2_i386.deb
isdnutils_3.7.2005-07-09-2.diff.gz
  to pool/main/i/isdnutils/isdnutils_3.7.2005-07-09-2.diff.gz
isdnutils_3.7.2005-07-09-2.dsc
  to pool/main/i/isdnutils/isdnutils_3.7.2005-07-09-2.dsc
isdnutils_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnutils_3.7.2005-07-09-2_i386.deb
isdnvbox_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnvbox_3.7.2005-07-09-2_i386.deb
isdnvboxclient_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnvboxclient_3.7.2005-07-09-2_i386.deb
isdnvboxserver_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnvboxserver_3.7.2005-07-09-2_i386.deb
libcapi20-3_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/libcapi20-3_3.7.2005-07-09-2_i386.deb
libcapi20-dev_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/libcapi20-dev_3.7.2005-07-09-2_i386.deb
pppdcapiplugin_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/pppdcapiplugin_3.7.2005-07-09-2_i386.deb



A summary 

Bug#318808: marked as done (libcapi20-3: missing library files and links)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:02:11 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#318808: fixed in isdnutils 1:3.7.2005-07-09-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; 17 Jul 2005 20:59:11 +
From [EMAIL PROTECTED] Sun Jul 17 13:59:11 2005
Return-path: [EMAIL PROTECTED]
Received: from mail-in-04.arcor-online.net [151.189.21.44] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DuGEB-0002nC-00; Sun, 17 Jul 2005 13:59:11 -0700
Received: from mail-in-03-z2.arcor-online.net (mail-in-03-z2.arcor-online.net 
[151.189.8.15])
by mail-in-04.arcor-online.net (Postfix) with ESMTP id 34F942857D
for [EMAIL PROTECTED]; Sun, 17 Jul 2005 22:59:10 +0200 (CEST)
Received: from mail-in-05.arcor-online.net (mail-in-05.arcor-online.net 
[151.189.21.45])
by mail-in-03-z2.arcor-online.net (Postfix) with ESMTP id 27FD717E0A6
for [EMAIL PROTECTED]; Sun, 17 Jul 2005 22:59:10 +0200 (CEST)
Received: from hades.zuhause.test (dialin-145-254-042-238.arcor-ip.net 
[145.254.42.238])
(Authenticated sender: [EMAIL PROTECTED])
by mail-in-05.arcor-online.net (Postfix) with ESMTP id B2D713CD4F
for [EMAIL PROTECTED]; Sun, 17 Jul 2005 22:59:09 +0200 (CEST)
Received: by hades.zuhause.test (hades.mathematik.uni-ulm.de, from userid 1000)
id 59B501C044; Sun, 17 Jul 2005 22:58:49 +0200 (CEST)
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Gerhard Schromm [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: libcapi20-3: missing library files and links
X-Mailer: reportbug 3.15
Date: Sun, 17 Jul 2005 22:58:49 +0200
Message-Id: [EMAIL PROTECTED]
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=-8.0 required=4.0 tests=BAYES_00,HAS_PACKAGE 
autolearn=no version=2.60-bugs.debian.org_2005_01_02

Package: libcapi20-3
Version: 1:3.7.2005-07-09-1
Severity: grave
Justification: renders package unusable

The package contains only

/usr/share/doc/libcapi20-3/copyright
/usr/share/doc/libcapi20-3/changelog.Debian.gz

As a workaround you can use the libraries from libcapi20-2, wich works
at least with pppdcapiplugin.

regards Gerhard

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i586)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.3
Locale: LANG=, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

-- no debconf information

---
Received: (at 318808-close) by bugs.debian.org; 13 Aug 2005 23:08:25 +
From [EMAIL PROTECTED] Sat Aug 13 16:08:25 2005
Return-path: [EMAIL PROTECTED]
Received: from katie by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E4511-Hm-00; Sat, 13 Aug 2005 16:02:11 -0700
From: Matthias Klose [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#318808: fixed in isdnutils 1:3.7.2005-07-09-2
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Sat, 13 Aug 2005 16:02:11 -0700
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.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 2

Source: isdnutils
Source-Version: 1:3.7.2005-07-09-2

We believe that the bug you reported is fixed in the latest version of
isdnutils, which is due to be installed in the Debian FTP archive:

capiutils_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/capiutils_3.7.2005-07-09-2_i386.deb
ipppd_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/ipppd_3.7.2005-07-09-2_i386.deb
isdnactivecards_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnactivecards_3.7.2005-07-09-2_i386.deb
isdneurofile_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdneurofile_3.7.2005-07-09-2_i386.deb
isdnlog-data_3.7.2005-07-09-2_all.deb
  to pool/main/i/isdnutils/isdnlog-data_3.7.2005-07-09-2_all.deb
isdnlog_3.7.2005-07-09-2_i386.deb
  to pool/main/i/isdnutils/isdnlog_3.7.2005-07-09-2_i386.deb
isdnutils-base_3.7.2005-07-09-2_i386.deb
  to 

Bug#323010: amule: uses internal copy of libcrypto++ instead on dynamically linking against it

2005-08-13 Thread Adeodato Simó
Package: amule
Version: 2.0.3-2
Severity: serious
Tags: patch

Hello,

  the amule package in Debian is using an internal copy of libcrypto++
  instead of dynamically linking against it. This is a serious bug,
  please make sure that it gets fixed in the next upload (trivial patch
  attached).

  Thanks.

-- 
Adeodato Simó
EM: asp16 [ykwim] alu.ua.es | PK: DA6AE621
Listening to: Madonna - Bedtime Story
 
Experience is something you don't get until just after you need it.
--- amule-2.0.3/debian/control
+++ amule-2.0.3/debian/contro
@@ -2,7 +2,7 @@
 Section: x11
 Priority: optional
 Maintainer: Julien Delange [EMAIL PROTECTED]
-Build-Depends: debhelper(= 4.0.0), libglib2.0-dev, libgtk1.2-dev, zlib1g-dev, 
libwxgtk2.4-dev, libgd2-xpm-dev, libreadline5-dev,  libwxbase2.4-dev 
+Build-Depends: debhelper(= 4.0.0), libglib2.0-dev, libgtk1.2-dev, zlib1g-dev, 
libwxgtk2.4-dev, libgd2-xpm-dev, libreadline5-dev,  libwxbase2.4-dev, 
libcrypto++-dev
 Standards-Version: 3.6.2
 
 Package: amule
--- amule-2.0.3/debian/rules
+++ amule-2.0.3/debian/rules
@@ -29,7 +29,7 @@
 config.status: configure
dh_testdir
# Add here commands to configure the package.
-   CFLAGS=$(CFLAGS) CXXFLAGS=-Os ./configure --enable-amulecmd 
--enable-optimize --enable-gsocket --enable-alc --enable-alcc 
--enable-amule-daemon --enable-amulecmdgui --disable-debug --enable-systray 
--enable-cas --enable-wxcas --with-ccache --enable-webserver 
--enable-webservergui --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) 
--prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+   CFLAGS=$(CFLAGS) CXXFLAGS=-Os ./configure --enable-amulecmd 
--enable-optimize --enable-gsocket --enable-alc --enable-alcc 
--enable-amule-daemon --enable-amulecmdgui --disable-debug 
--disable-embedded-crypto --enable-systray --enable-cas --enable-wxcas 
--with-ccache --enable-webserver --enable-webservergui 
--host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr 
--mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 
 
 build: build-stamp


Processed: Fixed in NMU of libfwbuilder 2.0.7-1.1

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 322671 + fixed
Bug#322671: libfwbuilder: rebuild needed for C++ ABI transition (NMU patch 
attached)
Tags were: patch
Tags added: fixed

 quit
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#322647: marked as done (FTBFS: Unsatisfiable build-dependency on libnet-imap-simple-perl)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 16:59:36 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#322647: fixed in libnet-imap-simple-perl 0.104-1
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; 12 Aug 2005 01:13:22 +
From [EMAIL PROTECTED] Thu Aug 11 18:13:22 2005
Return-path: [EMAIL PROTECTED]
Received: from zoot.lafn.org [206.117.18.6] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1E3O6s-0004g2-00; Thu, 11 Aug 2005 18:13:22 -0700
Received: from localhost.localdomain 
(pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253])
(authenticated bits=0)
by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j7C1DL6A002630
(version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
for [EMAIL PROTECTED]; Thu, 11 Aug 2005 18:13:21 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.52)
id 1E3KXb-00016e-4e
for [EMAIL PROTECTED]; Thu, 11 Aug 2005 14:24:43 -0700
Date: Thu, 11 Aug 2005 14:24:43 -0700
From: Matt Kraai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS: Unsatisfiable build-dependency on libnet-imap-simple-perl
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=cmJC7u66zC7hs+87
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: ClamAV 0.86.2/1011/Tue Aug  9 02:20:28 2005 on zoot.lafn.org
X-Virus-Status: Clean
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.6 required=4.0 tests=BAYES_00,DATE_IN_PAST_03_06 
autolearn=no version=2.60-bugs.debian.org_2005_01_02


--cmJC7u66zC7hs+87
Content-Type: multipart/mixed; boundary=HlL+5n6rz5pIUxbD
Content-Disposition: inline


--HlL+5n6rz5pIUxbD
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: libnet-imap-simple-ssl-perl
Version: 1.3-2
Severity: serious
Tags: patch

libnet-imap-simple-ssl-perl fails to build because it build-depends on
libnet-imap-simple-perl:

  - Considering  libnet-imap-simple-perl
- Trying libnet-imap-simple-perl
- Cannot install libnet-imap-simple-perl; apt errors follow:
 Reading package lists...
 Building dependency tree...
 E: Package libnet-imap-simple-perl has no installation candidate
 perl is already the newest version.
 Package libnet-imap-simple-perl is not available, but is referred to by a=
nother package.
 This may mean that the package is missing, has been obsoleted, or
 is only available from another source

Removing the build-dependency, as the attached patch does, allows
libnet-imap-simple-ssl-perl to build.

--=20
Matt

--HlL+5n6rz5pIUxbD
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=patch

diff -u libnet-imap-simple-ssl-perl-1.3/debian/control 
libnet-imap-simple-ssl-perl-1.3/debian/control
--- libnet-imap-simple-ssl-perl-1.3/debian/control
+++ libnet-imap-simple-ssl-perl-1.3/debian/control
@@ -2,7 +2,7 @@
 Section: perl
 Priority: optional
 Build-Depends: debhelper (= 4.0.2)
-Build-Depends-Indep: perl (= 5.8.0-7), libio-socket-ssl-perl, 
libnet-imap-simple-perl
+Build-Depends-Indep: perl (= 5.8.0-7), libio-socket-ssl-perl
 Maintainer: Debian Perl Group [EMAIL PROTECTED]
 Uploaders: Allard Hoeve [EMAIL PROTECTED], Gunnar Wolf [EMAIL PROTECTED], 
Joachim Breitner [EMAIL PROTECTED]
 Standards-Version: 3.6.2

--HlL+5n6rz5pIUxbD--

--cmJC7u66zC7hs+87
Content-Type: application/pgp-signature; name=signature.asc
Content-Description: Digital signature
Content-Disposition: inline

-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC+8IafNdgYxVXvBARAk9DAKCRPxNWUAPY8IctUtNyCOnHBjXvdwCeMSIo
ybG9iNplY9zKSGhcQF8wNF4=
=Oona
-END PGP SIGNATURE-

--cmJC7u66zC7hs+87--

---
Received: (at 322647-close) by bugs.debian.org; 14 Aug 2005 00:09:27 +
From [EMAIL PROTECTED] Sat Aug 13 17:09:27 2005
Return-path: [EMAIL PROTECTED]
Received: from joerg by spohr.debian.org with local (Exim 3.36 1 (Debian))
id 1E45ua-0003db-00; Sat, 13 Aug 2005 16:59:36 -0700
From: Gunnar Wolf [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: lisa $Revision: 1.30 $
Subject: Bug#322647: fixed in libnet-imap-simple-perl 

Bug#317488: marked as done (FTBFS: Accesses members of non-class type and has undefined references)

2005-08-13 Thread Debian Bug Tracking System
Your message dated Sat, 13 Aug 2005 17:14:52 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#317488: fixed in ace 5.4.7-1
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; 9 Jul 2005 01:59:09 +
From [EMAIL PROTECTED] Fri Jul 08 18:59:09 2005
Return-path: [EMAIL PROTECTED]
Received: from zoot.lafn.org [206.117.18.6] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Dr4cX-0006Xw-00; Fri, 08 Jul 2005 18:59:09 -0700
Received: from localhost.localdomain 
(pool-71-104-165-253.lsanca.dsl-w.verizon.net [71.104.165.253])
(authenticated bits=0)
by zoot.lafn.org (8.13.1/8.13.1) with ESMTP id j691x7mM080696
(version=TLSv1/SSLv3 cipher=AES256-SHA bits=256 verify=NO)
for [EMAIL PROTECTED]; Fri, 8 Jul 2005 18:59:08 -0700 (PDT)
(envelope-from [EMAIL PROTECTED])
Received: from kraai by localhost.localdomain with local (Exim 4.50)
id 1Dqv5F-xa-HD
for [EMAIL PROTECTED]; Fri, 08 Jul 2005 08:48:09 -0700
Date: Fri, 8 Jul 2005 08:48:09 -0700
From: Matt Kraai [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: FTBFS: Accesses members of non-class type and has undefined references
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=dDnEQgWzhgf+8aPe
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-Virus-Scanned: ClamAV version 0.85.1, clamav-milter version 0.85 on 
zoot.lafn.org
X-Virus-Status: Clean
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=-2.4 required=4.0 tests=BAYES_00,DATE_IN_PAST_06_12 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 


--dDnEQgWzhgf+8aPe
Content-Type: multipart/mixed; boundary=bFsKbPszpzYNtEU6
Content-Disposition: inline


--bFsKbPszpzYNtEU6
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
Content-Transfer-Encoding: quoted-printable

Package: ace
Version: 5.4.2.1.0-4
Severity: serious

ace fails to build from source:

 g++ -W -Wall -Wpointer-arith -O3 -pipe -fno-implicit-templates  -D_REENTR=
ANT -DACE_HAS_AIO_CALLS -D_GNU_SOURCE -DACE_HAS_EXPLICIT_TEMPLATE_INSTANTIA=
TION -DACE_HAS_SYS_SIGLIST=3D1 -DACE_GPERF=3D\gperf-ace\   -I/tmp/buildd/=
ace-5.4.2.1.0/ACE_wrappers -DACE_NDEBUG -DACE_USE_RCSID=3D0 -DACE_HAS_EXCEP=
TIONS -DACE_COMPILE_TIMEPROBES -I.. -DACE_HAS_ACE_TOKEN -DACE_HAS_ACE_SVCCO=
NF -DACE_BUILD_DLL -DACE_AS_STATIC_LIBS  -c -o .obj/Timeprobe.o Timeprobe.c=
pp
 /tmp/buildd/ace-5.4.2.1.0/ACE_wrappers/ace/Timeprobe_T.cpp: In member fun=
ction 'void ACE_Timeprobe_ExACE_LOCK, ALLOCATOR::print_absolute_times() [=
with ACE_LOCK =3D ACE_TIMEPROBE_MUTEX, ALLOCATOR =3D ACE_TIMEPROBE_ALLOCATO=
R]':
 Timeprobe.cpp:18:   instantiated from here
 /tmp/buildd/ace-5.4.2.1.0/ACE_wrappers/ace/Timeprobe_T.cpp:334: error: re=
quest for member 'usec' in '(((ACE_Timeprobe_ExACE_TIMEPROBE_MUTEX, ACE_TI=
MEPROBE_ALLOCATOR*)this)-ACE_Timeprobe_ExACE_TIMEPROBE_MUTEX, ACE_TIMEPR=
OBE_ALLOCATOR::timeprobes_ + (+(i * 20u)))-ACE_timeprobe_t::time_', which=
 is of non-class type 'ACE_hrtime_t'
 /tmp/buildd/ace-5.4.2.1.0/ACE_wrappers/ace/Timeprobe_T.cpp:334: error: re=
quest for member 'sec' in '(((ACE_Timeprobe_ExACE_TIMEPROBE_MUTEX, ACE_TIM=
EPROBE_ALLOCATOR*)this)-ACE_Timeprobe_ExACE_TIMEPROBE_MUTEX, ACE_TIMEPRO=
BE_ALLOCATOR::timeprobes_ + (+(i * 20u)))-ACE_timeprobe_t::time_', which =
is of non-class type 'ACE_hrtime_t'
 /tmp/buildd/ace-5.4.2.1.0/ACE_wrappers/ace/Timeprobe_T.cpp: In member fun=
ction 'void ACE_Timeprobe_ExACE_LOCK, ALLOCATOR::print_absolute_times() [=
with ACE_LOCK =3D ACE_Thread_Mutex, ALLOCATOR =3D ACE_New_Allocator]':
 Timeprobe.cpp:23:   instantiated from here
 /tmp/buildd/ace-5.4.2.1.0/ACE_wrappers/ace/Timeprobe_T.cpp:334: error: re=
quest for member 'usec' in '(((ACE_Timeprobe_ExACE_Thread_Mutex, ACE_New_A=
llocator*)this)-ACE_Timeprobe_ExACE_Thread_Mutex, ACE_New_Allocator::ti=
meprobes_ + (+(i * 20u)))-ACE_timeprobe_t::time_', which is of non-class t=
ype 'ACE_hrtime_t'
 /tmp/buildd/ace-5.4.2.1.0/ACE_wrappers/ace/Timeprobe_T.cpp:334: error: re=
quest for member 'sec' in '(((ACE_Timeprobe_ExACE_Thread_Mutex, ACE_New_Al=
locator*)this)-ACE_Timeprobe_ExACE_Thread_Mutex, ACE_New_Allocator::tim=
eprobes_ + (+(i * 20u)))-ACE_timeprobe_t::time_', which is of non-class ty=
pe 'ACE_hrtime_t'
 

Processed: unmerging 322952, reassign 322952 to evince

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.9.4
 unmerge 322952
Bug#322952: evince: crashes looking for wrong verision of libdjvulibre
Bug#320582: libdjvulibre1: soname of library changed
Bug#320621: libdjvulibre1 3.5.14-6 changes soname without warning
Bug#320656: evince: libdjvulibre.so.14 has gone
Bug#320794: evince: Evince missing library libdjvulibre.so
Bug#321244: evince does not start, missing dependency on libdjvulibre1.so.14
Bug#321406: evince: libdjvulibre dependency problem
Bug#321509: evince is linked against libdjvulibre.so.14 when libdjvulibre1 
provides libdjvulibre.so.15
Bug#321652: evince: Evince shared library problem
Bug#322600: evince: Application will not start
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Disconnected #322952 from all other report(s).

 reassign 322952 evince
Bug#322952: evince: crashes looking for wrong verision of libdjvulibre
Bug reassigned from package `libdjvulibre1' to `evince'.


End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: yeah, let's not block ourselves either

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 unblock 320582 by 320582
Bug#320582: libdjvulibre1: soname of library changed
Was blocked by: 320582 320621 320656 320794 321244 321406 321509 321652 322600 
322882 322952
Bug#320621: libdjvulibre1 3.5.14-6 changes soname without warning
Bug#320656: evince: libdjvulibre.so.14 has gone
Bug#320794: evince: Evince missing library libdjvulibre.so
Bug#321244: evince does not start, missing dependency on libdjvulibre1.so.14
Bug#321406: evince: libdjvulibre dependency problem
Bug#321509: evince is linked against libdjvulibre.so.14 when libdjvulibre1 
provides libdjvulibre.so.15
Bug#321652: evince: Evince shared library problem
Bug#322600: evince: Application will not start
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Blocking bugs removed: 320582, 320621, 320656, 320794, 321244, 321406, 321509, 
321652, 322600, 322882

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#320582: libdjvulibre1: soname of library changed

2005-08-13 Thread Steve Langasek
Hi Barak,

Since qt3 has now made the C++ ABI transition on 8 of 11 architectures, and
this bug continues to receive the attention of users at a very high rate, I
think it would be a good idea to proceed with getting this fixed without
necessarily waiting for qt on all architectures -- and before more people
get the broken libdjvulibre1 package installed on their systems.  Do you
have time for an upload, or should I perhaps go ahead and prepare an NMU?

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


signature.asc
Description: Digital signature


Bug#320268: FTBFS: Missing class declaration

2005-08-13 Thread Steve Langasek
Hi Tim,

I've prepared an NMU for this RC build failure.  Please find the patch
attached.  I've uploaded the NMU to the 3-day DELAYED queue on gluck.

Thanks,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/
diff -Nru /var/tmp/pyg2BgrdBr/bzflag-2.0.2.20050318/debian/changelog 
/var/tmp/mgvkiRRUIh/bzflag-2.0.2.20050318/debian/changelog
--- /var/tmp/pyg2BgrdBr/bzflag-2.0.2.20050318/debian/changelog  2005-03-18 
01:21:32.0 -0800
+++ /var/tmp/mgvkiRRUIh/bzflag-2.0.2.20050318/debian/changelog  2005-08-13 
06:22:54.0 -0700
@@ -1,3 +1,13 @@
+bzflag (2.0.2.20050318-0.1) unstable; urgency=high
+
+  * Non-maintainer upload.
+  * High-urgency upload for RC bugfix.
+  * Forward-declare class SortedGState for compatibility with g++-4.0's
+increased strictness; thanks to Matt Kraai for the patch
+(closes: #320268).
+
+ -- Steve Langasek [EMAIL PROTECTED]  Sat, 13 Aug 2005 01:08:56 -0700
+
 bzflag (2.0.2.20050318) unstable; urgency=medium
 
   * upstream release - many big fixes - see ChangeLog
diff -Nru /var/tmp/pyg2BgrdBr/bzflag-2.0.2.20050318/src/ogl/OpenGLGState.cxx 
/var/tmp/mgvkiRRUIh/bzflag-2.0.2.20050318/src/ogl/OpenGLGState.cxx
--- /var/tmp/pyg2BgrdBr/bzflag-2.0.2.20050318/src/ogl/OpenGLGState.cxx  
2005-01-17 21:18:32.0 -0800
+++ /var/tmp/mgvkiRRUIh/bzflag-2.0.2.20050318/src/ogl/OpenGLGState.cxx  
2005-08-13 06:22:54.0 -0700
@@ -132,6 +132,8 @@
 // OpenGLGStateRep
 //
 
+class SortedGState;
+
 class OpenGLGStateRep {
   public:
OpenGLGStateRep();


signature.asc
Description: Digital signature


Processed: further unblock fixups

2005-08-13 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 unblock 320582 by 322952
Bug#320582: libdjvulibre1: soname of library changed
Was blocked by: 322952
Bug#320621: libdjvulibre1 3.5.14-6 changes soname without warning
Bug#320656: evince: libdjvulibre.so.14 has gone
Bug#320794: evince: Evince missing library libdjvulibre.so
Bug#321244: evince does not start, missing dependency on libdjvulibre1.so.14
Bug#321406: evince: libdjvulibre dependency problem
Bug#321509: evince is linked against libdjvulibre.so.14 when libdjvulibre1 
provides libdjvulibre.so.15
Bug#321652: evince: Evince shared library problem
Bug#322600: evince: Application will not start
Bug#322882: Error while loading shared libraries: libdjvulibre.so.14
Blocking bugs removed: 322952

 unblock 322952 by 322952
Bug#322952: evince: crashes looking for wrong verision of libdjvulibre
Was blocked by: 320582 320621 320656 320794 321244 321406 321509 321652 322600 
322882 322952
Blocking bugs removed: 322952

 thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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