Bug#504961: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: bitstormlite
Version: 0.2m-1.1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of bitstormlite_0.2m-1.1 on em64t by sbuild/amd64 0.53
...
> make[3]: Entering directory `/build/tbm/bitstormlite-0.2m/src'
> x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I.. -D_REENTRANT 
> -I/usr/include/gtk-2.0 -I/usr/lib/gtk-2.0/include -I/usr/include/atk-1.0 
> -I/usr/include/cairo -I/usr/include/pango-1.0 -I/usr/include/glib-2.0 
> -I/usr/lib/glib-2.0/include -I/usr/include/freetype2 -I/usr/include/directfb 
> -I/usr/include/libpng12 -I/usr/include/pixman-1   
> -DLOCALEDIR=\"/usr/share/locale\"-g -O2 -MT bdict.o -MD -MP -MF 
> .deps/bdict.Tpo -c -o bdict.o bdict.cpp
> In file included from bdict.cpp:26:
> bdict.h: In member function 'virtual void CBDict::get_bestr(std::string&)':
> bdict.h:124: error: 'sprintf' was not declared in this scope
> make[3]: *** [bdict.o] Error 1
> make[3]: Leaving directory `/build/tbm/bitstormlite-0.2m/src'

--- src/bdict.h~2008-11-08 07:35:51.0 +
+++ src/bdict.h 2008-11-08 07:35:58.0 +
@@ -26,6 +26,7 @@
 #ifndef _BDICT_H_
 #define _BDICT_H_
 
+#include 
 #include 
 #include 
 #include 
--- src/BitStorm.h~ 2008-11-08 07:36:09.0 +
+++ src/BitStorm.h  2008-11-08 07:36:19.0 +
@@ -26,6 +26,7 @@
 #ifndef _BITSTORM_H_
 #define _BITSTORM_H_
  
+ #include 
  #include 
  #include 
  #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504962: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: chuck
Version: 1.2.0.8.dfsg-1.1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of chuck_1.2.0.8.dfsg-1.1 on em64t by sbuild/amd64 0.53
...
> g++ -D__LINUX_ALSA__ -c -Wall -g -O2 -D__CK_SNDFILE_NATIVE__ util_console.cpp
> g++ -D__LINUX_ALSA__ -c -Wall -g -O2 -D__CK_SNDFILE_NATIVE__ util_string.cpp
> util_string.cpp: In function 'std::string itoa(long int)':
> util_string.cpp:46: error: 'sprintf' was not declared in this scope
> util_string.cpp: In function 'std::string ftoa(double, long unsigned int)':
> util_string.cpp:61: error: 'sprintf' was not declared in this scope
> util_string.cpp: In function 'long unsigned int extract_args(const 
> std::string&, std::string&, std::vector std::char_traits, std::allocator >, 
> std::allocator, 
> std::allocator > > >&)':
> util_string.cpp:228: warning: comparison between signed and unsigned integer 
> expressions
> util_string.cpp:243: warning: comparison between signed and unsigned integer 
> expressions
> util_string.cpp:249: warning: comparison between signed and unsigned integer 
> expressions
> util_string.cpp:267: warning: comparison between signed and unsigned integer 
> expressions
> util_string.cpp:291: warning: comparison between signed and unsigned integer 
> expressions
> make[2]: *** [util_string.o] Error 1
> make[2]: Leaving directory `/build/tbm/chuck-1.2.0.8.dfsg/src'

--- src/util_string.h~  2008-11-08 07:41:57.0 +
+++ src/util_string.h   2008-11-08 07:42:11.0 +
@@ -34,6 +34,7 @@
 #define __UTIL_STRING_H__
 
 #include "chuck_def.h"
+#include 
 #include 
 #include 
 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#462467: acpid: /proc/acpi/event has been deprecated in Linux kernel 2.6.24

2008-11-07 Thread John Talbut
I think this bug needs to be reclassified as important.  It is throwing 
up the same symptom as 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=440870, i.e. 
Installation fails acpid: can't open /proc/acpi/event: No such file or 
directory.
Effects of this is that I get an "Errors were encountered while 
processing" message whenever I try to install or update with Aptitude 
and deporphan does not work.




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



Bug#440870: Installation fails acpid: can't open /proc/acpi/event: No such file or directory

2008-11-07 Thread John Talbut
Presumably the other bug is 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=462467




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



Bug#504958: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: systemtap
Version: 0.0.20080705-2
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of systemtap_0.0.20080705-2 on em64t by sbuild/amd64 0.53
...
> mv -f .deps/stap-cache.Tpo .deps/stap-cache.Po
> x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I.  -DBINDIR='"/usr/bin"' 
> -DPKGDATADIR='"/usr/share/systemtap"' -DPKGLIBDIR='"/usr/lib/systemtap"'   
> -Wall -Werror -Wall -g -D_GNU_SOURCE -O2 -Werror -fstack-protector-all 
> -D_FORTIFY_SOURCE=2 -MT stap-util.o -MD -MP -MF .deps/stap-util.Tpo -c -o 
> stap-util.o `test -f 'util.cxx' || echo './'`util.cxx
> util.cxx: In function 'int copy_file(const char*, const char*)':
> util.cxx:106: error: 'rename' was not declared in this scope
> make[3]: *** [stap-util.o] Error 1
> make[3]: Leaving directory `/build/tbm/systemtap-0.0.20080705/build-tree/src'

--- build-tree/src/util.cxx~2008-11-08 07:07:33.0 +
+++ build-tree/src/util.cxx 2008-11-08 07:07:42.0 +
@@ -24,6 +24,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 }
--- build-tree/src/parse.h~ 2008-11-08 07:11:51.0 +
+++ build-tree/src/parse.h  2008-11-08 07:12:01.0 +
@@ -11,6 +11,7 @@
 #ifndef PARSE_H
 #define PARSE_H
 
+#include 
 #include 
 #include 
 #include 

In addition to these problems, I also got:

> cc1: warnings being treated as errors
> runtime/staprun/mainloop.c: In function 'stp_main_loop':
> runtime/staprun/mainloop.c:325: error: dereferencing type-punned pointer will 
> break strict-aliasing rules
> make[2]: *** [stapio-mainloop.o] Error 1

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504960: FTBFS with GCC 4.4: missing #include; no match for 'operator='

2008-11-07 Thread Martin Michlmayr
Package: widelands
Version: 1:12-3
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of widelands_1:12-3 on em64t by sbuild/amd64 0.53
...
>  from src/game.h:23,
>  from src/interactive_player.h:23,
>  from src/interactive_player.cc:20:
> src/filesystem/filesystem.h:50: error: 'int32_t' does not name a type
> src/filesystem/filesystem.h:63: error: 'int32_t' has not been declared
> src/filesystem/filesystem.h:110: error: ISO C++ forbids declaration of 
> 'int32_t' with no type
> src/filesystem/filesystem.h:110: error: expected ',' or '...' before 'buflen'

Here's a partial fix:

--- src/events/event_chain.h~   2008-11-08 06:57:00.0 +
+++ src/events/event_chain.h2008-11-08 06:57:08.0 +
@@ -23,6 +23,7 @@
 #include "named.h"
 #include "referencer.h"
 
+#include 
 #include 
 #include 
 #include 
--- src/filesystem/filesystem.h~2008-11-08 06:55:10.0 +
+++ src/filesystem/filesystem.h 2008-11-08 06:55:22.0 +
@@ -22,6 +22,7 @@
 
 #include "filesystem_exceptions.h"
 
+#include 
 #include 
 #include 
 #include 
--- src/journal_exceptions.h~   2008-11-08 06:56:12.0 +
+++ src/journal_exceptions.h2008-11-08 06:56:19.0 +
@@ -20,6 +20,7 @@
 #ifndef JOURNAL_EXCEPTIONS_H
 #define JOURNAL_EXCEPTIONS_H
 
+#include 
 #include 
 
 /**
--- src/pathfield.h~2008-11-08 07:01:47.0 +
+++ src/pathfield.h 2008-11-08 07:01:56.0 +
@@ -20,6 +20,7 @@
 #ifndef PATHFIELD_H
 #define PATHFIELD_H
 
+#include 
 #include 
 #include 
 #include 
--- src/save_handler.h~ 2008-11-08 07:07:16.0 +
+++ src/save_handler.h  2008-11-08 07:07:23.0 +
@@ -20,6 +20,7 @@
 #ifndef SAVE_HANDLER_H
 #define SAVE_HANDLER_H
 
+#include 
 #include 
 #include 
 
--- src/campvis.cc~ 2008-11-08 07:15:44.0 +
+++ src/campvis.cc  2008-11-08 07:15:53.0 +
@@ -23,6 +23,7 @@
 #include "wexception.h"
 
 #include 
+#include 
 #include 
 
 /**

It's not complete because I ran into the following issue and gave up:

src/profile.h:104: warning: conversion to 'uint32_t' from 'size_t' may alter 
its value
In file included from src/events/event.h:24,
 from src/events/event_reveal_objective.h:23,
 from src/events/event_reveal_objective.cc:20:
src/referenced.h: In member function 'void Referenced::reference(const 
Referencer&) [with Subtype = Widelands::Trigger]':
src/referencer.h:31:   instantiated from 'void 
Referencer::reference(Referenced&) [with Referenced = 
Widelands::Trigger]'
src/objective.h:67:   instantiated from here
src/referenced.h:36: error: no match for 'operator=' in '*(((const 
Referencer*)referencer) + ((long unsigned int)(((long 
unsigned 
int)((Referenced*)this)->Referenced::m_referencers)
 * 8ul))) = 1'
src/referencer.h:28: note: candidates are: Referencer& 
Referencer::operator=(const Referencer&)
scons: *** [build/native-release/events/event_reveal_objective.o] Error 1

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504959: FTBFS with GCC 4.4: token "=" is not valid in preprocessor expressions

2008-11-07 Thread Martin Michlmayr
Package: lurker
Version: 2.1-13
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 will introduce better checks in the preprocessor.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of lurker_2.1-13 on em64t by sbuild/amd64 0.53
...
> if g++ -DHAVE_CONFIG_H -I. -I. -I..  -I../libesort -I/usr/include/kde 
> -I/usr/include/qt3  -Wall -g -O2 -MT md5.o -MD -MP -MF ".deps/md5.Tpo" -c -o 
> md5.o md5.cpp; \
>   then mv -f ".deps/md5.Tpo" ".deps/md5.Po"; else rm -f ".deps/md5.Tpo"; 
> exit 1; fi
> In file included from md5.cpp:43:
> md5.h:47:17: error: token "=" is not valid in preprocessor expressions
> make[3]: *** [md5.o] Error 1

--- common/md5.h~   2008-11-08 07:16:35.0 +
+++ common/md5.h2008-11-08 07:16:45.0 +
@@ -44,7 +44,7 @@
 
 #if UINT_MAX == 4294967295U
 typedef unsigned int UWORD32;
-#elif ULONG_MAX = 4294967295U
+#elif ULONG_MAX == 4294967295U
 typedef unsigned long UWORD32;
 #else
  #error "No 32 bit type"

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504957: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: ocrad
Version: 0.17-3
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of ocrad_0.17-3 on em64t by sbuild/amd64 0.53
...
> g++  -Wall -W -O2 -c -o track.o track.cc
> In file included from track.cc:21:
> common.h: In constructor 'Control::Control()':
> common.h:88: error: 'stdout' was not declared in this scope
> track.cc: In constructor 'Vrhomboid::Vrhomboid(int, int, int, int, int)':
> track.cc:142: error: 'fprintf' is not a member of 'std'
> track.cc:142: error: 'stderr' was not declared in this scope
> make[1]: *** [track.o] Error 1
> make[1]: Leaving directory `/build/tbm/ocrad-0.17'

--- common.h~   2008-11-08 07:11:21.0 +
+++ common.h2008-11-08 07:11:27.0 +
@@ -15,6 +15,7 @@
 along with this program.  If not, see .
 */
 
