Bug#317873: Apt Paclkage Dependency Bug

2005-07-15 Thread Kevin Brown
Justin Pryzby [EMAIL PROTECTED] wrote:

 You are probably running unstable, and this is probably related to the
 in-progress g++ abi transition:
 
 Changes: 
  aspell (0.60.3-2) unstable; urgency=low
   .
   * debian/control: renamed libaspell15 to libaspell15c2 for the
   * GCC 4.0 ABI change transition
 
 If you intend to continue running unstable, you'd better prepare
 yourself for more of this.



Isn't this sort of thing what experimental is for?

I'm somewhat unfamiliar with Debian policy, but I'm a bit surprised
that this transition is happening in -unstable instead of
-experimental.  I thought -experimental was where all the
distribution-breaking changes were supposed to occur...


-- 
Kevin Brown   [EMAIL PROTECTED]


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



Bug#318218: Thoughts :-)

2005-07-15 Thread Nathanael Nerode
This can probably be fixed by changing the following stanza from
xc/programs/Xserver/hw/xfree86/common/compiler.h:

# else /* !__alpha__  !__powerpc__  !__sparc__ */

#  define MMIO_IN8(base, offset) \
*(volatile CARD8 *)(((CARD8*)(base)) + (offset))
#  define MMIO_IN16(base, offset) \
*(volatile CARD16 *)(void *)(((CARD8*)(base)) + (offset))
#  define MMIO_IN32(base, offset) \
*(volatile CARD32 *)(void *)(((CARD8*)(base)) + (offset))
#  define MMIO_OUT8(base, offset, val) \
*(volatile CARD8 *)(((CARD8*)(base)) + (offset)) = (val)
#  define MMIO_OUT16(base, offset, val) \
*(volatile CARD16 *)(void *)(((CARD8*)(base)) + (offset)) = (val)
#  define MMIO_OUT32(base, offset, val) \
*(volatile CARD32 *)(void *)(((CARD8*)(base)) + (offset)) = (val)

OK.  The problem with this is that the cast to volatile CARD8* (et al) doesn't 
create a volatile object from the point of view of GCC4.  (GCC4 may be wrong 
here.)  However, code like the following, if I'm not mistaken, *does* create 
a volatile object, and GCC4 notices:

static inline unsigned char
xorgReadMmio8(volatile void * base, const unsigned long offset)
{
  volatile CARD8 * tmp;
  tmp = (CARD8*)base + offset;
  return *tmp;
}
#define MMIO_IN8(base, offset) xorgReadMmio8(base, offset)

(Based on a little testing of simplified code, GCC is smart enough to optimize 
away nearly everything in this, leaving nicely optimized assembly which still
does the memory read, even when the resulting data is never accessed.)

So a consistent replacement along these lines should do the trick.
Shall I whip up a patch?


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



Processed: tag 318365 patch

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 318365 patch
Bug#318365: FTBFS: Undefined references to CValueMap::CValueMap(CValueMap 
const)
There were no tags set.
Tags added: patch

 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#318384: thailatex: FTBFS: build stops and waits for input

2005-07-15 Thread Andreas Jochens
Package: thailatex
Version: 0.3.2
Severity: serious

When trying to build 'thailatex' on unstable,
the build stops with the following message and waits for input:

using config file /var/lib/texmf/web2c/updmap.cfg
updmap: The options --enable and --disable work differently on Debian systems!.
updmap: .
updmap: You cannot use them to permanently enable or disable Map files. 
Instead,.
updmap: you have to use the mechanism described in.
updmap: /usr/share/doc/tetex-bin/README.Debian.gz.
updmap: .
updmap: If you don't know which lines to add to the files in 
/etc/texmf/updmap.d/,.
updmap: press ENTER now and take the resulting line from.
updmap: /var/lib/texmf/web2c/updmap.cfg.
updmap: .
updmap: Press ENTER to continue anyway, or Ctrl-c to quit..


Regards
Andreas Jochens


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



Bug#318383: lg-issue84: FTBFS: '=' missing in tar --exclude switches

2005-07-15 Thread Andreas Jochens
Package: lg-issue84
Version: 2-1
Severity: serious
Tags: patch

When building 'lg-issue84' on unstable,
I get the following error:

dh_installdirs usr/share/doc/lg-issue84
install -d debian/lg-issue84
install -d debian/lg-issue84/usr/share/doc/lg-issue84
cd issue84; \
tar --exclude=lg_toc84.html --exclude TWDT.* --exclude ARTICLES \
--exclude=issue84.* --exclude=whole.lg_answer84.html \
-czf ../debian/lg-issue84/usr/share/doc/lg-issue84/lg-issue84.tar.gz *
tar: You must specify one of the `-Acdtrux' options
Try `tar --help' or `tar --usage' for more information.
make: *** [binary-indep] Error 2

With the attached patch 'lg-issue84' can be compiled.

Regards
Andreas Jochens

diff -urN ../tmp-orig/lg-issue84-2/debian/rules ./debian/rules
--- ../tmp-orig/lg-issue84-2/debian/rules   2005-07-15 06:47:04.0 
+
+++ ./debian/rules  2005-07-15 06:46:58.0 +
@@ -28,7 +28,7 @@
dh_installdirs usr/share/doc/lg-issue$(ISSUE)
 
cd issue$(ISSUE); \
-   tar --exclude=lg_toc$(ISSUE).html --exclude TWDT.* --exclude ARTICLES \
+   tar --exclude=lg_toc$(ISSUE).html --exclude=TWDT.* --exclude=ARTICLES \
--exclude=issue$(ISSUE).* --exclude=whole.lg_answer$(ISSUE).html \
-czf ../$(lgdir)/lg-issue$(ISSUE).tar.gz *
 


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



Bug#318365: tag 318365 patch

2005-07-15 Thread Matt Kraai
tag 318365 patch
thanks

The attached patch fixes this bug.  Yay.

-- 
Matt
--- amule-2.0.3.orig/src/ECSpecialTags.h
+++ amule-2.0.3/src/ECSpecialTags.h
@@ -88,6 +88,16 @@
CValueMap()
{
}
+
+   CValueMap(const CValueMap valuemap)
+   {
+   m_map_uint8 = valuemap.m_map_uint8;
+   m_map_uint16 = valuemap.m_map_uint16;
+   m_map_uint32 = valuemap.m_map_uint32;
+   m_map_uint64 = valuemap.m_map_uint64;
+   m_map_md4 = valuemap.m_map_md4;
+   m_map_string = valuemap.m_map_string;
+   }