+#include 
 #include 
 
 namespace Ocrad {

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504956: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: dc-qt
Version: 0.2.0.alpha-4
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of dc-qt_0.2.0.alpha-4 on em64t by sbuild/amd64 0.53
...
> In file included from user.h:5,
>  from userlistmodel.h:18,
>  from session.cpp:13:
> blockallocator.h: In member function 'T* BlockAllocator blockAlignment>::BlockStore::AllocateBlock()':
> blockallocator.h:66: error: 'uintptr_t' was not declared in this scope
> blockallocator.h:72: error: expected primary-expression before ')' token
> blockallocator.h:74: error: expected primary-expression before ')' token
> blockallocator.h:74: error: expected ';' before numeric constant
> blockallocator.h: In member function 'void BlockAllocator blockAlignment>::BlockStore::ReleaseBlock(T*)':
> blockallocator.h:86: error: 'uintptr_t' was not declared in this scope
> blockallocator.h:86: error: expected primary-expression before ')' token
> blockallocator.h:86: error: expected ')' before 'pBlock'
> make[1]: *** [session.o] Error 1

-- 
Martin Michlmayr
http://www.cyrius.com/
--- ui/blockallocator.h~	2008-11-08 07:00:41.0 +
+++ ui/blockallocator.h	2008-11-08 07:01:26.0 +
@@ -1,6 +1,7 @@
 #ifndef __blockallocator_h__

 #define __blockallocator_h__

 

+#include 

 #include 

 #include 

 



Bug#504954: "scrollkeeper_extended_cl.xml:4329: parser error" at postinstall/upgrade (v0.9.1-7)

2008-11-07 Thread Teodor
Package: qemu
Version: 0.9.1-7
Severity: normal

The current upgrade for lenny shows these errors during the installation:

--
piti:~# apt upgrade
Reading package lists... Done
Building dependency tree   
Reading state information... Done
The following packages will be upgraded:
  qemu
1 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/11.0MB of archives.
After this operation, 0B of additional disk space will be used.
Do you want to continue [Y/n]? 
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
Reading changelogs... Done
(Reading database ... 216698 files and directories currently installed.)
Preparing to replace qemu 0.9.1-6 (using .../qemu_0.9.1-7_amd64.deb) ...
Unpacking replacement qemu ...
Processing triggers for man-db ...
Processing triggers for doc-base ...
Processing 1 changed doc-base file(s)...
Registering documents with scrollkeeper...
/var/lib/scrollkeeper/C/scrollkeeper_extended_cl.xml:4329: parser error : 
Couldn't find end of Start Tag doc line 4329
mf>file:/usr/share/gnome/help/synaptic/C/synaptic.xmlfile:/usr/share/gnome/help/synaptic/C/synaptic.xmlfile:/usr/share/gnome/help/synaptic/C/synaptic.xmlfile:/usr/share/gnome/help/synaptic/C/synaptic.xmlNibbles Manual/usr/share/omf/gnib
   ^
/var/lib/scrollkeeper/C/scrollkeeper_extended_cl.xml:3670: parser error : 
Premature end of data in tag doc line 3670
>Nibbles Manual/usr/share/omf/gnib
   ^
/var/lib/scrollkeeper/C/scrollkeeper_extended_cl.xml:3670: parser error : 
Premature end of data in tag sect line 3125
>Nibbles Manual/usr/share/omf/gnib
   ^
/var/lib/scrollkeeper/C/scrollkeeper_extended_cl.xml:3670: parser error : 
Premature end of data in tag sect line 599
>Nibbles Manual/usr/share/omf/gnib
   ^
/var/lib/scrollkeeper/C/scrollkeeper_extended_cl.xml:3670: parser error : 
Premature end of data in tag ScrollKeeperContentsList line 2
>Nibbles Manual/usr/share/omf/gnib
   ^
/var/lib/scrollkeeper/C/scrollkeeper_cl.xml:615: parser error : StartTag: 
invalid element name
  <
   ^
/var/lib/scrollkeeper/C/scrollkeeper_cl.xml:615: parser error : Premature end 
of data in tag sect line 614
  <
   ^
/var/lib/scrollkeeper/C/scrollkeeper_cl.xml:615: parser error : Premature end 
of data in tag sect line 504
  <
   ^
/var/lib/scrollkeeper/C/scrollkeeper_cl.xml:615: parser error : Premature end 
of data in tag ScrollKeeperContentsList line 2
  <
   ^
Setting up qemu (0.9.1-7) ...
piti:~# 
--

Thanks


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

Kernel: Linux 2.6.26-1-openvz-amd64 (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 qemu depends on:
ii  bochsbios  2.3.7-1   BIOS for the Bochs emulator
ii  libasound2 1.0.16-2  ALSA library
ii  libbrlapi0.5   3.10~r3724-1+b1   braille display access via BRLTTY 
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libgnutls262.4.2-1   the GNU TLS library - runtime libr
ii  libncurses55.6+20080830-1shared libraries for terminal hand
ii  libsdl1.2debian1.2.13-2  Simple DirectMedia Layer
ii  openbios-sparc 1.0~alpha2+20080106-2 SPARC Open Firmware
ii  openhackware   0.4.1-4   OpenFirmware emulator for PowerPC
ii  proll  18-4  JavaStation PROM 2.x compatible re
ii  vgabios0.6b-1VGA BIOS software for the Bochs an
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages qemu recommends:
ii  debootstrap   1.0.10 Bootstrap a basic Debian system
ii  sharutils 1:4.6.3-1  shar, unshar, uuencode, uudecode
ii  vde2  2.2.2-3Virtual Distributed Ethernet

Versions of packages qemu suggests:
pn  samba  (no description available)
ii  sudo  1.6.9p17-1 Provide limited super user privile

-- no debconf information



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



Bug#504955: acpi-support: suspendorhibernate method 'dbus-pm' exits without doing anything

2008-11-07 Thread Adam M. Costello
Package: acpi-support
Version: 0.109-6
Severity: normal

The logic for method 'dbus-pm' in
/usr/share/acpi-support/suspendorhibernate looks a little screwy.  It
runs the command

/usr/bin/dbus-send \
  --session \
  --dest=org.freedesktop.PowerManagement \
  --type=method_call \
  --print-reply \
  --reply-timeout=2000 \
  /org/freedesktop/PowerManagement \
  org.freedesktop.PowerManagement.Suspend

as root, which on my system results in the following error:

Failed to open connection to session message bus: Did not receive
a reply. Possible causes include: the remote application did not
send a reply, the message bus security policy blocked the reply, the
reply timeout expired, or the network connection was broken.

But apparently that's not the error message it was expecting; it's
grepping for " org.freedesktop.DBus.Error." (which is the error produced
when the command is run as myself rather than root).  It erroneously
takes this branch:

# Not a DBUS error: other side does exist, and
# reports an error. That means we don't try
# anything else.
exit

The way I read the error message, there is no other side, and
suspendorhibernate should try the next method.

For now I've worked around the problem by removing dbus-pm from
SUSPEND_METHODS in /etc/default/acpi-support.

AMC

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'stable'), (600, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.21-2-686 (SMP w/1 CPU core)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages acpi-support depends on:
pn  acpi-support-base  (no description available)
pn  acpid  (no description available)
ii  dmidecode 2.9-1  Dump Desktop Management Interface 
ii  finger0.17-11user information lookup program
ii  hdparm7.7-1  tune hard disk parameters for high
ii  laptop-detect 0.12.1-0.1 attempt to detect a laptop
ii  libc6 2.7-5  GNU C Library: Shared libraries
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip
pn  nvclock(no description available)
pn  powermgmt-base (no description available)
pn  radeontool (no description available)
pn  toshset(no description available)
ii  vbetool   1.0-1.1run real-mode video BIOS code to a
pn  x11-xserver-utils  (no description available)

acpi-support recommends no packages.



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



Bug#502690: Upload plans to fix pending l10n issues?

2008-11-07 Thread Christian Perrier
Are there plans to fix the pending l10n issues?


-- 




signature.asc
Description: Digital signature


Bug#503706: xmame: Superflous spaces in Debconf templates

2008-11-07 Thread Christian Perrier
Quoting Christian Perrier ([EMAIL PROTECTED]):

> OK, Bruno mentioned me in private something like "please help"...:)
> 
> So, how to "unfuzzy" things ?
> 
> First, take your package source tree

.../...


Bruno, what are your plans regarding xmame translation updates?

Do you have a plan for an upload soon?



signature.asc
Description: Digital signature


Bug#504950: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: opencity
Version: 0.0.5.1stable-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of opencity_0.0.5.1stable-1 on em64t by sbuild/amd64 0.53
...
> if x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I. -I../..  
> -I../../src/triangulation/ -I../../src/   -I/usr/X11R6/include  -DNDEBUG 
> -Wall -Wmissing-braces -Wparentheses -ansi -I/usr/include/SDL -D_GNU_SOURCE=1 
> -D_REENTRANT -MT ac3dobject.o -MD -MP -MF ".deps/ac3dobject.Tpo" -c -o 
> ac3dobject.o ac3dobject.cpp; \
>   then mv -f ".deps/ac3dobject.Tpo" ".deps/ac3dobject.Po"; else rm -f 
> ".deps/ac3dobject.Tpo"; exit 1; fi
> ac3dobject.cpp: In member function 'void 
> AC3D::AC3DObject::Parse(std::stringstream&)':
> ac3dobject.cpp:186: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:196: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:201: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:217: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:228: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:238: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:242: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:246: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:250: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:255: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:259: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp:263: error: 'sscanf' was not declared in this scope
> ac3dobject.cpp: In member function 'void 
> AC3D::AC3DObject::ac3dobjectParseVertex(unsigned int, std::stringstream&, 
> char*)':
> ac3dobject.cpp:360: error: 'sscanf' was not declared in this scope
> make[4]: *** [ac3dobject.o] Error 1
> make[4]: Leaving directory `/build/tbm/opencity-0.0.5.1stable/src/model'

--- src/model/ac3dobject.cpp~   2008-11-08 06:43:45.0 +
+++ src/model/ac3dobject.cpp2008-11-08 06:43:58.0 +
@@ -23,6 +23,7 @@
 #include "ac3dmacros.h"// AC3D specific macros
 
 #include 
+#include 
 #include 
 
 
--- src/model/ac3dmaterial.cpp~ 2008-11-08 06:46:34.0 +
+++ src/model/ac3dmaterial.cpp  2008-11-08 06:46:41.0 +
@@ -22,6 +22,7 @@
 #include "macros.h"// for debugging macros
 #include "ac3dmacros.h"
 
+#include 
 #include 
 
 using std::stringstream;
--- src/model/ac3dsurface.cpp~  2008-11-08 06:46:47.0 +
+++ src/model/ac3dsurface.cpp   2008-11-08 06:46:54.0 +
@@ -22,6 +22,7 @@
 #include "macros.h"// debug macros
 #include "ac3dmacros.h"
 
+#include 
 #include 
 
 namespace AC3D {

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504951: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: glaurung
Version: 2.0.1-2
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of glaurung_2.0.1-2 on em64t by sbuild/amd64 0.53
...
> g++  -O3 -DNDEBUG -g -funroll-loops -fomit-frame-pointer -fstrict-aliasing 
> -fno-exceptions -Wall   -c -o main.o main.cpp
> main.cpp: In function 'int main(int, char**)':
> main.cpp:50: error: 'stdin' was not declared in this scope
> main.cpp:50: error: 'setbuf' was not declared in this scope
> main.cpp:51: error: 'stdout' was not declared in this scope
> make[1]: *** [main.o] Error 1
> make[1]: Leaving directory `/build/tbm/glaurung-2.0.1/src'

--- src/main.cpp~   2008-11-08 06:50:26.0 +
+++ src/main.cpp2008-11-08 06:50:36.0 +
@@ -21,6 +21,7 @@
  Includes
 
 
+#include 
 #include 
 #include 
 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#502376: Upload plans to fix pending l10n issues?

2008-11-07 Thread Christian Perrier
Last interchange upload added changes that required translation
updates.

Do you have plans to incorporate the updated translations now?

-- 




signature.asc
Description: Digital signature


Bug#504952: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: openexr-viewers
Version: 1.0.1-3
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of openexr-viewers_1.0.1-3 on em64t by sbuild/amd64 0.53
...
> g++ -DHAVE_CONFIG_H -I. -I. -I../config -I/usr/include/freetype2 
> -D_THREAD_SAFE -D_REENTRANT -I.. -DHAVE_CTL_INTERPRETER=0  
> -I/usr/include/OpenEXR -pthread   -pipe -g -O2 -g -Wall -O2 -c -o applyCtl.o 
> applyCtl.cpp
> applyCtl.cpp: In function 'float displayVideoGamma()':
> applyCtl.cpp:91: error: 'sscanf' was not declared in this scope
> applyCtl.cpp: In function 
> 'Imf::Chromaticities::displayChromaticities()':
> applyCtl.cpp:136: error: 'sscanf' was not declared in this scope
> make[2]: *** [applyCtl.o] Error 1

--- exrdisplay/applyCtl.cpp~2008-11-08 06:52:53.0 +
+++ exrdisplay/applyCtl.cpp 2008-11-08 06:53:18.0 +
@@ -49,6 +49,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 using namespace std;
@@ -62,6 +63,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 using namespace std;

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504949: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: synfig
Version: 0.61.08-3
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of synfig_0.61.08-3 on em64t by sbuild/amd64 0.53
...
>  x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I../.. -I../../src -I../../libltdl 
> -I/usr/include/libxml++-2.6 -I/usr/lib/libxml++-2.6/include 
> -I/usr/include/libxml2 -I/usr/include/glibmm-2.4 
> -I/usr/lib/glibmm-2.4/include -I/usr/include/sigc++-2.0 
> -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 
> -I/usr/lib/glib-2.0/include -I/usr/include/sigc++-2.0 
> -I/usr/lib/sigc++-2.0/include -DSYNFIG_NO_DEPRECATED 
> -DLOCALEDIR=\"/usr/share/locale\" -DLIBDIR=\"/usr/lib\" 
> -DSYSCONFDIR=\"/etc/synfig\" -DNDEBUG -g -O2 -W -Wall -MT 
> libsynfig_la-time.lo -MD -MP -MF .deps/libsynfig_la-time.Tpo -c time.cpp  
> -fPIC -DPIC -o .libs/libsynfig_la-time.o
> time.cpp: In constructor 'synfig::Time::Time(const synfig::String&, float)':
> time.cpp:105: error: 'sscanf' was not declared in this scope
> make[4]: *** [libsynfig_la-time.lo] Error 1
> make[4]: Leaving directory `/build/tbm/synfig-0.61.08/src/synfig'

--- src/synfig/time.cpp~2008-11-08 06:35:14.0 +
+++ src/synfig/time.cpp 2008-11-08 06:35:26.0 +
@@ -35,6 +35,7 @@
 #include 
 #include "general.h"
 #include 
+#include 
 #include 
 #include 
 #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504948: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: openmsx
Version: 0.6.3-2
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of openmsx_0.6.3-2 on em64t by sbuild/amd64 0.53
..
> Compiling fdc/MSXFDC.cc...
> Compiling fdc/MSXtar.cc...
> src/fdc/MSXtar.cc: In member function 'void 
> openmsx::MSXtar::alterFileInDSK(openmsx::MSXtar::MSXDirEntry&, const 
> std::string&)':
> src/fdc/MSXtar.cc:630: error: 'fopen' was not declared in this scope
> src/fdc/MSXtar.cc:662: error: 'fread' was not declared in this scope
> src/fdc/MSXtar.cc:671: error: 'fclose' was not declared in this scope
> src/fdc/MSXtar.cc: In member function 'void 
> openmsx::MSXtar::fileExtract(std::string, openmsx::MSXtar::MSXDirEntry&)':
> src/fdc/MSXtar.cc:929: error: 'fopen' was not declared in this scope
> src/fdc/MSXtar.cc:937: error: 'fwrite' was not declared in this scope
> src/fdc/MSXtar.cc:941: error: 'fclose' was not declared in this scope
> make[1]: *** [derived/x86_64-linux-opt/obj/fdc/MSXtar.o] Error 1
> make[1]: Leaving directory `/build/tbm/openmsx-0.6.3'
> make: *** [build-stamp] Error 2

--- src/fdc/MSXtar.cc~  2008-11-08 06:05:36.0 +
+++ src/fdc/MSXtar.cc   2008-11-08 06:05:44.0 +
@@ -11,6 +11,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 
--- src/ide/IDECDROM.cc~2008-11-08 06:11:10.0 +
+++ src/ide/IDECDROM.cc 2008-11-08 06:11:31.0 +
@@ -12,6 +12,7 @@
 #include 
 #include 
 #include 
+#include 
 
 using std::string;
 using std::vector;
--- src/video/GLUtil.cc~2008-11-08 06:19:13.0 +
+++ src/video/GLUtil.cc 2008-11-08 06:19:19.0 +
@@ -9,6 +9,7 @@
 #include "Version.hh"
 #include 
 #include 
+#include 
 #include 
 #include 
 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504947: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: cuyo
Version: 2.~-1.1-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of cuyo_2.~-1.1-1 on em64t by sbuild/amd64 0.53
...
> x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I..-I/usr/include/SDL 
> -D_GNU_SOURCE=1 -D_REENTRANT -DPKGDATADIR=\"/usr/share/games/cuyo\" -Wall -W 
> -ansi -pedantic -g -O2 -c -o main.o main.cpp
> In file included from main.cpp:19:
> stringzeug.h:77: error: 'va_list' has not been declared
> make[1]: *** [main.o] Error 1

--- src/stringzeug.h~   2008-11-08 06:19:27.0 +
+++ src/stringzeug.h2008-11-08 06:19:34.0 +
@@ -19,6 +19,7 @@
 #define STRINGZEUG_H
 
 #include 
+#include 
 #include 
 
 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504936: I think I was using the wrong program

2008-11-07 Thread Rafael Cunha de Almeida
I think I was starting rhythmbox with the wrong command, I was starting
it with like:
% rhythmbox
instead of
% rhythmbox-client
Wouldn't it be better if rhythmbox-client was named rhythmbox and
rhythmbox was named rhythmbox-server or something? Just a suggestion,
you can close the bug, though.



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



Bug#504946: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: znc
Version: 0.058-2
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of znc_0.058-2 on em64t by sbuild/amd64 0.53
...
> x86_64-linux-gnu-g++ -DVERSION_EXTRA=\"+deb2\" -D_FORTIFY_SOURCE=2 -fPIC -O2 
> -fomit-frame-pointer -DHAVE_IPV6 -Wall -W -Wno-unused-parameter 
> -Woverloaded-virtual -Wshadow -DHAVE_LIBSSL -D_MODULES 
> -D_MODDIR_=\"/usr/lib/znc\" -D_DATADIR_=\"/usr/share/znc\"  -c -o Utils.o 
> Utils.cpp -MMD -MF .depend/Utils.cpp.dep
> In file included from Utils.cpp:9:
> Utils.h: In function 'bool ReadFile(const CString&, CString&)':
> Utils.h:260: error: 'fopen' was not declared in this scope
> Utils.h:266: error: 'fread' was not declared in this scope
> Utils.h:270: error: 'fclose' was not declared in this scope
> Utils.h: In function 'bool WriteFile(const CString&, const CString&)':
> Utils.h:279: error: 'fopen' was not declared in this scope
> Utils.h:284: error: 'fwrite' was not declared in this scope
> Utils.h:286: error: 'fclose' was not declared in this scope
> make[1]: *** [Utils.o] Error 1

--- Utils.h~2008-11-08 06:12:26.0 +
+++ Utils.h 2008-11-08 06:12:40.0 +
@@ -11,6 +11,7 @@
 
 #include "String.h"
 #include 
+#include 
 #include 
 #include 
 #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504922: Lenny install bug in package, not in install

2008-11-07 Thread Nan & Ron
I tried installation with a new download of the netinst image. GRUB 
installation was successful as in my most recent tries. Problem 
remained; boot from HD hung on "Saving VESA state..."


Reinstalled with NO tasks selected (neither laptop nor standard system). 
Boot from HD was successful!


I conclude that the bug is not with the installer, but rather with one 
of the packages in the tasks, probably in the laptop task, that is 
loaded with the HD boot. Thank you for letting me describe my problem. I 
have learned something, and will learn more by the time I have Icedove 
running.


Ron Schwiesow,  [EMAIL PROTECTED]



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



Bug#504945: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: octave3.0
Version: 1:3.0.1-6lenny1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of octave3.0_1:3.0.1-6lenny1 on em64t by sbuild/amd64 0.53
> g++ -c  -fPIC -I. -I.. -I../liboctave -I../src -I../libcruft/misc  
> -DHAVE_CONFIG_H  -Wall -W -Wshadow -Wold-style-cast -O2 -g oct-md5.cc -o 
> pic/oct-md5.o
> oct-md5.cc: In function 'std::string oct_md5(std::string)':
> oct-md5.cc:47: error: 'sprintf' was not declared in this scope
> oct-md5.cc: In function 'std::string oct_md5_file(std::string)':
> oct-md5.cc:55: error: 'fopen' was not declared in this scope
> oct-md5.cc:73: error: 'fread' was not declared in this scope
> oct-md5.cc:76: error: 'fclose' was not declared in this scope
> oct-md5.cc:82: error: 'sprintf' was not declared in this scope
> make[3]: *** [pic/oct-md5.o] Error 1
> make[3]: Leaving directory `/build/tbm/octave3.0-3.0.1/liboctave'

--- liboctave/oct-md5.cc~   2008-11-07 21:42:05.0 +
+++ liboctave/oct-md5.cc2008-11-07 21:42:14.0 +
@@ -20,6 +20,7 @@
 
 */
 
+#include 
 #include 
 #include 
 
--- scripts/gethelp.cc~ 2008-11-08 05:55:58.0 +
+++ scripts/gethelp.cc  2008-11-08 05:56:08.0 +
@@ -24,6 +24,7 @@
 #define __USE_STD_IOSTREAM
 #endif
 
+#include 
 #include 
 #include 
 

Unfortunately I'm not sure if this patch is complete because my build
fails with:

g++  -I. -I.. -I../liboctave -I../src -I../libcruft/misc  -DHAVE_CONFIG_H  
-Wall -W -Wshadow -Wold-style-cast -g -O2 -rdynamic \
-L..  -fPIC  -o octave \
main.o  \
-L../liboctave -L../libcruft -L../src -Wl,-rpath 
-Wl,/usr/lib/octave-3.0.1 \
-loctinterp -loctave  -lcruft   \
 -lumfpack -lamd -lcamd -lcolamd \
-lcholmod -lccolamd -lcxsparse -llapackgf-3 -lblas-3gf \
-lfftw3 -lreadline  -lncurses -ldl -lhdf5 -lz -lm  
-L/usr/lib/gcc/x86_64-linux-gnu/4.3.2 
-L/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../../../lib -L/lib/../lib 
-L/usr/lib/../lib -L/usr/lib/gcc/x86_64-linux-gnu/4.3.2/../../.. -lhdf5 -lz 
-lgfortranbegin -lgfortran -lm
../src/liboctinterp.so: undefined reference to 
`std::ctype::_M_widen_init() const'
collect2: ld returned 1 exit status

I'm not sure what this is about.
-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504944: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: exempi
Version: 2.0.2-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of exempi_2.0.2-1 on em64t by sbuild/amd64 0.53
...
>  g++ -DPACKAGE_NAME=\"\" -DPACKAGE_TARNAME=\"\" -DPACKAGE_VERSION=\"\" 
> -DPACKAGE_STRING=\"\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"exempi\" 
> -DVERSION=\"2.0.2\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 
> -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 
> -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DHAVE_DLFCN_H=1 
> -DCHECKED_ENDIANNESS=1 -DICONV_CONST= -DTLS=__thread -DHAVE_NATIVE_TLS=1 -I. 
> -I../../public/include -I../../public/include/client-glue -I../../build/ 
> -I./FormatSupport -I./../common/ -I../../third-party/MD5 -Wall -DUNIX_ENV=1 
> -DXMP_IMPL=1 -DXMP_ClientBuild=0 -D_FILE_OFFSET_BITS=64 
> -DHAVE_EXPAT_CONFIG_H=1 -DXML_STATIC=1 -DDISABLE_QUICKTIME -Wno-multichar 
> -Wno-implicit -Wno-ctor-dtor-privacy -funsigned-char -fexceptions 
> -fno-strict-aliasing -g -O2 -g -Wall -O2 -c XMPFiles_Impl.cpp  -fPIC -DPIC -o 
> .libs/XMPFiles_Impl.o
> In file included from XMPFiles_Impl.cpp:10:
> XMPFiles_Impl.hpp: In function 'void MoveToOffset(LFA_FileRef, XMP_Int64, 
> IOBuffer*)':
> XMPFiles_Impl.hpp:491: warning: comparison between signed and unsigned 
> integer expressions
> XMPFiles_Impl.cpp: In function 'void LFA_Rename(const char*, const char*)':
> XMPFiles_Impl.cpp:685: error: 'rename' was not declared in this scope
> XMPFiles_Impl.cpp: In function 'bool CreateNewFile(const char*, const char*, 
> size_t, bool)':
> XMPFiles_Impl.cpp:827: error: 'fopen' was not declared in this scope
> XMPFiles_Impl.cpp:829: error: 'fclose' was not declared in this scope
> XMPFiles_Impl.hpp: At global scope:
> XMPFiles_Impl.hpp:122: warning: 'kUTF8_PacketStart' defined but not used
> XMPFiles_Impl.hpp:123: warning: 'kUTF8_PacketID' defined but not used
> XMPFiles_Impl.hpp:126: warning: 'kUTF8_PacketTrailer' defined but not used
> XMPFiles_Impl.cpp:635: warning: 'check_off_t_size' defined but not used
> make[4]: *** [XMPFiles_Impl.lo] Error 1
> make[4]: Leaving directory `/build/tbm/exempi-2.0.2/source/XMPFiles'

--- source/XMPFiles/XMPFiles_Impl.cpp~  2008-11-08 05:59:13.0 +
+++ source/XMPFiles/XMPFiles_Impl.cpp   2008-11-08 06:00:13.0 +
@@ -9,6 +9,7 @@
 
 #include "XMPFiles_Impl.hpp"
 
+#include 
 #if XMP_MacBuild
#include 
 #elif XMP_WinBuild
--- samples/source/XMPFilesCoverage.cpp~2008-11-08 06:01:38.0 
+
+++ samples/source/XMPFilesCoverage.cpp 2008-11-08 06:01:48.0 +
@@ -3,6 +3,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 
 #define TXMP_STRING_TYPE std::string

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#453259: sfs hanging

2008-11-07 Thread Clint Adams
On Fri, Nov 07, 2008 at 09:14:43PM +0100, Moritz Muehlenhoff wrote:
> Is this still reproducable with current 2.6.28-rcX kernels? If so,

Are those somewhere on http://kernel-archive.buildserver.net/ ?



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



Bug#504943: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: libassa
Version: 3.5.0-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of libassa_3.5.0-1 on em64t by sbuild/amd64 0.53
...
> ../assa/Logger_Impl.h:226: error: 'va_list' has not been declared
> Logger_Impl.cpp:85: error: 'va_list' has not been declared
> Logger_Impl.cpp: In member function 'char* 
> ASSA::Logger_Impl::format_msg(size_t, const char*, int, bool&)':
> Logger_Impl.cpp:99: error: '::vsnprintf' has not been declared
> make[3]: *** [Logger_Impl.lo] Error 1
> make[3]: Leaving directory `/build/tbm/libassa-3.5.0/assa'