void CreateTag(ec_tagname_t tagname, uint8 value, CECTag 
*parent)
{


signature.asc
Description: Digital signature


Bug#318019: libxine1: uninstallable due to g++ 4.0 transition

2005-07-15 Thread Giacomo A. Catenazzi

Note that the last patch in ubuntu doesn't include all the previous patch.
The nes_apu.c patch is found only on yhe first chunk of ubuntu bug report.
If you apply also this part of patch, you solve the problem

Applying the first chunk solve the problem.

But not tested the result package

ciao
cate


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



Bug#318335: marked as done (sawfish: FTBFS on all architectures)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 03:02:04 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#318335: fixed in sawfish 1:1.3+cvs20050709-3
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; 14 Jul 2005 21:24:17 +
From [EMAIL PROTECTED] Thu Jul 14 14:24:17 2005
Return-path: [EMAIL PROTECTED]
Received: from farad.aurel32.net [82.232.2.251] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtBBo-0003Pi-00; Thu, 14 Jul 2005 14:24:16 -0700
Received: from bode.aurel32.net ([2001:618:400:fc13:2e0:18ff:fea3:b80f])
by farad.aurel32.net with esmtps (TLS-1.0:RSA_AES_256_CBC_SHA:32)
(Exim 4.50)
id 1DtBBm-00030I-Lh; Thu, 14 Jul 2005 23:24:14 +0200
Received: from aurel32 by bode.aurel32.net with local (Exim 4.52)
id 1DtBBm-0001mZ-F4; Thu, 14 Jul 2005 23:24:14 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Aurelien Jarno [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: sawfish: FTBFS on all architectures
X-Mailer: reportbug 3.15
Date: Thu, 14 Jul 2005 23:24:14 +0200
Message-Id: [EMAIL PROTECTED]
Sender: Aurelien Jarno [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-Status: No, hits=-4.9 required=4.0 tests=BAYES_00,FROM_ENDS_IN_NUMS,
HAS_PACKAGE,REMOVE_REMOVAL_2WORD autolearn=no 
version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Package: sawfish
Severity: serious
Justification: no longer builds from source

sawfish (1:1.3+cvs20050709-2) unstable; urgency=low

  * Fix typo in sawfish.1 (Closes: #308907)
  * Rebuild against the latest librep-dev package.
   ^^
In that case you should build-depends on it. Please see the build log 
below.


Automatic build of sawfish_1:1.3+cvs20050709-2 on bode.aurel32.net by 
sbuild/i386 1.170.5
Build started at 20050714-2311
**
Checking available source versions...
Fetching source files...
Reading package lists...
Building dependency tree...
Need to get 1778kB of source archives.
Get:1 http://debian.aurel32.net sid/main sawfish 1:1.3+cvs20050709-2 (dsc) 
[815B]
Get:2 http://debian.aurel32.net sid/main sawfish 1:1.3+cvs20050709-2 (tar) 
[1723kB]
Get:3 http://debian.aurel32.net sid/main sawfish 1:1.3+cvs20050709-2 (diff) 
[54.8kB]
Fetched 1778kB in 0s (10.5MB/s)
Download complete and in download only mode
** Using build dependencies supplied by package:
Build-Depends: gettext (= 0.10.37-1), debhelper (= 3.4.4), rep (= 0.17-10), 
libesd0-dev, rep-gtk (= 0.18-9), texinfo, libgmp3-dev (= 4.1.4-8), 
libgtk2.0-dev (= 2.0.6), libxrender-dev, libxext-dev, libxt-dev, autotools-dev
** Filtered missing central deps that are dependencies of or provide build-deps:
libaudiofile-dev (= 0.2.3-4), libfreetype6-dev (= 2.1.5-1), xlibs-dev ( 
4.1.0), zlib1g-dev (= 1:1.2.1)
 Warning:
 The following central src deps are (probably) missing:
  librep-dev (= 0.15.1)
Checking for already installed source dependencies...
gettext: already installed (in sufficient version 0.14.5-2 = 0.10.37-1)
debhelper: already installed (in sufficient version 4.9.3 = 3.4.4)
rep: missing
libesd0-dev: missing
rep-gtk: missing
texinfo: missing
libgmp3-dev: missing
libgtk2.0-dev: missing
libxrender-dev: missing
libxext-dev: missing
libxt-dev: missing
autotools-dev: missing
Checking for source dependency conflicts...
  /usr/bin/sudo /usr/bin/apt-get --purge $CHROOT_OPTIONS -q -y install rep 
libesd0-dev rep-gtk texinfo libgmp3-dev libgtk2.0-dev libxrender-dev 
libxext-dev libxt-dev autotools-dev
Reading package lists...
Building dependency tree...
The following extra packages will be installed:
  defoma esound-common fontconfig libatk1.0-0 libatk1.0-dev libaudiofile-dev
  libaudiofile0 libesd0 libexpat1 libexpat1-dev libfontconfig1
  libfontconfig1-dev libfreetype6 libfreetype6-dev libglib2.0-0 libglib2.0-dev
  libgmp3c2 libgmpxx3 libgtk2.0-0 libgtk2.0-bin libgtk2.0-common libice-dev
  libice6 libjpeg62 libnewt0.51 libpango1.0-0 libpango1.0-common
  libpango1.0-dev libpng12-0 libpopt0 librep9 libslang2 libsm-dev libsm6
  libtiff4 libx11-6 libx11-dev libxcursor1 libxext6 libxft-dev libxft2
  libxi-dev libxi6 libxkbfile-dev libxkbfile1 libxrandr2 libxrender1 libxt6
  lsb-base pkg-config 

Bug#318392: libmodplug: Gcc-4 transition

2005-07-15 Thread Andreas Metzler
Package: libmodplug
Severity: serious
Tags: sid patch

Hello,
libmodplug needs to follow the gcc-4 transition as described in
http://lists.debian.org/debian-devel-announce/2005/07/msg1.html
This should happen quickly, as it blocks xine from doing the transition
itself.

Patch attached. (Although it contains a changelog entry in NMU format, I
have _not_ NMUed the package.)
 cu andreas
-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686
Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)
diff -u libmodplug-0.7/debian/control libmodplug-0.7/debian/control
--- libmodplug-0.7/debian/control
+++ libmodplug-0.7/debian/control
@@ -5,11 +5,11 @@
 Maintainer: Zed Pobre [EMAIL PROTECTED]
 Standards-Version: 3.6.1.0
 
-Package: libmodplug0
+Package: libmodplug0c2
 Architecture: any
 Depends: ${shlibs:Depends}
-Conflicts: xmms-modplug ( 2.04-1)
-Replaces: xmms-modplug ( 2.04-1)
+Conflicts: xmms-modplug ( 2.04-1), libmodplug0
+Replaces: xmms-modplug ( 2.04-1), libmodplug0
 Description: shared libraries for mod music based on ModPlug
  This is a library based on the mod rendering code from ModPlug, a
  popular windows mod player written by Olivier Lapicque, found at
@@ -21,7 +21,7 @@
 
 Package: libmodplug-dev
 Architecture: all
-Depends: libmodplug0 (= ${Source-Version})
+Depends: libmodplug0c2 (= ${Source-Version})
 Conflicts: xmms-modplug ( 2.04-1)
 Replaces: xmms-modplug ( 2.04-1)
 Description: development files for mod music based on ModPlug
diff -u libmodplug-0.7/debian/rules libmodplug-0.7/debian/rules
--- libmodplug-0.7/debian/rules
+++ libmodplug-0.7/debian/rules
@@ -6,8 +6,8 @@
 
 CC=gcc
 CXX=g++
-PACKAGE=libmodplug0
-LIBRARY=libmodplug0
+PACKAGE=libmodplug0c2
+LIBRARY=libmodplug0c2
 DEV=libmodplug-dev
 major=0
 version=0.0.0
@@ -69,7 +69,7 @@
dh_strip -i
dh_compress -i
dh_fixperms -i
-   dh_makeshlibs -i -Vlibmodplug0 (= 1:0.7-1)
+   dh_makeshlibs -i -Vlibmodplug0c2 (= 1:0.7-4.1)
dh_installdeb -i
dh_shlibdeps -i
dh_gencontrol -i
@@ -89,7 +89,7 @@
dh_strip -a
dh_compress -a
dh_fixperms -a
-   dh_makeshlibs -a -Vlibmodplug0 (= 1:0.7-1)
+   dh_makeshlibs -a -Vlibmodplug0c2 (= 1:0.7-4.1)
dh_installdeb -a
dh_shlibdeps -a
dh_gencontrol -a
diff -u libmodplug-0.7/debian/changelog libmodplug-0.7/debian/changelog
--- libmodplug-0.7/debian/changelog
+++ libmodplug-0.7/debian/changelog
@@ -1,3 +1,10 @@
+libmodplug (1:0.7-4.1) unstable; urgency=low
+
+  * NMU
+  * GCC 4 transition.
+
+ -- Andreas Metzler [EMAIL PROTECTED]  Thu, 14 Jul 2005 16:34:15 +
+
 libmodplug (1:0.7-4) unstable; urgency=low
 
   * Use stdafx.h from upstream CVS, correcting issues with 64-bit


Bug#318390: FTBFS in experimental

2005-07-15 Thread Andreas Barth
Package: im-sdk
Version: 12.2.2612-0.1
Severity: serious
Tags: experimental

Hi,
please see http://experimental.ftbfs.de/build.php?arch=pkg=im-sdk
for the full build log

Cheers,
Andi

Automatic build of im-sdk_12.2.2612-0.1 on zx6000 by sbuild/ia64 1.170.5
Build started at 20050714-2024
**
[...]
Checking correctness of source dependencies...
Toolchain package versions: libc6.1-dev_2.3.2.ds1-22 
linux-kernel-headers_2.5.999-test7-bk-17 gcc-4.0_ g++-4.0_ binutils_2.15-7 
libstdc++6-4.0-dev_ libstdc++6_
--
dpkg-source: extracting im-sdk in im-sdk-12.2.2612
[...]
make[3]: Leaving directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/newpy'
make[2]: Leaving directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/newpy'
Making install in testEIMIL
make[2]: Entering directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/testEIMIL'
/bin/sh ../libtool --mode=link --tag=CC gcc  -I. -I../../include 
-DARCH=\ia64\ -DHAVE_CONFIG_H -DLinux  -Wall-Wall -g 
-pipe -Wl,--as-needed -O2   -o testEIMIL.la  -module -rpath /usr/lib/iiim/le 
-shared  testEIMIL_la-testEIMIL.lo -L../../lib/EIMIL -lEIMIL -lpthread 
gcc -shared  .libs/testEIMIL_la-testEIMIL.o  
-L/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a 
-lpthread  -Wl,--as-needed -Wl,-soname -Wl,testEIMIL.so.0 -o 
.libs/testEIMIL.so.0.0.0
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pdic_internal
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_nil_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_candidates_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_feedback_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_t_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pdic_internal
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_nil_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_t_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_feedback_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_candidates_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pdic_internal
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_candidates_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_feedback_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_t_sym
/usr/bin/ld: 
/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/lib/EIMIL/.libs/libEIMIL.a(libEIMIL_la-EIMIL.o):
 @gprel relocation against dynamic symbol pEIMIL_nil_sym
collect2: ld returned 1 exit status
make[2]: *** [testEIMIL.la] Error 1
make[2]: Leaving directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/testEIMIL'
make[1]: *** [install-recursive] Error 1
make[1]: Leaving directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif'
make[1]: Entering directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/sch_le_sun'
Making install in lib
make[2]: Entering directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/sch_le_sun/lib'
Making install in imbean
make[3]: Entering directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/sch_le_sun/lib/imbean'
make[4]: Entering directory 
`/build/buildd/im-sdk-12.2.2612/build-tree/iiimf-12.2/leif/sch_le_sun/lib/imbean'

Bug#318164: CXX 4.0 transition

2005-07-15 Thread Robert Jordens
Hello!

[Thu, 14 Jul 2005] Josselin Mouette wrote:
 On second thought this probably requires NUMing mpich as well, as the
 mpich version seems to be statically linked to libpmpich++. I'll see if
 I have time for these.

A new mpich is in the NEW queue. I'm not sure it's correct though.

http://qa.debian.org/~anibal/debian-NEW-summary.html
http://lyre.mit.edu/~powell/mpich/

Robert.

-- 
Who cares if it doesn't do anything?  It was made with our new
Triple-Iso-Bifurcated-Krypton-Gate-MOS process ...



Processed: severity of 318054 is serious

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 severity 318054 serious
Bug#318054: gnome-spell is uninstallable because of libaspell package name 
change
Severity set to `serious'.


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#318019: libxine1: uninstallable due to g++ 4.0 transition

2005-07-15 Thread Andreas Metzler
On 2005-07-14 Andreas Metzler [EMAIL PROTECTED] wrote:
 On 2005-07-13 Steve Langasek [EMAIL PROTECTED] wrote:
 On Tue, Jul 12, 2005 at 11:49:59PM +0200, Steinar H. Gunderson wrote:
 Package: libxine1

 libxine1 can no longer be installed after upgrading to X.org
 [...]
 Rather, the package should be rebuilt, allowing the correct new dependency
 to be picked up via shlibs.

 Now that libsdl1.2-dev is installable again this can be fixed. Patch
 attached.

Hello,
Actually I was wrong, libmodplug needs to be fixed first, #318392.

 However I failed to actually build the package with gcc-4.0 (288189)
 even with https://bugzilla.ubuntu.com/attachment.cgi?id=2382 from
 https://bugzilla.ubuntu.com/show_bug.cgi?id=9060

I had success with the changes in current ubuntu from
http://people.ubuntu.com/~scott/patches/xine-lib/

Attached you find a merged patch addressing these issues:
- GCC 4 build-failure
- bump build-dependencies on C++ libraries to transitioned versions.
- Build-depend on libaa1-dev instead of removed aalib1-dev
- GCC 4 transition libxine1 -- libxine1c2.

I've built, but *not* _tested_ xine-lib with this patch with gcc4
against current sid + gcc4-transitioned version of libmodplug
successfully.

hth, cu andreas


xinelib-rcbugs.diff.gz
Description: Binary data


Processed: reopen #318054

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reopen 318054
Bug#318054: gnome-spell is uninstallable because of libaspell package name 
change
Bug reopened, originator not changed.

 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#318054: reopen #318054

2005-07-15 Thread Paul Wise
reopen 318054
thanks

1.06-2 seems to have not been rebuilt properly. 
Did you update your pbuilder/build system?

chianamo:~# aptitude show gnome-spell
Package: gnome-spell
Version: 1.0.6-2
Depends: snip libaspell15 (= 0.60) snip

-- 
bye,
pabs

http://qa.debian.org/developer.php?login=Paul+Wisecomaint=yes


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


Bug#318287: marked as done (CAN-2005-2231 temporary file vulnerabilities)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 12:05:51 +0300
with message-id [EMAIL PROTECTED]
and subject line Bug#318287: CAN-2005-2231 temporary file vulnerabilities
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; 14 Jul 2005 14:41:18 +
From [EMAIL PROTECTED] Thu Jul 14 07:41:18 2005
Return-path: [EMAIL PROTECTED]
Received: from kitenet.net [64.62.161.42] (postfix)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Dt4tq-0005ic-00; Thu, 14 Jul 2005 07:41:18 -0700
Received: from dragon.kitenet.net (kitenet.net [127.0.0.1])
(using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits))
(Client CN Joey Hess, Issuer Joey Hess (verified OK))
by kitenet.net (Postfix) with ESMTP id 38A1417DD1
for [EMAIL PROTECTED]; Thu, 14 Jul 2005 14:41:17 + (GMT)
Received: by dragon.kitenet.net (Postfix, from userid 1000)
id B3BB06E134; Thu, 14 Jul 2005 17:41:58 +0300 (EEST)
Date: Thu, 14 Jul 2005 17:41:57 +0300
From: Joey Hess [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: CAN-2005-2231 temporary file vulnerabilities
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=pWyiEgJYm5f9v55/
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-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: 


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

Package: heartbeat
Severity: serious
Tags: security

According to http://secunia.com/advisories/16039:

 Eric Romang has reported a vulnerability in heartbeat, which can be explo=
ited
 by malicious, local users to perform certain actions on a vulnerable syst=
em
 with escalated privileges.

 The vulnerability is caused due to several temporary files being created
 insecurely in /tmp by cts/CTStests.py.in,
 heartbeat/lib/BasicSanityCheck.in and lib/stonith/meatclient.c. This =
can be
 exploited via symlink attacks to create or overwrite arbitrary files with=
 the
 privileges of the user running the affected application.

 The vulnerability has been reported in versions 1.2.3 and prior.

This has been assigned CAN-2005-2231. I have not verified the holes.

--=20
see shy jo

--pWyiEgJYm5f9v55/
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)

iD8DBQFC1nm1d8HHehbQuO8RAvPnAKDFcCLNCswAPdb+zrKBJ2qj8pW9YwCfWLQX
TteszKw6MDDZvRJdBBrnpz4=
=bz19
-END PGP SIGNATURE-

--pWyiEgJYm5f9v55/--

---
Received: (at 318287-done) by bugs.debian.org; 15 Jul 2005 09:11:00 +
From [EMAIL PROTECTED] Fri Jul 15 02:11:00 2005
Return-path: [EMAIL PROTECTED]
Received: from koto.vergenet.net [210.128.90.7] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtMDk-0001wc-00; Fri, 15 Jul 2005 02:11:00 -0700
Received: by koto.vergenet.net (Postfix, from userid 7100)
id 4FBD234039; Fri, 15 Jul 2005 17:40:21 +0900 (JST)
Date: Fri, 15 Jul 2005 12:05:51 +0300
From: Horms [EMAIL PROTECTED]
To: Joey Hess [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: Bug#318287: CAN-2005-2231 temporary file vulnerabilities
Message-ID: [EMAIL PROTECTED]
References: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
In-Reply-To: [EMAIL PROTECTED]
X-Cluestick: seven
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-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

On Thu, Jul 14, 2005 at 05:41:57PM +0300, Joey Hess wrote:
 Package: heartbeat
 Severity: serious
 Tags: security
 
 According to http://secunia.com/advisories/16039:
 
  Eric Romang has reported a vulnerability in heartbeat, which can be 
  exploited
  by malicious, local users to perform certain actions on a vulnerable system
 

Bug#318220: Wrong dependency on libarch-perl (was: Re: Bug#318220 acknowledged by developer (Bug#318220: fixed in archzoom 0.5.0+patch-302-1))

2005-07-15 Thread Vincent Bernat
Package: archzoom
Version: 0.5.0+patch-302-1

OoO Pendant  le temps de  midi du jeudi  14 juillet 2005,  vers 12:18,
[EMAIL PROTECTED] (Debian Bug Tracking System) disait:

 * Tighten libarch-perl dependency to =0.5.0+patch-167-1.

The dependency is in fact  =0.5.0-patch-167-1 (an hyphen instead of a
plus sign). Therefore, the package is not installed.
-- 
Don't comment bad code - rewrite it.
- The Elements of Programming Style (Kernighan  Plauger)


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



Bug#318054: marked as done (gnome-spell is uninstallable because of libaspell package name change)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 05:32:03 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#318054: fixed in gnome-spell 1.0.6-3
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 Jul 2005 06:14:16 +
From [EMAIL PROTECTED] Tue Jul 12 23:14:16 2005
Return-path: [EMAIL PROTECTED]
Received: from smtp102.rog.mail.re2.yahoo.com [206.190.36.80] 
by spohr.debian.org with smtp (Exim 3.35 1 (Debian))
id 1DsaVb-0005Gs-00; Tue, 12 Jul 2005 23:14:16 -0700
Received: (qmail 81171 invoked from network); 13 Jul 2005 06:13:45 -
Received: from unknown (HELO vertex) ([EMAIL PROTECTED] with login)
  by smtp102.rog.mail.re2.yahoo.com with SMTP; 13 Jul 2005 06:13:43 -
Received: from ttb by vertex with local (Exim 3.36 #1 (Debian))
id 1DsaVS-0002nH-00; Wed, 13 Jul 2005 02:14:06 -0400
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: John McCutchan [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: gnome-spell is uninstallable because of libaspell package name change
X-Mailer: reportbug 3.15
Date: Wed, 13 Jul 2005 02:14:04 -0400
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-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: gnome-spell
Version: 1.0.6-1
Severity: critical
Justification: breaks unrelated software

Gnome spell depends on libaspell15 which has been replaced by
libaspell15c2


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

---
Received: (at 318054-close) by bugs.debian.org; 15 Jul 2005 09:38:07 +
From [EMAIL PROTECTED] Fri Jul 15 02:38:06 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtMdy-00079P-00; Fri, 15 Jul 2005 02:38:06 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtMY7-0001xN-00; Fri, 15 Jul 2005 05:32:03 -0400
From: Takuo KITAME [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#318054: fixed in gnome-spell 1.0.6-3
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 05:32:03 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: gnome-spell
Source-Version: 1.0.6-3

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

gnome-spell_1.0.6-3.diff.gz
  to pool/main/g/gnome-spell/gnome-spell_1.0.6-3.diff.gz
gnome-spell_1.0.6-3.dsc
  to pool/main/g/gnome-spell/gnome-spell_1.0.6-3.dsc
gnome-spell_1.0.6-3_i386.deb
  to pool/main/g/gnome-spell/gnome-spell_1.0.6-3_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.
Takuo KITAME [EMAIL PROTECTED] (supplier of updated gnome-spell package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 15 Jul 2005 18:14:36 +0900
Source: gnome-spell
Binary: gnome-spell
Architecture: source i386
Version: 1.0.6-3
Distribution: unstable
Urgency: low
Maintainer: Takuo KITAME [EMAIL PROTECTED]
Changed-By: Takuo KITAME [EMAIL PROTECTED]
Description: 
 gnome-spell - GNOME/Bonobo component for spell checking
Closes: 318054
Changes: 
 gnome-spell (1.0.6-3) unstable; urgency=low
 .
   * Build 

Processed: Re: Processed: Upgrading gcc-4.0 bugs to RC

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 294391 + pending
Bug#294391: turqstat: FTBFS (amd64/gcc-4.0): using typedef-name 'std::ostream' 
after 'class'
Tags were: patch
Tags added: pending

 tags 294391 + fixed-upstream
Bug#294391: turqstat: FTBFS (amd64/gcc-4.0): using typedef-name 'std::ostream' 
after 'class'
Tags were: pending patch
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#318284: CAN-2005-2256 directory traveral vulnerability

2005-07-15 Thread Isaac Clerencia
On Thursday, 14 July 2005 16:15, Joey Hess wrote:
 Package: phppgadmin
 Severity: serious
 Tags: security

   Encoded directory traversal vulnerability in phpPgAdmin 3.1 to 3.5.3
 allows remote attackers to access arbitrary files via %2e%2e%2f (encoded
 dot dot) sequences in the formLanguage parameter.

  -- http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-2256
Thank you for the report, I'm aware and will provide a fixed 3.5.2 package for 
Sarge. I'll wait until 3.5.4 (which will be released really soon) for Sid.

Best regards

-- 
Isaac Clerencia at Warp Networks, http://www.warp.es
Work: [EMAIL PROTECTED]   | Debian: [EMAIL PROTECTED]


pgpkHClFxzqtn.pgp
Description: PGP signature


Bug#294391: Processed: Upgrading gcc-4.0 bugs to RC

2005-07-15 Thread Peter Karlsson
tags 294391 + pending
tags 294391 + fixed-upstream
thanks

I have fixes to 294391 pending, but I need to wait for Qt to be
recompiled with the new ABI before I can make an upload.

-- 
\\// Peter - http://www.softwolves.pp.se/


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



Bug#287960: marked as forwarded (putty: FTBFS (amd64/gcc-4.0): pointer targets in passing argument 2 of 'hmacmd5_key' differ in signedness)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 11:09:19 +0100
with message-id [EMAIL PROTECTED]
has caused the Debian Bug report #287960,
regarding putty: FTBFS (amd64/gcc-4.0): pointer targets in passing argument 2 
of 'hmacmd5_key' differ in signedness
to be marked as having been forwarded to the upstream software
author(s) [EMAIL PROTECTED]

(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 287960-forwarded) by bugs.debian.org; 15 Jul 2005 10:09:22 +
From [EMAIL PROTECTED] Fri Jul 15 03:09:22 2005
Return-path: [EMAIL PROTECTED]
Received: from mail.metronet.co.uk [213.162.97.75] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtN8E-0005de-00; Fri, 15 Jul 2005 03:09:22 -0700
Received: from riva.pelham.vpn.ucam.org 
(83-216-156-196.colinw664.adsl.metronet.co.uk [83.216.156.196])
by smtp.metronet.co.uk (MetroNet Mail) with ESMTP
id 873A740C08A; Fri, 15 Jul 2005 11:09:14 +0100 (BST)
Received: from cjwatson by riva.pelham.vpn.ucam.org with local (Exim 3.36 #1 
(Debian))
id 1DtN8B-0008AU-00; Fri, 15 Jul 2005 11:09:19 +0100
Date: Fri, 15 Jul 2005 11:09:19 +0100
From: Colin Watson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Cc: Andreas Jochens [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: Bug#287960: putty: FTBFS (amd64/gcc-4.0): pointer targets in 
passing argument 2 of 'hmacmd5_key' differ in signedness
Message-ID: [EMAIL PROTECTED]
References: [EMAIL PROTECTED] [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/mixed; boundary=mP3DRpeJDSE+ciuQ
Content-Disposition: inline
In-Reply-To: [EMAIL PROTECTED]
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-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 


--mP3DRpeJDSE+ciuQ
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline

On Sun, Apr 10, 2005 at 12:38:34PM +0100, Colin Watson wrote:
 On Mon, Feb 07, 2005 at 11:30:41AM +, Jacob Nevins wrote:
  Some similar changes have been made in the upstream CVS code to keep the
  Mac compiler happy. I haven't checked them against your proposals.
 
 0.58 still fails with the gcc-4.0 package in Ubuntu 5.04. Removing
 -Werror, I get a successful build and the following warnings:

The attached patch fixes all warnings with gcc-4.0 on Debian/powerpc
unstable. I'm applying a similar patch to the Debian package, since
we're now switching to gcc-4.0 as the default compiler.

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]

--mP3DRpeJDSE+ciuQ
Content-Type: text/plain; charset=us-ascii
Content-Disposition: attachment; filename=gcc-4.0.patch

Index: sshzlib.c
===
--- sshzlib.c   (revision 6094)
+++ sshzlib.c   (working copy)
@@ -224,6 +224,7 @@
 }
 st-npending -= i;
 
+defermatch.distance = 0; /* appease compiler */
 defermatch.len = 0;
 deferchr = '\0';
 while (len  0) {
Index: ssh.c
===
--- ssh.c   (revision 6094)
+++ ssh.c   (working copy)
@@ -1497,7 +1497,7 @@
break;
  case PKT_STR:
argp = va_arg(ap, unsigned char *);
-   ssh_pkt_addstring(pkt, argp);
+   ssh_pkt_addstring(pkt, (char *)argp);
break;
  case PKT_BIGNUM:
bn = va_arg(ap, Bignum);
@@ -1643,7 +1643,7 @@
 static void ssh1_pkt_addmp(struct Packet *pkt, Bignum b)
 {
 int len = ssh1_bignum_length(b);
-unsigned char *data = snewn(len, char);
+unsigned char *data = snewn(len, unsigned char);
 (void) ssh1_write_bignum(data, b);
 ssh_pkt_adddata(pkt, data, len);
 sfree(data);
@@ -6944,11 +6944,8 @@
 * First, offer the public blob to see if the server is
 * willing to accept it.
 */
-   pub_blob =
-   (unsigned char *)ssh2_userkey_loadpub(ssh-cfg.keyfile,
- algorithm,
- pub_blob_len,
- NULL);
+   pub_blob = ssh2_userkey_loadpub(ssh-cfg.keyfile, algorithm,
+   pub_blob_len, NULL);
if (pub_blob) {
s-pktout = ssh2_pkt_init(SSH2_MSG_USERAUTH_REQUEST);
ssh2_pkt_addstring(s-pktout, s-username);
Index: ssh.h
===
--- ssh.h 

Bug#300539: marked as done (pvm: FTBFS (amd64/gcc-4.0): )

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 12:06:52 +0200
with message-id [EMAIL PROTECTED]
and subject line Really closing
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 Mar 2005 12:37:49 +
From [EMAIL PROTECTED] Sun Mar 20 04:37:49 2005
Return-path: [EMAIL PROTECTED]
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DCzgi-0005TI-00; Sun, 20 Mar 2005 04:37:49 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
id 1DCzgh-0005Nz-JL; Sun, 20 Mar 2005 13:37:47 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: pvm: FTBFS (amd64/gcc-4.0): 
Message-Id: [EMAIL PROTECTED]
Date: Sun, 20 Mar 2005 13:37:47 +0100
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: pvm
Severity: normal
Tags: patch

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

In file included from /pvm-3.4.2/src/pvmcruft.c:213:
/pvm-3.4.2/src/global.h:311: error: array type has incomplete element type
/pvm-3.4.2/src/global.h:313: error: array type has incomplete element type

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/pvm-3.4.2/src/global.h ./src/global.h
--- ../tmp-orig/pvm-3.4.2/src/global.h  1999-07-08 21:00:20.0 +0200
+++ ./src/global.h  2005-03-20 13:34:12.115320219 +0100
@@ -304,11 +304,3 @@
 extern struct waitc *waitlist; /* wait list */
 
 extern struct pvmmclass *pvmmboxclasses;   /* the mbox database */
-
-
-/* General Trace Globals Declarations */
-
-extern struct Pvmtevdid pvmtevdidlist[];
-
-extern struct Pvmtevinfo pvmtevinfo[];
-
diff -urN ../tmp-orig/pvm-3.4.2/src/pmsg.c ./src/pmsg.c
--- ../tmp-orig/pvm-3.4.2/src/pmsg.c2005-03-20 13:34:13.786997298 +0100
+++ ./src/pmsg.c2005-03-20 13:32:16.734608430 +0100
@@ -151,6 +151,7 @@
  **   **
  ***/
 
+extern struct Pvmtevinfo pvmtevinfo[];
 
 /***
  **  Private  **
diff -urN ../tmp-orig/pvm-3.4.2/src/pvmdtev.c ./src/pvmdtev.c
--- ../tmp-orig/pvm-3.4.2/src/pvmdtev.c 1998-11-20 21:06:41.0 +0100
+++ ./src/pvmdtev.c 2005-03-20 13:33:38.448823637 +0100
@@ -73,6 +73,8 @@
 static int init_start = 0;
 static int init_end = 0;
 
+extern struct Pvmtevdid pvmtevdidlist[];
+extern struct Pvmtevinfo pvmtevinfo[];
 
 void
 tev_init_pvmd( dst, ctx, tag )
diff -urN ../tmp-orig/pvm-3.4.2/src/tev.c ./src/tev.c
--- ../tmp-orig/pvm-3.4.2/src/tev.c 1998-11-20 21:04:18.0 +0100
+++ ./src/tev.c 2005-03-20 13:31:47.315291348 +0100
@@ -72,7 +72,8 @@
  ***/
 
 struct pmsg *midtobuf();
+extern struct Pvmtevinfo pvmtevinfo[];

 
 /***
  **  Private  **

---
Received: (at 300539-done) by bugs.debian.org; 15 Jul 2005 10:06:57 +
From [EMAIL PROTECTED] Fri Jul 15 03:06:57 2005
Return-path: [EMAIL PROTECTED]
Received: from cassarossa.samfundet.no [129.241.93.19] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtN5t-0004w9-00; Fri, 15 Jul 2005 03:06:57 -0700
Received: from trofast.ipv6.sesse.net ([2001:700:300:dc03:20e:cff:fe36:a766] 
helo=trofast.sesse.net)
by cassarossa.samfundet.no with esmtp (Exim 4.50)
id 1DtN5p-7b-Eq
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 12:06:55 +0200
Received: from sesse by trofast.sesse.net with local (Exim 3.36 #1 (Debian))
id 1DtN5o-qq-00
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 12:06:52 +0200
Date: Fri, 15 Jul 2005 12:06:52 +0200
From: Steinar H. Gunderson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Really closing
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline
X-Operating-System: Linux 2.6.11.8 on a i686
X-Message-Flag: Outlook? -- http://www.mozilla.org/products/thunderbird/
User-Agent: Mutt/1.5.9i
X-Spam-Score: -2.8 (--)
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.0 required=4.0 

Bug#314343: Processed: Upgrading gcc-4.0 bugs to RC

2005-07-15 Thread Lev Walkin

Debian Bug Tracking System wrote:


Processing commands for [EMAIL PROTECTED]:



severity 284166 serious


Bug#284166: gcjwebplugin: FTBFS (amd64/gcc-4.0): cast from 'void*' to 'int' 
loses precision
Severity set to `serious'.




asn1c bug fixed in asn1c-0.9.16 available at sourceforge.


--
Lev Walkin
[EMAIL PROTECTED]




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



Bug#315233: marked as done (pwlib: FTBFS: Failed to satisfy Build-Depends dependency for pwlib: libdc1394-11-dev)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 06:32:35 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#315233: fixed in pwlib 1.8.4-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; 21 Jun 2005 10:03:55 +
From [EMAIL PROTECTED] Tue Jun 21 03:03:55 2005
Return-path: [EMAIL PROTECTED]
Received: from c147090.adsl.hansenet.de (localhost.localdomain) [213.39.147.90] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Dkfbn-0001eg-00; Tue, 21 Jun 2005 03:03:55 -0700
Received: from aj by localhost.localdomain with local (Exim 4.50)
id 1Dkfbl-0005HT-8W; Tue, 21 Jun 2005 12:03:53 +0200
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: pwlib: FTBFS: Failed to satisfy Build-Depends dependency for pwlib: 
libdc1394-11-dev
Message-Id: [EMAIL PROTECTED]
Date: Tue, 21 Jun 2005 12:03:53 +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-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: pwlib
Version: 1.8.4-1
Severity: serious
Tags: patch

When building 'pwlib' in a clean unstable chroot,
I get the following error:

Reading Package Lists...
Building Dependency Tree...
E: Package libdc1394-11-dev has no installation candidate
E: Failed to satisfy Build-Depends dependency for pwlib: libdc1394-11-dev
Package libdc1394-11-dev is not available, but is referred to by another 
package.
This may mean that the package is missing, has been obsoleted, or
is only available from another source

The attached patch upgrades the Build-Depends to libdc1394-13-dev.

The patch also fixes compilation problems with gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/pwlib-1.8.4/debian/control ./debian/control
--- ../tmp-orig/pwlib-1.8.4/debian/control  2005-06-21 11:15:18.0 
+0200
+++ ./debian/control2005-06-17 16:54:52.0 +0200
@@ -3,7 +3,7 @@
 Priority: optional
 Maintainer: Debian VoIP Team [EMAIL PROTECTED]
 Uploaders: Kilian Krause [EMAIL PROTECTED], Jose Carlos Garcia Sogo [EMAIL 
PROTECTED], Mark Purcell [EMAIL PROTECTED], Santiago Garcia Mantinan [EMAIL 
PROTECTED]
-Build-Depends: debhelper (=4.0.2), bison, flex, libssl-dev, libldap2-dev, 
libsdl1.2-dev, libexpat1-dev, g++ (=2.95), autotools-dev, dpatch (=1.11), 
libasound2-dev, libavc1394-dev, libraw1394-dev, libdv-dev, libdc1394-11-dev, 
libsasl2-dev, libkrb5-dev, doxygen, linux-kernel-headers
+Build-Depends: debhelper (=4.0.2), bison, flex, libssl-dev, libldap2-dev, 
libsdl1.2-dev, libexpat1-dev, g++ (=2.95), autotools-dev, dpatch (=1.11), 
libasound2-dev, libavc1394-dev, libraw1394-dev, libdv-dev, libdc1394-13-dev, 
libsasl2-dev, libkrb5-dev, doxygen, linux-kernel-headers
 Build-Depends-Indep: doxygen
 Build-Conflicts: libpt-1.8.3
 Standards-Version: 3.6.1
diff -urN ../tmp-orig/pwlib-1.8.4/include/ptlib/pprocess.h 
./include/ptlib/pprocess.h
--- ../tmp-orig/pwlib-1.8.4/include/ptlib/pprocess.h2004-06-30 
14:17:04.0 +0200
+++ ./include/ptlib/pprocess.h  2005-06-21 11:09:41.0 +0200
@@ -249,6 +249,7 @@
 #include ptlib/syncpoint.h
 #include ptlib/pfactory.h
 
+class PHouseKeepingThread;
 
 /**Create a process.
This macro is used to create the components necessary for a user PWLib
@@ -752,10 +753,10 @@
 
 PArgList arguments;
 // The list of arguments
-
+  public:
 PTimerList timers;
 // List of active timers in system
-
+  private:
 PTime programStartTime;
 // time at which process was intantiated, i.e. started
 
diff -urN ../tmp-orig/pwlib-1.8.4/include/ptlib/timer.h ./include/ptlib/timer.h
--- ../tmp-orig/pwlib-1.8.4/include/ptlib/timer.h   2003-09-17 
11:01:00.0 +0200
+++ ./include/ptlib/timer.h 2005-06-17 16:51:05.0 +0200
@@ -123,6 +123,7 @@
 #endif
 
 class PThread;
+class PTimerList;
 
 #include ptlib/notifier.h
 
diff -urN ../tmp-orig/pwlib-1.8.4/include/ptlib/unix/ptlib/pprocess.h 
./include/ptlib/unix/ptlib/pprocess.h
--- ../tmp-orig/pwlib-1.8.4/include/ptlib/unix/ptlib/pprocess.h 2004-05-23 
23:11:39.0 +0200
+++ ./include/ptlib/unix/ptlib/pprocess.h   2005-06-21 11:10:19.0 
+0200
@@ -171,6 +171,7 @@
 PDICTIONARY(ThreadDict, POrdinalKey, PThread);
 ThreadDict activeThreads;
 PMutex threadMutex;
+  public:
 int 

Bug#287960: marked as done (putty: FTBFS (amd64/gcc-4.0): pointer targets in passing argument 2 of 'hmacmd5_key' differ in signedness)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 06:32:21 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#287960: fixed in putty 0.58-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; 31 Dec 2004 08:13:49 +
From [EMAIL PROTECTED] Fri Dec 31 00:13:49 2004
Return-path: [EMAIL PROTECTED]
Received: from c187183.adsl.hansenet.de (localhost.localdomain) 
[213.39.187.183] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CkHur-0007T4-00; Fri, 31 Dec 2004 00:13:46 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CkHzr-0007TS-UK; Fri, 31 Dec 2004 09:18:55 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: putty: FTBFS (amd64/gcc-4.0): pointer targets in passing argument 2 of 
'hmacmd5_key' differ in signedness
Message-Id: [EMAIL PROTECTED]
Date: Fri, 31 Dec 2004 09:18:55 +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: putty
Severity: normal
Tags: patch

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

cc-O2 -Wall -Werror -g -I.././ -I../charset/ -I../unix/ -I../mac/ 
`gtk-config --cflags` -c .././cproxy.c
cc1: warnings being treated as errors
.././cproxy.c: In function 'hmacmd5_chap':
.././cproxy.c:32: warning: pointer targets in passing argument 2 of 
'hmacmd5_key' differ in signedness
.././cproxy.c: In function 'proxy_socks5_handlechap':
.././cproxy.c:134: warning: pointer targets in passing argument 2 of 
'(*p-sub_socket)-write' differ in signedness
make[1]: *** [cproxy.o] Error 1
make[1]: Leaving directory `/putty-0.56/unix'
make: *** [build] Error 2

The attached patch fixes the 'signedness' warnings for gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/putty-0.56/cmdgen.c ./cmdgen.c
--- ../tmp-orig/putty-0.56/cmdgen.c 2004-08-01 14:07:11.0 +0200
+++ ./cmdgen.c  2004-12-31 09:02:55.318900624 +0100
@@ -232,7 +232,7 @@
 int i;
 
 MD5Init(md5c);
-MD5Update(md5c, blob, bloblen);
+MD5Update(md5c, (unsigned char*)blob, bloblen);
 MD5Final(digest, md5c);
 
 sprintf(buffer, %s , alg);
@@ -685,11 +685,11 @@
ssh1key = snew(struct RSAKey);
if (!load_encrypted) {
void *vblob;
-   char *blob;
+   unsigned char *blob;
int n, l, bloblen;
 
ret = rsakey_pubblob(infilename, vblob, bloblen, error);
-   blob = (char *)vblob;
+   blob = (unsigned char *)vblob;
 
n = 4; /* skip modulus bits */

@@ -872,7 +872,7 @@
} else if (outtype == PUBLIC) {
if (!ssh2blob) {
assert(ssh2key);
-   ssh2blob = ssh2key-alg-public_blob(ssh2key-data,
+   ssh2blob = (char*) ssh2key-alg-public_blob(ssh2key-data,
 ssh2bloblen);
}
save_ssh2_pubkey(outfile, ssh2key ? ssh2key-comment : origcomment,
@@ -884,7 +884,7 @@
 
if (!ssh2blob) {
assert(ssh2key);
-   ssh2blob = ssh2key-alg-public_blob(ssh2key-data,
+   ssh2blob = (char*) ssh2key-alg-public_blob(ssh2key-data,
 ssh2bloblen);
}
if (!ssh2alg) {
@@ -905,7 +905,7 @@
i = 0;
while (i  ssh2bloblen) {
int n = (ssh2bloblen - i  3 ? ssh2bloblen - i : 3);
-   base64_encode_atom(ssh2blob + i, n, p);
+   base64_encode_atom((unsigned char*)ssh2blob + i, n, p);
i += n;
p += 4;
}
diff -urN ../tmp-orig/putty-0.56/cproxy.c ./cproxy.c
--- ../tmp-orig/putty-0.56/cproxy.c 2004-08-30 15:11:17.0 +0200
+++ ./cproxy.c  2004-12-31 08:42:02.515355712 +0100
@@ -29,7 +29,7 @@
MD5Simple(passwd, pwlen, md5buf);
hmacmd5_key(hmacmd5_ctx, md5buf, 16);
 } else {
-   hmacmd5_key(hmacmd5_ctx, passwd, pwlen);
+   hmacmd5_key(hmacmd5_ctx, (const unsigned char*)passwd, pwlen);
 }
 
 hmacmd5_do_hmac(hmacmd5_ctx, challenge, challen, response);
@@ -131,7 +131,7 @@

Processed: Merge bugs

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 317890 serious
Bug#317890: libgmime2.1-cil: does not depend on package libgmime2.1
Severity set to `serious'.

 merge 317890 318185
Bug#317890: libgmime2.1-cil: does not depend on package libgmime2.1
Bug#318185: Missing dependency on libgmime2.1
Merged 317890 318185.

 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#300104: marked as done (gq: FTBFS (amd64/gcc-4.0): array type has incomplete element type)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 06:47:46 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#300104: fixed in gq 1.0beta1-3
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 Mar 2005 17:05:56 +
From [EMAIL PROTECTED] Thu Mar 17 09:05:56 2005
Return-path: [EMAIL PROTECTED]
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DByRX-0005Aa-00; Thu, 17 Mar 2005 09:05:56 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
id 1DByRW-0002xs-N1; Thu, 17 Mar 2005 18:05:54 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: gq: FTBFS (amd64/gcc-4.0): array type has incomplete element type
Message-Id: [EMAIL PROTECTED]
Date: Thu, 17 Mar 2005 18:05:54 +0100
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: gq
Severity: normal
Tags: patch

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

x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. -I..   -I/usr/include/glib-2.0 
-I/usr/lib/glib-2.0/include -DXTHREADS -I/usr/include/gtk-2.0 
-I/usr/lib/gtk-2.0/include -I/usr/X11R6/include -I/usr/include/atk-1.0 
-I/usr/include/pango-1.0 -I/usr/include/freetype2  -Wall -g -O2 -DXTHREADS 
-I/usr/include/libxml2 -W -Wno-unused -Wmissing-declarations -Wcast-align 
-Wpointer-arith -Wfloat-equal -DLOCALEDIR=\/usr/share/locale\ -c `test -f 
'mainwin.c' || echo './'`mainwin.c
In file included from mainwin.c:38:
configfile.h:223: error: array type has incomplete element type
configfile.h:224: error: array type has incomplete element type
configfile.h:225: error: array type has incomplete element type
mainwin.c: In function 'enter_last_of_mode':
mainwin.c:91: warning: cast to pointer from integer of different size
mainwin.c: In function 'remove_tab':
mainwin.c:478: warning: cast to pointer from integer of different size
make[3]: *** [mainwin.o] Error 1
make[3]: Leaving directory `/gq-1.0beta1/src'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/gq-1.0beta1/src/configfile.c ./src/configfile.c
--- ../tmp-orig/gq-1.0beta1/src/configfile.c2003-11-03 22:34:52.0 
+0100
+++ ./src/configfile.c  2005-03-17 17:54:25.589699297 +0100
@@ -54,7 +54,7 @@
 struct gq_config *config;
 GList *transient_servers = NULL;
 
-const struct tokenlist token_searchargument[] = {
+const struct tokenlist *token_searchargument = {
  { SEARCHARG_BEGINS_WITH, Begins with,   NULL },
  { SEARCHARG_ENDS_WITH,   Ends with, NULL },
  { SEARCHARG_CONTAINS,Contains,  NULL },
@@ -62,14 +62,14 @@
  { 0, ,  NULL }
 };
 
-const struct tokenlist token_bindtype[] = {
+const struct tokenlist *token_bindtype = {
  { BINDTYPE_SIMPLE,Simple,   NULL },
  { BINDTYPE_KERBEROS,  Kerberos, NULL },
  { BINDTYPE_SASL,  SASL, NULL },
  { 0, ,  NULL }
 };
 
-const struct tokenlist token_ldifformat[] = {
+const struct tokenlist *token_ldifformat = {
  { LDIF_UMICH, UMich,NULL },
  { LDIF_V1,Version1, NULL },
  { 0, ,  NULL }
diff -urN ../tmp-orig/gq-1.0beta1/src/configfile.h ./src/configfile.h
--- ../tmp-orig/gq-1.0beta1/src/configfile.h2003-11-03 22:34:52.0 
+0100
+++ ./src/configfile.h  2005-03-17 17:54:04.271722654 +0100
@@ -220,9 +220,9 @@
 extern struct gq_config *config;
 extern GList *transient_servers;
 
-extern const struct tokenlist token_bindtype[];
-extern const struct tokenlist token_ldifformat[];
-extern const struct tokenlist token_searchargument[];
+extern const struct tokenlist *token_bindtype;
+extern const struct tokenlist *token_ldifformat;
+extern const struct tokenlist *token_searchargument;
 
 #endif
 

---
Received: (at 300104-close) by bugs.debian.org; 15 Jul 2005 10:52:42 +
From [EMAIL PROTECTED] Fri Jul 15 03:52:42 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by 

Bug#76918: what's that?

2005-07-15 Thread Anthony Hilliard
For your review:

Good Day, your file has been reviewed and there now are a few potential options 
for you to consider. 

Please note that this issue is time sensitive and that your previous credit 
situation is not an issue at this time. 

Confirm your details on our secure form to ensure our records are up to date, 
thank you.

http://www.refin-xnd.net/index.php?refid=windsor

--Anthony Hilliard
Financial Advisor - eLMR Inc.

Did this reach you in error? please let us know so you won't recieve again:
http://www.refin-xnd.net/r.php






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



Bug#318361: FTBFS: Declarations without types

2005-07-15 Thread Neil Roeth
On Jul 14, Matt Kraai ([EMAIL PROTECTED]) wrote:
  Package: aplus-fsf
  Version: 4.18.8-11
  Severity: serious
  Tags: patch
  
  aplus-fsf fails to build because some declarations do not have types:
  
  
  The attached patch fixes this problem by declaring the types before
  they are used.
  

Thanks for finding this and for the patch.

-- 
Neil Roeth


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



Processed: Bug#313605

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 313605 minor
Bug#313605: dpkg removes a file from another package using a local diversion
Severity set to `minor'.

 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: Re: libgphoto2: FTBFS using dpkg-buildpackage on ppc

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 315127 sarge
Bug#315127: libgphoto2: FTBFS using dpkg-buildpackage on ppc
Tags were: confirmed
Tags added: sarge

 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#318003: (forw) [EMAIL PROTECTED]: Bug#318003: electricsheep: segfaults on powerpc]

2005-07-15 Thread Alexis Sukrieh
* Paul Brossier ([EMAIL PROTECTED]) disait :
 Alexis, i noticed another issue: a copy of the mpeg2 library is included
 in the source and compiled. spot, i see parts of the mpeg2 code were
 modified, but it would be much better if mpeg2dec_onroot could be linked
 against debian's libmpeg2-4.

I tried to build a package depending on mpeg2dec and libmpeg2-4, but
unfortunately, electrichseep's customized version of mpeg2dec has
special switches (-w and -f) that don't exist in the official mepg2dec.

Moreover, if I disable those switch in electricsheep, I got the
following error:

./electricsheep
mpeg2dec-0.4.0 - by Michel Lespinasse [EMAIL PROTECTED] and Aaron
Holtzman
Unaligned buffers. Anyone know how to fix this ?

Then, it doesn't seem to be an easy game to switch to the official
mpeg2dec binary, electricsheep is deeply bound to its own version.


-- 

 - Alexis Sukrieh 



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



Bug#318258: marked as done (Dependency problem: pdl requires xlibmesa-glu to install though libglu1-xorg)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 08:32:40 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#318258: fixed in pdl 1:2.4.2-3
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; 14 Jul 2005 11:43:30 +
From [EMAIL PROTECTED] Thu Jul 14 04:43:30 2005
Return-path: [EMAIL PROTECTED]
Received: from mbx.unige.ch [129.194.9.229] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Dt27m-0005C7-00; Thu, 14 Jul 2005 04:43:30 -0700
Received: from CONVERSION-DAEMON.mbx.unige.ch by mbx.unige.ch
 (PMDF V6.2-X27 #31144) id [EMAIL PROTECTED] for
 [EMAIL PROTECTED]; Thu, 14 Jul 2005 13:42:58 +0200 (MEST)
Received: from [129.194.53.186] (kiwi.unige.ch [129.194.53.186])
 by mbx.unige.ch (PMDF V6.2-X27 #31144)
 with ESMTPS id [EMAIL PROTECTED] for [EMAIL PROTECTED]; Thu,
 14 Jul 2005 13:42:57 +0200 (MEST)
Date: Thu, 14 Jul 2005 13:42:54 +0200
From: =?ISO-8859-1?Q?Lat=E9vi_Max_LAWSON_DAKU?= [EMAIL PROTECTED]
Subject: Dependency problem: pdl requires xlibmesa-glu to install though
 libglu1-xorg
To: Debian Bug Tracking System [EMAIL PROTECTED]
Message-id: [EMAIL PROTECTED]
MIME-version: 1.0
Content-type: text/plain; charset=ISO-8859-1
Content-transfer-encoding: 7BIT
X-Accept-Language: en-us, en
User-Agent: Debian Thunderbird 1.0.2 (X11/20050602)
X-Comment: This message was scanned against viruses by mbx.unige.ch.
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: pdl
Version: 1:2.4.2-2
Severity: grave
Justification: renders package unusable

Hello,

I have recently updated my system, passing from the xserver-xfree86
environment to the one provided by xserver-xorg. This led to the
deinstallation of many packages among which the pdl package which 
I heavily use but which I cannot install no more without getting into
trouble for the whole system.

Indeed, pdl depends on xlibmesa-glu but this package conflicts with
the installed libglu1-xorg whose desinstallation would trigger the
desinstallation of the xbase-clients package...

I guess that making pdl depends on xlibmesa-glu | libglu1-xorg would
solve the problem; my 2 cents..

Regards, LMLD

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

Versions of packages pdl depends on:
ii  fftw2 [fftw2-double]  2.1.3-16   Library for computing Fast
Fourier
ii  libc6 2.3.2.ds1-22   GNU C Library: Shared
libraries an
ii  libg2c0   1:3.4.4-5  Runtime library for GNU
Fortran 77
ii  libgsl0   1.6-2  GNU Scientific Library
(GSL) -- li
ii  libplplot95.3.1-4Scientific plotting library
ii  libterm-readkey-perl  2.30-1 A perl module for simple
terminal
ii  perl  5.8.7-4Larry Wall's Practical
Extraction
ii  perl-base [perlapi-5.8.4] 5.8.7-4The Pathologically Eclectic
Rubbis
ii  xlibmesa-gl [libgl1]  6.8.2.dfsg.1-2 Mesa 3D graphics library
[X.Org]
pn  xlibmesa-glu | libglu1none (no description available)

pdl recommends no packages.


-- 
***
Latevi Max LAWSON DAKU
Departement de chimie physique 
Universite de Geneve - Sciences II
30, quai Ernest-Ansermet  
CH-1211 Geneve 4 
Switzerland 

Tel: (41) 22/379 6548 ++ Fax: (41) 22/379 6103
***


---
Received: (at 318258-close) by bugs.debian.org; 15 Jul 2005 12:46:27 +
From [EMAIL PROTECTED] Fri Jul 15 05:46:27 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtPaF-RU-00; Fri, 15 Jul 2005 05:46:27 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtPMu-0008Fd-00; Fri, 15 Jul 2005 08:32:40 -0400
From: Henning Glawe [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#318258: fixed in pdl 1:2.4.2-3
Message-Id: [EMAIL PROTECTED]
Sender: Archive 

Bug#317985: marked as done (ctn: Incorrect/missing/hardcoded depenencies)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 11:02:33 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#317985: fixed in ctn 3.0.6-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; 12 Jul 2005 17:54:40 +
From [EMAIL PROTECTED] Tue Jul 12 10:54:40 2005
Return-path: [EMAIL PROTECTED]
Received: from smtp-2.hut.fi [130.233.228.92] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DsOxs-Px-00; Tue, 12 Jul 2005 10:54:40 -0700
Received: from localhost (katosiko.hut.fi [130.233.228.115])
by smtp-2.hut.fi (8.12.10/8.12.10) with ESMTP id j6CHs88Y009896
for [EMAIL PROTECTED]; Tue, 12 Jul 2005 20:54:08 +0300
Received: from smtp-2.hut.fi ([130.233.228.92])
 by localhost (katosiko.hut.fi [130.233.228.115]) (amavisd-new, port 10024)
 with LMTP id 07687-15-4 for [EMAIL PROTECTED];
 Tue, 12 Jul 2005 20:54:08 +0300 (EEST)
Received: from dhcp-4-241.debconf5.net (a130-233-4-241.debconf5.hut.fi 
[130.233.4.241])
by smtp-2.hut.fi (8.12.10/8.12.10) with ESMTP id j6CHi1te009119
for [EMAIL PROTECTED]; Tue, 12 Jul 2005 20:44:01 +0300
Subject: ctn: Incorrect/missing/hardcoded depenencies
From: Kurt Roeckx [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Content-Type: text/plain
Date: Tue, 12 Jul 2005 19:44:27 +0200
Message-Id: [EMAIL PROTECTED]
Mime-Version: 1.0
X-Mailer: Evolution 2.0.4 
Content-Transfer-Encoding: 7bit
X-TKK-Virus-Scanned: by amavisd-new-2.1.2-hutcc at katosiko.hut.fi
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: ctn
Version: 3.0.6-3
Severity: serious

Hi,

Your package has this in the control file:
Depends: libmysqlclient14, lesstif1, libxaw7, xlibs

And in debian rules:
#   dh_shlibdeps -A

Please don't do this.  You have incorrect/missing dependencies because
of this.  It should look like:
Depends=libc6 (= 2.3.2.ds1-21), libmysqlclient14, libx11-6 | xlibs (
4.1.0), libxaw7 ( 4.1.0), libxext6 | xlibs ( 4.1.0), libxmu6 | xlibs
( 4.1.0), libxt6 | xlibs ( 4.1.0), zlib1g (= 1:1.2.1)


Kurt



---
Received: (at 317985-close) by bugs.debian.org; 15 Jul 2005 15:08:30 +
From [EMAIL PROTECTED] Fri Jul 15 08:08:30 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtRni-0008Ei-00; Fri, 15 Jul 2005 08:08:30 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtRhx-0002Mm-00; Fri, 15 Jul 2005 11:02:33 -0400
From: Thijs Kinkhorst [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#317985: fixed in ctn 3.0.6-4
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 11:02:33 -0400
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: ctn
Source-Version: 3.0.6-4

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

ctn-dev_3.0.6-4_i386.deb
  to pool/main/c/ctn/ctn-dev_3.0.6-4_i386.deb
ctn_3.0.6-4.diff.gz
  to pool/main/c/ctn/ctn_3.0.6-4.diff.gz
ctn_3.0.6-4.dsc
  to pool/main/c/ctn/ctn_3.0.6-4.dsc
ctn_3.0.6-4_i386.deb
  to pool/main/c/ctn/ctn_3.0.6-4_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.
Thijs Kinkhorst [EMAIL PROTECTED] (supplier of updated ctn 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: Wed, 13 Jul 2005 19:11:33 +0200
Source: ctn
Binary: ctn-dev ctn
Architecture: source i386
Version: 

Bug#317890: marked as done (libgmime2.1-cil: does not depend on package libgmime2.1)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 07:32:11 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#317890: fixed in gmime2.1 2.1.15-5
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 2005 09:14:42 +
From [EMAIL PROTECTED] Tue Jul 12 02:14:42 2005
Return-path: [EMAIL PROTECTED]
Received: from smtprelay01.ispgateway.de [80.67.18.13] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DsGqg-0005wt-00; Tue, 12 Jul 2005 02:14:42 -0700
Received: (qmail 6817 invoked from network); 12 Jul 2005 09:14:38 -
Received: from unknown (HELO degenatron.local) ([EMAIL PROTECTED])
  (envelope-sender [EMAIL PROTECTED])
  by smtprelay01.ispgateway.de (qmail-ldap-1.03) with AES256-SHA 
encrypted SMTP
  for [EMAIL PROTECTED]; 12 Jul 2005 09:14:38 -
Received: from holger by degenatron.local with local (Exim 4.50)
id 1DsGqb-0005wZ-LU; Tue, 12 Jul 2005 11:14:37 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Holger Leskien [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: libgmime2.1-cil: does not depend on package libgmime2.1
X-Mailer: reportbug 3.15
Date: Tue, 12 Jul 2005 11:14:37 +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-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: libgmime2.1-cil
Version: 2.1.15-4
Severity: normal


Hi,

this package doesn't depend on libgmime2.1 which is obviously needed.

Holger


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

Versions of packages libgmime2.1-cil depends on:
ii  libglib-cil   1.0.8-2CLI binding for the GLib utility l
ii  mono-assemblies-base  1.1.8.2-1  Mono class library - transistion p
ii  mono-jit  1.1.8.2-1  fast CLI (.NET) JIT compiler for M

libgmime2.1-cil recommends no packages.

-- no debconf information

---
Received: (at 317890-close) by bugs.debian.org; 15 Jul 2005 11:38:38 +
From [EMAIL PROTECTED] Fri Jul 15 04:38:38 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtOWc-dU-00; Fri, 15 Jul 2005 04:38:38 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtOQN-YR-00; Fri, 15 Jul 2005 07:32:11 -0400
From: Guus Sliepen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#317890: fixed in gmime2.1 2.1.15-5
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 07:32:11 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: gmime2.1
Source-Version: 2.1.15-5

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

gmime2.1_2.1.15-5.diff.gz
  to pool/main/g/gmime2.1/gmime2.1_2.1.15-5.diff.gz
gmime2.1_2.1.15-5.dsc
  to pool/main/g/gmime2.1/gmime2.1_2.1.15-5.dsc
libgmime2.1-cil_2.1.15-5_i386.deb
  to pool/main/g/gmime2.1/libgmime2.1-cil_2.1.15-5_i386.deb
libgmime2.1-dev_2.1.15-5_i386.deb
  to pool/main/g/gmime2.1/libgmime2.1-dev_2.1.15-5_i386.deb
libgmime2.1-doc_2.1.15-5_all.deb
  to pool/main/g/gmime2.1/libgmime2.1-doc_2.1.15-5_all.deb
libgmime2.1_2.1.15-5_i386.deb
  to pool/main/g/gmime2.1/libgmime2.1_2.1.15-5_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.
Guus Sliepen [EMAIL 

Bug#294620: marked as done (splitvt: FTBFS (amd64/gcc-4.0): static declaration of 'xt_input' follows non-static declaration)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 11:02:39 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#294620: fixed in splitvt 1.6.5-8
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

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

--
Received: (at submit) by bugs.debian.org; 10 Feb 2005 19:37:45 +
From [EMAIL PROTECTED] Thu Feb 10 11:37:45 2005
Return-path: [EMAIL PROTECTED]
Received: from d159142.adsl.hansenet.de (localhost.localdomain) 
[80.171.159.142] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CzK8G-00078C-00; Thu, 10 Feb 2005 11:37:45 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CzK8F-0001mO-Qx; Thu, 10 Feb 2005 20:37:43 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: splitvt: FTBFS (amd64/gcc-4.0): static declaration of 'xt_input' 
follows non-static declaration
Message-Id: [EMAIL PROTECTED]
Date: Thu, 10 Feb 2005 20:37:43 +0100
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: splitvt
Severity: normal
Tags: patch

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

gcc -Wall  -O2 -DTERMCAP -DHAVE_UTHOST -DHAVE_TERMIO_H -DHAVE_UNISTD_H 
-DNEED_SELECT_H -DHAVE_WAIT4 -DSHELL=\/bin/sh\ -DPTYCHAR=\abcdepqrstuvwxyz\ 
-DHEXDIGIT=\0123456789abcdef\   -c -o vtmouse.o vtmouse.c
vtmouse.c:87: error: static declaration of 'xt_input' follows non-static 
declaration
vtmouse.h:42: error: previous declaration of 'xt_input' was here
vtmouse.c:87: error: static declaration of 'xt_output' follows non-static 
declaration
vtmouse.h:42: error: previous declaration of 'xt_output' was here
make[1]: *** [vtmouse.o] Error 1
make[1]: Leaving directory `/splitvt-1.6.5'
make: *** [build-stamp] Error 2

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/splitvt-1.6.5/vtmouse.h ./vtmouse.h
--- ../tmp-orig/splitvt-1.6.5/vtmouse.h 1995-01-20 21:46:03.0 +0100
+++ ./vtmouse.h 2005-02-10 20:22:02.617444171 +0100
@@ -39,5 +39,4 @@
 extern int  event_getc();
 extern void event_quit();
 
-extern FILE *xt_input, *xt_output; /* Usually untouched */
 

---
Received: (at 294620-close) by bugs.debian.org; 15 Jul 2005 15:08:02 +
From [EMAIL PROTECTED] Fri Jul 15 08:08:02 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtRnG-00086H-00; Fri, 15 Jul 2005 08:08:02 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtRi3-0002RO-00; Fri, 15 Jul 2005 11:02:39 -0400
From: Joey Hess [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#294620: fixed in splitvt 1.6.5-8
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 11:02:39 -0400
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: splitvt
Source-Version: 1.6.5-8

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

splitvt_1.6.5-8.diff.gz
  to pool/main/s/splitvt/splitvt_1.6.5-8.diff.gz
splitvt_1.6.5-8.dsc
  to pool/main/s/splitvt/splitvt_1.6.5-8.dsc
splitvt_1.6.5-8_i386.deb
  to pool/main/s/splitvt/splitvt_1.6.5-8_i386.deb



A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to [EMAIL PROTECTED],
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Joey Hess [EMAIL PROTECTED] (supplier of updated splitvt package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 15 

Bug#287633: marked as done (manedit: FTBFS (amd64/gcc-4.0): invalid cast from type 'char' to type 'char')

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 16:38:45 +0300
with message-id [EMAIL PROTECTED]
and subject line builds - closing
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; 29 Dec 2004 08:44:54 +
From [EMAIL PROTECTED] Wed Dec 29 00:44:54 2004
Return-path: [EMAIL PROTECTED]
Received: from d007021.adsl.hansenet.de (localhost.localdomain) [80.171.7.21] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CjZRt-000385-00; Wed, 29 Dec 2004 00:44:54 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CjZX6-0001Pd-Tr; Wed, 29 Dec 2004 09:50:16 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: manedit: FTBFS (amd64/gcc-4.0): invalid cast from type 'char' to type 
'char'
Message-Id: [EMAIL PROTECTED]
Date: Wed, 29 Dec 2004 09:50:16 +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: manedit
Severity: normal
Tags: patch

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

c++ -c disk.cpp  -g -O2 -Wall -fno-strict-aliasing -DHAVE_GZIP -DHAVE_BZIP2 
`gtk-config --cflags` -DPREFIX=\/usr\ -DLOCALBASE=\/usr\ 
-DX11BASE=\/usr/X11R6\ -D__cplusplus -Dc_plusplus
disk.cpp: In function 'int ISPATHABSOLUTE(const char*)':
disk.cpp:135: error: invalid cast from type 'char' to type 'char'
disk.cpp:135: error: invalid cast from type 'char' to type 'char'
disk.cpp: In function 'void StripParentPath(char*, const char*)':
disk.cpp:986: warning: operation on 'strptr' may be undefined
make[1]: *** [disk.o] Error 1
make[1]: Leaving directory `/manedit-0.5.12/manedit'
make: *** [build-stamp] Error 2

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/manedit-0.5.12/manedit/disk.cpp ./manedit/disk.cpp
--- ../tmp-orig/manedit-0.5.12/manedit/disk.cpp 2004-11-16 05:09:15.0 
+0100
+++ ./manedit/disk.cpp  2004-12-29 09:44:55.633347568 +0100
@@ -130,12 +130,7 @@
if(path == NULL)
return(0);
 
-   // Dan S: typecast is due to const.
-#if defined(__cplusplus) || defined(c_plusplus)
-   while(ISBLANK(reinterpret_castchar(*path)))
-#else
while(ISBLANK(*path))
-#endif
path++;
 
return(*path == DIR_DELIMINATOR);

---
Received: (at 287633-done) by bugs.debian.org; 15 Jul 2005 13:46:24 +
From [EMAIL PROTECTED] Fri Jul 15 06:46:24 2005
Return-path: [EMAIL PROTECTED]
Received: from smtp-4.hut.fi [130.233.228.94] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtQWG-0006rR-00; Fri, 15 Jul 2005 06:46:24 -0700
Received: from localhost (katosiko.hut.fi [130.233.228.115])
by smtp-4.hut.fi (8.12.10/8.12.10) with ESMTP id j6FDjrQF021689
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 16:45:53 +0300
Received: from smtp-4.hut.fi ([130.233.228.94])
 by localhost (katosiko.hut.fi [130.233.228.115]) (amavisd-new, port 10024)
 with LMTP id 19865-30-4 for [EMAIL PROTECTED];
 Fri, 15 Jul 2005 16:45:52 +0300 (EEST)
Received: from localhost (a130-233-5-21.debconf5.hut.fi [130.233.5.21])
by smtp-4.hut.fi (8.12.10/8.12.10) with ESMTP id j6FDdU2L021018
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 16:39:30 +0300
Received: by localhost (Postfix, from userid 1000)
id AF3F815E35; Fri, 15 Jul 2005 16:38:45 +0300 (EEST)
Date: Fri, 15 Jul 2005 16:38:45 +0300
From: Rene Engelhard [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: builds - closing
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
Content-Disposition: inline
X-PGP-Key: 248AEB73
X-PGP-Fingerprint: 41FA F208 28D4 7CA5 19BB  7AD9 F859 90B0 248A EB73
Organization: The Debian Project
User-Agent: Mutt/1.5.9i
X-TKK-Virus-Scanned: by amavisd-new-2.1.2-hutcc at katosiko.hut.fi
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by smtp-4.hut.fi id 
j6FDjrQF021689
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 
 

Bug#317861: conflicting definitions of P_ALL, P_PID, and P_PGID

2005-07-15 Thread Daniel Jacobowitz
On Thu, Jul 14, 2005 at 09:31:24PM -0700, Matt Kraai wrote:
 On Thu, Jul 14, 2005 at 02:42:23PM -0400, Daniel Jacobowitz wrote:
  On Mon, Jul 11, 2005 at 09:47:11AM -0700, Matt Kraai wrote:
   Package: libc6-dev
   Version: 2.3.2.ds1-22
   Severity: serious
   
   kbd-chooser fails to build because the definitions of P_ALL, P_PID,
   and P_PGID in /usr/include/sys/wait.h conflict with those in
   /usr/include/linux/wait.h:
   
cc -c -Wall  -I. -DNDEBUG=1 -fomit-frame-pointer -Os -DAT_KBD  
-DUSB_KBD   loadkeys.c
In file included from /usr/include/debian-installer/exec.h:29,
 from /usr/include/debian-installer.h:5,
 from loadkeys.y:24:
/usr/include/sys/wait.h:100: error: syntax error before numeric constant
loadkeys.y: In function 'addfunc':
loadkeys.y:595: warning: comparison is always false due to limited 
range of data type
make[1]: *** [loadkeys.o] Error 1
make[1]: Leaving directory `/tmp/buildd/kbd-chooser-1.15'
make: *** [build-stamp] Error 2
  
  Where is linux/wait.h being included from?  Is it necessary?
 
 loadkeys.y includes linux/keyboard.h, which includes
 linux/wait.h.  loadkeys.y does use some of the macros defined in
 linux/keyboard.h, so it seems like it should include it.
 linux/keyboard.h does not appear to use anything from
 linux/wait.h, though, so I'm not sure why it includes it.

linux/keyboard.h is definitely one of the headers I would recommend
not including.  The network headers are generally safe, but that's
about it.

-- 
Daniel Jacobowitz
CodeSourcery, LLC


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



Bug#316572: apt-build: What is the solution please ? :(

2005-07-15 Thread KnuX
Package: apt-build
Version: 0.12.9
Followup-For: Bug #316572


I'm sorry, I am unable to use apt-build since this issue appears...

For example : apt-build install whois
The following NEW packages will be installed:
  whois
0 upgraded, 1 newly installed, 0 to remove and 74 not upgraded.
Need to get 0B/41.4kB of archives.
After unpacking 238kB of additional disk space will be used.
WARNING: The following packages cannot be authenticated!
  whois
E: There are problems and -y was used without --force-yes

The E: line seems to represent an unsupported situation, no ? ;)

Good holidays :)
KnuX

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.2-1-custom
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apt-build depends on:
ii  apt   0.6.38 Advanced front-end for dpkg
ii  apt-utils 0.6.38 APT utility programs
ii  debconf   1.4.52 Debian configuration management sy
ii  devscripts2.8.14 Scripts to make the life of a Debi
ii  dpkg-dev  1.13.10Package building tools for Debian
ii  g++   4:4.0.0-2  The GNU C++ compiler
ii  gcc   4:4.0.0-2  The GNU C compiler
ii  libappconfig-perl 1.56-2 Perl module for configuration file
ii  libapt-pkg-perl   0.1.15 Perl interface to libapt-pkg
ii  perl  5.8.7-4Larry Wall's Practical Extraction 

Versions of packages apt-build recommends:
ii  build-essential   11.1   informational list of build-essent
ii  fakeroot  1.4.2  Gives a fake root environment

-- debconf information:
* apt-build/arch_amd: athlon-xp
  apt-build/arch_alpha: ev4
* apt-build/options:
  apt-build/arch_intel: pentium
  apt-build/arch_arm: armv2
* apt-build/make_options:
* apt-build/olevel: Medium
* apt-build/build_dir: /mnt/data/var/cache/apt-build/build
* apt-build/repository_dir: /mnt/data/var/cache/apt-build/repository
  apt-build/arch_sparc: sparc
* apt-build/add_to_sourceslist: true



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



Bug#300548: marked as done (libebml: FTBFS (amd64/gcc-4.0): invalid lvalue in unary '')

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 07:32:14 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#300548: fixed in libebml 0.7.5-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 Mar 2005 13:43:13 +
From [EMAIL PROTECTED] Sun Mar 20 05:43:13 2005
Return-path: [EMAIL PROTECTED]
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DD0i0-0001c9-00; Sun, 20 Mar 2005 05:43:13 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
id 1DD0hz-g2-Mb; Sun, 20 Mar 2005 14:43:11 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: libebml: FTBFS (amd64/gcc-4.0): invalid lvalue in unary ''
Message-Id: [EMAIL PROTECTED]
Date: Sun, 20 Mar 2005 14:43:11 +0100
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: libebml
Severity: normal
Tags: patch

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

g++ -c -Wall -Wno-unknown-pragmas -ansi -fno-gnu-keywords -Wshadow -fpic -fPIC 
-O2   -I/libebml-0.7.3/make/linux/../.. -o 
/libebml-0.7.3/make/linux/../../src/EbmlFloat.o 
/libebml-0.7.3/make/linux/../../src/EbmlFloat.cpp
/libebml-0.7.3/make/linux/../../src/EbmlFloat.cpp: In member function 'virtual 
uint64 libebml::EbmlFloat::ReadData(libebml::IOCallback, libebml::ScopeMode)':
/libebml-0.7.3/make/linux/../../src/EbmlFloat.cpp:105: error: invalid lvalue in 
unary ''
make[1]: *** [/libebml-0.7.3/make/linux/../../src/EbmlFloat.o] Error 1
make[1]: Leaving directory `/libebml-0.7.3/make/linux'
make: *** [build-stamp] Error 2

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/libebml-0.7.3/src/EbmlFloat.cpp ./src/EbmlFloat.cpp
--- ../tmp-orig/libebml-0.7.3/src/EbmlFloat.cpp 2005-01-10 23:49:42.0 
+0100
+++ ./src/EbmlFloat.cpp 2005-03-20 14:38:00.775465547 +0100
@@ -102,7 +102,7 @@
if (Size == 4) {
big_int32 TmpRead;
TmpRead.Eval(Buffer);
-   float val = *((float *)(int32(TmpRead)));
+   float val = *((float *)(TmpRead));
Value = val;
bValueIsSet = true;
} else if (Size == 8) {

---
Received: (at 300548-close) by bugs.debian.org; 15 Jul 2005 11:38:24 +
From [EMAIL PROTECTED] Fri Jul 15 04:38:24 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtOWO-aO-00; Fri, 15 Jul 2005 04:38:24 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtOQQ-a6-00; Fri, 15 Jul 2005 07:32:14 -0400
From: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#300548: fixed in libebml 0.7.5-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 07:32:14 -0400
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02
X-Spam-Level: 

Source: libebml
Source-Version: 0.7.5-1

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

libebml-dev_0.7.5-1_i386.deb
  to pool/main/libe/libebml/libebml-dev_0.7.5-1_i386.deb
libebml_0.7.5-1.diff.gz
  to pool/main/libe/libebml/libebml_0.7.5-1.diff.gz
libebml_0.7.5-1.dsc
  to pool/main/libe/libebml/libebml_0.7.5-1.dsc
libebml_0.7.5.orig.tar.gz
  to pool/main/libe/libebml/libebml_0.7.5.orig.tar.gz



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.


Bug#297857: marked as done (xffm4: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 12:47:57 +0100
with message-id [EMAIL PROTECTED]
and subject line Bug#297857: xffm4: FTBFS (amd64/gcc-4.0): invalid lvalue in 
assignment
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; 3 Mar 2005 09:34:51 +
From [EMAIL PROTECTED] Thu Mar 03 01:34:51 2005
Return-path: [EMAIL PROTECTED]
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1D6mjL-0005oj-00; Thu, 03 Mar 2005 01:34:51 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
id 1D6nff-0001Z0-EY; Thu, 03 Mar 2005 11:35:07 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: xffm4: FTBFS (amd64/gcc-4.0): invalid lvalue in assignment
Message-Id: [EMAIL PROTECTED]
Date: Thu, 03 Mar 2005 11:35:07 +0100
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: xffm4
Severity: normal
Tags: patch

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

if /bin/sh ../libtool --mode=compile x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. 
-I.. -I../src -I../smb   -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-DXTHREADS -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include 
-I/usr/X11R6/include -I/usr/include/atk-1.0 -I/usr/include/pango-1.0 
-I/usr/include/freetype2 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-I/usr/include/xfce4 -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-DPACKAGE_DATA_DIR=\/usr/share\ 
-DPACKAGE_LOCALE_DIR=\/usr/share/locale\   -I/usr/include/libxml2   -g -O2 
-MT libxffm_la-uri.lo -MD -MP -MF .deps/libxffm_la-uri.Tpo -c -o 
libxffm_la-uri.lo `test -f 'uri.c' || echo './'`uri.c; \
then mv -f .deps/libxffm_la-uri.Tpo .deps/libxffm_la-uri.Plo; else rm -f 
.deps/libxffm_la-uri.Tpo; exit 1; fi
 x86_64-linux-gcc -DHAVE_CONFIG_H -I. -I. -I.. -I../src -I../smb 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -DXTHREADS 
-I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/X11R6/include 
-I/usr/include/atk-1.0 -I/usr/include/pango-1.0 -I/usr/include/freetype2 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/xfce4 
-I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include 
-DPACKAGE_DATA_DIR=\/usr/share\ -DPACKAGE_LOCALE_DIR=\/usr/share/locale\ 
-I/usr/include/libxml2 -g -O2 -MT libxffm_la-uri.lo -MD -MP -MF 
.deps/libxffm_la-uri.Tpo -c uri.c  -fPIC -DPIC -o .libs/libxffm_la-uri.o
uri.c: In function 'uri_free_list':
uri.c:270: error: invalid lvalue in assignment
make[3]: *** [libxffm_la-uri.lo] Error 1
make[3]: Leaving directory `/xffm4-4.0.6/libs'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/xffm4-4.0.6/libs/run.c ./libs/run.c
--- ../tmp-orig/xffm4-4.0.6/libs/run.c  2005-03-03 11:26:26.461238520 +0100
+++ ./libs/run.c2005-03-03 11:24:17.289171113 +0100
@@ -292,6 +292,8 @@

 }
 
+static void save_run_path(char *p);
+
 int on_run_path(GtkTreeView * treeview, char *in_cmd, char *path, gboolean 
in_terminal, gboolean remember, gboolean put_in_history)
 {
 static gchar *gs=NULL;
@@ -385,7 +387,6 @@
 }
 
 if (put_in_history){
-   static void save_run_path(char *p);
save_run_path(in_cmd);
 }
 if(path  remember)
diff -urN ../tmp-orig/xffm4-4.0.6/libs/uri.c ./libs/uri.c
--- ../tmp-orig/xffm4-4.0.6/libs/uri.c  2003-09-05 05:23:42.0 +0200
+++ ./libs/uri.c2005-03-03 11:22:43.439285872 +0100
@@ -267,7 +267,7 @@
g_free(((uri *) t-data)-url);
((uri *) t-data)-url=NULL;
g_free((uri *) (t-data));
-   (uri *) (t-data)=NULL;
+   t-data=NULL;
t = t-next;
 }
 g_list_free(list);

---
Received: (at 297857-close) by bugs.debian.org; 15 Jul 2005 11:47:58 +
From [EMAIL PROTECTED] Fri Jul 15 04:47:58 2005
Return-path: [EMAIL PROTECTED]
Received: from the.earth.li [193.201.200.66] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DtOfe-0002Rv-00; Fri, 15 Jul 2005 04:47:58 -0700
Received: from huggie by the.earth.li with local (Exim 4.50)
id 

Bug#287383: marked as done (libdvb: FTBFS (amd64/gcc-4.0): cast from 'void*' to 'int' loses precision)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 08:02:04 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#287383: fixed in libdvb 0.5.5.1-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 Dec 2004 13:16:43 +
From [EMAIL PROTECTED] Mon Dec 27 05:16:43 2004
Return-path: [EMAIL PROTECTED]
Received: from c156115.adsl.hansenet.de (localhost.localdomain) 
[213.39.156.115] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1Ciujr-0002Xz-00; Mon, 27 Dec 2004 05:16:43 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1Ciuox-0005YT-Q0; Mon, 27 Dec 2004 14:21:59 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: libdvb: FTBFS (amd64/gcc-4.0): cast from 'void*' to 'int' loses 
precision
Message-Id: [EMAIL PROTECTED]
Date: Mon, 27 Dec 2004 14:21: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: libdvb
Severity: normal
Tags: patch

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

g++ -L../  -I. -I../include -I../../include -o cam_menu cam_menu.cc -ldvb
cam_menu.cc: In function 'void byebye(int, void*)':
cam_menu.cc:49: error: cast from 'void*' to 'int' loses precision
make[2]: *** [cam_menu] Error 1
make[2]: Leaving directory `/libdvb-0.5.4/sample_progs'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/libdvb-0.5.4/sample_progs/cam_menu.cc 
./sample_progs/cam_menu.cc
--- ../tmp-orig/libdvb-0.5.4/sample_progs/cam_menu.cc   2004-01-28 
20:44:27.0 +0100
+++ ./sample_progs/cam_menu.cc  2004-12-27 14:03:46.541883568 +0100
@@ -46,7 +46,7 @@
 
 void byebye(int i, void *f)
 {
-   int fd = (int) f;
+   long fd = (long) f;
 
CamPacket cp(fd, CMENU_CLOSE, 0, NULL);
cp.psend();

---
Received: (at 287383-close) by bugs.debian.org; 15 Jul 2005 12:10:22 +
From [EMAIL PROTECTED] Fri Jul 15 05:10:21 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtP1J-0008BE-00; Fri, 15 Jul 2005 05:10:21 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtOtI-0004MQ-00; Fri, 15 Jul 2005 08:02:04 -0400
From: Sam Hocevar (Debian packages) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#287383: fixed in libdvb 0.5.5.1-1
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 08:02:04 -0400
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: libdvb
Source-Version: 0.5.5.1-1

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

libdvb-dev_0.5.5.1-1_i386.deb
  to pool/main/libd/libdvb/libdvb-dev_0.5.5.1-1_i386.deb
libdvb_0.5.5.1-1.diff.gz
  to pool/main/libd/libdvb/libdvb_0.5.5.1-1.diff.gz
libdvb_0.5.5.1-1.dsc
  to pool/main/libd/libdvb/libdvb_0.5.5.1-1.dsc
libdvb_0.5.5.1.orig.tar.gz
  to pool/main/libd/libdvb/libdvb_0.5.5.1.orig.tar.gz



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.
Sam Hocevar (Debian packages) [EMAIL PROTECTED] (supplier of updated libdvb 
package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing [EMAIL PROTECTED])


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Format: 1.7
Date: Fri, 15 Jul 2005 14:37:32 +0300
Source: libdvb
Binary: libdvb-dev
Architecture: source i386
Version: 0.5.5.1-1
Distribution: unstable

Bug#280987: Ooops, sorry, wrong link in my last comment...

2005-07-15 Thread Anthony DeRobertis

Yeah, I meant to give 
http://bjorn.haxx.se/debian/testing.pl?package=mig
instead. D'oh!


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



Bug#315703: Bug#316590: woody backport now available for all cacti security issues

2005-07-15 Thread sean finney
On Thu, Jul 14, 2005 at 07:10:30PM +0200, Martin Schulze wrote:
 Sean Finney wrote:
  i guess i didn't in the email updating this, but did so in sanitize.php
  itself:
 
 Yes, I saw that later.  I hope, my tone wasn't too harsh.

my skin is fairly thick :)

 Yes, but the woody version does not use $_GET *anywhere* except in
 the alleged sanitising code you included.  It uses $foo instead of
 $_GET[foo] all the time, which means for me - if I'm not mistaken -
 that we should use either $foo or $_REQUEST[foo] in the sanitising
 code.

yes.  we could either pass the variable names as strings and
dereference them (like $$name), or use $_REQUEST, which i'm
fairly sure will have the same effect.

  if any of them have bad values.  that would make the patch even
  simpler.
 
 It seems to me that running them on $_REQUEST only is sufficient.  Or
 do you know of a possibility that $foo can include something which is
 not in $_REQUEST when inserted via GET/POST/cookie/$whatever?

if the supposition is true that $_REQUEST is set in the same order
as variables set via register_globals, then no further checks would
be necessary.  i'm fairly certain this is the case.

  how does that sound?
 
 Good.
 
 However, as I don't like the next week part too much, I'll try to
 work on the update on my own and send you the diff for comments.
 Should reduce the time you need to spend on the issue as well.

okay, that would be appreciated.  i'm really busy in the next 4-5 days
as i'm trying to get my wordly possessions sorted and packed in
preparation for moving out of the country...

On Fri, Jul 15, 2005 at 04:15:22PM +0200, Martin Schulze wrote:
  However, as I don't like the next week part too much, I'll try to
  work on the update on my own and send you the diff for comments.
  Should reduce the time you need to spend on the issue as well.
 
 Ok, here is an update.

i'll try and set some time aside tonight or tomorrow to test, but
it looks good from an initial glance.


sean

-- 


signature.asc
Description: Digital signature


Bug#314343: (no subject)

2005-07-15 Thread W. Borgert
Hi Lev,

thanks for the new asn1c.  I will upload to Debian about next week.

Cheers!


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



Bug#313605:

2005-07-15 Thread Scott James Remnant
severity 313605 minor
thanks

This bug should not be serious, it is not a severe violation of Debian
policy, and does not, in my opinion make the package unsuitable for release.

Neither is it grave (it does not make dpkg unusuable, or mostly so, or
introduce a security hole) or critical (in order to justify that it makes
unrelated software _break_ you'd need to provide an example Bug# caused
by this diversion).

This bug doesn't affect dpkg's usefulness and is trivial to fix once an
upload of coreutils to fix Bug#313258 has taken place.

Therefore the appropriate severity is minor.

Scott
-- 
Have you ever, ever felt like this?
Had strange things happen?  Are you going round the twist?


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



Bug#318411: lg-issue85: FTBFS: '=' missing in tar --exclude parameter

2005-07-15 Thread Andreas Jochens
Package: lg-issue85
Version: 1-1
Severity: serious
Tags: patch

When building 'lg-issue85' on unstable,
I get the following error:

dh_installdirs usr/share/doc/lg-issue85
install -d debian/lg-issue85
install -d debian/lg-issue85/usr/share/doc/lg-issue85
cd issue85; \
tar --exclude=index.html --exclude TWDT.* --exclude ARTICLES \
--exclude=issue85.* --exclude=whole.lg_answer85.html \
-czf ../debian/lg-issue85/usr/share/doc/lg-issue85/lg-issue85.tar.gz *
tar: You must specify one of the `-Acdtrux' options
Try `tar --help' or `tar --usage' for more information.
make: *** [binary-indep] Error 2

With the attached patch 'lg-issue85' can be compiled.

Regards
Andreas Jochens

diff -urN ../tmp-orig/lg-issue85-1/debian/rules ./debian/rules
--- ../tmp-orig/lg-issue85-1/debian/rules   2005-07-15 11:24:39.0 
+
+++ ./debian/rules  2005-07-15 11:24:09.0 +
@@ -28,7 +28,7 @@
dh_installdirs usr/share/doc/lg-issue$(ISSUE)
 
cd issue$(ISSUE); \
-   tar --exclude=index.html --exclude TWDT.* --exclude ARTICLES \
+   tar --exclude=index.html --exclude=TWDT.* --exclude=ARTICLES \
--exclude=issue$(ISSUE).* --exclude=whole.lg_answer$(ISSUE).html \
-czf ../$(lgdir)/lg-issue$(ISSUE).tar.gz *
 


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



Bug#280987: Don't the testing scripts already do that?

2005-07-15 Thread Anthony DeRobertis

Don't the testing scripts already keep it out due to the gnumach bugs,
without needing to file this fake bug?

At least reading:
http://bjorn.haxx.se/debian/testing.pl?package=gnumach
seems to indicated they will.


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



Bug#300517: marked as done (trn4: FTBFS (amd64/gcc-4.0): array type has incomplete element type)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 09:47:10 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#300517: fixed in trn4 4.0-test76-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; 20 Mar 2005 10:09:15 +
From [EMAIL PROTECTED] Sun Mar 20 02:09:14 2005
Return-path: [EMAIL PROTECTED]
Received: from c223012.adsl.hansenet.de (localhost.localdomain) [213.39.223.12] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DCxMv-ow-00; Sun, 20 Mar 2005 02:09:14 -0800
Received: from aj by localhost.localdomain with local (Exim 4.44)
id 1DCxMu-0002XY-J6; Sun, 20 Mar 2005 11:09:12 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: trn4: FTBFS (amd64/gcc-4.0): array type has incomplete element type
Message-Id: [EMAIL PROTECTED]
Date: Sun, 20 Mar 2005 11:09:12 +0100
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: trn4
Severity: normal
Tags: patch

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

gcc -c -O2 -g -Wall -DDEBUG  datasrc.c
In file included from datasrc.c:15:
opt.h:135: error: array type has incomplete element type
make[1]: *** [datasrc.o] Error 1
make[1]: Leaving directory `/trn4-4.0-test76'
make: *** [build-stamp] Error 2

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/trn4-4.0-test76/ngstuff.c ./ngstuff.c
--- ../tmp-orig/trn4-4.0-test76/ngstuff.c   2000-12-28 22:18:07.0 
+0100
+++ ./ngstuff.c 2005-03-20 10:59:20.309650833 +0100
@@ -37,6 +37,8 @@
 #include INTERN.h
 #include ngstuff.h
 
+extern INI_WORDS options_ini[];
+
 void
 ngstuff_init()
 {
diff -urN ../tmp-orig/trn4-4.0-test76/opt.h ./opt.h
--- ../tmp-orig/trn4-4.0-test76/opt.h   2000-05-25 07:04:40.0 +0200
+++ ./opt.h 2005-03-20 10:58:49.699596161 +0100
@@ -132,7 +132,6 @@
 # define OI_SCORE_LAST (OI_SCAN_LAST)
 #endif
 
-extern INI_WORDS options_ini[];
 EXT char** option_def_vals;
 EXT char** option_saved_vals;
 EXT char* option_flags;
diff -urN ../tmp-orig/trn4-4.0-test76/rt-page.c ./rt-page.c
--- ../tmp-orig/trn4-4.0-test76/rt-page.c   2000-05-25 07:04:40.0 
+0200
+++ ./rt-page.c 2005-03-20 10:59:38.407135907 +0100
@@ -31,6 +31,8 @@
 #include rt-page.h
 #include rt-page.ih
 
+extern INI_WORDS options_ini[];
+
 bool
 set_sel_mode(ch)
 char_int ch;
diff -urN ../tmp-orig/trn4-4.0-test76/rt-select.c ./rt-select.c
--- ../tmp-orig/trn4-4.0-test76/rt-select.c 2001-02-13 23:02:48.0 
+0100
+++ ./rt-select.c   2005-03-20 11:00:11.633682800 +0100
@@ -44,6 +44,8 @@
 #include rt-select.h
 #include rt-select.ih
 
+extern INI_WORDS options_ini[];
+
 static char sel_ret;
 static char page_char, end_char;
 static int disp_status_line;

---
Received: (at 300517-close) by bugs.debian.org; 15 Jul 2005 13:56:58 +
From [EMAIL PROTECTED] Fri Jul 15 06:56:58 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtQgU-0001MK-00; Fri, 15 Jul 2005 06:56:58 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtQX0-0001ht-00; Fri, 15 Jul 2005 09:47:10 -0400
From: Colin Watson [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#300517: fixed in trn4 4.0-test76-10
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 09:47:10 -0400
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: trn4
Source-Version: 4.0-test76-10

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

trn4_4.0-test76-10.diff.gz
  to pool/non-free/t/trn4/trn4_4.0-test76-10.diff.gz
trn4_4.0-test76-10.dsc
  to pool/non-free/t/trn4/trn4_4.0-test76-10.dsc

Bug#315127: libgphoto2: FTBFS using dpkg-buildpackage on ppc

2005-07-15 Thread Andreas Metzler
tags 315127 sarge
thanks
On 2005-06-26 Roger Leigh [EMAIL PROTECTED] wrote:
 tags 315127 + confirmed
 thanks
 
 Build log is here:
 http://people.debian.org/~rleigh/libgphoto2_2.1.5-6_20050626-1057
 
 test -d debian/libgphoto2-2/usr/lib/libgphoto2  \
 mv debian/libgphoto2-2/usr/lib/libgphoto2 \
 debian/libgphoto2-2/usr/lib/libgphoto2-2
 make: *** [install] Error 1
[...] 
 So the mv command is incorrect.  It's also likely not ppc-specific
 either.  The directory is simply gphoto2, and it's not clear if this
 should be renamed or not.

The respective code is not present anymore in 2.1.6-1, so this only
applies to stable.
 cu andreas
 


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



Bug#293018: marked as done (freefem3d: FTBFS (amd64/gcc-4.0): explicit specialization of 'void ConnectivityBuilderMeshOfHexahedra::setFaces()' must be introduced by 'template ')

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 13:55:46 +0200
with message-id [EMAIL PROTECTED]
and subject line corrected in latest version of freefem3d 1.0pre7
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 18:23:19 +
From [EMAIL PROTECTED] Mon Jan 31 10:23:18 2005
Return-path: [EMAIL PROTECTED]
Received: from d128055.adsl.hansenet.de (localhost.localdomain) [80.171.128.55] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CvgCk-0001vC-00; Mon, 31 Jan 2005 10:23:18 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CvgCi-a1-Q5; Mon, 31 Jan 2005 19:23:16 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: freefem3d: FTBFS (amd64/gcc-4.0): explicit specialization of 'void 
ConnectivityBuilderMeshOfHexahedra::setFaces()' must be introduced by 
'template '
Message-Id: [EMAIL PROTECTED]
Date: Mon, 31 Jan 2005 19:23:16 +0100
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: freefem3d
Severity: normal
Tags: patch

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

../../solver/ConnectivityBuilder.cpp:25: error: explicit specialization of 
'void ConnectivityBuilderMeshOfHexahedra::setFaces()' must be introduced by 
'template '
../../solver/ConnectivityBuilder.cpp:25: error: template-id 'setFaces' for 
'void ConnectivityBuilderMeshOfHexahedra::setFaces()' does not match any 
template declaration
../../solver/ConnectivityBuilder.cpp:25: error: invalid function declaration
../../solver/ConnectivityBuilder.cpp:58: error: explicit specialization of 
'void ConnectivityBuilderMeshOfTetrahedra::setFaces()' must be introduced by 
'template '
../../solver/ConnectivityBuilder.cpp:58: error: template-id 'setFaces' for 
'void ConnectivityBuilderMeshOfTetrahedra::setFaces()' does not match any 
template declaration
../../solver/ConnectivityBuilder.cpp:58: error: invalid function declaration
../../solver/ConnectivityBuilder.cpp:77: error: explicit specialization of 
'void ConnectivityBuilderSurfaceMeshOfTriangles::setFaces()' must be 
introduced by 'template '
../../solver/ConnectivityBuilder.cpp:77: error: template-id 'setFaces' for 
'void ConnectivityBuilderSurfaceMeshOfTriangles::setFaces()' does not match 
any template declaration
../../solver/ConnectivityBuilder.cpp:77: error: invalid function declaration
make[3]: *** [ConnectivityBuilder.o] Error 1
make[3]: Leaving directory `/freefem3d-1.0pre5/opt/solver'

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/freefem3d-1.0pre5/solver/ConnectivityBuilder.cpp 
./solver/ConnectivityBuilder.cpp
--- ../tmp-orig/freefem3d-1.0pre5/solver/ConnectivityBuilder.cpp
2003-04-27 19:04:27.0 +0200
+++ ./solver/ConnectivityBuilder.cpp2005-01-31 17:41:35.725866180 +0100
@@ -22,7 +22,7 @@
 #include MeshOfTetrahedra.hpp
 #include MeshOfHexahedra.hpp
 
-void ConnectivityBuilderMeshOfHexahedra::setFaces()
+template  void ConnectivityBuilderMeshOfHexahedra::setFaces()
 {
   __face[0][0] = 4;
   __face[0][1] = 7;
@@ -55,7 +55,7 @@
   __face[5][3] = 4;
 }
 
-void ConnectivityBuilderMeshOfTetrahedra::setFaces()
+template  void ConnectivityBuilderMeshOfTetrahedra::setFaces()
 {
   __face[0][0] = 1;
   __face[0][1] = 2;
@@ -74,7 +74,7 @@
   __face[3][2] = 0;
 }
 
-void ConnectivityBuilderSurfaceMeshOfTriangles::setFaces()
+template  void ConnectivityBuilderSurfaceMeshOfTriangles::setFaces()
 {
   __face[0][0] = 1;
   __face[0][1] = 2;
diff -urN ../tmp-orig/freefem3d-1.0pre5/solver/ElementaryMatrixSet.cpp 
./solver/ElementaryMatrixSet.cpp
--- ../tmp-orig/freefem3d-1.0pre5/solver/ElementaryMatrixSet.cpp
2003-12-26 19:38:02.0 +0100
+++ ./solver/ElementaryMatrixSet.cpp2005-01-31 17:53:57.555273982 +0100
@@ -36,7 +36,7 @@
 */
 
 #define EMS(ElementaryMatrixType)\
-ElementaryMatrixSetElementaryMatrixType::  \
+template  ElementaryMatrixSetElementaryMatrixType::
  \
 ElementaryMatrixSet(const Problem problem)  \
   : __divMuGrad(false),  

Bug#317469: libgtkmm2.0-1c102: Uninstallable. Depends on package that isn't available in unstable.

2005-07-15 Thread Andreas Metzler
package libgtkmm2.0-1c102
tags 317469 patch
thanks
On 2005-07-09 Vedran Furac [EMAIL PROTECTED] wrote:
 Package: libgtkmm2.0-1c102
[...] 
 Depends on libsigc++-1.2-5c102 witch isn't available in unstable 
[...] 

Hello,
attached patch does the necessary name- and build-dependency change for
gcc4. To actually be able to build the package I however needed to
upgrade the whole libtool-stuff in addition to that.

libtoolize -c -f -i
autoreconf -i

cu andreas
--- gtkmm2.0-2.2.12/debian/control
+++ gtkmm2.0-2.2.12/debian/control
@@ -2,14 +2,13 @@
 Section: libs
 Priority: optional
 Maintainer: Bradley Bell [EMAIL PROTECTED]
-Build-Depends: debhelper ( 4.0.0), libgtk2.0-dev (= 2.2.0), 
libsigc++-1.2-dev (= 1.2.3-1), g++ (= 3:3.2.2-0), docbook-xsl, xsltproc
-Build-Conflicts: g++-3.3 ( 1:3.3.1-0rc1)
+Build-Depends: debhelper ( 4.0.0), libgtk2.0-dev (= 2.2.0), 
libsigc++-1.2-dev (= 1.2.5-5), docbook-xsl, xsltproc
 Standards-Version: 3.6.1
 
 Package: libgtkmm2.0-dev
 Section: libdevel
 Architecture: any
-Depends: libgtkmm2.0-1c102 (= ${Source-Version}), libgtk2.0-dev (= 2.2.0), 
libsigc++-1.2-dev (= 1.2.3-1)
+Depends: libgtkmm2.0-1c2 (= ${Source-Version}), libgtk2.0-dev (= 2.2.0), 
libsigc++-1.2-dev (= 1.2.5-5)
 Suggests: libgtkmm2.0-doc
 Conflicts: libgtkmm1.3-dev
 Replaces: libgtkmm1.3-dev
@@ -23,12 +22,12 @@
  .
  This package contains development files and examples.
 
-Package: libgtkmm2.0-1c102
+Package: libgtkmm2.0-1c2
 Section: libs
 Architecture: any
 Depends: ${shlibs:Depends}
-Conflicts: libgtkmm2.0-1
-Replaces: libgtkmm2.0-1
+Conflicts: libgtkmm2.0-1, libgtkmm2.0-1c102
+Replaces: libgtkmm2.0-1, libgtkmm2.0-1c102
 Description: C++ wrappers for GTK+ 2.0 (shared libraries)
  Gtkmm is a C++ interface for the popular GUI library gtk+.
  Gtkmm provides a convenient interface for C++ programmers to create
--- gtkmm2.0-2.2.12/debian/rules
+++ gtkmm2.0-2.2.12/debian/rules
@@ -44,7 +44,7 @@
 
 debname=$(libname)$(release)
 
-p_libs = $(debname)-$(major)c102
+p_libs = $(debname)-$(major)c2
 p_devs = $(debname)-dev
 p_docs = $(debname)-doc
 
--- gtkmm2.0-2.2.12/debian/changelog
+++ gtkmm2.0-2.2.12/debian/changelog
@@ -1,3 +1,10 @@
+gtkmm2.0 (2.2.12-1.2) unstable; urgency=low
+
+  * NMU
+  * Gcc 4 transition. (Closes: #317469)
+
+ -- Andreas Metzler [EMAIL PROTECTED]  Fri, 15 Jul 2005 11:08:28 +
+
 gtkmm2.0 (2.2.12-1.1) unstable; urgency=high
 
   * Non-Maintainer Upload (BSP)


Bug#318285: CAN-2005-2240 symlink attack in xpvm.tcl

2005-07-15 Thread Frank Lichtenheld
On Thu, Jul 14, 2005 at 05:27:33PM +0300, Joey Hess wrote:
 According to http://secunia.com/advisories/16040:

Some investigation on it:
There is a tempfile procedure available in tcllib, one could either
use that or copypaste (since it isn't available in tcllib in woody)

@security team: Should I cook up a patch for that?

Gruesse,
-- 
Frank Lichtenheld [EMAIL PROTECTED]
www: http://www.djpig.de/


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



Bug#318429: libc6.1-dev: failure with g++-4.0 caused by ucontext.h

2005-07-15 Thread Eduard Bloch
Package: libc6.1-dev
Version: 2.3.2.ds1-22
Severity: serious

Hello,

ucontext.h has a faulty struct definition on ia64, see
http://buildd.debian.org/fetch.php?pkg=icewmver=1.2.21%2B1.2.22pre2-1arch=ia64stamp=1121106846file=logas=raw
for details.

Error message:

/usr/include/sys/ucontext.h:49: error: array bound is not an integer
constant

g++-3.x seems to permit this, 4.0 does not.

Regards,
Eduard.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: ia64
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.27-dsa-itanium-smp
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages libc6.1-dev depends on:
ii  libc6.1 2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  linux-kernel-headers2.6.12.0-1   Linux Kernel Headers for developme

Versions of packages libc6.1-dev recommends:
ii  gcc [c-compiler]  4:4.0.0-2  The GNU C compiler
ii  gcc-2.96 [c-compiler] 1:2.96-9   The GNU C compiler
ii  gcc-3.2 [c-compiler]  1:3.2.3-9  The GNU C compiler
ii  gcc-3.3 [c-compiler]  1:3.3.6-7  The GNU C compiler
ii  gcc-3.4 [c-compiler]  3.4.4-5The GNU C compiler
ii  gcc-4.0 [c-compiler]  4.0.0-12   The GNU C compiler

-- no debconf information


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



Bug#314257: marked as done (muine: FTBFS (amd64/gcc-4.0))

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 11:32:39 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#314257: fixed in muine 0.8.3-5
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 Jun 2005 12:37:58 +
From [EMAIL PROTECTED] Wed Jun 15 05:37:58 2005
Return-path: [EMAIL PROTECTED]
Received: from d027183.adsl.hansenet.de (localhost.localdomain) [80.171.27.183] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DiX9a-0007mX-00; Wed, 15 Jun 2005 05:37:58 -0700
Received: from aj by localhost.localdomain with local (Exim 4.50)
id 1DiX9Z-0006sO-7N; Wed, 15 Jun 2005 14:37:57 +0200
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: muine: FTBFS (amd64/gcc-4.0)
Message-Id: [EMAIL PROTECTED]
Date: Wed, 15 Jun 2005 14:37:57 +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-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: muine
Version: 0.6.3-8
Severity: normal
Tags: patch

'muine' fails to build on amd64/unstable with gcc-4.0,
I get the following error:

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/muine-0.6.3/debian/control ./debian/control
--- ../tmp-orig/muine-0.6.3/debian/control  2005-06-04 14:06:24.082494485 
+0200
+++ ./debian/control2005-06-04 10:36:28.0 +0200
@@ -2,7 +2,7 @@
 Section: gnome
 Priority: optional
 Maintainer: Dave Beckett [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4.1.87), mono-jit [i386 powerpc], mono-mint 
[!i386 !powerpc], mono-mcs (= 1.0) | c-sharp-compiler, mono-utils (= 1.0-2), 
libgtk-cil (= 1.0), libgconf-cil (= 1.0), libgnome-cil (= 1.0), libglade-cil 
(= 1.0), libgtk2.0-dev (= 2.2.0), libgdbm-dev (= 1.8.0), libogg-dev (= 
1.0), libvorbis-dev (= 1.0), libid3tag0-dev (= 0.15.1b-3), libflac-dev (= 
1.1.1-3), autotools-dev, cdbs, libmono-dev (= 1.0), libgconf2-dev (= 2.4.0), 
libgnomevfs2-dev (= 2.4.0), libgnome2-dev (= 2.4.0), libgstreamer0.8-dev (= 
0.8.0), libgstreamer-gconf0.8-dev (= 0.8.0), libgstreamer-plugins0.8-dev (= 
0.8.0), intltool
+Build-Depends: debhelper (= 4.1.87), mono-jit [amd64 i386 powerpc], mono-mint 
[!amd64 !i386 !powerpc], mono-mcs (= 1.0) | c-sharp-compiler, mono-utils (= 
1.0-2), libgtk-cil (= 1.0), libgconf-cil (= 1.0), libgnome-cil (= 1.0), 
libglade-cil (= 1.0), libgtk2.0-dev (= 2.2.0), libgdbm-dev (= 1.8.0), 
libogg-dev (= 1.0), libvorbis-dev (= 1.0), libid3tag0-dev (= 0.15.1b-3), 
libflac-dev (= 1.1.1-3), autotools-dev, cdbs, libmono-dev (= 1.0), 
libgconf2-dev (= 2.4.0), libgnomevfs2-dev (= 2.4.0), libgnome2-dev (= 
2.4.0), libgstreamer0.8-dev (= 0.8.0), libgstreamer-gconf0.8-dev (= 0.8.0), 
libgstreamer-plugins0.8-dev (= 0.8.0), intltool
 Standards-Version: 3.6.1.0
 
 Package: muine
diff -urN ../tmp-orig/muine-0.6.3/debian/rules ./debian/rules
--- ../tmp-orig/muine-0.6.3/debian/rules2005-06-04 14:06:24.082494485 
+0200
+++ ./debian/rules  2005-06-04 14:06:19.951306850 +0200
@@ -15,7 +15,7 @@
mkdir -p $(MONO_SHARED_DIR)/.wapi
 
 common-binary-predeb-arch::
-   dh_netdeps
+#  dh_netdeps
sed -e 's/ libglib2[^,]*,//' -e 's/ libgnomevfs2[^,]*,//' 
debian/muine.substvars  debian/muine.substvars.new  mv 
debian/muine.substvars.new debian/muine.substvars
 
 common-binary-post-install-arch::
diff -urN ../tmp-orig/muine-0.6.3/libmuine/bacon-message-connection.c 
./libmuine/bacon-message-connection.c
--- ../tmp-orig/muine-0.6.3/libmuine/bacon-message-connection.c 2004-01-27 
15:28:42.0 +0100
+++ ./libmuine/bacon-message-connection.c   2005-06-04 12:13:59.743463262 
+0200
@@ -63,7 +63,8 @@
 {
BaconMessageConnection *conn = (BaconMessageConnection *)data;
char *message, *subs, buf[BUF_SIZE];
-   int cd, alen, rc, offset;
+   int cd, rc, offset;
+   unsigned alen;
gboolean finished;
 
message = NULL;
diff -urN ../tmp-orig/muine-0.6.3/libmuine/db.c ./libmuine/db.c
--- ../tmp-orig/muine-0.6.3/libmuine/db.c   2004-04-14 21:39:53.0 
+0200
+++ ./libmuine/db.c 2005-06-04 12:13:20.243224313 +0200
@@ -339,8 +339,8 @@
 {
GString *string = (GString *) p;
GdkPixdata *pixdata;
-   int len = 0;
-   char *str;
+   unsigned len 

Bug#316572: apt-build: What is the solution please ? :(

2005-07-15 Thread Julien Danjou
On Fri, Jul 15, 2005 at 03:01:02PM +0200, KnuX wrote:
 I'm sorry, I am unable to use apt-build since this issue appears...
 
 For example : apt-build install whois
 The following NEW packages will be installed:
   whois
 0 upgraded, 1 newly installed, 0 to remove and 74 not upgraded.
 Need to get 0B/41.4kB of archives.
 After unpacking 238kB of additional disk space will be used.
 WARNING: The following packages cannot be authenticated!
   whois
 E: There are problems and -y was used without --force-yes
 
 The E: line seems to represent an unsupported situation, no ? ;)

Again, you have to deal with apt-key to authenticate your packages.
Or hack to apt-build to add --force-yes. Ugly.

-- 
Julien Danjou
.''`.  Debian Developer
: :' : http://julien.danjou.info
`. `'  http://people.debian.org/~acid
  `-   9A0D 5FD9 EB42 22F6 8974  C95C A462 B51E C2FE E5CD


signature.asc
Description: Digital signature


Processed: Merge

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 merge 262759 294391
Bug#262759: turqstat: FTBFS with gcc-3.4: named return values are no longer 
supported
Bug#294391: turqstat: FTBFS (amd64/gcc-4.0): using typedef-name 'std::ostream' 
after 'class'
Merged 262759 294391.

 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: Re: Bug#318422: latest sid update breaks slrn

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 severity 318422 grave
Bug#318422: latest sid update breaks slrn
Severity set to `grave'.

 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#300517: trn4: FTBFS (amd64/gcc-4.0): array type has incomplete element type

2005-07-15 Thread Colin Watson
On Sun, Mar 20, 2005 at 11:09:12AM +0100, Andreas Jochens wrote:
 When building 'trn4' on amd64 with gcc-4.0,
 I get the following error:
 
 gcc -c -O2 -g -Wall -DDEBUG  datasrc.c
 In file included from datasrc.c:15:
 opt.h:135: error: array type has incomplete element type
 make[1]: *** [datasrc.o] Error 1
 make[1]: Leaving directory `/trn4-4.0-test76'
 make: *** [build-stamp] Error 2
 
 With the attached patch 'trn4' can be compiled
 on amd64 using gcc-4.0.

I took a slightly different approach, namely adjusting some #include
ordering. Uploading now.

Thanks,

-- 
Colin Watson   [EMAIL PROTECTED]


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



Processed: setting package to jade, severity of 308810 is serious

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 package jade
Ignoring bugs not assigned to: jade

  # g++-4.0 is now the default
 severity 308810 serious
Bug#308810: FTBFS with g++-4.0
Severity set to `serious'.


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: tagging 318460

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 tags 318460 sid
Bug#318460: htmldoc depends on obsolete libfltk1.1c102
There were no tags set.
Tags added: sid


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#310219: marked as done (tagcoll: FTBFS: ld: cannot find -ltdb)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 20:24:46 +0300
with message-id [EMAIL PROTECTED]
and subject line Bug has been solved for a while
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 May 2005 14:04:54 +
From [EMAIL PROTECTED] Sun May 22 07:04:54 2005
Return-path: [EMAIL PROTECTED]
Received: from adicia.telenet-ops.be [195.130.132.56] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DZr4X-0003Ay-00; Sun, 22 May 2005 07:04:53 -0700
Received: from localhost (localhost.localdomain [127.0.0.1])
by adicia.telenet-ops.be (Postfix) with SMTP id DEF3444810
for [EMAIL PROTECTED]; Sun, 22 May 2005 16:04:52 +0200 (MEST)
Received: from Q.roeckx.be (dD5775FD9.access.telenet.be [213.119.95.217])
by adicia.telenet-ops.be (Postfix) with ESMTP id 8311644721
for [EMAIL PROTECTED]; Sun, 22 May 2005 16:04:52 +0200 (MEST)
Received: by Q.roeckx.be (Postfix, from userid 501)
id 38E0426136; Sun, 22 May 2005 16:04:52 +0200 (CEST)
Date: Sun, 22 May 2005 16:04:52 +0200
From: Kurt Roeckx [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: tagcoll: FTBFS: ld: cannot find -ltdb
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Disposition: inline
User-Agent: Mutt/1.4.2.1i
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: tagcoll
Version: 0.100-1
Severity: serious
Tags: experimental

Hi,

Your package is failing to build in experimental with the
following error:
if g++ -DHAVE_CONFIG_H -I. -I. -I.. -I/usr/include/tagcoll-1.0  -g -Wall 
-O2 -Wall -MT instantiations.o -MD -MP -MF .deps/instantiations.Tpo -c -o 
instantiations.o instantiations.cc; \
then mv -f .deps/instantiations.Tpo .deps/instantiations.Po; else rm -f 
.deps/instantiations.Tpo; exit 1; fi
g++  -g -Wall -O2 -Wall   -o tagcoll  tagcoll.o CommandlineParser.o 
instantiations.o -ltagcoll1 -ltdb -lz
/usr/bin/ld: cannot find -ltdb
collect2: ld returned 1 exit status
make[3]: *** [tagcoll] Error 1


Kurt


---
Received: (at 310219-done) by bugs.debian.org; 15 Jul 2005 17:40:18 +
From [EMAIL PROTECTED] Fri Jul 15 10:40:18 2005
Return-path: [EMAIL PROTECTED]
Received: from fe-6c.inet.it [213.92.5.112] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtUAc-0003Gt-00; Fri, 15 Jul 2005 10:40:18 -0700
Received: from 81-174-12-206.f5.ngi.it [:::81.174.12.206] by fe-6c.inet.it 
via I-SMTP-5.2.3-520
id :::81.174.12.206+tPFIkNnxFWc; Fri, 15 Jul 2005 19:40:16 +0200
Received: from enrico by localhost.localdomain with local (Exim 4.52)
id 1DtTva-0003aQ-Rt
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 20:24:46 +0300
Date: Fri, 15 Jul 2005 20:24:46 +0300
From: Enrico Zini [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Bug has been solved for a while
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=0F1p//8PRICkK4MW
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
version=2.60-bugs.debian.org_2005_01_02


--0F1p//8PRICkK4MW
Content-Type: text/plain; charset=utf-8
Content-Disposition: inline

I'm closing this bug: it's experimental and fixed-in-experimental, and I
had forgot to close it before.

Ciao,

Enrico

--
GPG key: 1024D/797EBFAB 2000-12-05 Enrico Zini [EMAIL PROTECTED]

--0F1p//8PRICkK4MW
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)

iD8DBQFC1/Fe9LSwzHl+v6sRAi7rAJ9rZHof36BndEuvD/VypmX9aO2c0QCfZOIB
UMJoJ+jqspDi9BYdKXadGUQ=
=qGo+
-END PGP SIGNATURE-

--0F1p//8PRICkK4MW--


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



Bug#313206: marked as done (sox: Does not cope well with running out of disk space)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 13:17:03 -0400
with message-id [EMAIL PROTECTED]
and subject line Bug#313206: fixed in sox 12.17.7-3
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 Jun 2005 13:07:52 +
From [EMAIL PROTECTED] Sun Jun 12 06:07:52 2005
Return-path: [EMAIL PROTECTED]
Received: from mail.metronet.co.uk [213.162.97.75] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DhSBs-0008SS-00; Sun, 12 Jun 2005 06:07:52 -0700
Received: from laura (213-162-120-114.andrew546.adsl.metronet.co.uk 
[213.162.120.114])
by smtp.metronet.co.uk (MetroNet Mail) with ESMTP id 40653415D87
for [EMAIL PROTECTED]; Sun, 12 Jun 2005 14:07:30 +0100 (BST)
Received: from ferriera by laura with local (Exim 3.35 #1 (Debian))
id 1DhSBO-0002Nc-00
for [EMAIL PROTECTED]; Sun, 12 Jun 2005 14:07:22 +0100
From: Andrew Ferrier [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: sox: Does not cope well with running out of disk space
X-Mailer: reportbug 1.50
Date: Sun, 12 Jun 2005 14:07:22 +0100
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-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: sox
Version: 12.17.3-4woody2
Severity: grave
Justification: causes non-serious data loss

I invoke sox in the following way:

sox file.au file.wav

sox runs out of disk space half-way through the conversion (as confirmed
by a subsequent df), but appears to terminate normally: nothing is
printed to stdout, and the return code is 0. The target file is
definitely truncated, as can be easily discovered by playing it.

I feel this indicates a grave problem as the user or a script might then
decide to delete the source file file.au, perhaps permanently losing the
latter part of the audio data from the file. Of course in theory they
should check the contents of the target file, but this isn't always
feasible, particularly during mass conversions.

This bug is filed on a woody system, but I have checked the changelog
in sarge and I can't see any obvious fixes to this problem. I can
re-test this problem on sarge in about a week when I have time to
upgrade my system, if necessary.

Thanks,
Andrew.

-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux laura 2.4.27 #1 Sun Apr 3 16:34:01 BST 2005 i686
Locale: LANG=C, LC_CTYPE=C

Versions of packages sox depends on:
ii  libc6 2.2.5-11.8 GNU C Library: Shared libraries an
ii  libogg0   1.0rc3-1   Ogg Bitstream Library
ii  libvorbis01.0rc3-1   The Vorbis General Audio Compressi


---
Received: (at 313206-close) by bugs.debian.org; 15 Jul 2005 17:23:02 +
From [EMAIL PROTECTED] Fri Jul 15 10:23:02 2005
Return-path: [EMAIL PROTECTED]
Received: from newraff.debian.org [208.185.25.31] (mail)
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtTtt-Vm-00; Fri, 15 Jul 2005 10:23:01 -0700
Received: from katie by newraff.debian.org with local (Exim 3.35 1 (Debian))
id 1DtTo7-0004iq-00; Fri, 15 Jul 2005 13:17:03 -0400
From: Guenter Geiger (Debian/GNU) [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
X-Katie: $Revision: 1.56 $
Subject: Bug#313206: fixed in sox 12.17.7-3
Message-Id: [EMAIL PROTECTED]
Sender: Archive Administrator [EMAIL PROTECTED]
Date: Fri, 15 Jul 2005 13:17:03 -0400
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: 6

Source: sox
Source-Version: 12.17.7-3

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

sox-dev_12.17.7-3_i386.deb
  to pool/main/s/sox/sox-dev_12.17.7-3_i386.deb
sox_12.17.7-3.diff.gz
  to pool/main/s/sox/sox_12.17.7-3.diff.gz
sox_12.17.7-3.dsc
  to pool/main/s/sox/sox_12.17.7-3.dsc
sox_12.17.7-3_i386.deb
  to pool/main/s/sox/sox_12.17.7-3_i386.deb



A summary of the changes between this version and the previous one is
attached.


Processed: forwarded

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 310439 + upstream patch
Bug#310439: gperf: FTBFS with gcc-4.0: 'PositionIterator' does not name a type
Tags were: patch
Tags added: upstream, patch

 forwarded 310439 
 https://sourceforge.net/tracker/index.php?func=detailaid=1239085group_id=10123atid=310123
Bug#310439: gperf: FTBFS with gcc-4.0: 'PositionIterator' does not name a type
Noted your statement that Bug has been forwarded to 
https://sourceforge.net/tracker/index.php?func=detailaid=1239085group_id=10123atid=310123.
(By the way, this Bug is currently marked as done.)

 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#318481: CAN-2005-2180 gen-index file overwrite vulnerability

2005-07-15 Thread Joey Hess
Package: gnats
Severity: grave

According to http://www.cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2005-2180 :

  gen-index in GNATS 4.0, 4.1.0, and possibly earlier versions, when installed
  setuid, does not properly check files passed to the -o argument and opens the
  file with write access, which allows local users to overwrite arbitrary files.

This has been assigned CAN-2005-2180, and gen-index seems to default to setuid
root in Debian.

-- 
see shy jo


signature.asc
Description: Digital signature


Bug#318218: Thoughts :-)

2005-07-15 Thread David Nusinow
On Fri, Jul 15, 2005 at 02:13:35AM -0400, Nathanael Nerode wrote:
 This can probably be fixed by changing the following stanza from
 xc/programs/Xserver/hw/xfree86/common/compiler.h:
 
 # else /* !__alpha__  !__powerpc__  !__sparc__ */
 
 #  define MMIO_IN8(base, offset) \
 *(volatile CARD8 *)(((CARD8*)(base)) + (offset))
 #  define MMIO_IN16(base, offset) \
 *(volatile CARD16 *)(void *)(((CARD8*)(base)) + (offset))
 #  define MMIO_IN32(base, offset) \
 *(volatile CARD32 *)(void *)(((CARD8*)(base)) + (offset))
 #  define MMIO_OUT8(base, offset, val) \
 *(volatile CARD8 *)(((CARD8*)(base)) + (offset)) = (val)
 #  define MMIO_OUT16(base, offset, val) \
 *(volatile CARD16 *)(void *)(((CARD8*)(base)) + (offset)) = (val)
 #  define MMIO_OUT32(base, offset, val) \
 *(volatile CARD32 *)(void *)(((CARD8*)(base)) + (offset)) = (val)
 
 OK.  The problem with this is that the cast to volatile CARD8* (et al) 
 doesn't 
 create a volatile object from the point of view of GCC4.  (GCC4 may be wrong 
 here.)  However, code like the following, if I'm not mistaken, *does* create 
 a volatile object, and GCC4 notices:
 
 static inline unsigned char
 xorgReadMmio8(volatile void * base, const unsigned long offset)
 {
   volatile CARD8 * tmp;
   tmp = (CARD8*)base + offset;
   return *tmp;
 }
 #define MMIO_IN8(base, offset) xorgReadMmio8(base, offset)
 
 (Based on a little testing of simplified code, GCC is smart enough to 
 optimize 
 away nearly everything in this, leaving nicely optimized assembly which still
 does the memory read, even when the resulting data is never accessed.)
 
 So a consistent replacement along these lines should do the trick.
 Shall I whip up a patch?

To be honest, I'd rather not mess with this file unless we have to. The
simple fix in Redhat's bugzilla looks a lot less invasive, and it seems to
fix all the reported problems so far, so I'd rather go with that unless
upstream says otherwise.

I'm making a patch for us right now.

 - David Nusinow


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



Processed: Re: Bug#318481: CAN-2005-2180 gen-index file overwrite vulnerability

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 318481 woody
Bug#318481: CAN-2005-2180 gen-index file overwrite vulnerability
There were no tags set.
Tags added: woody

 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#318490: libopencdk8: shared lib dropped?

2005-07-15 Thread Vladmimir Stavrinov
Package: libopencdk8
Version: 0.5.5-10
Severity: grave
Justification: renders package unusable


When start browser, I've got surprise:

lynx: error while loading shared libraries: libopencdk.so.8: cannot open
shared object file: No such file or directory

After upgrade there are missing shared library in the package:

dpkg -L libopencdk8
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libopencdk8
/usr/share/doc/libopencdk8/README
/usr/share/doc/libopencdk8/TODO
/usr/share/doc/libopencdk8/AUTHORS
/usr/share/doc/libopencdk8/THANKS
/usr/share/doc/libopencdk8/copyright
/usr/share/doc/libopencdk8/changelog.gz
/usr/share/doc/libopencdk8/NEWS.gz
/usr/share/doc/libopencdk8/changelog.Debian.gz

Only solution:

apt-get  install libopencdk8=0.5.5-10


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages libopencdk8 depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcrypt11 1.2.1-2  LGPL Crypto library - runtime libr
ii  libgpg-error0   1.1-1library for common error values an
ii  zlib1g  1:1.2.2-8compression library - runtime

libopencdk8 recommends no packages.

-- no debconf information


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



Bug#318481: CAN-2005-2180 gen-index file overwrite vulnerability

2005-07-15 Thread Chad Walstrom
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

tags 318481 woody
quit

Not vulnerable in gnats/gnats-user = 4.0.  Vulnerable in
gnats/gnats-user  4.0.

drwxr-xr-x   53 root  root   12288 Jul 14 09:32 /usr/lib
drwxr-xr-x2 root  root4096 Mar  7 20:23 /usr/lib/gnats
- -rwxr-xr-x1 root  root3260 Mar  7 20:20 /usr/lib/gnats/at-pr
- -rwxr-xr-x1 root  root5317 Mar  7 20:20 /usr/lib/gnats/check-db
- -rwxr-xr-x1 root  root2865 Mar  7 20:20 /usr/lib/gnats/delete-pr
- -rwxr-xr-x1 root  root  142512 Mar  7 20:21 /usr/lib/gnats/gen-index
- -rwxr-xr-x1 root  root  142544 Mar  7 20:21 /usr/lib/gnats/gnats-pwconv
- -rwxr-xr-x1 root  root  167928 Mar  7 20:21 /usr/lib/gnats/gnatsd
- -rwxr-xr-x1 root  root3105 Mar  7 20:20 /usr/lib/gnats/mail-query
- -rwxr-xr-x1 root  root1739 Mar  7 20:20 /usr/lib/gnats/mkcat
- -rwxr-xr-x1 root  root2766 Mar  7 20:20 /usr/lib/gnats/mkdb
- -rwxr-xr-x1 root  root  143336 Mar  7 20:21 /usr/lib/gnats/queue-pr
- -rwxr-xr-x1 root  root1898 Mar  7 20:20 /usr/lib/gnats/rmcat

- -- 
Chad Walstrom [EMAIL PROTECTED]   http://www.wookimus.net/
   assert(expired(knowledge)); /* core dump */
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.1 (GNU/Linux)

iD8DBQFC2A9PDMcLGCBsWv0RArctAJ9XzppHiOOZjOzFu+ImaUyEvkHHYACeMt7D
7iVpqci+6hzQrvJnXYQ0Ijc=
=cGqF
-END PGP SIGNATURE-


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



Bug#317873: libaspell15c2: Broken dependency in unstable

2005-07-15 Thread Jack Malmostoso
Package: libaspell15c2
Followup-For: Bug #317873


I'd just like to confirm that the last distupgrade (15/7/2005) tends to fail 
because of
this package. It is however enough to exclude gaim/gaim-data and
gedit/gedit-common from upgrade to go straight without problems.
I also tried to pull Gaim from experimental, but the dependency is broken
also there.

(and I am still lmao on Go run gentoo or something and leave me alone.)

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (1, 'experimental')
Architecture: powerpc (ppc)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12.2-vasquez
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)


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



Bug#309739: marked as done (libtiff4: vulnerable to CAN-2005-1544)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 16:09:00 -0400
with message-id [EMAIL PROTECTED]
and subject line fixed in oldstable-security
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; 19 May 2005 08:17:40 +
From [EMAIL PROTECTED] Thu May 19 01:17:40 2005
Return-path: [EMAIL PROTECTED]
Received: from mail01.pironet-ndh.com (mail02.pironet-ndh.com) [194.64.31.10] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1DYgDs-000500-00; Thu, 19 May 2005 01:17:40 -0700
Received: from mail.fbn-dd.de (mail.fbn-dd.de [195.227.105.178])
by mail02.pironet-ndh.com (Postfix) with ESMTP id 752D834258
for [EMAIL PROTECTED]; Thu, 19 May 2005 10:17:07 +0200 (CEST)
Received: from sonne.intranet.fbn-dd.de 
(192-168-0-1.transfer-000.intranet.fbn-dd.de [192.168.0.1])
by mail.fbn-dd.de (Postfix) with ESMTP id 243A81F950
for [EMAIL PROTECTED]; Thu, 19 May 2005 10:17:07 +0200 (CEST)
Received: from localhost (localhost [127.0.0.1])
by sonne.intranet.fbn-dd.de (Postfix) with ESMTP id 11E521E6B9
for [EMAIL PROTECTED]; Thu, 19 May 2005 10:17:07 +0200 (CEST)
Received: from sonne.intranet.fbn-dd.de (localhost [127.0.0.1])
by localhost (AvMailGate-2.0.1.16) id 14901-488D7C00;
Thu, 19 May 2005 10:17:06 +0200
Received: from localhost.localdomain (10-28-130-200.intranet-28-130.fbn-dd.de 
[10.28.130.200])
by sonne.intranet.fbn-dd.de (Postfix) with ESMTP id E42E51E6B9
for [EMAIL PROTECTED]; Thu, 19 May 2005 10:17:06 +0200 (CEST)
Received: by localhost.localdomain (Postfix, from userid 1000)
id 8E90642F; Thu, 19 May 2005 10:17:07 +0200 (CEST)
Date: Thu, 19 May 2005 10:17:07 +0200
From: Martin Pitt [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: libtiff4: vulnerable to CAN-2005-1544
Message-ID: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=qDbXVdCdHGoSgWSk
Content-Disposition: inline
User-Agent: Mutt/1.5.9i
X-AntiVirus: checked by AntiVir MailGate (version: 2.0.1.16; AVE: 6.30.0.12; 
VDF: 6.30.0.184; host: sonne)
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: 


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

Package: libtiff4
Version: 3.7.2-2
Severity: critical
Tags: security

Hi!

Libtiff is vulnerable to another exploitable segfault, see

  http://bugzilla.remotesensing.org/show_bug.cgi?id=3D843

for details.

However, please don't take the patch attached to that bug report, it's
incomplete. Upstream CVS has the complete patch, you can also grab it
=66rom

  http://bugs.gentoo.org/attachment.cgi?id=3D58276

For Sid you should probably just package the new upstream version, but
for Sarge the patch is fine (I already ported it to 3.6.1 for Ubuntu's
releases and tested it).

Thanks,

Martin
--=20
Martin Pitt  http://www.piware.de
Ubuntu Developer   http://www.ubuntulinux.org
Debian Developerhttp://www.debian.org

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

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

iD8DBQFCjEuDDecnbV4Fd/IRApvUAKDzo3ddG99ogHlVDvfMluSmviXEFgCffvko
iK3dMiMNuQ7Vy5nzAyjV1Lo=
=qyC1
-END PGP SIGNATURE-

--qDbXVdCdHGoSgWSk--

---
Received: (at 309739-done) by bugs.debian.org; 15 Jul 2005 20:09:03 +
From [EMAIL PROTECTED] Fri Jul 15 13:09:03 2005
Return-path: [EMAIL PROTECTED]
Received: from through.apexcovantage.com [65.166.131.3] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtWUZ-00052P-00; Fri, 15 Jul 2005 13:09:03 -0700
Received: from [192.168.0.1] (helo=apex.acv.apexcovantage.com)
by through.apexcovantage.com with esmtp (Exim 4.50)
id 1DtWUW-0004dv-C3
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 16:09:00 -0400
Received: from soup.acv.apexcovantage.com ([192.168.0.5] ident=Debian-exim)
by apex.acv.apexcovantage.com with esmtp (Exim 4.50)
id 1DtWUW-0003Ex-9R
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 16:09:00 -0400

Bug#318491: xbase-clients: doesn't install

2005-07-15 Thread Jochen Topf
Package: xbase-clients
Version: 4.3.0.dfsg.1-14
Severity: grave
Justification: renders package unusable


After the switch to the new x.org sources, xbase-clients wasn't
installed on this system for some reason. If I want to install it
manually I get the following message:

--
# apt-get install xbase-clients
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  xbase-clients: Depends: libglu1-xorg but it is not going to be installed or
  libglu1c2
E: Broken packages
--

Without xclients there is no startx, so I can't get X up.

-- 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.4.21
Locale: LANG=en_US, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xbase-clients depends on:
ii  cpp   4:4.0.0-2  The GNU C preprocessor (cpp)
ii  libc6 2.3.2.ds1-22   GNU C Library: Shared libraries an
ii  libdps1   6.8.2.dfsg.1-2 Display PostScript (DPS) client li
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
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-2  GCC support library
ii  libice6   6.8.2.dfsg.1-2 Inter-Client Exchange library
ii  libncurses5   5.4-8  Shared libraries for terminal hand
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libsm66.8.2.dfsg.1-2 X Window System Session Management
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libxaw7   6.8.2.dfsg.1-2 X Athena widget set library
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.8.2.dfsg.1-2 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxi66.8.2.dfsg.1-2 X Window System Input extension li
ii  libxmu6   6.8.2.dfsg.1-2 X Window System miscellaneous util
ii  libxmuu1  6.8.2.dfsg.1-2 lightweight X Window System miscel
ii  libxpm4   6.8.2.dfsg.1-2 X pixmap library
ii  libxrandr26.8.2.dfsg.1-2 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  libxt66.8.2.dfsg.1-2 X Toolkit Intrinsics
ii  libxtrap6 6.8.2.dfsg.1-2 X Window System protocol-trapping 
ii  libxtst6  6.8.2.dfsg.1-2 X Window System event recording an
ii  libxv16.8.2.dfsg.1-2 X Window System video extension li
ii  x11-common [xfree86-commo 6.8.2.dfsg.1-2 X Window System (X.Org) infrastruc
ii  xfree86-common6.8.2.dfsg.1-2 X Window System infrastructure tra
ii  xlibmesa3-gl [libgl1] 4.2.1-16   Mesa 3D graphics library [XFree86]
ii  xlibmesa3-glu [libglu1]   4.2.1-16   Mesa OpenGL utility library [XFree
ii  xlibs 6.8.2.dfsg.1-2 X Window System client libraries m
ii  xlibs-data6.8.2.dfsg.1-2 X Window System client data
ii  zlib1g1:1.2.2-8  compression library - runtime

xbase-clients recommends no packages.



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



Processed: Fixed in NMU of tex-guy 1.2.4-4.1

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 251181 + fixed
Bug#251181: FTBFS - Please rebuild tex-guy with libt1-dev instead t1lib-dev
Tags were: sid 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]



Processed: Bug#318481: [PATCH] suid removal

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tags 318481 patch
Bug#318481: CAN-2005-2180 gen-index file overwrite vulnerability
Tags were: woody
Tags added: patch

 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#318490: marked as done (libopencdk8: shared lib dropped?)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 13:39:05 -0700
with message-id [EMAIL PROTECTED]
and subject line Bug#318490: libopencdk8: shared lib dropped?
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 Jul 2005 19:28:10 +
From [EMAIL PROTECTED] Fri Jul 15 12:28:10 2005
Return-path: [EMAIL PROTECTED]
Received: from ppp83-237-115-214.pppoe.mtu-net.ru (terra.) [83.237.115.214] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtVr0-0006bL-00; Fri, 15 Jul 2005 12:28:10 -0700
Received: from vs by terra. with local (Exim 4.52)
id 1DtVqS-0004AY-QJ; Fri, 15 Jul 2005 23:27:36 +0400
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Vladmimir Stavrinov [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: libopencdk8: shared lib dropped?
X-Mailer: reportbug 3.15
Date: Fri, 15 Jul 2005 23:27:36 +0400
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: libopencdk8
Version: 0.5.5-10
Severity: grave
Justification: renders package unusable


When start browser, I've got surprise:

lynx: error while loading shared libraries: libopencdk.so.8: cannot open
shared object file: No such file or directory

After upgrade there are missing shared library in the package:

dpkg -L libopencdk8
/.
/usr
/usr/share
/usr/share/doc
/usr/share/doc/libopencdk8
/usr/share/doc/libopencdk8/README
/usr/share/doc/libopencdk8/TODO
/usr/share/doc/libopencdk8/AUTHORS
/usr/share/doc/libopencdk8/THANKS
/usr/share/doc/libopencdk8/copyright
/usr/share/doc/libopencdk8/changelog.gz
/usr/share/doc/libopencdk8/NEWS.gz
/usr/share/doc/libopencdk8/changelog.Debian.gz

Only solution:

apt-get  install libopencdk8=0.5.5-10


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)

Versions of packages libopencdk8 depends on:
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcrypt11 1.2.1-2  LGPL Crypto library - runtime libr
ii  libgpg-error0   1.1-1library for common error values an
ii  zlib1g  1:1.2.2-8compression library - runtime

libopencdk8 recommends no packages.

-- no debconf information

---
Received: (at 318490-done) by bugs.debian.org; 15 Jul 2005 20:39:06 +
From [EMAIL PROTECTED] Fri Jul 15 13:39:06 2005
Return-path: [EMAIL PROTECTED]
Received: from dsl093-039-086.pdx1.dsl.speakeasy.net (mauritius.dodds.net) 
[66.93.39.86] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtWxe-0002JM-00; Fri, 15 Jul 2005 13:39:06 -0700
Received: by mauritius.dodds.net (Postfix, from userid 1000)
id 1306DA30B1; Fri, 15 Jul 2005 13:39:05 -0700 (PDT)
Date: Fri, 15 Jul 2005 13:39:05 -0700
From: Steve Langasek [EMAIL PROTECTED]
To: Vladmimir Stavrinov [EMAIL PROTECTED], [EMAIL PROTECTED]
Subject: Re: Bug#318490: libopencdk8: shared lib dropped?
Message-ID: [EMAIL PROTECTED]
References: [EMAIL PROTECTED]
Mime-Version: 1.0
Content-Type: multipart/signed; micalg=pgp-sha1;
protocol=application/pgp-signature; boundary=3V7upXqbjpZ4EhLz
Content-Disposition: inline
In-Reply-To: [EMAIL PROTECTED]
User-Agent: Mutt/1.5.9i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-6.0 required=4.0 tests=BAYES_00,HAS_BUG_NUMBER 
autolearn=no version=2.60-bugs.debian.org_2005_01_02


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

On Fri, Jul 15, 2005 at 11:27:36PM +0400, Vladmimir Stavrinov wrote:
 Package: libopencdk8
 Version: 0.5.5-10
 Severity: grave
 Justification: renders package unusable

 When start browser, I've got surprise:

 lynx: error while loading shared libraries: libopencdk.so.8: cannot open
 shared object file: No 

Bug#295575: marked as done (evolution: woody2 disables SSL)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 18:04:01 -0300
with message-id [EMAIL PROTECTED]
and subject line Closing all woody Evolution bugs.
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 Feb 2005 19:50:56 +
From [EMAIL PROTECTED] Wed Feb 16 11:50:55 2005
Return-path: [EMAIL PROTECTED]
Received: from mosor.metacarta.com (mosor.internal.metacarta.com) 
[66.92.95.180] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1D1VCJ-0001mI-00; Wed, 16 Feb 2005 11:50:55 -0800
Received: from krbaker by mosor.internal.metacarta.com with local (Exim 3.35 #1 
(Debian))
id 1D1VCI-0001MX-00; Wed, 16 Feb 2005 14:50:54 -0500
From: Keith Baker [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: evolution: woody2 disables SSL
X-Mailer: reportbug 1.50
Date: Wed, 16 Feb 2005 14:50:54 -0500
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-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: evolution
Version: 1.0.5-1woody2
Severity: normal



-- System Information
Debian Release: 3.0
Architecture: i386
Kernel: Linux mosor.internal.metacarta.com 2.4.28-krb #1 SMP Tue Dec 7 11:11:44 
EST 2004 i686
Locale: LANG=C, LC_CTYPE=

Versions of packages evolution depends on:
ii  bonobo  1.0.20-1 The GNOME Bonobo System.
ii  bonobo-conf 0.14-1   The Bonobo Configuration System
ii  e2fsprogs   1.27-2   The EXT2 file system utilities and
ii  e2fsprogs [libc 1.27-2   The EXT2 file system utilities and
ii  gdk-imlib1  1.9.14-2woody2   Gdk-Imlib is an imaging library fo
ii  gtkhtml 1.0.2-1  HTML rendering/editing library - b
ii  libart2 1.4.1.4-3The Gnome canvas widget - runtime 
ii  libaudiofile0   0.2.3-4  The Audiofile Library
ii  libbonobo-conf0 0.14-1   The Bonobo Configuration System --
ii  libbonobo2  1.0.20-1 The GNOME Bonobo library.
ii  libc6   2.2.5-11.8   GNU C Library: Shared libraries an
ii  libcamel0   1.0.5-1woody2A generic Messaging Library
pn  libcomerr2   Not found.
ii  libdb3  3.2.9-16 Berkeley v3 Database Libraries [ru
ii  libesd0 0.2.23-3 Enlightened Sound Daemon - Shared 
ii  libfreetype62.0.9-1  FreeType 2 font engine, shared lib
ii  libgal190.19.2-2 G App Libs (run time library)
ii  libgconf11  1.0.9-1  GNOME configuration database syste
ii  libgdk-pixbuf-g 0.17.0-2woody2   The GNOME Canvas pixbuf library
ii  libgdk-pixbuf2  0.17.0-2woody2   The GdkPixBuf library.
ii  libglade-gnome0 1:0.17-2.2   Library to load .glade files at ru
ii  libglade0   1:0.17-2.2   Library to load .glade files at ru
ii  libglib1.2  1.2.10-4 The GLib library of C routines
ii  libgnome-pilot1 0.1.64-1 Support librares for gnome-pilot
ii  libgnome-vfs0   1.0.5-1  The GNOME virtual file-system libr
ii  libgnome32  1.4.1.4-3The Gnome libraries
ii  libgnomeprint15 0.35-4   The GNOME Print architecture - run
ii  libgnomesupport 1.4.1.4-3The Gnome libraries (Support libra
ii  libgnomeui321.4.1.4-3The Gnome libraries (User Interfac
ii  libgtk1.2   1.2.10-11The GIMP Toolkit set of widgets fo
ii  libgtkhtml201.0.2-1  HTML rendering/editing library - r
ii  libjpeg62   6b-5 The Independent JPEG Group's JPEG 
ii  libkrb531.2.4-5woody7MIT Kerberos runtime libraries
ii  libldap22.0.20030202-1   OpenLDAP libraries.
ii  liboaf0 0.6.10-2 The GNOME Object Activation Framew
ii  liborbit0   0.5.16-1 Libraries for ORBit - a CORBA ORB
ii  libpisock4  0.9.5.0-8Libraries for communicating with a
ii  libpng2 1.0.12-3.woody.9 PNG library - runtime
ii  libpopt01.6.2-7  lib for parsing cmdline parameters
ii  libsasl7

Bug#295548: marked as done (Security update version of Evolution on 10/02/05 removed SSL support)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 18:04:01 -0300
with message-id [EMAIL PROTECTED]
and subject line Closing all woody Evolution bugs.
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 Feb 2005 16:20:13 +
From [EMAIL PROTECTED] Wed Feb 16 08:20:13 2005
Return-path: [EMAIL PROTECTED]
Received: from lon-gs2mx.mistral.net [217.154.131.8] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1D1RuO-0007wO-00; Wed, 16 Feb 2005 08:20:12 -0800
Received: from Debug (webhost.mistral.co.uk [217.154.127.10])
by lon-gs2mx.mistral.net (Postfix) with SMTP id 41432343D6
for [EMAIL PROTECTED]; Wed, 16 Feb 2005 16:19:25 + (GMT)
To: [EMAIL PROTECTED]
From: [EMAIL PROTECTED]
Subject: Security update version of Evolution on 10/02/05 removed SSL support
Date: Wed, 16 Feb 2005 16:19:25 GMT
X-Posting-IP: 138.38.32.87 via 138.38.108.253
X-Mailer: Endymion MailMan Standard Edition v3.2.19
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-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: evolution
Version: 1.0.5-1woody2

Following an upgrade from 1.0.5-1 I am unable to connect to any IMAPS
servers.  IMAP without SSL works but all attempts to connect to an IMAP
server using SSL simply hang.  Further the mail settings window says (SSL
is not supported in this build of evolution).

I would (naively) like to believe this could be fixed by rebuilding the
package.

Thanks,
 - Martin


-
This message was sent using Mistral Webmail.
http://www.mistral.net



---
Received: (at 295548-done) by bugs.debian.org; 15 Jul 2005 21:08:32 +
From [EMAIL PROTECTED] Fri Jul 15 14:08:32 2005
Return-path: [EMAIL PROTECTED]
Received: from maildcarg4.dc-host.net.ar [200.55.6.135] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtXQ7-0007zr-00; Fri, 15 Jul 2005 14:08:32 -0700
Received: from freak.amadeus ([200.115.206.87]) by maildcarg4.dc-host.net.ar
 (Sun Java System Messaging Server 6.1 HotFix 0.05 (built Oct 21 2004))
 with ESMTP id [EMAIL PROTECTED]; Fri,
 15 Jul 2005 18:03:57 -0300 (ART)
Received: from ulises.home (ulises.amadeus [192.168.21.15])
by freak.amadeus (Postfix) with ESMTP id 0D8D681CA; Fri,
 15 Jul 2005 18:05:19 -0300 (ART)
Received: by ulises.home (Postfix, from userid 1001)id 58517461D90; Fri,
 15 Jul 2005 18:04:01 -0300 (ART)
Date: Fri, 15 Jul 2005 18:04:01 -0300
From: Margarita Manterola [EMAIL PROTECTED]
Subject: Closing all woody Evolution bugs.
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED],
 [EMAIL PROTECTED], [EMAIL PROTECTED]
Message-id: [EMAIL PROTECTED]
MIME-version: 1.0
Content-type: text/plain; charset=us-ascii
Content-transfer-encoding: 7BIT
Content-disposition: inline
User-Agent: Mutt/1.5.9i
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2005_01_02 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Level: 
X-Spam-Status: No, hits=-3.0 required=4.0 tests=BAYES_00 autolearn=no 
version=2.60-bugs.debian.org_2005_01_02
X-CrossAssassin-Score: 11

On 06/06/05 Sarge was released as stable, and woody is now oldstable.  It
does not make sense to still keep the bugs that are in woody, so I'm
closing all of them.


-- 
 Besitos,   {o_
 Marga. (')_


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



Bug#280883: marked as done (is woody evolution still vulnerable to SSL Man-In-The-Middle Vulnerability?)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 18:04:01 -0300
with message-id [EMAIL PROTECTED]
and subject line Closing all woody Evolution bugs.
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 Nov 2004 10:33:03 +
From [EMAIL PROTECTED] Fri Nov 12 02:33:03 2004
Return-path: [EMAIL PROTECTED]
Received: from krepost.taket.org (localhost) [82.227.166.100] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CSYjm-Vv-00; Fri, 12 Nov 2004 02:33:03 -0800
Received: from djoume by localhost with local (Exim 4.34)
id 1CSYjb-0003PR-9h; Fri, 12 Nov 2004 11:32:51 +0100
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Djoume SALVETTI [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: is woody evolution still vulnerable to SSL Man-In-The-Middle 
Vulnerability?
X-Mailer: reportbug 3.2
Date: Fri, 12 Nov 2004 11:32:51 +0100
X-Debbugs-Cc: [EMAIL PROTECTED]
Message-Id: [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=-11.0 required=4.0 tests=BAYES_00,HAS_PACKAGE,
X_DEBBUGS_CC autolearn=ham version=2.60-bugs.debian.org_2004_03_25
X-Spam-Level: 

Package: evolution
Version: 2.0.2-3
Severity: grave
Tags: security
Justification: user security hole


Good day,

I'm reviewing the list of 2002 CVEs to check if there is still
some known vulnerables packages in testing.

In CVE-2002-1471 it is written :

| The camel component for Ximian Evolution 1.0.x and earlier does not
| verify certificates when it establishes a new SSL connection after
| previously verifying a certificate, which could allow remote attackers
| to monitor or modify sessions via a man-in-the-middle attack.

According to http://www.securityfocus.com/bid/5875/info/
woody version of evolution is still vulnerable.

Regards.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: powerpc (ppc)
Kernel: Linux 2.6.9-rfb-swsusp
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages evolution depends on:
ii  evolution-data-server 1.0.2-3evolution database backend server
ii  gconf22.6.4-2GNOME configuration database syste
ii  gnome-icon-theme  1.2.3-1.1  GNOME Desktop icon theme
ii  gtkhtml3.23.2.3-1HTML rendering/editing library - b
ii  libart-2.0-2  2.3.16-6   Library of functions for 2D graphi
ii  libatk1.0-0   1.6.1-5The ATK accessibility toolkit
ii  libaudiofile0 0.2.6-4Open-source version of SGI's audio
ii  libbonobo2-0  2.6.2-7Bonobo CORBA interfaces library
ii  libbonoboui2-02.6.1-1The Bonobo UI library
ii  libc6 2.3.2.ds1-18   GNU C Library: Shared libraries an
ii  libcompfaceg1 1989.11.11-24  Compress/decompress images for mai
ii  libebook8 1.0.2-3Client library for evolution addre
ii  libecal6  1.0.2-3Client library for evolution calen
ii  libedataserver3   1.0.2-3Utily library for evolution data s
ii  libegroupwise61.0.2-3Client library for accessing group
ii  libesd0   0.2.35-2   Enlightened Sound Daemon - Shared 
ii  libfontconfig12.2.3-3generic font configuration library
ii  libfreetype6  2.1.7-2.2  FreeType 2 font engine, shared lib
ii  libgail-common1.6.6b-1   GNOME Accessibility Implementation
ii  libgail17 1.6.6b-1   GNOME Accessibility Implementation
ii  libgal2.2-1   2.2.3-1G App Libs (run time library)
ii  libgal2.2-common  2.2.3-1G App Libs (common files)
ii  libgconf2-4   2.6.4-2GNOME configuration database syste
ii  libgcrypt11   1.2.0-10   LGPL Crypto library - runtime libr
ii  libglade2-0   1:2.4.0-1  Library to load .glade files at ru
ii  libglib2.0-0  2.4.7-1The GLib library of C routines
ii  libgnome-keyring0 0.2.1-3GNOME keyring services library
ii  libgnome-pilot2   2.0.10-6.1 Support libraries for gnome-pilot
ii  libgnome2-0   2.6.1.2-2  The 

Bug#237257: marked as done (evolution: does not start-up)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 18:04:01 -0300
with message-id [EMAIL PROTECTED]
and subject line Closing all woody Evolution bugs.
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 Mar 2004 17:03:33 +
From [EMAIL PROTECTED] Wed Mar 10 09:03:33 2004
Return-path: [EMAIL PROTECTED]
Received: from pd955270f.dip.t-dialin.net (andromeda) [217.85.39.15] (foobar)
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1B177F-0002Ue-00; Wed, 10 Mar 2004 09:03:33 -0800
Received: from jens by andromeda with local (Exim 3.35 #1 (Debian))
id 1B1787-0003j5-00
for [EMAIL PROTECTED]; Wed, 10 Mar 2004 18:04:27 +0100
From: Jens Müller [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: evolution: does not start-up
X-Debbugs-CC: Jens Müller [EMAIL PROTECTED]
Message-Id: [EMAIL PROTECTED]
Date: Wed, 10 Mar 2004 18:04:27 +0100
X-BadReturnPath: [EMAIL PROTECTED] rewritten as [EMAIL PROTECTED]
  using From header
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_03_08 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-8.0 required=4.0 tests=HAS_PACKAGE,X_DEBBUGS_CC 
autolearn=no version=2.60-bugs.debian.org_2004_03_08
X-Spam-Level: 

Package: evolution
Version: 1.0.5-1
Severity: serious

evolution shows a message box, prints a message to the console and
exits, that's all.

| $ evolution
| 
| evolution-shell-WARNING **: Cannot access Bonobo/ConfigDatabase on wombat: 
(IDL:OAF/GeneralError:1.0)

-- System Information:
Debian Release: 3.0
Architecture: i386
Kernel: Linux andromeda 2.6.2 #8 Sat Mar 6 23:38:22 CET 2004 i686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

Versions of packages evolution depends on:
ii  bonobo  1.0.20-1 The GNOME Bonobo System.
ii  bonobo-conf 0.14-1   The Bonobo Configuration System
ii  e2fsprogs [libcomerr2]  1.27-2   The EXT2 file system utilities and
ii  gdk-imlib1  1.9.14-2 Gdk-Imlib is an imaging library fo
ii  gtkhtml 1.0.2-1  HTML rendering/editing library - b
ii  libart2 1.4.1.4-3The Gnome canvas widget - runtime 
ii  libaudiofile0   0.2.3-4  The Audiofile Library
ii  libbonobo-conf0 0.14-1   The Bonobo Configuration System --
ii  libbonobo2  1.0.20-1 The GNOME Bonobo library.
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  libcamel0   1.0.5-1  A generic Messaging Library
ii  libdb3  3.2.9-19 Berkeley v3 Database Libraries [ru
ii  libesd0 0.2.29-1 Enlightened Sound Daemon - Shared 
ii  libfreetype62.1.7-2  FreeType 2 font engine, shared lib
ii  libgal190.19.2-2 G App Libs (run time library)
ii  libgconf11  1.0.9-5.1GNOME configuration database syste
ii  libgdk-pixbuf-gnome20.17.0-2 The GNOME Canvas pixbuf library
ii  libgdk-pixbuf2  0.17.0-2 The GdkPixBuf library.
ii  libglade-gnome0 1:0.17-2.2   Library to load .glade files at ru
ii  libglade0   1:0.17-2.2   Library to load .glade files at ru
ii  libglib1.2  1.2.10-4 The GLib library of C routines
ii  libgnome-pilot1 0.1.64-1 Support librares for gnome-pilot
ii  libgnome-vfs0   1.0.5-1  The GNOME virtual file-system libr
ii  libgnome32  1.4.1.4-3The Gnome libraries
ii  libgnomeprint15 0.35-4   The GNOME Print architecture - run
ii  libgnomesupport01.4.1.4-3The Gnome libraries (Support libra
ii  libgnomeui321.4.1.4-3The Gnome libraries (User Interfac
ii  libgtk1.2   1.2.10-11The GIMP Toolkit set of widgets fo
ii  libgtkhtml201.0.2-1  HTML rendering/editing library - r
ii  libjpeg62   6b-5 The Independent JPEG Group's JPEG 
ii  libkrb531.2.4-5woody4MIT Kerberos runtime libraries
ii  libldap22.1.26-1 OpenLDAP libraries
ii  liboaf0 0.6.10-2 The GNOME Object Activation Framew
ii  liborbit0   0.5.17-9 Libraries for ORBit - a CORBA ORB
ii  libpisock4  0.9.5.0-8Libraries for communicating with a
ii  

Bug#318481: [PATCH] suid removal

2005-07-15 Thread Chad Walstrom
tags 318481 patch
quit

This patch removes the suid lines from gnats/Makefile.in.  It is not
necessary for these binaries to be owned by $(GNATS_USER) or to be
suid.  Suggest the use of sudo as an alternative for local databases
or run a local loopback instance of gnatsd.

Index: gnats/Makefile.in
===
RCS file: /cvsroot/gnats/gnats/gnats/Makefile.in,v
retrieving revision 1.71
diff -u -b -B -r1.71 Makefile.in
--- gnats/Makefile.in   24 Feb 2005 21:21:22 -  1.71
+++ gnats/Makefile.in   15 Jul 2005 20:25:38 -
@@ -394,14 +394,6 @@
$(INSTALL_PROGRAM) file-pr $(DESTDIR)$(libexecdir)/gnats/file-pr
$(INSTALL_PROGRAM) pr-age $(DESTDIR)$(libexecdir)/gnats/pr-age
$(INSTALL_PROGRAM) pr-edit $(DESTDIR)$(libexecdir)/gnats/pr-edit
-   @if [ `whoami` = root -o `whoami` = $(GNATS_USER) ] ; then \
- echo chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/pr-edit ; \
- echo chmod 4555 $(DESTDIR)$(libexecdir)/gnats/pr-edit ; \
- chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/pr-edit ; \
- chmod 4555 $(DESTDIR)$(libexecdir)/gnats/pr-edit ; \
-else \
- echo *** Warning: Must make pr-edit suid $(DESTDIR)$(GNATS_USER) ; \
-   fi
 
 EXTRA_INSTALL =
 
@@ -450,20 +442,6 @@
$(INSTALL_PROGRAM) gen-index $(DESTDIR)$(libexecdir)/gnats/gen-index
$(INSTALL_SCRIPT) mail-query $(DESTDIR)$(libexecdir)/gnats/mail-query
$(INSTALL_PROGRAM) gnats-pwconv 
$(DESTDIR)$(libexecdir)/gnats/gnats-pwconv
-   @if [ `whoami` = root -o `whoami` = $(GNATS_USER) ] ; then \
- echo chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/queue-pr 
$(DESTDIR)$(libexecdir)/gnats/file-pr $(DESTDIR)$(libexecdir)/gnats/gen-index 
; \
- echo chmod 4555 $(DESTDIR)$(libexecdir)/gnats/queue-pr 
$(DESTDIR)$(libexecdir)/gnats/file-pr $(DESTDIR)$(libexecdir)/gnats/gen-index 
; \
- echo chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/gnatsd ; \
- echo chmod 555 $(DESTDIR)$(libexecdir)/gnats/gnatsd ; \
- chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/queue-pr ; \
- chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/gen-index ; \
- chmod 4555 $(DESTDIR)$(libexecdir)/gnats/queue-pr ; \
- chmod 4555 $(DESTDIR)$(libexecdir)/gnats/gen-index ; \
- chown $(GNATS_USER) $(DESTDIR)$(libexecdir)/gnats/gnatsd ; \
- chmod 555 $(DESTDIR)$(libexecdir)/gnats/gnatsd ; \
-   else \
- echo *** Warning: must make queue-pr and gen-index suid 
$(GNATS_USER). ; \
-   fi
 
 # regex.c is pretty badly broken, and I don't feel like fixing it.
 regex.o: $(srcdir)/regex.c


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



Bug#231955: marked as done (evolution: Does not empty internal mail spool after processing it)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 18:04:01 -0300
with message-id [EMAIL PROTECTED]
and subject line Closing all woody Evolution bugs.
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 Feb 2004 21:26:51 +
From [EMAIL PROTECTED] Mon Feb 09 13:26:51 2004
Return-path: [EMAIL PROTECTED]
Received: from grunt3.ihug.co.nz [203.109.254.43] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1AqIvb-0002Sg-00; Mon, 09 Feb 2004 13:26:51 -0800
Received: from 203-118-175-25.adsl.ihug.co.nz (stolberg) [203.118.175.25] 
by grunt3.ihug.co.nz with esmtp (Exim 3.35 #1 (Debian))
id 1AqIvX-000555-00; Tue, 10 Feb 2004 10:26:47 +1300
Received: from worik by stolberg with local (Exim 3.35 #1 (Debian))
id 1AqIor-0003z3-00; Tue, 10 Feb 2004 10:19:53 +1300
From: Worik [EMAIL PROTECTED]
Subject: evolution: Does not empty internal mail spool after processing it
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.10.1
Message-Id: [EMAIL PROTECTED]
Date: Tue, 10 Feb 2004 10:19:53 +1300
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_02_01 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.0 required=4.0 tests=HAS_PACKAGE autolearn=no 
version=2.60-bugs.debian.org_2004_02_01
X-Spam-Level: 

Package: evolution
Version: 1.0.5-1
Severity: grave

I have a been away for 6 days and have 2000 mail messages in my spool 
(/var/spool/mail/worik)

I loaded it into evolution (took  3 hours, ouch!) and the computer became 
unusable, totally unresponsive.  After a power cycle I reloaded the mail, still 
took  3 hours, but a) did not run out of disk space and b) I can read (2 
copies) of all the mail.

Now when ever I try to load new mail it still wants to load 2,000 messages.  
/home/worik/evolution/local/Inbox/movemail.mbox__var_mail_worik has not been 
emptyed.


-- System Information
Debian Release: 3.0
Kernel Version: Linux stolberg 2.4.20 #9 Mon Jul 21 19:12:03 NZST 2003 i686 
unknown

Versions of the packages evolution depends on:
ii  bonobo 1.0.20-1   The GNOME Bonobo System.
ii  bonobo-conf0.14-1 The Bonobo Configuration System
ii  e2fsprogs  1.27-2 The EXT2 file system utilities and libraries
ii  gdk-imlib1 1.9.14-2   Gdk-Imlib is an imaging library for use with
ii  gtkhtml1.0.2-1HTML rendering/editing library - bonobo comp
ii  libart21.4.1.4-3  The Gnome canvas widget - runtime files.
ii  libaudiofile0  0.2.3-4The Audiofile Library
ii  libbonobo-conf 0.14-1 The Bonobo Configuration System -- shared li
ii  libbonobo2 1.0.20-1   The GNOME Bonobo library.
ii  libc6  2.3.2-7GNU C Library: Shared libraries and Timezone
ii  libcamel0  1.0.5-1A generic Messaging Library
ii  libdb3 3.2.9-19   Berkeley v3 Database Libraries [runtime]
ii  libesd00.2.29-1   Enlightened Sound Daemon - Shared libraries
ii  libfreetype6   2.1.5-2FreeType 2 font engine, shared library files
ii  libgal19   0.19.2-2   G App Libs (run time library)
ii  libgconf11 1.0.9-1GNOME configuration database system librarie
ii  libgdk-pixbuf- 0.17.0-2   The GNOME Canvas pixbuf library
ii  libgdk-pixbuf2 0.17.0-2   The GdkPixBuf library.
ii  libglade-gnome 0.17-2.2   Library to load .glade files at runtime (Gno
ii  libglade0  0.17-2.2   Library to load .glade files at runtime.
ii  libglib1.2 1.2.10-4   The GLib library of C routines
ii  libgnome-pilot 0.1.64-1   Support librares for gnome-pilot
ii  libgnome-vfs0  1.0.5-1The GNOME virtual file-system libraries
ii  libgnome32 1.4.1.4-3  The Gnome libraries
ii  libgnomeprint1 0.35-4 The GNOME Print architecture - runtime libra
ii  libgnomesuppor 1.4.1.4-3  The Gnome libraries (Support libraries)
ii  libgnomeui32   1.4.1.4-3  The Gnome libraries (User Interface)
ii  libgtk1.2  1.2.10-11  The GIMP Toolkit set of widgets for X
ii  libgtkhtml20   1.0.2-1HTML rendering/editing library - runtime fil
ii  libjpeg62  6b-5   The Independent JPEG Group's JPEG runtime li
ii  libkrb53   1.2.4-5woody4  MIT Kerberos runtime libraries
ii  libldap2   2.0.23-6.3 OpenLDAP libraries.
ii  liboaf00.6.10-2   The GNOME Object Activation Framework.
ii  liborbit0  0.5.16-1   Libraries for ORBit - a CORBA ORB
ii  

Bug#234863: marked as done (evolution: The mail component eats memory till swap is gone then crashes)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 18:04:01 -0300
with message-id [EMAIL PROTECTED]
and subject line Closing all woody Evolution bugs.
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; 26 Feb 2004 08:15:32 +
From [EMAIL PROTECTED] Thu Feb 26 00:15:32 2004
Return-path: [EMAIL PROTECTED]
Received: from grunt7.ihug.co.nz [203.109.254.47] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1AwGg7-0004Yd-00; Thu, 26 Feb 2004 00:15:32 -0800
Received: from 203-118-175-248.adsl.ihug.co.nz (stolberg) [203.118.175.248] 
by grunt7.ihug.co.nz with esmtp (Exim 3.35 #1 (Debian))
id 1AwGg4-0007x0-00; Thu, 26 Feb 2004 21:15:28 +1300
Received: from worik by stolberg with local (Exim 3.35 #1 (Debian))
id 1AwGZz-0007Jz-00; Thu, 26 Feb 2004 21:09:11 +1300
From: Worik [EMAIL PROTECTED]
Subject: evolution: The mail component eats memory till swap is gone then 
crashes
To: [EMAIL PROTECTED]
X-Mailer: bug 3.3.10.1
Message-Id: [EMAIL PROTECTED]
Date: Thu, 26 Feb 2004 21:09:11 +1300
Delivered-To: [EMAIL PROTECTED]
X-Spam-Checker-Version: SpamAssassin 2.60-bugs.debian.org_2004_02_22 
(1.212-2003-09-23-exp) on spohr.debian.org
X-Spam-Status: No, hits=-5.0 required=4.0 tests=HAS_PACKAGE autolearn=no 
version=2.60-bugs.debian.org_2004_02_22
X-Spam-Level: 

Package: evolution
Version: 1.0.5-1
Severity: grave


-- System Information
I have a lot of mail

[EMAIL PROTECTED]:~/evolution$ du -s local/Inbox/ -h
1.1Glocal/Inbox

but this bug has slowly appeared over the last month or so

Makes evolution unusable.

Blast!!


Debian Release: 3.0
Kernel Version: Linux stolberg 2.4.20 #9 Mon Jul 21 19:12:03 NZST 2003 i686 
unknown

Versions of the packages evolution depends on:
ii  bonobo 1.0.20-1   The GNOME Bonobo System.
ii  bonobo-conf0.14-1 The Bonobo Configuration System
ii  e2fsprogs  1.27-2 The EXT2 file system utilities and libraries
ii  gdk-imlib1 1.9.14-2   Gdk-Imlib is an imaging library for use with
ii  gtkhtml1.0.2-1HTML rendering/editing library - bonobo comp
ii  libart21.4.1.4-3  The Gnome canvas widget - runtime files.
ii  libaudiofile0  0.2.3-4The Audiofile Library
ii  libbonobo-conf 0.14-1 The Bonobo Configuration System -- shared li
ii  libbonobo2 1.0.20-1   The GNOME Bonobo library.
ii  libc6  2.3.2-7GNU C Library: Shared libraries and Timezone
ii  libcamel0  1.0.5-1A generic Messaging Library
ii  libdb3 3.2.9-19   Berkeley v3 Database Libraries [runtime]
ii  libesd-alsa0   0.2.23-3   Enlightened Sound Daemon (ALSA) - Shared lib
ii  libfreetype6   2.1.5-2FreeType 2 font engine, shared library files
ii  libgal19   0.19.2-2   G App Libs (run time library)
ii  libgconf11 1.0.9-1GNOME configuration database system librarie
ii  libgdk-pixbuf- 0.17.0-2   The GNOME Canvas pixbuf library
ii  libgdk-pixbuf2 0.17.0-2   The GdkPixBuf library.
ii  libglade-gnome 0.17-2.2   Library to load .glade files at runtime (Gno
ii  libglade0  0.17-2.2   Library to load .glade files at runtime.
ii  libglib1.2 1.2.10-4   The GLib library of C routines
ii  libgnome-pilot 0.1.64-1   Support librares for gnome-pilot
ii  libgnome-vfs0  1.0.5-1The GNOME virtual file-system libraries
ii  libgnome32 1.4.1.4-3  The Gnome libraries
ii  libgnomeprint1 0.35-4 The GNOME Print architecture - runtime libra
ii  libgnomesuppor 1.4.1.4-3  The Gnome libraries (Support libraries)
ii  libgnomeui32   1.4.1.4-3  The Gnome libraries (User Interface)
ii  libgtk1.2  1.2.10-11  The GIMP Toolkit set of widgets for X
ii  libgtkhtml20   1.0.2-1HTML rendering/editing library - runtime fil
ii  libjpeg62  6b-5   The Independent JPEG Group's JPEG runtime li
ii  libkrb53   1.2.4-5woody4  MIT Kerberos runtime libraries
ii  libldap2   2.0.23-6.3 OpenLDAP libraries.
ii  liboaf00.6.10-2   The GNOME Object Activation Framework.
ii  liborbit0  0.5.16-1   Libraries for ORBit - a CORBA ORB
ii  libpisock4 0.9.5.0-8  Libraries for communicating with a Pilot PDA
ii  libpng21.0.12-3.woody PNG library - runtime
ii  libpopt0   1.6.2-7lib for parsing cmdline parameters
ii  libsasl7   1.5.27-3   Authentication abstraction library.
ii  libtiff3g  3.5.5-6Tag Image File 

Bug#318491: marked as done (xbase-clients: doesn't install)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 23:05:26 +0200
with message-id [EMAIL PROTECTED]
and subject line Bug#318491: xbase-clients: doesn't install
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 Jul 2005 19:48:17 +
From [EMAIL PROTECTED] Fri Jul 15 12:48:17 2005
Return-path: [EMAIL PROTECTED]
Received: from visby.remote.org (mail.remote.org) [193.197.184.25] 
by spohr.debian.org with esmtp (Exim 3.36 1 (Debian))
id 1DtWAS-0001lu-00; Fri, 15 Jul 2005 12:48:16 -0700
Received: from uucp by mail.remote.org with local-rmail (Exim 4.52)
id 1DtWAQ-0002Ez-7l
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 21:48:14 +0200
Received: from sqrt by atlantis.remote.org with local (Exim 3.36 #1)
id 1DtWA3-0002e9-00; Fri, 15 Jul 2005 21:47:51 +0200
Content-Type: text/plain; charset=us-ascii
MIME-Version: 1.0
Content-Transfer-Encoding: 7bit
From: Jochen Topf [EMAIL PROTECTED]
To: Debian Bug Tracking System [EMAIL PROTECTED]
Subject: xbase-clients: doesn't install
X-Mailer: reportbug 3.15
Date: Fri, 15 Jul 2005 21:47:50 +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: xbase-clients
Version: 4.3.0.dfsg.1-14
Severity: grave
Justification: renders package unusable


After the switch to the new x.org sources, xbase-clients wasn't
installed on this system for some reason. If I want to install it
manually I get the following message:

--
# apt-get install xbase-clients
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.

Since you only requested a single operation it is extremely likely that
the package is simply not installable and a bug report against
that package should be filed.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  xbase-clients: Depends: libglu1-xorg but it is not going to be installed or
  libglu1c2
E: Broken packages
--

Without xclients there is no startx, so I can't get X up.

-- 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.4.21
Locale: LANG=en_US, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages xbase-clients depends on:
ii  cpp   4:4.0.0-2  The GNU C preprocessor (cpp)
ii  libc6 2.3.2.ds1-22   GNU C Library: Shared libraries an
ii  libdps1   6.8.2.dfsg.1-2 Display PostScript (DPS) client li
ii  libexpat1 1.95.8-3   XML parsing C library - runtime li
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-2  GCC support library
ii  libice6   6.8.2.dfsg.1-2 Inter-Client Exchange library
ii  libncurses5   5.4-8  Shared libraries for terminal hand
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libsm66.8.2.dfsg.1-2 X Window System Session Management
ii  libstdc++51:3.3.6-7  The GNU Standard C++ Library v3
ii  libxaw7   6.8.2.dfsg.1-2 X Athena widget set library
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.8.2.dfsg.1-2 X Window System miscellaneous exte
ii  libxft2   2.1.7-1FreeType-based font drawing librar
ii  libxi66.8.2.dfsg.1-2 X Window System Input extension li
ii  libxmu6   6.8.2.dfsg.1-2 X Window System miscellaneous util
ii  libxmuu1  6.8.2.dfsg.1-2 lightweight X Window System miscel
ii  libxpm4   6.8.2.dfsg.1-2 X pixmap library
ii  libxrandr26.8.2.dfsg.1-2 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0-2  X Rendering Extension 

Bug#317873: aspell: unstable to testing?

2005-07-15 Thread Steven Rostedt
Package: aspell
Followup-For: Bug #317873


Hi, I see that aspell will probably be broken for some time. I first
started using debian with stable, then thought that it was not up on the
latest so much, so I switched to testing.  Collegues of mine were using
unstable with no problems so I switched to that.  I've been on unstable
for more than a year now and have been pretty pleased. Sure, every now
and then a package would break, but the next day it was fixed. 

But lately, unstable has been earning its name. I almost lost all of
gnome with an update. One of my collegues almost lost aptitude! 
My mouse has currently disappeared from X. X is running but when
I came back to my computer, and got out of the screen saver, my mouse
pointer is nowhere to be found.  This has happened three times already,
and once, the mouse came back after 10 minutes (I don't really use it
much ;-).  I'm not sure if the problem is with X or what, so I don't
know where to report it.

OK, so my question is, should I go back to testing. (Sorry to be
offtopic for aspell, but the subject came up here). I've only gone from
stable to testing to unstable. Never the reverse.  How safe is that?

Thanks,

-- Steve


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


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



Processed: Reopening security bugs

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 reopen 280883 295548
Bug#280883: is woody evolution still vulnerable to SSL Man-In-The-Middle 
Vulnerability?
Bug reopened, originator set to 295548.

 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#295548: Reopening security bugs

2005-07-15 Thread Margarita Manterola
reopen 280883 295548
thanks

Security bugs must be kept open, sorry for the noise.


-- 
 Bessos,(o_
Marga.  (\)_


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



Bug#318003: (forw) [EMAIL PROTECTED]: Bug#318003: electricsheep: segfaults on powerpc]

2005-07-15 Thread Paul Brossier
On Fri, Jul 15, 2005 at 02:58:17PM +0200, Alexis Sukrieh wrote:
 * Paul Brossier ([EMAIL PROTECTED]) disait :
  Alexis, i noticed another issue: a copy of the mpeg2 library is included
  in the source and compiled. spot, i see parts of the mpeg2 code were
  modified, but it would be much better if mpeg2dec_onroot could be linked
  against debian's libmpeg2-4.
 
 I tried to build a package depending on mpeg2dec and libmpeg2-4, but
 unfortunately, electrichseep's customized version of mpeg2dec has
 special switches (-w and -f) that don't exist in the official mepg2dec.

mmh, i was more thinking about shipping mpeg2dec_root linked against the
libmpeg2-4, not replaced by mpeg2dec. Of course, another approach would
be to contact mpeg2dec upstream and ask them these features :-) 

bye, piem


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



Bug#318506: Can't add auctions to bidwatcher anymore

2005-07-15 Thread Anthony DeRobertis
Package: bidwatcher
Version: 1.3.17-1
Severity: grave

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Just tried to use bidwatcher again (haven't used it since April) and now
it refuses to add ebay auctions. I tried both typing and copy/pasting
the item number, but in both cases it says:

[2005-07-15 17:41:47] Error: Invalid auction number. (5788323204)

The item number is right, at least according to
http://cgi.ebay.com/Syntax-USB-400-802-11b-adapter-USB_W0QQitemZ5788323204QQcategoryZ45002QQssPageNameZWDVWQQrdZ1QQcmdZViewItem

It seems ebay changes have completely broken bidwatcher :-(


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

Versions of packages bidwatcher depends on:
ii  libc6  2.3.2.ds1-22  GNU C Library: Shared libraries an
ii  libcurl3   7.14.0-2  Multi-protocol file transfer libra
ii  libgcc11:4.0.0-9 GCC support library
ii  libglib1.2 1.2.10-10 The GLib library of C routines
ii  libgtk1.2  1.2.10-17 The GIMP Toolkit set of widgets fo
ii  libidn11   0.5.13-1.0GNU libidn library, implementation
ii  libssl0.9.70.9.7e-3  SSL shared libraries
ii  libstdc++5 1:3.3.5-13The GNU Standard C++ Library v3
ii  libx11-6   4.3.0.dfsg.1-14   X Window System protocol client li
ii  libxext6   4.3.0.dfsg.1-14   X Window System miscellaneous exte
ii  libxi6 4.3.0.dfsg.1-14   X Window System Input extension li
ii  xlibs  4.3.0.dfsg.1-14   X Keyboard Extension (XKB) configu
ii  zlib1g 1:1.2.2-4.sarge.1 compression library - runtime

bidwatcher recommends no packages.

- -- no debconf information

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

iD8DBQFC2C8y+z+IwlXqWf4RAuADAJkBn1wlSzzz+LEXkw5sLf63hgUArgCeNEnq
yLMUk0+ZvaLqZ6dmsyIQO8c=
=mtYJ
-END PGP SIGNATURE-


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



Processed: Fixed in NMU of opensp 1.5.1.0-2.1

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 tag 260797 + fixed
Bug#260797: opensp: FTBFS with gcc-3.4: `wideCharMax' undeclared (first use 
this function)
Tags were: patch
Tags added: fixed

 tag 311967 + fixed
Bug#311967: opensp(GNU/k*BSD): FTBFS: out of date libtool scripts
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]



Bug#318509: monotone statically links to libsqlite3

2005-07-15 Thread Elrond
Package: monotone
Version: 0.20-1
Severity: serious

Hi,

monotone on i386 has sqlite3 statically linked into the
binary. And I can't find any hints in either the upstream
changelog nor debian's changelog for a good reason to do
this.

Normally, this is a NO-NO due to support/security issues.
(The security team would need to update your package, if
sqlite3 has a problem).

It also looks like monotone has lua in it, can't tell for
sure now.


Elrond


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



Bug#318508: db2: FTBFS: Label at end of compound statement

2005-07-15 Thread Daniel Schepler
Package: db2
Severity: serious
Version: 2:2.7.7.0-9

From my build log (reproduced using pbuilder in an i386 chroot):

...
gcc -O2 -I. -I./include -include ./compat.h -c -fPIC -o os_map.os os/os_map.c
gcc -O2 -I. -I./include -include ./compat.h -c -fPIC -o os_oflags.os 
os/os_oflags.c
os/os_oflags.c: In function '__db_oflags':
os/os_oflags.c:48: error: label at end of compound statement
make[1]: *** [os_oflags.os] Error 1
make[1]: Leaving directory `/tmp/buildd/db2-2.7.7.0/build-tree/db2'
make: *** [stampdir/build] Error 2

Unfortunately, since this is in build-tree/db2 instead of
build-tree/db-2.7.7, I can't figure out how to get dbs to patch this
file.  Anyway, the patch to that file is attached.

-- System Information:
Debian Release: testing/unstable
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-9-amd64-k8
Locale: LANG=en, LC_CTYPE=en (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
diff -urN db2/os/os_oflags.c db2.new/os/os_oflags.c
--- db2/os/os_oflags.c	1999-06-07 18:09:37.0 +
+++ db2.new/os/os_oflags.c	2005-07-15 22:01:53.0 +
@@ -44,6 +44,7 @@
 	case O_RDWR:
 		break;
 	default:		/* Bogus flags value from user.  */
+		break;
 	  /* XXX no way to return error from here */
 	}
 	if (oflags  O_CREAT)


Bug#318510: db4.1: Uninstallable Build-Depends

2005-07-15 Thread Daniel Schepler
Package: db4.1
Severity: serious
Version: 4.1.25-18

From my pbuilder build log:

...
 - Considering  gcj (= 3:3.2.2-0) [!hppa !mips !mipsel !hurd-i386]
   - Trying gcj
 - Considering  libgcj4-dev [!hppa !mips !mipsel !hurd-i386]
   - Trying libgcj4-dev
   - Cannot install libgcj4-dev; apt errors follow:
Reading package lists... Done
Building dependency tree... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
  gcj: Depends: gcj-4.0 (= 4.0.0-11) but it is not going to be installed
E: Broken packages
E: Could not satisfy build-dependency.
E: pbuilder-satisfydepends failed.

-- System Information:
Debian Release: testing/unstable
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-9-amd64-k8
Locale: LANG=en, LC_CTYPE=en (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


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



Processed: setting package to gconf, severity of 305524 is serious

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 package gconf
Ignoring bugs not assigned to: gconf

  # gcc-4.0 is now the default
 severity 305524 serious
Bug#305524: gconf_1.0.9-7: FTBFS with gcc-4.0
Severity set to `serious'.


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#318139: CXX 4.0 transition

2005-07-15 Thread Domenico Andreoli
On Thu, Jul 14, 2005 at 12:30:57PM +0200, Robert Jordens wrote:
 [Thu, 14 Jul 2005] Domenico Andreoli wrote:
 
  BTW, i don't think it is a good idea to distribute boost binaries built
  with a compiler that has never seen the boost regression test suite.
 
 I got uneasy as well but ooking on the boost webpage, there was no newer
 release yet.

here is a pointer to the 1.33.0 release status:
  http://lists.boost.org/boost/2005/07/30375.php

 Sure. What do you think about running the testsuite on each build?

it is a good idea.

the test suite results are produced as html pages. most of the debian
users would not be interested in them. what about providing a separate
binary package i.e. libboost-regression?

cheers
domenico

-[ Domenico Andreoli, aka cavok
 --[ http://people.debian.org/~cavok/gpgkey.asc
   ---[ 3A0F 2F80 F79C 678A 8936  4FEE 0677 9033 A20E BC50


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



Bug#293375: marked as done (simgear: FTBFS (amd64/gcc-4.0): #error Time to upgrade. GNU compilers 2.7 not supported)

2005-07-15 Thread Debian Bug Tracking System
Your message dated Fri, 15 Jul 2005 19:12:01 -0400
with message-id [EMAIL PROTECTED]
and subject line simgear: FTBFS (amd64/gcc-4.0): #error Time to upgrade. GNU 
compilers  2.7 not supported
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; 2 Feb 2005 19:41:59 +
From [EMAIL PROTECTED] Wed Feb 02 11:41:59 2005
Return-path: [EMAIL PROTECTED]
Received: from d052018.adsl.hansenet.de (localhost.localdomain) [80.171.52.18] 
by spohr.debian.org with esmtp (Exim 3.35 1 (Debian))
id 1CwQNy-0001ZR-00; Wed, 02 Feb 2005 11:41:58 -0800
Received: from aj by localhost.localdomain with local (Exim 4.34)
id 1CwQNx-xl-Jq; Wed, 02 Feb 2005 20:41:57 +0100
To: Debian Bug Tracking System [EMAIL PROTECTED]
From: Andreas Jochens [EMAIL PROTECTED]
Subject: simgear: FTBFS (amd64/gcc-4.0): #error Time to upgrade. GNU compilers 
 2.7 not supported
Message-Id: [EMAIL PROTECTED]
Date: Wed, 02 Feb 2005 20:41:57 +0100
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: simgear
Severity: normal
Tags: patch

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

g++ -DHAVE_CONFIG_H -I. -I. -I../../simgear -I../..  -fPIC -pipe  -g -O2 
-D_REENTRANT -c -o easyxml.o `test -f easyxml.cxx || echo './'`easyxml.cxx
In file included from easyxml.cxx:3:
../../simgear/compiler.h:145:6: error: #error Time to upgrade. GNU compilers  
2.7 not supported
In file included from easyxml.hxx:12,
 from easyxml.cxx:7:

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

Regards
Andreas Jochens

diff -urN ../tmp-orig/simgear-0.3.6/simgear/compiler.h ./simgear/compiler.h
--- ../tmp-orig/simgear-0.3.6/simgear/compiler.h2004-05-03 
15:57:08.0 +0200
+++ ./simgear/compiler.h2005-02-02 20:16:48.630765790 +0100
@@ -121,7 +121,7 @@
 #  define STL_STRSTREAM  strstream
 
 #endif
-#  elif __GNUC__ == 3
+#  elif __GNUC__ = 3
// g++-3.0.x
 #  define SG_EXPLICIT_FUNCTION_TMPL_ARGS
 #  define SG_NEED_AUTO_PTR

---
Received: (at 293375-close) by bugs.debian.org; 15 Jul 2005 23:12:05 +
From [EMAIL PROTECTED] Fri Jul 15 16:12:05 2005
Return-path: [EMAIL PROTECTED]
Received: from gateway.ottawa.transgaming.com (ottawa.transgaming.com) 
[209.217.80.34] 
by spohr.debian.org with smtp (Exim 3.36 1 (Debian))
id 1DtZLg-0006HG-00; Fri, 15 Jul 2005 16:12:05 -0700
Received: (qmail 28118 invoked from network); 15 Jul 2005 23:12:03 -
X-Virus-Scanned: by amavis-ng-0.1.6.4-03dc on mail.ottawa.transgaming.com
Received: from pc-00134 (HELO renegade) (192.168.99.134)
  by galahad.ottawa.transgaming.com (192.168.99.219) with ESMTP; 15 Jul 2005 
23:12:02 -
Received: from ovek by renegade with local (Exim 4.52)
id 1DtZLe-00013i-6j
for [EMAIL PROTECTED]; Fri, 15 Jul 2005 19:12:02 -0400
Subject: Re: simgear: FTBFS (amd64/gcc-4.0): #error Time to upgrade. GNU
compilers  2.7 not supported
From: Ove Kaaven [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Content-Type: text/plain
Content-Transfer-Encoding: 7bit
Date: Fri, 15 Jul 2005 19:12:01 -0400
Message-Id: [EMAIL PROTECTED]
Mime-Version: 1.0
X-Mailer: Evolution 2.2.2 
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

Report is old, this appears to be fixed in the current simgear 0.3.8
(why did I not receive a mail when this bug was reported? weird)


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



Bug#318516: krb4: FTBFS: static declaration of 'revoke' follows non-static declaration

2005-07-15 Thread Daniel Schepler
Package: krb4
Severity: serious
Version: 1.2.2-11.2

From my build log (reproduced using pbuilder in an i386 chroot):

...
gcc -DHAVE_CONFIG_H -I. -I. -I../../include -I../../include -I../../lib/roken 
-I../../lib/roken   -I/usr/include/et  -Wall -Wmissing-prototypes 
-Wpointer-arith -Wbad-function-cast -Wmissing-declarations -Wnested-externs -g 
-O2 -c `test -f 'forkpty.c' || echo './'`forkpty.c
forkpty.c:74: error: static declaration of 'revoke' follows non-static 
declaration
/usr/include/unistd.h:810: error: previous declaration of 'revoke' was here
make[3]: *** [forkpty.o] Error 1
make[3]: Leaving directory 
`/tmp/buildd/krb4-1.2.2/build-tree/krb4-1.2.2/appl/bsd'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/tmp/buildd/krb4-1.2.2/build-tree/krb4-1.2.2/appl'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/tmp/buildd/krb4-1.2.2/build-tree/krb4-1.2.2'
make: *** [stampdir/build-stamp] Error 2

-- System Information:
Debian Release: testing/unstable
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-9-amd64-k8
Locale: LANG=en, LC_CTYPE=en (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


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



Bug#317873: Apt Paclkage Dependency Bug

2005-07-15 Thread Kevin Brown
Brian Nelson wrote:
 Transitions are impossible in experimental because they'll never get
 into unstable on their own.

Hmm...given the amount of breakage this transition seems to be
causing, it might be worth creating a staging distribution for the
purpose of such transitions, so that -unstable doesn't end up being
broken for extended periods of time.

  I thought -experimental was where all the
  distribution-breaking changes were supposed to occur...
 
 No, that's what unstable is for.  Experimental is for stuff that isn't
 release-ready.  Packages being rebuilt for the GCC 4.0 transition *are*
 release-ready--they just temporarily break other stuff the archive.

Any idea how temporary this particular transition is likely to be?
It's been going on for a little while now.

I can work around it, by holding back the appropriate packages, but it
is something of a pain.  I do realize that there are tradeoffs for
running in the -unstable branch, but to be honest I didn't expect the
possibility of multi-week distribution breakage to be one of them.



-- 
Kevin Brown   [EMAIL PROTECTED]


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



Processed: setting package to libsigcx, severity of 317389 is serious

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 package libsigcx
Ignoring bugs not assigned to: libsigcx

  # g++-4.0 is now the default
 severity 317389 serious
Bug#317389: libsigcx: FTBFS with g++-4.0: no matching function for call to 
'pack...'
Severity set to `serious'.


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: setting package to rrdtool, severity of 294623 is serious

2005-07-15 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

 # Automatically generated email from bts, devscripts version 2.8.14
 package rrdtool
Ignoring bugs not assigned to: rrdtool

  # gcc-4.0 is now the default
 severity 294623 serious
Bug#294623: rrdtool: FTBFS (amd64/gcc-4.0): #error Can't compile without 
finite function
Severity set to `serious'.


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]



  1   2   >