--- assa/Logger_Impl.h~ 2008-11-08 05:54:20.0 +
+++ assa/Logger_Impl.h  2008-11-08 05:54:28.0 +
@@ -15,6 +15,7 @@
 #define LOGGER_IMPL_H
 
 #include 
+#include 
 #include 
 
 #if defined(sun)
--- assa/Logger_Impl.cpp~   2008-11-08 05:54:37.0 +
+++ assa/Logger_Impl.cpp2008-11-08 05:54:43.0 +
@@ -12,6 +12,7 @@
 //  version 2 of the License, or (at your option) any later version.
 
//--
 
+#include 
 #include 
 #include 
 #include // strerror(3)

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504941: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: libvmime
Version: 0.8.1-3
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of libvmime_0.8.1-3 on em64t by sbuild/amd64 0.53
...
> platforms_posix_posixFile.cpp:302: warning: type qualifiers ignored on 
> function return type
> platforms_posix_posixFile.cpp: In member function 'virtual void 
> vmime::platforms::posix::posixFile::rename(const vmime::utility::path&)':
> platforms_posix_posixFile.cpp:322: error: '::rename' has not been declared
> platforms_posix_posixFile.cpp: At global scope:
> platforms_posix_posixFile.cpp:450: warning: type qualifiers ignored on 
> function return type
> platforms_posix_posixFile.cpp:456: warning: type qualifiers ignored on 
> function return type
> make[3]: *** [platforms_posix_posixFile.lo] Error 1
> make[3]: Leaving directory `/build/tbm/libvmime-0.8.1/src'

--- src/platforms_posix_posixFile.cpp~  2008-11-08 05:47:58.0 +
+++ src/platforms_posix_posixFile.cpp   2008-11-08 05:48:16.0 +
@@ -28,6 +28,7 @@
 
 #include 
 
+#include 
 #include 
 
 #include "vmime/exception.hpp"

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504942: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: libopenraw
Version: 0.0.5-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of libopenraw_0.0.5-1 on em64t by sbuild/amd64 0.53
...
> make[3]: Entering directory `/build/tbm/libopenraw-0.0.5/demo'
> x86_64-linux-gnu-g++ -DHAVE_CONFIG_H -I. -I.. -I../include  
> -I../gnome/include-g -O2 -Wextra -ansi -pedantic -g -Wall -Wshadow -MT 
> thumb.o -MD -MP -MF .deps/thumb.Tpo -c -o thumb.o thumb.cpp
> thumb.cpp: In function 'int main(int, char**)':
> thumb.cpp:71: error: 'fopen' was not declared in this scope
> thumb.cpp:72: error: 'fwrite' was not declared in this scope
> thumb.cpp:73: error: 'fclose' was not declared in this scope
> thumb.cpp:88: error: 'fopen' was not declared in this scope
> thumb.cpp:89: error: 'fwrite' was not declared in this scope
> thumb.cpp:90: error: 'fclose' was not declared in this scope
> thumb.cpp:104: error: 'fopen' was not declared in this scope
> thumb.cpp:105: error: 'fwrite' was not declared in this scope
> thumb.cpp:106: error: 'fclose' was not declared in this scope
> make[3]: *** [thumb.o] Error 1
> make[3]: Leaving directory `/build/tbm/libopenraw-0.0.5/demo'
> make[2]: *** [all-recursive] Error 1

--- demo/thumb.cpp~ 2008-11-08 05:50:30.0 +
+++ demo/thumb.cpp  2008-11-08 05:50:37.0 +
@@ -20,6 +20,7 @@
 
 
 
+#include 
 #include 
 #include 
 #include 
--- demo/cfa.cpp~   2008-11-08 05:48:58.0 +
+++ demo/cfa.cpp2008-11-08 05:50:42.0 +
@@ -20,6 +20,7 @@
 
 
 
+#include 
 #include 
 #include 
 #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504891: [Debian-med-packaging] Bug#504891: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Charles Plessy
forwarded 504891  https://savannah.nongnu.org/bugs/index.php?24777
thanks

Hi all,

to save time and to minimize divergence, I propose to try to get the patch
accepted upstream before applying it by ourselves.

Have a nice day,

--
Charles



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



Bug#504940: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: ecawave
Version: 1:0.6.1-11
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of ecawave_1:0.6.1-11 on em64t by sbuild/amd64 0.53
...
> mv -f .deps/resources.Tpo .deps/resources.Po
> g++ -DHAVE_CONFIG_H -I. -I.. -I. -I.. -I/usr/include/qt3 
> -I/usr/include/libecasound -I/usr/include/kvutils-O2 -DNDEBUG -ffast-math 
> -D_REENTRANT -D_REENTRANT -D_REENTRANT -ffast-math -fstrict-aliasing 
> -funroll-loops -DNDEBUG -DENABLE_DBC -MT qeinterface.o -MD -MP -MF 
> .deps/qeinterface.Tpo -c -o qeinterface.o qeinterface.cpp
> In file included from qefile.h:15,
>  from qeinterface.cpp:22:
> qewaveform.h:18: error: 'int16_t' does not name a type
> qewaveform.h:19: error: 'int16_t' does not name a type
> make[3]: *** [qeinterface.o] Error 1
> make[3]: Leaving directory `/build/tbm/ecawave-0.6.1/src'
> make[2]: *** [all-recursive] Error 1

--- src/qewaveform.h~   2008-11-08 05:39:44.0 +
+++ src/qewaveform.h2008-11-08 05:40:27.0 +
@@ -2,6 +2,7 @@
 #define INCLUDED_QEWAVEFORM_H
 
 #include 
+#include 
 
 #include 
 #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504938: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: msrp
Version: 0.9.2-2
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of msrp_0.9.2-2 on em64t by sbuild/amd64 0.53
...
> g++ -DPACKAGE_NAME=\"msrp\" -DPACKAGE_TARNAME=\"msrp\" 
> -DPACKAGE_VERSION=\"0.9.2\" -DPACKAGE_STRING=\"msrp\ 0.9.2\" 
> -DPACKAGE_BUGREPORT=\"[EMAIL PROTECTED]" -DPACKAGE=\"msrp\" 
> -DVERSION=\"0.9.2\" -I. -g -O2 -MT cliopt.o -MD -MP -MF .deps/cliopt.Tpo 
> -c -o cliopt.o cliopt.cc
> cliopt.cc: In member function 'virtual int PlainRename::rename(const char*, 
> const char*)':
> cliopt.cc:68: error: '::rename' has not been declared
> make[2]: *** [cliopt.o] Error 1
> make[2]: Leaving directory `/build/tbm/msrp-0.9.2/src'

--- src/cliopt.cc~  2008-11-08 05:37:57.0 +
+++ src/cliopt.cc   2008-11-08 05:38:20.0 +
@@ -1,6 +1,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504937: FTBFS with GCC 4.4: missing #include, conflicting declaration 'char*** argv'

2008-11-07 Thread Martin Michlmayr
Package: glashctl
Version: 0.4.2-4
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

Problem 1) GCC 4.4 cleaned up some more C++ headers.  You always have
to #include headers directly and cannot rely for things to be included
indirectly.

Problem 2) conflicting declaration 'char*** argv'; I didn't
look at this one.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of glashctl_0.4.2-4 on em64t by sbuild/amd64 0.53
...
> jackwrapper.cpp:205: warning: no return statement in function returning 
> non-void
> g++ -c -o lashserverinterface.o -fPIC -DPIC -g -O2 -g -O2 -g -Wall -O2 
> `pkg-config --cflags gtkmm-2.4 lash-1.0 jack`  lashserverinterface.cpp
> lashserverinterface.cpp: In constructor 
> 'LASHServerInterface::LASHServerInterface(lash_args_t*, const std::string&, 
> int)':
> lashserverinterface.cpp:39: error: 'strdup' was not declared in this scope
> make[1]: *** [lashserverinterface.o] Error 1
> make[1]: Leaving directory `/build/tbm/glashctl-0.4.2'

--- lashserverinterface.cpp~2008-11-08 05:23:54.0 +
+++ lashserverinterface.cpp 2008-11-08 05:27:12.0 +
@@ -18,6 +18,7 @@
Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 /
 
+#include 
 #include 
 #include 
 #include 
--- wmdockicon.cpp~ 2008-11-08 05:32:25.0 +
+++ wmdockicon.cpp  2008-11-08 05:34:07.0 +
@@ -19,6 +19,7 @@
Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 /
 
+#include 
 #include 
 
 #include 

but now we get:

lashwrapper.hpp:35: error: conflicting declaration 'char*** argv'
lashwrapper.hpp:35: error: 'argv' has a previous declaration as 'int* argv'
main.cpp: In function 'int main(int, char**)':
main.cpp:63: error: no matching function for call to 
'LASHWrapper::LASHWrapper(int*, char***)'
lashwrapper.hpp:35: note: candidates are: LASHWrapper::LASHWrapper(int*)
lashwrapper.hpp:32: note: LASHWrapper::LASHWrapper(const 
LASHWrapper&)

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504935: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Martin Michlmayr
Package: swac-explore
Version: 0.2-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

> Automatic build of swac-explore_0.2-1 on em64t by sbuild/amd64 0.53
...
> g++ -DHAVE_CONFIG_H -I. -I..-D_REENTRANT -I/usr/include/gtkmm-2.4 
> -I/usr/lib/gtkmm-2.4/include -I/usr/include/glibmm-2.4 
> -I/usr/lib/glibmm-2.4/include -I/usr/include/gdkmm-2.4 
> -I/usr/lib/gdkmm-2.4/include -I/usr/include/pangomm-1.4 
> -I/usr/include/atkmm-1.6 -I/usr/include/gtk-2.0 -I/usr/include/sigc++-2.0 
> -I/usr/lib/sigc++-2.0/include -I/usr/include/glib-2.0 
> -I/usr/lib/glib-2.0/include -I/usr/lib/gtk-2.0/include 
> -I/usr/include/cairomm-1.0 -I/usr/include/pango-1.0 -I/usr/include/cairo 
> -I/usr/include/freetype2 -I/usr/include/directfb -I/usr/include/libpng12 
> -I/usr/include/pixman-1 -I/usr/include/atk-1.0   -pthread 
> -I/usr/include/gstreamer-0.10 -I/usr/include/glib-2.0 
> -I/usr/lib/glib-2.0/include -I/usr/include/libxml2   -g -O2 -MT posix.o -MD 
> -MP -MF .deps/posix.Tpo -c -o posix.o posix.cc
> posix.cc: In function 'bool list_subdirs(std::string, 
> std::list, 
> std::allocator >, std::allocator std::char_traits, std::allocator > > >*)':
> posix.cc:44: error: 'perror' was not declared in this scope
> make[3]: *** [posix.o] Error 1
> make[3]: Leaving directory `/build/tbm/swac-explore-0.2/src'

--- src/posix.cc~   2008-11-08 05:24:45.0 +
+++ src/posix.cc2008-11-08 05:25:20.0 +
@@ -23,6 +23,7 @@
 #include 
 #include 
 #include 
+#include 
 #include 
 #include 
 #include 

-- 
Martin Michlmayr
http://www.cyrius.com/



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



Bug#504936: I have to run rhythmbox twice in order to get it to start

2008-11-07 Thread Rafael Cunha de Almeida
Package: rhythmbox
Version: 0.11.6-1
Severity: normal

I run rhythmbox on rxvt and it just hangs there. While rhythmbox is hanging on
one window I open a new rxvt and I run it again, then rhythmbox starts. All
works fine and, when I close rhythmbox, the first instance of the program exits
with a 0 exit status.


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

Kernel: Linux 2.6.26-1-amd64 (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 rhythmbox depends on:
ii  dbus   1.2.1-4   simple interprocess messaging syst
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  gnome-icon-theme   2.22.0-1  GNOME Desktop icon theme
ii  gstreamer0.10-alsa [gs 0.10.19-2 GStreamer plugin for ALSA
ii  gstreamer0.10-gnomevfs 0.10.19-2 GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins- 0.10.19-2 GStreamer plugins from the "base" 
ii  gstreamer0.10-plugins- 0.10.8-4  GStreamer plugins from the "good" 
ii  gstreamer0.10-x0.10.19-2 GStreamer plugins for X11 and Pang
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libavahi-client3   0.6.22-3  Avahi client library
ii  libavahi-common3   0.6.22-3  Avahi common library
ii  libavahi-glib1 0.6.22-3  Avahi glib integration library
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6.1 The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libexpat1  2.0.1-4   XML parsing C library - runtime li
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgnome-keyring0  2.22.3-2  GNOME keyring services library
ii  libgnome-media02.22.0-3  runtime libraries for the GNOME me
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-2The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-5GNOME Virtual File System (runtime
ii  libgpod3   0.6.0-6   library to read and write songs an
ii  libgstreamer-plugins-b 0.10.19-2 GStreamer libraries from the "base
ii  libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libhal10.5.11-6  Hardware Abstraction Layer - share
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  liblircclient0 0.8.3-3   infra-red remote control support -
ii  libmtp70.2.6.1-3 Media Transfer Protocol (MTP) libr
ii  libmusicbrainz4c2a 2.1.5-2   Second generation incarnation of t
ii  libnautilus-burn4  2.20.0-1  Nautilus Burn Library - runtime ve
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  libnspr4-0d4.7.1-4   NetScape Portable Runtime Library
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsexy2   0.1.11-2+b1   collection of additional GTK+ widg
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libsoup2.4-1   2.4.1-2   an HTTP library implementation in 
ii  libtotem-plparser102.22.3-1  Totem Playlist Parser library - ru
ii  libusb-0.1-4   2:0.1.12-12   userspace USB programming library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxcb-render-util00.2.1+git1-1  utility libraries for X C Binding 
ii  libxcb-render0 1.1-1.1   X C Binding, render extension
ii  li

Bug#504849: [Debian-med-packaging] Bug#504849: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Charles Plessy
forwarded 504849 [EMAIL PROTECTED]
thanks

Hi all,

to save time and to minimize divergence, I propose to try to get the patch
accepted upstream before applying it by ourselves.

Have a nice day,

-- 
Charles



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



Bug#504934: ecryptfs-utils: Update ecryptfs-pam-doc.txt contents with "s/Confidential/Private/"

2008-11-07 Thread Osamu Aoki
Package: ecryptfs-utils
Version: 64-2
Severity: minor
Tags: patch

It looks like there were ecryptfs-setup-confidential (I see it on the
https://wiki.ubuntu.com/EncryptedPrivateDirectory under "Getting
Involved").  But current upstream and Debian ships with
ecryptfs-setup-private and uses ~/Private/ as the default mount point.

I think ecryptfs-utils/doc/ecryptfs-pam-doc.txt in the source needs to
be updated accordingly to reduce confusion.  I attach patch here.
Please forward this to upstream.

By the way, I do not see auth-client-config package in Debian.

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

Kernel: Linux 2.6.26-1-amd64 (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 ecryptfs-utils depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libecryptfs0  64-2   ecryptfs cryptographic filesystem 
ii  libgcrypt11   1.4.1-1LGPL Crypto library - runtime libr
ii  libgpg-error0 1.4-2  library for common error values an
ii  libgpgme111.1.6-2GPGME - GnuPG Made Easy
ii  libkeyutils1  1.2-9  Linux Key Management Utilities (li
ii  libpam0g  1.0.1-4+b1 Pluggable Authentication Modules l
ii  libpkcs11-helper1 1.05-1 library that simplifies the intera
ii  libssl0.9.8   0.9.8g-14  SSL shared libraries
ii  libtspi1  0.3.1-7open-source TCG Software Stack (li

ecryptfs-utils recommends no packages.

Versions of packages ecryptfs-utils suggests:
pn  auth-client-config (no description available)
ii  opencryptoki2.2.6+dfsg-5 PKCS#11 implementation for Linux (

-- no debconf information
--- ecryptfs-pam-doc.txt.orig	2008-11-08 13:15:07.0 +0900
+++ ecryptfs-pam-doc.txt	2008-11-08 13:15:51.0 +0900
@@ -7,11 +7,11 @@
 
 eCryptfs is set up in the Open Client to automatically mount on user
 login. The default mount is an overlay mount on top of
-~/Confidential/, and it uses a passphrase-based key.
+~/Private/, and it uses a passphrase-based key.
 
 eCryptfs requires that the user's mount passphrase be inserted into
 the user session keyring in order to access the files under the
-~/Confidential/ mount point. The mount passphrase is wrapped
+~/Private/ mount point. The mount passphrase is wrapped
 (encrypted) with the user's login passphrase and is stored in the
 ~/.ecryptfs/wrapped-passphrase file. When the user logs in, the
 eCryptfs PAM module intercepts the user's login passphrase, uses it to
@@ -21,7 +21,7 @@
 Once the user has logged in, his ~/.bash_profile script is executed by
 the Bash shell. A segment of code in ~/.bash_profile checks for the
 existence of a ~/.ecryptfs/auto-mount file. If this file exists, then
-code is executed to mount ~/Confidential/ via eCryptfs.
+code is executed to mount ~/Private/ via eCryptfs.
 
 When the user changes his login credentials, the eCryptfs PAM module
 unwraps the mount passphrase in ~/.ecryptfs/wrapped-passphrase with
@@ -38,7 +38,7 @@
 In order for these operations to complete successfully, the eCryptfs
 PAM module needs to be inserted into the PAM stack in
 /etc/pam.d/system-auth, an entry needs to be in /etc/fstab for the
-user's ~/Confidential/ directory, the ~/.ecryptfs/auto-mount and
+user's ~/Private/ directory, the ~/.ecryptfs/auto-mount and
 ~/.ecryptfs/wrapped-passphrase files need to exist, and the mount code
 needs to be in the user's ~/.bash_profile script.
 
@@ -75,7 +75,7 @@
 
 The following line needs to be added to /etc/fstab:
 
-/home/user/Confidential /home/user/Confidential ecryptfs rw,ecryptfs_sig=deadbeefbaadf00d,ecryptfs_cipher=aes,ecryptfs_key_bytes=16,user,noauto, 0 0
+/home/user/Private /home/user/Private ecryptfs rw,ecryptfs_sig=deadbeefbaadf00d,ecryptfs_cipher=aes,ecryptfs_key_bytes=16,user,noauto, 0 0
 
 Where 'user' is the username and 'deadbeefbaadf00d' is the mount
 passphrase signature/identifier value. This signature is in /etc/mtab
@@ -85,9 +85,9 @@
 ~/.bash_profile:
 
 if test -e $HOME/.ecryptfs/auto-mount; then
-  mount | grep "$HOME/Confidential type ecryptfs"
+  mount | grep "$HOME/Private type ecryptfs"
   if test $? != 0; then
-mount -i $HOME/Confidential
+mount -i $HOME/Private
   fi
 fi
 ecryptfs-zombie-kill
@@ -112,18 +112,18 @@
 
 Troubleshooting
 
-  Problem: The ~/Confidential/ directory is not being mounted on login.
-  Problem: The ~/Confidential/ directory is mounted on login, but
-  the files under the ~/Confidential/ directory cannot be read.
+  Problem: The ~/Private/ directory is not being mounted on login.
+  Problem: The ~/Private/ directory is mounted on login, but
+  the files under the ~/Private/ directory cannot be read.
 
  

Bug#504933: gnome-power-manager: changing screen brightness no longer works

2008-11-07 Thread Jerry Quinn
Package: gnome-power-manager
Version: 2.22.1-3
Severity: normal


At some point recently, I became unable to change the screen brightness on my 
T60p using Fn-Home and Fn-End.  The gui 
shows up and the slider moves left and right, but no brightness change when 
pressing the keys.


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

Kernel: Linux 2.6.26-1-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 gnome-power-manager depends on:
ii  dbus-x11   1.2.1-4   simple interprocess messaging syst
ii  gconf2 2.22.0-1  GNOME configuration database syste
ii  hal0.5.11-6  Hardware Abstraction Layer
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.22.0-1  The Bonobo UI library
ii  libc6  2.7-15GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6.1 The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.1-4   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.76-1simple interprocess messaging syst
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgnome-keyring0  2.22.3-2  GNOME keyring services library
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-2The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-5GNOME Virtual File System (runtime
ii  libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libhal10.5.11-6  Hardware Abstraction Layer - share
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2-0 2.20.3-5  library for GNOME Panel applets
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libwnck22  2.22.3-1  Window Navigator Construction Kit 
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxcb-render-util00.2.1+git1-1  utility libraries for X C Binding 
ii  libxcb-render0 1.1-1.1   X C Binding, render extension
ii  libxcb11.1-1.1   X C Binding
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 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   2:1.0.3-2 X11 Xinerama extension library
ii  libxml22.6.32.dfsg-4 GNOME XML library
ii  libxrandr2 2:1.2.3-1 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  notification-daemon0.3.7-1+b1a daemon that displays passive pop
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

gnome-power-manager recommends no packages.

gnome-power-manager suggests no packages.

-- no debconf information



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



Bug#502090: [python-setuptools] new upstream release (0.6c9)

2008-11-07 Thread Lukasz Szybalski
Can you upload this as soon as possible

this breaks any installation of tools like turbogears etc

There is a lot of people on turbogears who install via setuptools in
virtualenv and each of them experiences that error.

Please get the new version as soons as possibly can.

Thanks,
Lucas



-- 
Turbogears2 Manual
http://lucasmanual.com/mywiki/TurboGears2
Bazaar and Launchpad
http://lucasmanual.com/mywiki/bzr



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



Bug#504932: vym: Icon and .desktop file

2008-11-07 Thread Nathan Handler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: vym
Version: 1.12.1-1
Severity: normal
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu jaunty ubuntu-patch

In Ubuntu, we've applied the attached patch to achieve the following:

 * debian/vym.desktop
- Make .desktop file freedesktop compliant.
 * debian/dirs:
- Create /usr/share/pixmaps directory
 * debian/rules:
- Install icon.

We thought you might be interested in doing the same.

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

iEYEARECAAYFAkkVEusACgkQS7NiVFf3leg6XwCfWo3ERp6uEZtKuWboDRmiUKu3
1uoAnRDmVPBppTdXOSFhwT3bUkiZIs29
=3BqD
-END PGP SIGNATURE-


vym_1.12.1-1ubuntu1.debdiff
Description: Binary data


Bug#504585: Same problem

2008-11-07 Thread David Broome
I have the same problem on 64 bit.

This is frustrating because using the nvidia installer works with this xorg.


Bug#504832: FTBFS with GCC 4.4: #elif used instead of #else

2008-11-07 Thread Nathan Scott
On Fri, 2008-11-07 at 16:53 +0100, Martin Michlmayr wrote:
> Package: pcp
> Version: 2.7.4-20080507
> User: [EMAIL PROTECTED]
> Usertags: ftbfs-gcc-4.4
> Tags: patch

Thanks Martin!  Turns out this has been fixed "by proxy" in
the latest version of pcp - other changes in this file have
removed the conditional code here entirely.

I'll upload the new version in the not-too-distant-future.

cheers.

ps: G'day from .au, Martin!

--
Nathan




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



Bug#502405: approx: receives stale files when used from behind an transparent HTTP proxy

2008-11-07 Thread Neil Stockbridge

3.3.0~bpo40+2 is now installed but the problem still occurs.  Here is an 
example transcript:

$ sudo apt-get update
...
Reading package lists... Done
W: GPG error: http://debcache etch/volatile Release: The following signatures 
were invalid: BADSIG EC61E0B0BBE55AB3 Debian-Volatile Archive Automatic Signing 
Key (4.0/etch)
$
$ wget --no-cache 
http://ftp.nz.debian.org/debian-volatile/dists/etch/volatile/Release.gpg -O 
/dev/null
$ sudo apt-get update
...
Reading package lists... Done
$

(i.e. there was no problem on the second invocation of "apt-get update" - after 
the in-line proxy has had its copy refreshed)

This was the packet capture for the "apt-get update":
T 121.72.242.153:38377 -> 202.7.6.9:80 [AP]
  GET /debian-volatile/dists/etch/volatile/Release.gpg HTTP/1.1..User-Agent: 
curl/7.15.5 (i486-pc-linux-gnu) libcurl/7.15.5 OpenSSL/0.9.8c zlib/1.2.3 
libidn/0.6.5..H
  ost: ftp.nz.debian.org..Accept: */*..If-Modified-Since: Fri, 07 Nov 2008 
15:36:10 GMT
#
T 202.7.6.9:80 -> 121.72.242.153:38377 [AP]
  HTTP/1.1 304 Not Modified..Date: Fri, 07 Nov 2008 22:58:43 GMT..Server: 
Apache/1.3.34 (Debian)..Last-Modified: Fri, 07 Nov 2008 15:36:10 GMT..ETag: 
"10633e-bd-4914
  606a"..Accept-Ranges: bytes..Content-Type: text/plain; 
charset=iso-8859-1..Via: 1.1 bc3..Connection: Keep-Alive..Age: 558

..and this was the capture for the "wget" command:
T 121.72.242.153:55592 -> 202.7.6.9:80 [AP]
  GET /debian-volatile/dists/etch/volatile/Release.gpg HTTP/1.0..Pragma: 
no-cache..User-Agent: Wget/1.10.2..Accept: */*..Host: 
ftp.nz.debian.org..Connection: Keep-Al
  ive
##
T 202.7.6.9:80 -> 121.72.242.153:55592 [AP]
  HTTP/1.1 200 OK..Date: Sat, 08 Nov 2008 03:46:22 GMT..Server: Apache/1.3.34 
(Debian)..Last-Modified: Sat, 08 Nov 2008 02:06:11 GMT..ETag: 
"1062ca-bd-4914f413"..Acc
  ept-Ranges: bytes..Content-Type: text/plain; charset=iso-8859-1..Via: 1.1 
bc3..Content-Length: 189..Connection: Keep-Alive..Age: 0-BEGIN PGP 
SIGNATURE-
  .Version: GnuPG v1.4.6 
(GNU/Linux)..iD8DBQBJFPQT7GHgsLvlWrMRAlsCAJ9t4j3zyA1bd/3BbJ6Fa1RD73KyCQCghFn5.+RgwY8CnmsHlCweRDJQnB7E=.=bdqA.-END
 PGP SIGNATURE-.

Notice how curl uses no "Pragma: no-cache" header and is told that the remote 
file has not been changed yet when wget issues the same request to the same 
server moments later (but -using- a "Pragma: no-cache" header) it is given the 
latest contents of the file.

Thanks,




  

Bug#504931: reportbug gives errors when looking up bugs on openoffice.org-writer from experimental

2008-11-07 Thread Jake-Todd
Package: reportbug
Version: 3.46
Severity: important

When trying to fill out a bug report for openoffice-writer from experimental, I 
recieved tese errors:

Traceback (most recent call last):
  File "/usr/bin/reportbug", line 1827, in 
main()
  File "/usr/bin/reportbug", line 850, in main
return iface.user_interface()
  File "/usr/bin/reportbug", line 1386, in user_interface
version=pkgversion)
  File "/usr/share/reportbug/reportbuglib/reportbug_ui_text.py", line 513, in 
handle_bts_query
mirrors, http_proxy, screen, title)
  File "/usr/share/reportbug/reportbuglib/reportbug_ui_text.py", line 591, in 
browse_bugs
sys.stderr.write(line.decode('utf-8').encode(output_encoding, "replace"))
  File "/usr/lib/python2.5/encodings/utf_8.py", line 16, in decode
return codecs.utf_8_decode(input, errors, True)
UnicodeDecodeError: 'utf8' codec can't decode bytes in position 125-126: 
invalid data

All I was doing was trying to fill out a bug report for oo.o-writer.

-- Package-specific info:
** Environment settings:
INTERFACE="text"

** /home/jake/.reportbugrc:
reportbug_version "3.45"
mode standard
ui text
realname "Jake-Todd"
email "[EMAIL PROTECTED]"
no-cc
header "X-Debbugs-CC: [EMAIL PROTECTED]"
smtphost bugs.debian.org

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
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 reportbug depends on:
ii  apt   0.7.17 Advanced front-end for dpkg
ii  python2.5.2-3An interactive high-level object-o
di  python-central0.6.8  register and build utility for Pyt

reportbug recommends no packages.

Versions of packages reportbug suggests:
pn  debconf-utils  (no description available)
pn  debsums(no description available)
pn  dlocate(no description available)
di  file  4.26-1 Determines file type using "magic"
di  gnupg 1.4.9-3GNU privacy guard - a free PGP rep
pn  postfix | exim4 | mail-transp  (no description available)
pn  python-urwid   (no description available)

-- no debconf information



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



Bug#504930: ecryptfs-utils: copywrite file needs current download site

2008-11-07 Thread Osamu Aoki
Package: ecryptfs-utils
Version: 64-2
Severity: minor

When I was looking for what has changed from upstream 63 release to 64 release,
there was no annotation in your git repository or in changelog.Debian.gz other
than mentioning merging the upstream.  Your git repository for Debian package
is mentioned in control file but I see no pointer to this upstream site in
package.  

The real upstream download site should at least be mentiond in the copyright
file.   It now sites http://ecryptfs.sourceforge.net/ where only very old
source is located.

I assume this is:
git://git.kernel.org/pub/scm/linux/kernel/git/mhalcrow/ecryptfs-utils.git
http://www.kernel.org/pub/scm/linux/kernel/git/mhalcrow/ecryptfs-utils.git

Please document these current upstream information in the copyright file.

Also, it will be nice if you add upstream changelog generated from this
upstream git repository log/annotation and ship it as
/usr/share/doc/ecryptfs-utils/changelog .

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

Kernel: Linux 2.6.26-1-amd64 (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 ecryptfs-utils depends on:
ii  libc6 2.7-16 GNU C Library: Shared libraries
ii  libecryptfs0  64-2   ecryptfs cryptographic filesystem 
ii  libgcrypt11   1.4.1-1LGPL Crypto library - runtime libr
ii  libgpg-error0 1.4-2  library for common error values an
ii  libgpgme111.1.6-2GPGME - GnuPG Made Easy
ii  libkeyutils1  1.2-9  Linux Key Management Utilities (li
ii  libpam0g  1.0.1-4+b1 Pluggable Authentication Modules l
ii  libpkcs11-helper1 1.05-1 library that simplifies the intera
ii  libssl0.9.8   0.9.8g-14  SSL shared libraries
ii  libtspi1  0.3.1-7open-source TCG Software Stack (li

ecryptfs-utils recommends no packages.

Versions of packages ecryptfs-utils suggests:
pn  auth-client-config (no description available)
ii  opencryptoki2.2.6+dfsg-5 PKCS#11 implementation for Linux (

-- no debconf information



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



Bug#479381: linux-image-2.6.25-1-686: Booting pauses for about 30 seconds on Acer Aspire 5710Z

2008-11-07 Thread Sebastian Krause
Moritz Muehlenhoff wrote:
> On Fri, May 09, 2008 at 12:08:25AM +0200, maximilian attems wrote:
>> On Sun, 04 May 2008, Sebastian Krause wrote:
>>> Since the interval is "heartbeat=30 sec" and also the pause is always
>>> about 30 seconds long, there might be a connection. The problem happens
>>> on an Acer Aspire 5710Z laptop.
>> please report that upstream on bugzilla.kernel.org and let us know the
>> bug number.
> 
> Sebastian, does the problem still persist with the Lenny kernel?
> If so, did you file the kernel.org bug report as suggested by Maks?

Yes, I did file the bug on kernel.org:
http://bugzilla.kernel.org/show_bug.cgi?id=10728

Unfortunately I cannot test this issue anymore since I've changed my
laptop since then and in my current laptop there are no such problems.

I did what Andrew Morton suggested in my bug report there. However, it
couldn't help find the cause since the pause doesn't happen when the
kernel boots up, but when init has been running for quite a bit already.
 In the end I wasn't even sure anymore if this was actually a kernel bug
or maybe something with udev, as some comments by Marco Piazza suggested
in the upstream bug report.

If I'm the only one who had this problem, I'm fine with simply closing
this bug report. For me the bug got fixed by buying a new laptop. ;)

Sebastian



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



Bug#504929: balazar3-2d: Missing Depends on python-soya

2008-11-07 Thread Edward Allcutt
Package: balazar3-2d
Version: 0.1-2
Severity: grave
Justification: renders package unusable

On running balazar3 I get the following output:

* Balazar 3 * Balazar 3 lives in /usr/share/games
* Balazar 3 * (Psyco not found; if you are using an x86 processor, installing 
psyco can speed up Balazar 3)
Traceback (most recent call last):
  File "/usr/games/balazar3", line 125, in 
from balazar3.game import *
  File "/usr/share/games/balazar3/game.py", line 24, in 
exec "import balazar3.driver_%s as driver" % globdef.DRIVER
  File "", line 1, in 
  File "/usr/share/games/balazar3/driver_3d.py", line 19, in 
import soya, soya.gui, soya.opengl as opengl, soya.label3d as label3d
ImportError: No module named soya

After manually installing python-soya it complains "ImportError: No module 
named gui" instead. The python-soya package I have (0.13.2-5) does not appear 
to have a gui module. Perhaps a versioned depends is necessary?

The balazar3-3d package depends on python-soya but balazar3-2d does not.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (800, 'unstable'), (700, 'experimental')
Architecture: i386 (i686)

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

Versions of packages balazar3-2d depends on:
ii  balazar3-common 0.1-2dungeon adventure game with multip
ii  python-pygame   1.7.1release-4.2 SDL bindings for games development

balazar3-2d recommends no packages.

balazar3-2d suggests no packages.

-- no debconf information



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



Bug#394132: Ubuntu Patch

2008-11-07 Thread Nathan Handler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello,

This bug has been patched in Ubuntu since version 4.6-1.2ubuntu1. I am
attaching the patch that we currently use. Hopefully, this bug will be
patched in Debian so that we can sync scponly again.

Thanks,
Nathan Handler
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAkkVBGAACgkQS7NiVFf3lehOOACfeUBRNEuJhwfVtZ4jq5u6Y5Aw
ZBcAn23JKX8SxwAlw3ctPGGUyIMAmczE
=3MhR
-END PGP SIGNATURE-


scponly_4.6-1.4ubuntu1.debdiff
Description: Binary data


Bug#504928: Does not honour /lib/firmware/KERNELRELEASE directory layout

2008-11-07 Thread Christian Schulte
Package: udev
Version: 0.105-4
Severity: normal
Tags: patch

Hi,

please see Debian bug #492516 of package kernel-package. Since version
11.0011 (lenny) kernel-package puts firmware blobs in a sub-directory of
/lib/firmware based on the kernel release. This is due to changes in
upstream kernels >= 2.6.27. I think /lib/udev/hotplug.functions needs
updating to support this new directory structure. Something as shown below.
I am not quite sure if this introduces problems in an initramfs image when
there is no busybox available (e.g. /etc/initramfs-tools/initramfs.conf has
BUSYBOX=n). So maybe there needs to be some kind of warning during an upgrade
that busybox is required (at least for uname - not shure about echo).

--- hotplug.functions.original  2008-11-08 01:54:01.668017037 +0100
+++ hotplug.functions   2008-11-08 01:54:30.165029505 +0100
@@ -5,7 +5,7 @@

 #EVENTS_LOG='/dev/hotplug.log'

-FIRMWARE_DIRS='/lib/firmware /usr/local/lib/firmware /usr/lib/hotplug/firmware'
+FIRMWARE_DIRS="/lib/firmware/`uname -r` /lib/firmware /usr/local/lib/firmware 
/usr/lib/hotplug/firmware"

 EVENTS_DIR='/dev/.events'




-- Package-specific info:
-- /etc/udev/rules.d/:
/etc/udev/rules.d/:
insgesamt 12
lrwxrwxrwx 1 root root  20 2008-06-28 18:08 020_permissions.rules -> 
../permissions.rules
lrwxrwxrwx 1 root root  19 2008-06-28 18:55 025_libgphoto2.rules -> 
../libgphoto2.rules
lrwxrwxrwx 1 root root  16 2008-06-28 18:55 025_libsane.rules -> 
../libsane.rules
lrwxrwxrwx 1 root root  22 2008-08-31 05:45 025_logitechmouse.rules -> 
../logitechmouse.rules
lrwxrwxrwx 1 root root  15 2008-06-28 18:09 85-pcmcia.rules -> ../pcmcia.rules
lrwxrwxrwx 1 root root  13 2008-06-28 18:08 udev.rules -> ../udev.rules
lrwxrwxrwx 1 root root  25 2008-06-28 18:08 z20_persistent-input.rules -> 
../persistent-input.rules
lrwxrwxrwx 1 root root  19 2008-06-28 18:08 z20_persistent.rules -> 
../persistent.rules
-rw-r--r-- 1 root root 700 2008-06-28 18:08 z25_persistent-cd.rules
-rw-r--r-- 1 root root 635 2008-06-28 19:43 z25_persistent-net.rules
lrwxrwxrwx 1 root root  33 2008-06-28 18:08 z45_persistent-net-generator.rules 
-> ../persistent-net-generator.rules
lrwxrwxrwx 1 root root  12 2008-06-28 18:08 z50_run.rules -> ../run.rules
lrwxrwxrwx 1 root root  16 2008-06-28 18:08 z55_hotplug.rules -> 
../hotplug.rules
lrwxrwxrwx 1 root root  19 2008-06-28 18:54 z60_alsa-utils.rules -> 
../alsa-utils.rules
-rw-r--r-- 1 root root 533 2008-06-19 07:24 z60_edac-utils.rules
lrwxrwxrwx 1 root root  15 2008-06-28 18:54 z60_hdparm.rules -> ../hdparm.rules
lrwxrwxrwx 1 root root  20 2008-08-29 04:36 z60_xen-backend.rules -> 
../xen-backend.rules
lrwxrwxrwx 1 root root  33 2008-06-28 18:52 z60_xserver-xorg-input-wacom.rules 
-> ../xserver-xorg-input-wacom.rules
lrwxrwxrwx 1 root root  29 2008-06-28 18:08 z75_cd-aliases-generator.rules -> 
../cd-aliases-generator.rules
lrwxrwxrwx 1 root root  12 2008-07-28 22:09 z99_hal.rules -> ../hal.rules

-- /sys/:
/sys/block/hda/dev
/sys/block/loop0/dev
/sys/block/loop1/dev
/sys/block/loop2/dev
/sys/block/loop3/dev
/sys/block/loop4/dev
/sys/block/loop5/dev
/sys/block/loop6/dev
/sys/block/loop7/dev
/sys/block/ram0/dev
/sys/block/ram10/dev
/sys/block/ram11/dev
/sys/block/ram12/dev
/sys/block/ram13/dev
/sys/block/ram14/dev
/sys/block/ram15/dev
/sys/block/ram1/dev
/sys/block/ram2/dev
/sys/block/ram3/dev
/sys/block/ram4/dev
/sys/block/ram5/dev
/sys/block/ram6/dev
/sys/block/ram7/dev
/sys/block/ram8/dev
/sys/block/ram9/dev
/sys/block/sda/dev
/sys/block/sda/sda1/dev
/sys/block/sda/sda2/dev
/sys/block/sda/sda5/dev
/sys/class/bsg/0:0:0:0/dev
/sys/class/graphics/fb0/dev
/sys/class/hidraw/hidraw0/dev
/sys/class/input/input0/event0/dev
/sys/class/input/input10/event10/dev
/sys/class/input/input10/mouse2/dev
/sys/class/input/input1/event1/dev
/sys/class/input/input2/event2/dev
/sys/class/input/input2/mouse0/dev
/sys/class/input/input3/event3/dev
/sys/class/input/input4/event4/dev
/sys/class/input/input5/event5/dev
/sys/class/input/input6/event6/dev
/sys/class/input/input7/event7/dev
/sys/class/input/input7/mouse1/dev
/sys/class/input/input8/event8/dev
/sys/class/input/input9/event9/dev
/sys/class/input/mice/dev
/sys/class/misc/cpu_dma_latency/dev
/sys/class/misc/device-mapper/dev
/sys/class/misc/hpet/dev
/sys/class/misc/network_latency/dev
/sys/class/misc/network_throughput/dev
/sys/class/misc/nvram/dev
/sys/class/misc/psaux/dev
/sys/class/misc/snapshot/dev
/sys/class/misc/uinput/dev
/sys/class/misc/watchdog/dev
/sys/class/rtc/rtc0/dev
/sys/class/sound/controlC0/dev
/sys/class/sound/pcmC0D0c/dev
/sys/class/sound/pcmC0D0p/dev
/sys/class/sound/pcmC0D1p/dev
/sys/class/sound/seq/dev
/sys/class/sound/timer/dev
/sys/class/usb_device/usbdev1.1/dev
/sys/class/usb_device/usbdev2.1/dev
/sys/class/usb_device/usbdev3.1/dev
/sys/class/usb_device/usbdev4.1/dev
/sys/class/usb_device/usbdev4.2/dev
/sys/class/usb_device/usbdev5.1/dev
/sys/class/usb_device/usbdev5.2/dev
/sys/class/usb_device/usbdev5.3/dev
/sys/class/usb_endpoint/usbdev1.1_ep00/dev
/sys/

Bug#504876: Fwd: Bug#504876: recoll: The copy/paste buffer does not work

2008-11-07 Thread Kartik Mistry
forwarded 504876 "Jean-Francois Dockes" <[EMAIL PROTECTED]>
thanks

Thanks for bug report, Alex.

I am forwarding mail to upstream.

~ Kartik


-- Forwarded message --
From: Alex <[EMAIL PROTECTED]>
Date: Sat, Nov 8, 2008 at 12:27 AM
Subject: Bug#504876: recoll: The copy/paste buffer does not work
To: Debian Bug Tracking System <[EMAIL PROTECTED]>


Package: recoll
Version: 1.10.6-1
Severity: normal

The "copy url" and "copy file name" do not work in Recoll.
How to reproduce:
Search for something in recoll such that there is at least one search
result. Go to one of the results, and right click on the "Open" link
and select "Copy File Name". Now with Ctrl+V or a contextual menu try
to paste the name of the file. Observe that the old contents of the
copy/paste buffer are used.


-- System Information:
Debian Release: lenny/sid
 APT prefers testing
 APT policy: (650, 'testing'), (600, 'unstable'), (200, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.26-1-amd64 (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 recoll depends on:
ii  libc6  2.7-16GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1 GCC support library
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime v
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxapian151.0.7-4   Search engine library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

Versions of packages recoll recommends:
ii  aspell0.60.6-1   GNU Aspell spell-checker

Versions of packages recoll suggests:
pn  antiword   (no description available)
pn  catdoc (no description available)
ii  ghostscript  8.62.dfsg.1-3.1 The GPL Ghostscript PostScript/PDF
ii  poppler-utils0.8.7-1 PDF utilitites (based on libpopple
pn  unrtf  (no description available)
pn  xpdf   (no description available)

-- no debconf information






-- 
 Cheers,
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 Homepage: people.debian.org/~kartik
 Blog.en: ftbfs.wordpress.com
 Blog.gu: kartikm.wordpress.com



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



Bug#504927: sofa-tutorials: sofa.1.gz also in sofa-apps

2008-11-07 Thread Arndt Heuvel
Package: sofa-tutorials
Version: 1.0~beta3-1
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

dpkg: Fehler beim Bearbeiten von 
/var/cache/apt/archives/sofa-tutorials_1.0~beta3-2_all.deb (--unpack):
 Versuche, »/usr/share/man/man1/sofa.1.gz« zu überschreiben, welches auch in 
Paket sofa-apps ist


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

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

- -- no debconf information

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

iEYEARECAAYFAkkU/IMACgkQpccU9HjlKZ+q8QCfaHLG7kAwJtbiYbusIvm/U3GP
wjAAnAsOM5OvSLvLruef8I2DA/g0Ny5n
=i44F
-END PGP SIGNATURE-



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



Bug#460672: RFP: pymills -- James Mills Python Library

2008-11-07 Thread Kartik Mistry
On Fri, Nov 7, 2008 at 9:37 PM, Sandro Tosi <[EMAIL PROTECTED]> wrote:
>> Library looks nice. Someone should package it :)
>
> I'll package it instead of pymills.

Thanks a lot.

-- 
 Cheers,
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 Homepage: people.debian.org/~kartik
 Blog.en: ftbfs.wordpress.com
 Blog.gu: kartikm.wordpress.com



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



Bug#481478: [linux-image-2.6.25-2-686] invalid opcode

2008-11-07 Thread Ben Hutchings
The oops points to the following assertion in iput:

BUG_ON(inode->i_state == I_CLEAR);

which indicates a double-free.  That was probably introduced by:

commit 430e285e0817e3e18aadd814bc078d50d8af0cbf
Author: Dave Hansen <[EMAIL PROTECTED]>
Date:   Fri Feb 15 14:37:26 2008 -0800

[PATCH] fix up new filp allocators

Some new uses of get_empty_filp() have crept in; switched
to alloc_file() to make sure that pieces of initialization
won't be missing.

We really need to kill get_empty_filp().

[AV] fixed dentry leak on failure exit in anon_inode_getfd()

and fixed by:

commit ed1524371716466e9c762808b02601d0d0276a92
Author: Al Viro <[EMAIL PROTECTED]>
Date:   Tue Apr 22 19:51:27 2008 -0400

[PATCH] double-free of inode on alloc_file() failure exit in 
create_write_pipe()

Duh...  Fortunately, the bug is quite recent (post-2.6.25) and, 
embarrassingly,
mine ;-/

Signed-off-by: Al Viro <[EMAIL PROTECTED]>

between 2.6.25 and 2.6.26.  So I think this can be closed with version
2.6.26-1 (if not earlier).

Ben.



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


Bug#504910: FTBFS with GCC 4.4: missing #include

2008-11-07 Thread Leigh L. Klotz, Jr WA5ZNU

It might be better to move to the fldigi 3 series.
Dave is the original developer and I believe Hamish has been maintaining 
debian ports.

Leigh/WA5ZNU

Martin Michlmayr wrote:

Package: fldigi
Version: 2.10.3-1
User: [EMAIL PROTECTED]
Usertags: ftbfs-gcc-4.4
Tags: patch

Your package fails to build with the upcoming GCC 4.4.  Version 4.4
has not been released yet but I'm building with a snapshot in order
to find errors and give people an advance warning.

GCC 4.4 cleaned up some more C++ headers.  You always have to #include
headers directly and cannot rely for things to be included indirectly.

You can reproduce this problem with gcc-snapshot from unstable.

  

Automatic build of fldigi_2.10.3-1 on em64t by sbuild/amd64 0.53


...
  

g++ -DHAVE_CONFIG_H -I.  -I. -I./include -I./irrxml  -DNDEBUG   -pthread   
-I/usr/include/freetype2 -D_THREAD_SAFE -D_REENTRANT -pipe -Wall -O2 
-ffast-math -fexceptions -finline-functions -g -O2 -MT font_browser.o -MD -MP 
-MF .deps/font_browser.Tpo -c -o font_browser.o `test -f 
'dialogs/font_browser.cxx' || echo './'`dialogs/font_browser.cxx
dialogs/font_browser.cxx: In constructor 'Font_Browser::Font_Browser(const 
char*)':
dialogs/font_browser.cxx:196: error: 'snprintf' was not declared in this scope
make[3]: *** [font_browser.o] Error 1
make[3]: Leaving directory `/build/tbm/fldigi-2.10.3/src'
make[2]: *** [all] Error 2



--- src/dialogs/font_browser.cxx~   2008-11-07 21:11:38.0 +
+++ src/dialogs/font_browser.cxx2008-11-07 21:11:43.0 +
@@ -30,6 +30,7 @@
 #include 
 
 #include 

+#include 
 #include 
 #include 
 

  





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



Bug#482361: mk-build-deps: don't use equivs

2008-11-07 Thread Peter Samuelson

> On Thu, Nov 06, 2008 at 12:34:26PM -0300, Felipe Sateler wrote:
> > Equivs uses debhelper (for reasons I do not know, seems completely
> > overkill for me), which means it is much slower than building a
> > bare package manually.

As the equivs maintainer, I'm intrigued: is this actually noticeable
enough to be annoying to you?  It never even occurred to me that it
would be better for equivs to construct packages without debhelper
because of speed.  debhelper does take some burden off its users in
terms of keeping up with Policy compliance issues, and it makes the
template files pretty readable.

[Patrick Schoenfeld]
> Personally I don't think that "much faster" is of much relevance for a
> tool that takes about 2-3 seconds and is used max some times a day.

Makes me wonder, though, if people really do find equivs too slow.
-- 
Peter Samuelson | org-tld!p12n!peter | http://p12n.org/


signature.asc
Description: Digital signature


Bug#504922: Lenny install on Dell Inspiron 7500

2008-11-07 Thread Otavio Salvador
Nan & Ron <[EMAIL PROTECTED]> writes:

> I’ve searched the web and Debian docs and can’t find a solution. My
> intent is to download a new netinst CD and try again. If the hung
> reboot persists, I’ll try Etch. Do you have any advice for me?

Hello,

Please try the image available at
http://cdimage.debian.org/cdimage/.lenny_rc1/

This is based in the proposed RC1 installer that will be released next
week. Your feedback on this is very much appreciated since will give
us a good feedback about our state. If possible try your 4 use cases
to see how they behave this time.

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://otavio.ossystems.com.br
-
"Microsoft sells you Windows ... Linux gives
 you the whole house."



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



Bug#504699: (no subject)

2008-11-07 Thread Paul LeoNerd Evans
On Fri, Nov 07, 2008 at 05:49:14PM -0500, Michael Kerrisk wrote:
> How would folk feel about the addition of the following test under
> NOTES?  Are the staments about x86-64 accurate?
> 
>On architectures where int and pointer types are the same
>size  (e.g.,  x86-32,  where both types are 32 bits), you
>may be able to get away with passing  pointers  as  argu-
>ments  to  makecontext()  following argc.  However, doing
>this is not  guaranteed  to  be  portable,  is  undefined
>according  to  the standards, and won't work on architec-
>tures where pointers are larger than ints.  Nevertheless,
>starting  with  version  2.8  glibc makes some changes to
>makecontext(3), to permit this on some  64-bit  architec-
>tures (e.g., x86-64).

That looks good to me. I'd be happy with that.

-- 
Paul "LeoNerd" Evans

[EMAIL PROTECTED]
ICQ# 4135350   |  Registered Linux# 179460
http://www.leonerd.org.uk/


signature.asc
Description: Digital signature


Bug#497623: Fixed in 2.6.26-9 (sid)

2008-11-07 Thread Helle
According to the Changelog, bug #479709 and my own tests I believe this 
bug can be closed.

Hopefully we will get this fix in Lenny too.


Thanks
Helle



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



Bug#504925: Incorrect path in nethack manual

2008-11-07 Thread Iain Lane
Package: nethack
Version: 3.4.3-10.6
Severity: minor
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu jaunty ubuntu-patch

Hi,

In Ubuntu, we noticed that there is still an incorrect path in the
Debian shipping version of 04_manpage_paths.dpatch. I've attached a
patch to fix this for your consideration.

Thanks,
Iain

-- System Information:
Debian Release: lenny/sid
  APT prefers intrepid-updates
  APT policy: (500, 'intrepid-updates'), (500, 'intrepid-security'), (500, 
'intrepid-proposed'), (500, 'intrepid-backports'), (500, 'intrepid')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.27-7-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u nethack-3.4.3/debian/patches/04_manpage_paths.dpatch 
nethack-3.4.3/debian/patches/04_manpage_paths.dpatch
--- nethack-3.4.3/debian/patches/04_manpage_paths.dpatch
+++ nethack-3.4.3/debian/patches/04_manpage_paths.dpatch
@@ -42,6 +42,15 @@
  This option is usually only useful to the game administrator.
  The playground must contain several auxiliary files such as help files,
  the list of top scorers, and a subdirectory
+@@ -222,7 +223,7 @@
+ distinction, as he may eventually release a new version of his own.
+ .SH FILES
+ .PP
+-All files are in the playground, normally /usr/games/lib/nethackdir.
++All files are in the playground, normally /usr/lib/games/nethack.
+ If DLB was defined during the compile, the data files and special levels
+ will be inside a larger file, normally nhdat, instead of being separate
+ files.
 @@ -283,7 +284,7 @@
  .br
  MAILREADERReplacement for default reader
only in patch2:
unchanged:


Bug#504924: nethack-x11 and nethack-qt should provide desktop files

2008-11-07 Thread Iain Lane
Package: nethack
Version: 3.4.3-10.6
Severity: wishlist
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu jaunty ubuntu-patch


Hi,

nethack-x11 and nethack-qt currently don't provide desktop files. In
Ubuntu, we've developed patches to add these in. I'm attaching them here
for your consideration.

Thanks,
Iain

-- System Information:
Debian Release: lenny/sid
  APT prefers intrepid-updates
  APT policy: (500, 'intrepid-updates'), (500, 'intrepid-security'), (500, 
'intrepid-proposed'), (500, 'intrepid-backports'), (500, 'intrepid')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.27-7-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u nethack-3.4.3/debian/rules nethack-3.4.3/debian/rules
--- nethack-3.4.3/debian/rules
+++ nethack-3.4.3/debian/rules
@@ -138,6 +141,7 @@
dh_testroot
dh_installdocs -a -A debian/README.Debian README.menucolor
dh_installdocs -pnethack-common debian/README.patches
+   dh_install
dh_installmenu -a
dh_installdebconf -pnethack-common
dh_installexamples -pnethack-x11 debian/x11/NetHack.ad
--- nethack-3.4.3.orig/debian/nethack-x11.install
+++ nethack-3.4.3/debian/nethack-x11.install
@@ -0,0 +1 @@
+debian/nethack-x11.desktop usr/share/applications
only in patch2:
unchanged:
--- nethack-3.4.3.orig/debian/nethack-x11.desktop
+++ nethack-3.4.3/debian/nethack-x11.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=X NetHack
+GenericName=NetHack (X interface)
+Comment=
+Icon=nethack
+Exec=/usr/games/xnethack
+Terminal=false
+Categories=Application;Game;AdventureGame;
only in patch2:
unchanged:
--- nethack-3.4.3.orig/debian/nethack-qt.install
+++ nethack-3.4.3/debian/nethack-qt.install
@@ -0,0 +1 @@
+debian/nethack-qt.desktop usr/share/applications
only in patch2:
unchanged:
--- nethack-3.4.3.orig/debian/nethack-qt.desktop
+++ nethack-3.4.3/debian/nethack-qt.desktop
@@ -0,0 +1,10 @@
+[Desktop Entry]
+Type=Application
+Encoding=UTF-8
+Name=Qt NetHack
+GenericName=NetHack (Qt interface)
+Comment=
+Icon=nethack
+Exec=/usr/games/nethack-qt
+Terminal=false
+Categories=Application;Game;AdventureGame;


Bug#504167: linux-2.6 - regression: fails to unblank on resume

2008-11-07 Thread Olivier Crête
I think this is the same as

http://bugzilla.kernel.org/show_bug.cgi?id=11978
https://bugs.gentoo.org/show_bug.cgi?id=245927

-- 
Olivier Crête
[EMAIL PROTECTED]


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


Bug#420075: Icon available

2008-11-07 Thread Luca Falavigna
You can find a icon here: https://launchpad.net/bugs/173151.
Thanks.



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



Bug#497224: your mail

2008-11-07 Thread Moritz Muehlenhoff
On Sun, Aug 31, 2008 at 04:37:05PM -0400, michael iannacci wrote:
> Thank you for your reply, Bastian, but adding "hpet=disable" in the
> Kernel command line at start-up didn't make any difference.
> I see that there is already an update which is supposed to take care of
> this problem in Sid, so I guess I'll wait and see what happens when that
> makes it into Lenny.

Does it work with the current Lenny kernel?

Cheers,
Moritz



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



Bug#504923: /usr/lib/games/nethack/recover needs to be setgid games

2008-11-07 Thread Iain Lane
Package: nethack
Version: 3.4.3-10.6
Severity: normal
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu jaunty ubuntu-patch


Hi,

The binary /usr/lib/games/nethack/recover should be setgid games in
order to be able to access the savegame files. This was reported on
Launchpad at [0] by Jeff Bailey.

I've attached a patch to fix this issue for your consideration.

Thanks,
Iain

[0] https://bugs.launchpad.net/ubuntu/+source/nethack/+bug/196380

-- System Information:
Debian Release: lenny/sid
  APT prefers intrepid-updates
  APT policy: (500, 'intrepid-updates'), (500, 'intrepid-security'), (500, 
'intrepid-proposed'), (500, 'intrepid-backports'), (500, 'intrepid')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.27-7-generic (SMP w/2 CPU cores)
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
diff -u nethack-3.4.3/debian/rules nethack-3.4.3/debian/rules
--- nethack-3.4.3/debian/rules
+++ nethack-3.4.3/debian/rules
@@ -107,6 +107,9 @@
debian/nethack-common/usr/lib/games/nethack/$$prg; \
done
 
+   # recover needs to be setgid games
+   chmod g+s debian/nethack-common/usr/lib/games/nethack/recover
+
# all shell scripts, nethack binaries, overrides, and nethackrcs
for flavor in $(TARGETS); do \
  install -m 0755 -o root -g games debian/$$flavor/nethack.sh \


Bug#494252: wrong data byte #54, sun happy meal, 4gb ram

2008-11-07 Thread Moritz Muehlenhoff
On Fri, Aug 08, 2008 at 03:18:50AM +0200, Jerzy Kowalik wrote:
> Package: linux-image-2.6-amd64
> Version:  2.6.18+6etch3
> 
> I have asus P5wdg2 WS motherboard and two Sun 4 port ethetnet card (sunhme.ko 
> module)
> Everything work fine if memory is 2GB, when I upgerade to 4 GB network card 
> don't working 
> from another host I recive wrong data byte #54 . and networking is broken 
> (no communications)
> I try with anothet 4 port pci-X card ANA-62044 (novell card) and its work 
> with 2, 4, 8 GB fine
> 
> Its kernel  2.6.18+6etch3 is stable ???
> I try etch an a half kernel 2.6.24 and still same problem 
> 
> It is some chance to resolve this problem, broken module I suppose,

Could you try to build a current 2.6.28-rcX kernel? If it's still
reproducable, please file a bug at http://bugzilla.kernel.org and
tell us the bug number.

Cheers,
Moritz



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



Bug#492874: linux-image-2.6.25-2-amd64: EXT4-fs error (...): ext4_mb_generate_buddy: ...

2008-11-07 Thread Moritz Muehlenhoff
On Tue, Jul 29, 2008 at 04:42:21PM +0200, florian kriener wrote:
> Package: linux-image-2.6.25-2-amd64
> Version: 2.6.25-7
> Severity: normal
> 
> 
> I'm using ext4 on a lvm volume mounted in /var/cache/apt/archives. And
> it sometimes happens that I cannot install a package because the .deb
> file is corrupted. When that happens dmesg shows something like this:

Please try to reproduce this with a 2.6.28-rcX kernel and if it's
still reproducable, please report a bug at bugzilla.kernel.org.
ext4 is still experimental.

Cheers,
Moritz



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



Bug#504922: Lenny install on Dell Inspiron 7500

2008-11-07 Thread Nan & Ron

Package: installation-reports

Boot method: 

Image version: 


Date: 

Machine: 

Processor: 

Memory: <192 MB>

Partitions: with separate /home>


#1 primary 3.4 GB B f ext3 /
#5 logical 435.9 MB f swap swap
#6 logical 8.3 GB f ext3 /home

Output of lspci -knn (or lspci -nn): or where to find it>


Base System Installation Checklist:

[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot: [O]

Detect network card: [O]

Configure network: [O]

Detect CD: [O]

Load installer modules: [O]

Detect hard drives: [O]

Partition hard drives: [O]

Install base system: [O]

Clock/timezone setup: [O]

User/password setup: [O]

Install tasks: [O]

Install boot loader: [E]

Overall install: [O]

Comments/Problems:

1. Initially, the network didn’t install because I didn’t connect it 
until the HD was reformatted since the original MSWindows operating 
system was so full of viruses that the computer could have compromised 
our home network. Subsequently, I found that escape would bring up the 
main install menu (is this an undocumented feature, or just something I 
didn’t realize?) and I connected the network late in the install. GRUB 
installed. The computer booted OK from the HD, but it could not find 
Icedove on the CU-Denver mirror, probably because the late installation 
of the network. I could use the command line to move around files and 
vim to modify the sources list.


2. Tried a reinstall with Purdue mirror and standard system. This 
install went OK through 177 downloaded files, but GRUB would not 
install. Installed LILO and it seemed to work. I think it downloaded 
Icedove with aptitude, but I couldn’t find the package or make anything 
work except the command line.


3. Tried a reinstall with primary (Debian) mirror and one partition to 
try to fix GRUB. Installed laptop plus standard, downloading 233 files. 
GRUB still would not install. Used LILO. Still couldn’t find Icedove, 
but command line worked.


4. Did a reinstall with primary mirror and separate /home partition 
again. Downloaded 233 files. This time GRUB installed! However, the 
reboot from the HD hung at “Saving VESA state…”.


5. Repeated the install as in 4 above. Same result, hung at same place 
on reboot. At least I finally have a reproducible problem and consistent 
results with GRUB. But I can’t even get to the command line now, whereas 
I could before.


I’ve searched the web and Debian docs and can’t find a solution. My 
intent is to download a new netinst CD and try again. If the hung reboot 
persists, I’ll try Etch. Do you have any advice for me?


Ron Schwiesow

[EMAIL PROTECTED]




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



Bug#493832: ath5k disconnects regularly and has poor performance

2008-11-07 Thread Moritz Muehlenhoff
On Tue, Aug 05, 2008 at 10:44:05AM +0200, koshmar wrote:
> Package: linux-image-2.6.26-1-686
> Version: 2.6.26-1
> Severity: normal
>
>
> I use kernel's ath5k driver for my Atheros AR5413 based card. I'm always 
> quite close to the AP, and iwconfig shows "Signal level=-57 dBm". Despite 
> of it, the card often disconnects (about once in 10 min.) and reconnects 
> again, and always works with bitrates like 1-9 Mbit/s. Trying to higher 
> bitrate manually I get connection loss. This is not happening when I use 
> madwifi (with 2.6.25-2-686 kernel). The antenna in both AP and station is 
> OK, and other cards work OK with this AP, and mine also when using 
> Windows (as MadWifi has other annoying bug, though is usable anyway).

Could you retry with the current kernel from Lenny? It has at least one
ath5k bugfix from the 2.6.26.x stable series included.

Cheers,
Moritz



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



Bug#504921: Implement matchbox-keyboard-toggle --help

2008-11-07 Thread jidanni
Package: matchbox-keyboard
Version: 0.1+svn20080916-1
Severity: wishlist

# man matchbox-keyboard-toggle
No manual entry for matchbox-keyboard-toggle
See 'man 7 undocumented' for help when manual pages are not available.
# matchbox-keyboard-toggle --help
Which doesn't do what one expects.



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



Bug#489470: linux-image-2.6.25-2-amd64: pciehp stops working in 2.5.25, worked in 2.6.24

2008-11-07 Thread Moritz Muehlenhoff
On Sun, Jul 06, 2008 at 04:44:17AM +0200, Marc Lehmann wrote:
> Package: linux-image-2.6.25-2-amd64
> Version: 2.6.25-6
> Severity: normal
> 
> 
> pciehp stopped working after upgrading to 2.6.25.

Does this error still occur with the current kernel from Lenny?

Cheers,
Moritz



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



Bug#491355: Laptop intermittent freeze after upgrade to linux-image-2.6.25-2-amd64

2008-11-07 Thread Moritz Muehlenhoff
On Fri, Jul 18, 2008 at 01:36:48PM -0700, ben grindy wrote:
> Package: linux-image-2.6.25-2-amd64
> Version: 2.6.25-6
> Severity: normal
> 
> While running my Dell Latitude D830 on battery, after ~30 seconds of not 
> using the mouse or keyboard, attempting to move the mouse will result in a 
> series of 2-second pauses, with about 1/4 second of activity between them (2 
> second pause, pointer jumps, 2 second pause, pointer jumps).  After two or 
> three of these intermittent pauses, the computer will respond normally until 
> the keyboard/mouse is left for ~30 seconds.
> 
> I first noticed this while listening to music, since anytime after the ~30 
> second mark, the last played sample will loop infinitely until there is 
> keyboard/mouse activity. 
> 
> I have encountered this issue on a number of distributions, but not Debian 
> until this latest kernel upgrade.  I was running 2.6.24-7 previously.

Does this behaviour still occur with the 2.6.26 based kernel from Lenny?

Cheers,
Moritz



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



Bug#363049: probably found the reason for this ...

2008-11-07 Thread Brian Szymanski
regarding the initial bug...

The solution Sven has proposed can be improved, without all the mirror
bloat, I think. The sane thing to do would be for debootstrap to default
to what's in /etc/apt/sources.list when no mirror is given. This avoids
the logistical nightmare of having to make and update
$arch.ftp.debian.org foreach architecture. If you're using it in
sources.list, it has your architecture.

Cheers
Brian



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



Bug#489058: 2.6.25-2-amd64: acpi_cpufreq won't load on Xeon E5420

2008-11-07 Thread Moritz Muehlenhoff
On Thu, Jul 03, 2008 at 05:03:55PM +0200, maximilian attems wrote:
> On Wed, 02 Jul 2008, Kevin Mitchell wrote:
> 
> > Package: linux-image-2.6.25-2-amd64
> > Version: 2.6.25-5
> > Severity: normal
> > File: 2.6.25-2-amd64
> > 
> > 
> > I am unable to load the acpi-cpufreq module on my Xeon E5420 which uses the 
> > core microarchitecture and 
> > as I understand it should therefore use this module for frequency scaling. 
> > 
> > #modprobe acpi-cpufreq
> > FATAL: Error inserting acpi_cpufreq 
> > (/lib/modules/2.6.25-2-amd64/kernel/arch/x86/kernel/cpu/cpufreq/acpi-cpufreq.ko):
> >  No such device
> > 
> > I've even got /etc/init.d/loadcpufreq and /etc/init.d/cpufrequtils staring 
> > in runlevel 2, but
> > 
> > #cpufreq-info
> > cpufrequtils 002: cpufreq-info (C) Dominik Brodowski 2004-2006
> > Report errors and bugs to [EMAIL PROTECTED], please.
> > analyzing CPU 0:
> >   no or unknown cpufreq driver is active on this CPU
> > analyzing CPU 1:
> >   no or unknown cpufreq driver is active on this CPU
> > analyzing CPU 2:
> >   no or unknown cpufreq driver is active on this CPU
> > analyzing CPU 3:
> >   no or unknown cpufreq driver is active on this CPU
> > 
> > Finally,
> 
> please checkout 2.6.26-rc8 images, see trunk apt lines
> -> http://wiki.debian.org/DebianKernel

Kevin, does the error still occur with the current kernel from Lenny?

Cheers,
Moritz



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



Bug#488475: linux-image-2.6.25-2-amd64: r8196 driver having problems with GA-MA78GM-S2H motherboard

2008-11-07 Thread Moritz Muehlenhoff
On Sun, Jun 29, 2008 at 06:18:10PM +1000, Alex Samad wrote:
> Package: linux-image-2.6.25-2-amd64
> Version: 2.6.25-5
> Severity: normal
> 
> I recently bought a gigabyte GA-MA78GM-S2H motherboard, comes with a Realtek 
> 8111C chip nic.
> 
> there is a large amount of dropped, I have checked this on a newly booted 
> machine and the number seems to be in the >1B 
> mark. IPv4 seems to be working okay. But I use radvd, ipv6 autoconfig to 
> configure ipv6. icmpv6 router advertisements 
> don't seem to be making it to the card. I see noting then I run tcpdump 

There have been many changes on the r8169 driver in 2.6.26 and the 2.6.26.x 
stable series.
Does the problem still occur with the current Lenny kernel?

Cheers,
Moritz



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



Bug#481478: [linux-image-2.6.25-2-686] invalid opcode

2008-11-07 Thread Moritz Muehlenhoff
On Fri, May 16, 2008 at 02:09:34PM +0200, Zoran Dzelajlija wrote:
> Package: linux-image-2.6.25-2-686
> Version: 2.6.25-3
> Severity: normal
> 
> --- Please enter the report below this line. ---
> Hi, got this with the current kernel from sid:
> 
>  burek kernel: [ 3175.481342] [ cut here ]
> burek
>  burek kernel: [ 3175.481342] invalid opcode:  [#1] SMP 
>  burek kernel: [ 3175.481342] Process zsh (pid: 6877, ti=f31f8000 
> task=f30bd350 task.ti=f31f8000)
>  burek kernel: [ 3175.481342] Stack: f0c319d8 c017ab6c   
> c030d757 bfbc0b74   
>  burek kernel: [ 3175.481342]c017b34f f31f9fa4  bfbc0b74 
>   f31f8000 c010aa8d 
>  burek kernel: [ 3175.481342]0001  bfbc0b74  
> c01077e4 bfbc0b74  bfbb7a10 
>  burek kernel: [ 3175.481342] Call Trace:
>  burek kernel: [ 3175.481342]  [] create_write_pipe+0x140/0x14b
>  burek kernel: [ 3175.481342]  [] do_pipe+0xf/0xd4
>  burek kernel: [ 3175.481342]  [] sys_pipe+0xc/0x33
>  burek kernel: [ 3175.481342]  [] sysenter_past_esp+0x6d/0xa5
>  burek kernel: [ 3175.481342]  ===
>  burek kernel: [ 3175.481342] Code: 3c 01 00 00 77 ff ff ff eb e0 e8 5c eb 12 
> 00 31 c0 c3 85 c0 53 89 c3 74 59 8b 80 a0 00 00 00 83 bb 3c 01 00 00 40 8b 40 
> 20 75 04 <0f> 0b eb fe 85 c0 74 0b 8b 50 10 85 d2 74 04 89 d8 ff d2 8d 43 
>  burek kernel: [ 3175.481342] EIP: [] iput+0x19/0x62 SS:ESP 
> 0068:f31f9f64
> 
> ... and the shell died.  It also happened with 2.6.25-3~snapshot.11346 from
> deb http://kernel-archive.buildserver.net/debian-kernel sid main a few times.
> I'd used linux-image-2.6.24-1-686=2.6.24-5 before that, and had seen no
> similar issues.

Is this still reproducible with the current kernel from Lenny?

Cheers,
Moritz



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



Bug#479381: linux-image-2.6.25-1-686: Booting pauses for about 30 seconds on Acer Aspire 5710Z

2008-11-07 Thread Moritz Muehlenhoff
On Fri, May 09, 2008 at 12:08:25AM +0200, maximilian attems wrote:
> On Sun, 04 May 2008, Sebastian Krause wrote:
> 
> > Package: linux-image-2.6.25-1-686
> > Version: 2.6.25-1
> > Severity: normal
> > 
> > Since version 2.6.24 booting the Debian kernel is quite slow because it
> > pauses for about 30 seconds. It always happens after those lines in the
> > booting process:
> > 
> > [9.990058] iTCO_wdt: Found a ICH7-M TCO device (Version=2, 
> > TCOBASE=0x1060)
> > [9.990091] iTCO_wdt: initialized. heartbeat=30 sec (nowayout=0)
> > 
> > Since the interval is "heartbeat=30 sec" and also the pause is always
> > about 30 seconds long, there might be a connection. The problem happens
> > on an Acer Aspire 5710Z laptop.
> 
> please report that upstream on bugzilla.kernel.org and let us know the
> bug number.

Sebastian, does the problem still persist with the Lenny kernel?
If so, did you file the kernel.org bug report as suggested by Maks?

Cheers,
Moritz



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



Bug#499529: more patch

2008-11-07 Thread martin f krafft
see the patch description for additional info.

-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems
From e052c10280cf3e3033ae76fb1bca35cb73336a1b Mon Sep 17 00:00:00 2001
From: martin f. krafft <[EMAIL PROTECTED]>
Date: Sat, 8 Nov 2008 00:53:48 +0100
Subject: [PATCH] pass LD_LIBRARY_PATH to dh_gstscancodecs

dpkg-shlibdeps also needs the information via -l/-L but I don't know how
to make cdbs do that

Signed-off-by: martin f. krafft <[EMAIL PROTECTED]>
---
 debian/rules |2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/debian/rules b/debian/rules
index 2f9101a..7bac1c8 100755
--- a/debian/rules
+++ b/debian/rules
@@ -33,7 +33,7 @@ install/bluez-audio::
 	install -D -m 0644 $(CURDIR)/audio/audio.conf $(CURDIR)/debian/bluez-audio/etc/bluetooth/audio.conf
 
 binary-install/bluez-audio::
-	dh_gstscancodecs -pbluez-audio
+	LD_LIBRARY_PATH="$(CURDIR)/debian/bluez-utils/usr/lib:$(LD_LIBRARY_PATH)" dh_gstscancodecs -pbluez-audio
 
 install/bluez-pcmcia-support::
 	cp -f $(CURDIR)/scripts/bluetooth.rules $(CURDIR)/debian/bluez-pcmcia-support.udev
-- 
1.6.0.2



digital_signature_gpg.asc
Description: Digital signature (see http://martin-krafft.net/gpg/)


Bug#504771: not a critical issue

2008-11-07 Thread Richard van den Berg
On 8-11-2008 0:09, Andrea De Iacovo wrote:
> 6. we can try to prepare a workaround while we wait an officile fix from
> upstream: maybe I could implement a function to check out if dangerous
> cookies are present and stop any other operation until those cookies are
> not removed.
>   

There is an easy fix suggestion at
http://brian.moonspot.net/2008/01/17/responsible-use-of-the-_request-variable/


$user_input = array_merge($_GET, $_POST);

or even better:

if(!empty($_POST)){
$user_input = $_POST;
} elseif {
$user_input = $_GET;
}

Now replace all usage of $_REQUEST with $user_input. Sounds safe, but
needs testing.. in case wordpress actually reads cookie values from
$_REQUEST (yuck).

Regards,

Richard



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



Bug#475024: [html2ps-users] Only first page is printed

2008-11-07 Thread Trent W. Buck
Joachim,

On Fri, Nov 07, 2008 at 10:13:21PM +0100, Torsten Vogel wrote:
> Joachim Breitner schrieb:
>> http://bugs.debian.org/475024
>
> there is a bug in your html that even tidy doesn't find. you have two
> consecutive  tags around line number 139.

I suggest reassigning this bug to the tidy package.



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



Bug#497101: w9968cf missing in linux-image-2.6.25-2-686

2008-11-07 Thread Moritz Muehlenhoff
On Tue, Aug 19, 2008 at 09:17:43PM +0200, [EMAIL PROTECTED] wrote:
> 
> Package: linux-image-2.6.25-2-686
> Version: 2.6.25-7
> Severity: normal
> 
> 
> kernel/drivers/media/video/w9968cf.ko does not exist in
> linux-image-2.6.25-2-686.
> 
> However, it does exist in linux-image-2.6.25-2-486.

Patch attached.

Cheers,
Moritz
diff -aur linux-2.6-2.6.26.orig/debian/config/i386/config linux-2.6-2.6.26/debian/config/i386/config
--- linux-2.6-2.6.26.orig/debian/config/i386/config	2008-11-08 00:48:31.0 +0100
+++ linux-2.6-2.6.26/debian/config/i386/config	2008-11-08 00:51:43.0 +0100
@@ -887,6 +887,7 @@
 CONFIG_USB_OV511=m
 CONFIG_USB_SE401=m
 CONFIG_USB_STV680=m
+CONFIG_USB_W9968CF=m
 
 ##
 ## file: drivers/media/video/pwc/Kconfig
diff -aur linux-2.6-2.6.26.orig/debian/config/i386/config.486 linux-2.6-2.6.26/debian/config/i386/config.486
--- linux-2.6-2.6.26.orig/debian/config/i386/config.486	2008-11-08 00:48:31.0 +0100
+++ linux-2.6-2.6.26/debian/config/i386/config.486	2008-11-08 00:51:52.0 +0100
@@ -67,11 +67,6 @@
 # CONFIG_MCA_PROC_FS is not set
 
 ##
-## file: drivers/media/video/Kconfig
-##
-CONFIG_USB_W9968CF=m
-
-##
 ## file: drivers/mtd/chips/Kconfig
 ##
 # CONFIG_MTD_XIP is not set
diff -aur linux-2.6-2.6.26.orig/debian/config/i386/config.686 linux-2.6-2.6.26/debian/config/i386/config.686
--- linux-2.6-2.6.26.orig/debian/config/i386/config.686	2008-11-08 00:48:31.0 +0100
+++ linux-2.6-2.6.26/debian/config/i386/config.686	2008-11-08 00:53:05.0 +0100
@@ -53,11 +53,6 @@
 # CONFIG_ISDN_DRV_LOOP is not set
 
 ##
-## file: drivers/media/video/Kconfig
-##
-# CONFIG_USB_W9968CF is not set
-
-##
 ## file: drivers/net/Kconfig
 ##
 # CONFIG_NI5010 is not set
diff -aur linux-2.6-2.6.26.orig/debian/config/i386/config.686-bigmem linux-2.6-2.6.26/debian/config/i386/config.686-bigmem
--- linux-2.6-2.6.26.orig/debian/config/i386/config.686-bigmem	2008-11-08 00:48:31.0 +0100
+++ linux-2.6-2.6.26/debian/config/i386/config.686-bigmem	2008-11-08 00:52:12.0 +0100
@@ -69,11 +69,6 @@
 # CONFIG_ISDN_DRV_LOOP is not set
 
 ##
-## file: drivers/media/video/Kconfig
-##
-# CONFIG_USB_W9968CF is not set
-
-##
 ## file: drivers/net/Kconfig
 ##
 # CONFIG_NI5010 is not set
















Bug#504920: rsnapshot: regsiter HTML with doc-base

2008-11-07 Thread Roberto C. Sanchez
Package: rsnapshot
Version: 1.2.9-1
Severity: minor

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The HTML documentation is not registered with doc-base.
/usr/share/doc/rsnapshot/html/rsnapshot-howto.html

It would be good if it were.

Regards,

- -Roberto

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

Versions of packages rsnapshot depends on:
ii  logrotate   3.7.1-3  Log rotation utility
ii  perl5.8.8-7etch3 Larry Wall's Practical Extraction 
ii  rsync   2.6.9-2etch2 fast remote file copy program (lik

Versions of packages rsnapshot recommends:
ii  ssh   1:4.3p2-9etch3 Secure shell client and server (tr

- -- no debconf information

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

iD8DBQFJFNMH5SXWIKfIlGQRAqr7AJ9PSFRW0pxsSGsY7uB/KsmxKewnJACgsAC1
ZkgZ8SSqCyE5lJ7fiVSLajc=
=SlSM
-END PGP SIGNATURE-



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



Bug#504668: firmware-nonfree: Add License handler in gencontrol.py

2008-11-07 Thread Frank Lin PIAT
On Thu, 2008-11-06 at 01:47 +0100, Frank Lin PIAT wrote:
> The patch license.diff implements license=[required|no-preseed]
> and license_name entry in the firmware's define file.
> When used, those fields are used to generate a preinst script 
> that present the license to the user.

Note: If one gets the firmware-ipw2100 packages, then copy it on a usb
key to provide the package to Debian-Installer (when DI detects the Wifi
card), then the "preinst" script isn't displayed.

Which means that the license isn't "accepted". This behaviour shouldn't
be a problem for ipw2100/ipw2200, since the license's FAQ handle this
case (see Bug #504671 and 449235)

Franklin




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



Bug#504771: not a critical issue

2008-11-07 Thread Raphael Geissert
2008/11/7 Andrea De Iacovo <[EMAIL PROTECTED]>:
> Il giorno ven, 07/11/2008 alle 15.36 -0600, Raphael Geissert ha scritto:
>>
>> You can also set cookies via javascript code, e.g.
>> document.cookie = "GLOBALS=1;domain=.domain.tld"; 
>
> ok that's true.
>
> So let's see what we have:
> 1. $_REQUEST references are widely used in wordpress.
> 2. the standard EGPCS makes cookies overwrite GET and POST values in
> $_REQUEST
> 3. such values are used in "dangerous" cases (such as user deletion or
> logout after redirection).
> 4. "grave" data loss (user, post, comments deletion) could be avoided
> not logging in as administrator (but only as a user with some
> privileges)

All fine, although 4 is more a social than a technical problem, as
there is no way we can force users to do that (although I definitely
agree that it is a way to mitigate many possible issues).

> 5. the issue is related to wordpress only and does not influence other
> parts of the system
> 6. we can try to prepare a workaround while we wait an officile fix from
> upstream: maybe I could implement a function to check out if dangerous
> cookies are present and stop any other operation until those cookies are
> not removed.

You better not, that's how the GLOBALS DoS work.

>
> So I agree that I absolutely have to solve the bug(s) but I keep
> thinking it should be set as important instead of grave.

But please do work with upstream so the changes actually take place up there.
Like I said to Thijs: although I do believe that the whole situation
makes it a critical issue, I am ok if the consensus turns out to be
that it isn't critical, as long as the severity isn't dropped to
anything below important.

>
> Thank you very much for all your help with the issue.
> If you need more information just ask me, please.

Thank *you* for being collaborative :)

>
> Cheers.
>
> Andrea
>

Cheers,
-- 
Raphael Geissert - Debian Maintainer
www.debian.org - get.debian.net

Bill Vaughan  - "The tax collector must love poor people, he's
creating so many of them."



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



Bug#504919: kaffe: libungif4 -> libgif transition

2008-11-07 Thread Nathan Handler
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: kaffe
Version: 2:1.1.8-5.2
Severity: normal
Tags: patch
User: [EMAIL PROTECTED]
Usertags: origin-ubuntu jaunty ubuntu-patch

In Ubuntu, we've applied the attached patch to achieve the following:

 * libungif4 -> libgif transition (LP: #174252)
- debian/control:
  - Changed libungif4-dev to libgif-dev

We thought you might be interested in doing the same.

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

iEYEARECAAYFAkkUzc4ACgkQS7NiVFf3lehYDwCfQytURTmNr6P5rWvyieKTVdup
Xq0AnRD1X2jd/2MauoNlFe6W+tABHY3Z
=jFA9
-END PGP SIGNATURE-


kaffe_1.1.8-5.2ubuntu1.debdiff
Description: Binary data


Bug#498293: linux-image-2.6.26-1-686: mos7840 USB serial driver fails to work and causes kernel OOPS with 2.6.26-4

2008-11-07 Thread Moritz Muehlenhoff
On Mon, Sep 08, 2008 at 08:38:20PM +0100, Nick Leverton wrote:
> Package: linux-image-2.6.26-1-686
> Version: 2.6.26-4
> Severity: serious
> Justification: lenny/rc-policy
> 
> I have a USB "Express" twin port serial adaptor, which identifies itself
> as USB ID 9710:7840 MosChip Semiconductor.  This uses the mos7840 Moschip
> 7840/7820 USB Serial Driver.
> 
> On linux-image-2.6.26-1-686 version 2.6.26-3 this adaptor worked fine
> and neither of the following problems occurred.
> 
> On linux-image-2.6.26-1-686 version 2.6.26-4 there are serious problems.
> 
> First, the usb-serial ports do not work correctly.  Whatever character
> I send to the tty, it emits the letter 'O' from the serial port.
> See the two strace attachments, which are from kernels 2.6.26-3 and
> 2.6.26-4 respectively.  They were generated using minicom talking to a
> serial device which just echoes the input and sends the prompt "Ready"
> when it receives a carriage return.
> 
> Unfortunately I didn't type the same characters in each test, but
> if you diff the straces you can see that the tiocmget behaviour is
> substantially changed in what it returns, in addition to the incorrect
> character being sent.
> 
> Secondly, on unplugging the adaptor, a kernel OOPS is caused due to a
> null pointer dereference.  See dmesg extract also attached.
> 
> Following this OOPS, lsusb just hangs and is not interruptible with
> control-C, and on attempting to shut down the machine the shutdown process
> hangs when closing down Bluetooth (the built-in Bluetooth adaptor also
> presents a USB interface).  Magic sysrq key still works fortunately !
> 
> A different usb-serial device using the ftdi-sio driver still works
> without error.
> 
> I see the following in the package changelog and wonder if this change
> is related to the destabilisation ?
> 
> linux-2.6 (2.6.26-4) unstable; urgency=low
>   * Add stable release 2.6.26.3:
> - usb-serial: don't release unregistered minors

The commit in question is
http://git.kernel.org/?p=linux/kernel/git/stable/linux-2.6.26.y.git;a=commit;h=bb457a9869e945299445f13bf618975d1562ab83
 

Please try to a kernel build with that fix reverted. If it fixes
the problem for you, please pass your debug data to Greg Kroah-Hartman
<[EMAIL PROTECTED]>, who's both one of the maintainers of the 2.6.26.x stable
releases and the Linux USB maintainer.

Cheers,
Moritz



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



Bug#504918: Updating to lenny failed when NetworkManager got updated

2008-11-07 Thread Rob M. Hagopian
Package: NetworkManager

When updating from etch to lenny remotely via ssh using the instructions 
provided in the debian newsletter caused the network connection to die (and I'm 
unsure as to the status of the upgrade):

Unpacking replacement libnm-util0 ...
Preparing to replace network-manager-gnome 0.6.4-6 (using 
.../network-manager-gnome_0.6.6-2_i386.deb) ...
Unpacking replacement network-manager-gnome ...
Preparing to replace network-manager 0.6.4-6 (using 
.../network-manager_0.6.6-2_i386.deb) ...
Stopping network connection manager: NetworkManager

and the connection terminates.

-Rob



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



Bug#504771: not a critical issue

2008-11-07 Thread Andrea De Iacovo
Il giorno ven, 07/11/2008 alle 15.36 -0600, Raphael Geissert ha scritto:
> 2008/11/7 Andrea De Iacovo <[EMAIL PROTECTED]>:
> >> Hi,
> >>
> >> It is not just about the DoS (because as I demonstrated, there are
> >> other possible attacks).
> >> The whole point is that wordpress' (ab)use of $_REQUEST is leading to
> >> more and more possible attacks (as I also demonstrated by showing how
> >> etch's version is less worst than lenny's).
> >
> > All attacks can be done only by setting malicious cookies.
> > With a standard apache/php configuration, cookies can only be set for
> > the current subdomain (foo.bar.com) and not for the entire domain
> > (.bar.com).
> 
> Being one of the folks working on the php5 package lately I don't know
> of any such apache or php configuration that restricts the domain of a
> cookie. PHP has session.cookie_domain, but it does only work for the
> session cookies of PHP's built-in session manager.

Ok I was misinterpreting a man page.

> 
> > However you can act on the php.ini changing the domain value with a php
> > script but I don't think that's wordpress' fault if the server
> > administrator allows you to dinamically change such configuration with a
> > simple script! 99% of the public hoster which give you a
> > yourname.hoster.com do not allow you to change the domain value for the
> > cookies and so should people do if hosting multiple websites with teir
> > debian machine.
> >
> 
> You can also set cookies via javascript code, e.g.
> document.cookie = "GLOBALS=1;domain=.domain.tld"; 

ok that's true.

So let's see what we have:
1. $_REQUEST references are widely used in wordpress.
2. the standard EGPCS makes cookies overwrite GET and POST values in
$_REQUEST
3. such values are used in "dangerous" cases (such as user deletion or
logout after redirection).
4. "grave" data loss (user, post, comments deletion) could be avoided
not logging in as administrator (but only as a user with some
privileges)
5. the issue is related to wordpress only and does not influence other
parts of the system
6. we can try to prepare a workaround while we wait an officile fix from
upstream: maybe I could implement a function to check out if dangerous
cookies are present and stop any other operation until those cookies are
not removed.

So I agree that I absolutely have to solve the bug(s) but I keep
thinking it should be set as important instead of grave.

Thank you very much for all your help with the issue.
If you need more information just ask me, please.

Cheers.

Andrea


signature.asc
Description: Questa è una parte del messaggio	firmata digitalmente


Bug#497870: Still crashing

2008-11-07 Thread Moritz Muehlenhoff
On Tue, Oct 07, 2008 at 09:45:21PM +0200, Hans Christian wrote:
> Hi!
> 
> I just had another crash. Same symptoms: heavy wireless network activity
> causes the system to crash with blinking wireless and caps lock icons. 
> Couldn't
> contact the computer in anyway and had to do turn it off with the power 
> button.
> 
> Is any progress being made on this bug?
> 
> I have no logs no nothing to prove it, but it seems to me that the most
> consistent thing about these crashes are the transfers of many small
> files. I have transfered large files without issues, but transferring many
> small files often make me crash in this manner.

Does the problem still occur if you run current 2.6.28-rcX kernels?
There've been lots of changes on the ath5k driver.

Cheers,
Moritz



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



Bug#503361: patch to use X11 header

2008-11-07 Thread Steve Cotton
tag 503361 +patch
quit

The attached patch gets LONG64's definition from
/usr/include/X11/Xtos.h
in libxt-dev, which lesstif2 already build-deps on.

Steve
Fri Nov  7 22:50:31 GMT 2008  Steve Cotton <[EMAIL PROTECTED]>
  * Get architecture specific #defs from X11's Xtos.h
diff -rN -u old-lesstif2-0.95.0-1/include/Motif-2.1/XmI/XpmI.h new-lesstif2-0.95.0-1/include/Motif-2.1/XmI/XpmI.h
--- old-lesstif2-0.95.0-1/include/Motif-2.1/XmI/XpmI.h	2008-11-07 23:05:59.0 +
+++ new-lesstif2-0.95.0-1/include/Motif-2.1/XmI/XpmI.h	2008-11-07 23:05:59.0 +
@@ -76,12 +76,8 @@
 
 #include 
 
-/* the following is defined in X11R6 but not in previous versions */
-#ifdef __alpha
-#ifndef LONG64
-#define LONG64
-#endif
-#endif
+/* architecture-specific defines, such as LONG64 on arches with 64-bit longs */
+#include 
 
 #ifdef VMS
 #include 



Bug#497392: e1000e driver does not initialize correctly

2008-11-07 Thread Moritz Muehlenhoff
On Mon, Sep 22, 2008 at 01:44:38PM +0200, Bastien Durel wrote:
> Le dimanche 21 septembre 2008 à 15:14 +0200, Bastian Blank a écrit :
> > On Mon, Sep 01, 2008 at 02:22:00PM +0200, Bastien Durel wrote:
> > > The e1000e kernel module does not initialize correctly, then the network 
> > > cannot initialize.
> > 
> > Please explain, the attached log does not show strange e1000 related
> > messages.
> > 
> Well,
> 
> when the module is inserted, nothing complains, the RAs are recevied,
> but ipv4 cannot be used on the interface. DHCP does not respond, and
> manual configuration does not allow packets to reach another computer.
> tcpdump on the router does not show any packet going from the computer
> during DHCP or after manual configuration.
> 
> After a few(exact number may change) rmmod's modprobe's, IPv4 can goes
> through interface. *That's* very strange.

Is this behaviour also reproducible if you try a current 2.6.28-rcX
kernel? If so, could you file a report at bugzilla.kernel.org?

Cheers,
Moritz



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



Bug#504889: [php-maint] Bug#504889: libapache2-mod-php5: asks for dbase support for php5, on mod-php5 and php5-cli

2008-11-07 Thread GaRaGeD Style
Hi Raphael

Correct me if I'm wrong, Debian is distributing those "unlicensed"
files anyway, isn't that the same problem ?? Debian is potentially
violating it anyway.

Thanks for your comments, I actually made a search of the bugs, but
smartly enough I didn't checked php5, but libapache2-mod-php5 and
php5-cli :), sorry.

I wrote to the author too, to know if he's willing to change license,
if he's willing I will send a comment to the correct bug.

Max

-- 
$ echo "scale=100; 4*a(1)" | bc -l



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



Bug#504660: Update .desktop file

2008-11-07 Thread Nathan Handler
On Fri, Nov 7, 2008 at 1:44 PM, David Futcher <[EMAIL PROTECTED]> wrote:
> The .desktop file Nathan attached in the debdiff does not fully validate
> with desktop-file-validate, so here is one that does. Also attached is
> an edited version of the debdiff.
>
> David Futcher
>

Just to make things clear (since I originally was not able to see a
difference between the .desktop file David attached and the one I
prepared), the only difference between the two .desktop files is that
David's removes the .xpm extension (which I forgot to do).

Nathan



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



Bug#459572: marked as done (/usr/bin/apt-get: please provide apt-get purge as a shorthand for apt-get remove --purge)

2008-11-07 Thread Luca Bruno
Perhaps bash completion of 'purge' is missing.

-- 
http://syx.googlecode.com - Smalltalk YX
http://lethalman.blogspot.com - Thoughts about computer technologies
http://www.debian.org - The Universal Operating System


signature.asc
Description: Digital signature


Bug#495697: linux-image-2.6.25-2-686: System hang when loading ACPI video module

2008-11-07 Thread Moritz Muehlenhoff
On Thu, Aug 21, 2008 at 05:37:33PM +0200, Stephan Peijnik wrote:
> 
> The bug is still present in 2.6.26. As soon as I modprobe "video" the
> system freezes.

Is this bug still reproducible with current 2.6.28-rcX kernels?

If so, please file a report at bugzilla.kernel.org and pass the
bugnumber to this bug.

Cheers,
Moritz



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



Bug#504811: [Evolution] Bug#504811: Putting a Copy rule after a Move rule in message filters results in fail

2008-11-07 Thread Yves-Alexis Perez
On ven, 2008-11-07 at 13:07 +, Daniel Watkins wrote:
> I have a message filter that moves messages from my Inbox to a local
> folder, as
> well as copying the message to a shared folder.  Unfortunately, it
> seems that
> the ordering matters, so the 'Copy' copies a deleted email, so no-one
> can
> actually see it.  This should either not be the case or it should not
> be
> possible to do.

I find this perfectly logical. I you move the mail, it's normal it's not
at the original point anymore. If you still want it there, copy it. Then
you can copy it to the second location too. And if you don't want to
have it there after the second operation, then move it. So you get the
ordering you discovered by yourself.

I really don't think that's disturbing.

Cheers,
-- 
Yves-Alexis


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


Bug#395008: linux-image-2.6.18-1-686: Oops with irda driver

2008-11-07 Thread Moritz Muehlenhoff
Hi Romain,

On Tue, Oct 24, 2006 at 02:00:04PM +0200, Romain Chantereau wrote:
> Package: linux-image-2.6.18-1-686
> Version: 2.6.18-3
> Severity: important
> 
> 
> Hi !
> 
> I am using gnokii, via xgnokii, and I have strange behaviour. When I
> quit (after being
> connected, or after the phone crashed) xgnokii, I have this kernel
> oops :

Is this still reproducible with current kernels?

Cheers,
Moritz



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



Bug#77985: mime-support: Updated patch against latest run-mailcap

2008-11-07 Thread Reuben Thomas
Package: mime-support
Version: 3.44-1
Followup-For: Bug #77985

I attach an updated patch against Lenny's run-mailcap. Is there some
problem getting this into Debian?

By the way, this update changes one thing: it uses the file extension
first, the file, rather than the other way around.

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

Kernel: Linux 2.6.26-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

mime-support depends on no packages.

Versions of packages mime-support recommends:
ii  file  4.26-1 Determines file type using "magic"

mime-support suggests no packages.

-- no debconf information
--- /usr/bin/run-mailcap2008-06-19 14:50:42.0 +0200
+++ /usr/local/bin/run-mailcap  2008-11-07 23:45:49.0 +0100
@@ -281,8 +281,20 @@
 
 
 
-sub PatternMimetype {
+sub MagicMimetype {
 my($file) = @_;
+my($typ);
+
+open(READER, "-|", "file", "-b", "--mime-type", "-e", "tokens", "-L", 
"-z", $file);
+$typ = ;
+chomp $typ;
+return $typ;
+}
+
+
+
+sub PatternMimetype {
+my($realfile, $file) = @_;
 my($key,$val);
 
 while (($key,$val) = each %patterntypes) {
@@ -299,12 +311,13 @@
 
 
 sub FileMimetype {
-my($file) = @_;
+my($realfile, $file) = @_;
 my($ext)  = ($file =~ m!\.([^/\.]+)$!);
 
 my $type;
 
-$type = ExtensionMimetype($ext) if $ext;
+$type = ExtensionMimetype($ext) if $ext && $ext ne "";
+$type = MagicMimetype($realfile) unless $type || !-e $realfile;
 $type = PatternMimetype($file) unless $type;
 
 return $type;
@@ -340,9 +353,9 @@
 if ($code) {
 my $efile = $file;
 $efile =~ s/\.[^\.]+$//;
-$type = FileMimetype($efile);
+$type = FileMimetype($file, $efile);
 } else {
-$type = FileMimetype($file);
+$type = FileMimetype($file, $file);
 }
 if ($type) {
 push @files,"${type}:${code}:${file}";


Bug#504699: (no subject)

2008-11-07 Thread Michael Kerrisk
How would folk feel about the addition of the following test under
NOTES?  Are the staments about x86-64 accurate?

   On architectures where int and pointer types are the same
   size  (e.g.,  x86-32,  where both types are 32 bits), you
   may be able to get away with passing  pointers  as  argu-
   ments  to  makecontext()  following argc.  However, doing
   this is not  guaranteed  to  be  portable,  is  undefined
   according  to  the standards, and won't work on architec-
   tures where pointers are larger than ints.  Nevertheless,
   starting  with  version  2.8  glibc makes some changes to
   makecontext(3), to permit this on some  64-bit  architec-
   tures (e.g., x86-64).

Cheers,

Michael

--- a/man3/makecontext.3
+++ b/man3/makecontext.3
@@ -113,6 +113,22 @@ to be used as the stack, regardless of the
direction of growth of
 the stack.
 Thus, it is not necessary for the user program to
 worry about this direction.
+
+On architectures where
+.I int
+and pointer types are the same size
+(e.g., x86-32, where both types are 32 bits),
+you may be able to get away with passing pointers as arguments to
+.BR makecontext ()
+following
+.IR argc .
+However, doing this is not guaranteed to be portable,
+is undefined according to the standards,
+and won't work on architectures where pointers are larger than
+.IR int s.
+Nevertheless, starting with version 2.8 glibc makes some changes to
+.BR makecontext (3),
+to permit this on some 64-bit architectures (e.g., x86-64).
 .SH EXAMPLE
 .PP
 The example program below demonstrates the use of



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



Bug#470096: Para la actualización EE.UU. enviar su actual dirección de cor reo electrónico y contraseña

2008-11-07 Thread UTALCA
Estimado UTALCA cuenta de correo electrónico propietario,

Este mensaje es de UTALCA centro de mensajes a todos los UENF cuenta de
correo electrónico propietarios.

En estos momentos la mejora nuestra base de datos y la cuenta de correo
electrónico de centro.
Nos están borrando todos los no utilizados UTALCA cuenta de correo
electrónico para crear más espacio para los nuevos accounts.To
impedir que su cuenta de clausura. Por favor, envíenos su dirección de
correo electrónico actual y la contraseña para poder actualizar su cuenta
de correo electrónico.

UTALCA confirmar su dirección de correo electrónico y contraseña a
continuación.

Correo electrónico: ...
Email Contraseña: 
Fecha de nacimiento o :...
País o Territorio: ..

Advertencia!
Cuenta que el propietario se niega a actualizar su cuenta dentro de 48hrs
de la recepción de este aviso perderá su cuenta permanentemente.
Gracias por utilizar UTALCA!


--
1948-2008:SESENTA AÑOS DE VIDA UNIVERSITARIA 
   ***
Este correo y cualquier archivo anexo son confidenciales y para uso
exclusivo de la persona o entidad de destino. Esta comunicacion puede
contener informacion protegida por el privilegio de cliente-abogado. Si
usted ha recibido este correo por error, equivocacion u omision queda
estrictamente prohibido la utilizacion, copia, reimpresion o reenvio del
mismo. En tal caso, favor notificar en forma inmediata al remitente




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



Bug#504866: opensync-plugin-moto depends on libopensync0-dev

2008-11-07 Thread Evgeni Golov
Hi,

actually, this bug is a bit different from what you've written.
opensync-plugin-moto is written in python, having a private library
motosync which is installed to /usr/lib/opensync/python-plugins.
As this dir is not in the default python path, the follwoing code in
mototool gets executed (the except part):

try:
import motosync
except ImportError:
# motosync wasn't in our standard import path
# try looking in the opensync python plugin dir for it
child = popen2.Popen3('pkg-config opensync-1.0 --variable=libdir')
libdir = child.fromchild.readline().rstrip('\n')
if child.wait() != 0 or not os.path.isdir(libdir):
sys.stderr.write("Error: couldn't locate OpenSync library directory\n")
sys.exit(1)
sys.path.append(os.path.join(libdir, 'opensync', 'python-plugins'))
import motosync

Of course, when libopensync0-dev isn't installed, 
`pkg-config opensync-1.0 --variable=libdir` fails and you get this nice error.

For quick-fixing this issue, I'd patch mototool to not call pkg-config
(which is neither in its depends btw!) but set libdir to /usr/lib (which allways
will be the output of pkg-config anyway).
The propper fix would be to use python-support or similar, but I do not know 
enough
about this and the change would be too big for a quick rc-fix.

Attached you'll find a quick-quick-fix for the issue.
(I've never worked with cdbs and simple-patchsys.)

Regards
Evgeni
diff -u libopensync-plugin-moto-0.22/debian/changelog libopensync-plugin-moto-0.22/debian/changelog
--- libopensync-plugin-moto-0.22/debian/changelog
+++ libopensync-plugin-moto-0.22/debian/changelog
@@ -1,3 +1,11 @@
+libopensync-plugin-moto (0.22-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Don't call pkg-config to find out, that Debian ships its libs in
+/usr/lib. (Closes: #504866)
+
+ -- Evgeni Golov <[EMAIL PROTECTED]>  Fri, 07 Nov 2008 23:30:27 +0100
+
 libopensync-plugin-moto (0.22-1) unstable; urgency=low
 
   * New upstream release.
only in patch2:
unchanged:
--- libopensync-plugin-moto-0.22.orig/mototool
+++ libopensync-plugin-moto-0.22/mototool
@@ -12,11 +12,8 @@
 except ImportError:
 # motosync wasn't in our standard import path
 # try looking in the opensync python plugin dir for it
-child = popen2.Popen3('pkg-config opensync-1.0 --variable=libdir')
-libdir = child.fromchild.readline().rstrip('\n')
-if child.wait() != 0 or not os.path.isdir(libdir):
-sys.stderr.write("Error: couldn't locate OpenSync library directory\n")
-sys.exit(1)
+# hardcode libdir to /usr/lib as a workaround for #504866
+libdir = '/usr/lib'
 sys.path.append(os.path.join(libdir, 'opensync', 'python-plugins'))
 import motosync
 


  1   2   3   4   >