Bug#513382: closed by Sune Vuorela deb...@pusling.com (Re: Bug#513382: akonadi-server: depends on mysql-server)

2009-04-07 Thread Sune Vuorela
On Tuesday 07 April 2009 00:22:33 Roger Leigh wrote:
 On Wed, Jan 28, 2009 at 02:55:26PM +, Debian Bug Tracking System wrote:
  Date: Wed, 28 Jan 2009 15:51:19 +0100
  From: Sune Vuorela deb...@pusling.com
  Subject: Re: Bug#513382: akonadi-server: depends on mysql-server
  To: 513382-d...@bugs.debian.org
 
  No. this is how akonadi at least currently work and it is a
  design decision upstream to do it this way.

 Then, respectfully, upstream do need to have their heads examined.

 Using the mysql client libraries would be understandable, but
 this is just completely objectionable.

 I don't want a trace of mysql near my system, but I would like to
 use kde4.  Optional mysql database bindings for the server would
 be preferable so I don't even need the mysql client libraries
 installed.  Really.

you would prefer if they used oracle or postgresql?
I really think using mysql is much better than reimplementing a fast storage 
that allows concurrent access.

http://techbase.kde.org/Projects/PIM/Akonadi#Which_DBMS_does_Akonadi_use.3F

  No value in keeping this bug open.

 You might want to reconsider not pulling in the mysql server package
 into the default kde install by not including akonadi-server
 in the metapackage dependencies.  The current requirement to run
 mysql is horrible in the extreme.

 kde[4] - kdepim - korganizer - akonadi-server - mysql-server

Without akonadi-server, korganizer won't work.
Very soon, kmail will also require akonadi-server.
Akonadi is here to stay.

 Ouch!  Totally not acceptable.



 Thanks,
 Roger

 --
   .''`.  Roger Leigh

  : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/

  `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
`-GPG Public Key: 0x25BFB848   Please GPG sign your mail.

-- 
How may I reinstall the system?

First from the options inside MkLinuxPPC you should never click on a system to 
a display to link the head.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#515746: [53af1ee] Fix for Bug#515746 committed to git

2009-04-07 Thread Manoj Srivastava

tags 515746 +pending
thanks
Hi,

 The following change has been committed for this bug by
 Manoj Srivastava sriva...@debian.org on Tue, 7 Apr 2009 00:44:29 -0500.
 The fix will be in the next upload. 
=
Give up and depend on build-essential

This will prevent at least some surprises when people try to use
kernel-package.

Closes: Bug#515746

Signed-Off-By: Manoj Srivastava sriva...@debian.org
=




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522875: libnanohttp1: inet_ntoa is not thread safe

2009-04-07 Thread Russell Coker
Package: libnanohttp1
Version: 1.1.0-13
Severity: important

The library call inet_ntoa() is not thread safe.  With glibc in Lenny if you
call it from multiple threads then you can get a SEGV.  Even if it didn't get
a SEGV then it would still result in race conditions and incorrect data.

The following patch removes both instances of inet_ntoa().  The first one was
simply a mistake (doing things the hard way), the second can be done in a
thread-safe manner.

Note that I have not exercised the code path for the inet_ntop() use.

I am in the middle of a significant stress-test of the first patch, it's had
40 threads running for the last 20 minutes without finding a problem yet.

diff -ru libcsoap-1.1.0.bak/nanohttp/nanohttp-socket.c 
libcsoap-1.1.0/nanohttp/nanohttp-socket.c
--- libcsoap-1.1.0.bak/nanohttp/nanohttp-socket.c   2009-04-07 
15:19:25.0 +1000
+++ libcsoap-1.1.0/nanohttp/nanohttp-socket.c   2009-04-07 15:31:53.0 
+1000
@@ -176,7 +176,6 @@
 {
   struct sockaddr_in address;
   struct hostent *host;
-  char *ip;
 
   if ((dsock-sock = socket(AF_INET, SOCK_STREAM, 0)) = 0)
 return herror_new(hsocket_open, HSOCKET_ERROR_CREATE,
@@ -187,8 +186,7 @@
 return herror_new(hsocket_open, HSOCKET_ERROR_GET_HOSTNAME,
   Socket error (%s), strerror(errno));
 
-  ip = inet_ntoa(*(struct in_addr *) *host-h_addr_list);
-  address.sin_addr.s_addr = inet_addr(ip);
+  address.sin_addr = *(struct in_addr *) *host-h_addr_list;
 
   /* set server addresss */
   address.sin_family = host-h_addrtype;
@@ -308,6 +306,7 @@
 hsocket_accept(hsocket_t * sock, hsocket_t * dest)
 {
   herror_t status;
+  char ntop_buf[16];
 
   if (sock-sock  0)
 return herror_new(hsocket_accept, HSOCKET_ERROR_NOT_INITIALIZED,
@@ -323,7 +322,7 @@
   }
 
   log_verbose3(accepting connection from '%s' socket=%d,
-   SAVE_STR(((char *) inet_ntoa(dest-addr.sin_addr))),
+   SAVE_STR(((char *) inet_ntop(AF_INET, dest-addr.sin_addr, 
ntop_buf, sizeof(dest-addr.sin_addr,
dest-sock);
 
   return H_OK;


-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=ANSI_X3.4-1968) 
(ignored: LC_ALL set to C)
Shell: /bin/sh linked to /bin/bash

Versions of packages libnanohttp1 depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libxml22.6.32.dfsg-5 GNOME XML library

libnanohttp1 recommends no packages.

libnanohttp1 suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522876: Cannot start luvcview - SDL error

2009-04-07 Thread Marc F. Clemente
Package: luvcview
Version: 1:0.2.4-2
Severity: important


I am trying to run luvcview to see images from a Logitech Quickcam 9000.  I use 
amd64, but I don't know if that's my problem.  Anyway, this is what I get:

 luvcview 
luvcview 0.2.4

XDM authorization key matches an existing client!Couldn't initialize SDL: 
Couldn't open X11 display
Exit 1

I have no idea what XDM means in this case.  I do not run XDM (X display 
manager).  I cannot find a debug option, so I don't know how to proceed.


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

Kernel: Linux 2.6.26-1-amd64 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages luvcview depends on:
ii  libc62.9-6   GNU C Library: Shared libraries
ii  libsdl1.2debian  1.2.13-4+b1 Simple DirectMedia Layer

luvcview recommends no packages.

luvcview suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522609: cups-driver-gutenprint: Epson TX300f not printing

2009-04-07 Thread Michael Stockenhuber

Hello,
Thanks for the quick answer.

The Offix name is a typo.  I have fixed this in upstream CVS.
However, this is only a cosmetic issue--the name will not in any
way affect the driver behaviour.  Did you only correct the spelling
in printers.xml, or did you make other changes?

No I did not. Interestingly, the installation did only find the printer once I
changed this name 

If the jobs are getting stuck in the queue, then CUPS should
provide you with a reason why.

That is what I thought but it was just stuck on 22%

 You can also set LogLevel to
debug in cupsd.conf and restart cups to make it log in detail
the cause of all printing failures.  Could you check that for me?

E [05/Apr/2009:16:10:23 +1000] PID 11231 (/usr/lib/cups/filter/texttops) stopped
with status 1!
E [05/Apr/2009:16:10:23 +1000] [Job 43] Unable to open
/usr/share/cups/charsets/utf-8: No such file or directory
E [05/Apr/2009:16:10:23 +1000] [Job 43] Job stopped due to filter errors.
E [05/Apr/2009:16:10:23 +1000] PID 11236 (/usr/lib/cups/backend/parallel)
crashed on signal 9!
E [05/Apr/2009:18:13:30 +1000] Purge-Jobs: Unauthorized


A copy of your printers.conf and the PPD file from
/etc/cups/ppd/queue would also be helpful to have.
Printer epson
Info EPSON Stylus Office TX300F
Location Local Printer
DeviceURI parallel:/dev/lp0
State Idle
StateTime 1239012070
Accepting Yes
Shared Yes
JobSheets none none
QuotaPeriod 0
PageLimit 0
KLimit 0
OpPolicy default
ErrorPolicy stop-printer
/Printer

What I find in/etc/cups/ppd/ is a very long ppd file. I essentailly copied 
stp-escp2-of-tx300f.5.2.ppd to /etc/cups/ppd/epson.ppd

Thanks

Cheers

MCS 


Bug#522614: [Evolution] Bug#522614: evolution: Fails to update count of unread messages in search folders

2009-04-07 Thread Julien Valroff
Hi Yves-Alexis,

On Tue, 07 Apr 2009 07:47:22 +0200, Yves-Alexis Perez cor...@debian.org
wrote:
 On dim, 2009-04-05 at 11:58 +0200, Julien Valroff wrote:
 Using IMAP, evolution still shows some unread messages in my
user-defined
 search
 folder while these messages are marked as read in the real folder.
 
 Does this aonly affects the count or also the mail status when you're in
 one folder or another?

The messages are marked as read in both folders, but the special search
folder name is in bold and shows unread message count (like (1)).

 Does this still happens if you quit evolution (maybe an evolution
 --force-shutdown)?

Yes, quitting evolution solves the issue.

Cheers,
Julien



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522470: 522470 Patch

2009-04-07 Thread Ehren Kret
tags 522470 + patch
thanks

Here's a diff I believe should be sufficient to close #522470 and #503807
when applied to the git repo master branch from git://
git.debian.org/git/collab-maint/protobuf.git after importing the 2.0.3
original tarball.

Thanks!
--Ehren


protobuf_2.0.2-1_to_2.0.3-0.1.patch
Description: Binary data


Bug#522741: ITP: ieee-data -- Organizationally Unique Identifier listing

2009-04-07 Thread Wesley J. Landaker
On Monday 06 April 2009 11:03:04 Filippo Giunchedi wrote:
 On Mon, Apr 06, 2009 at 10:55:21AM -0600, Wesley J. Landaker wrote:
  On Monday 06 April 2009 02:21:08 Filippo Giunchedi wrote:
   * Package name: ieee-data
 
  PLEASE don't call this such a poor, generic name. The OUI listing is
  certainly not the only data from the IEEE.
 
  I'd suggest ieee-oui-data.

 The idea would be to gather more data under the same source package and
 split it into binaries as needed, 

Okay, I have no objections if it's just the source package with that name.

 can you point to more IEEE data already
 in the archive you are referring to?

Not off the top of my head, but if this is meant to be a source package to 
collect it all and avoid duplication, I'm all for that!



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#520168: Bug in libglib-perl fixed in revision 32703

2009-04-07 Thread pkg-perl-maintainers
tag 520168 + pending
thanks

Some bugs are closed in revision 32703
by Ryan Niebur (ryan52-guest)

Commit message:

changes for new (unreleased) upstream release already committed here
* remove patch to ignore glog segfaults, all is fixed upstream
* the g_log tests are now only skipped when using the bad versions of
  glib (Closes: #520168)



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522877: notification-daemon: Please remove useless capplet from the menu

2009-04-07 Thread Josselin Mouette
Package: notification-daemon
Version: 0.4.0-1

Hi,

please add NoDisplay=true to notification-properties.desktop so that it
does not clutter the already overloaded settings menu.

Thanks,
-- 
 .''`.  Debian 5.0 Lenny has been released!
: :' :
`. `'   Last night, Darth Vader came down from planet Vulcan and told
  `-me that if you don't install Lenny, he'd melt your brain.


signature.asc
Description: Ceci est une partie de message numériquement signée


Bug#513382: closed by Sune Vuorela deb...@pusling.com (Re: Bug#513382: akonadi-server: depends on mysql-server)

2009-04-07 Thread Kevin Krammer
On Tuesday 07 April 2009, Sune Vuorela wrote:
 On Tuesday 07 April 2009 00:22:33 Roger Leigh wrote:
  On Wed, Jan 28, 2009 at 02:55:26PM +, Debian Bug Tracking System 
wrote:
   Date: Wed, 28 Jan 2009 15:51:19 +0100
   From: Sune Vuorela deb...@pusling.com
   Subject: Re: Bug#513382: akonadi-server: depends on mysql-server
   To: 513382-d...@bugs.debian.org
  
   No. this is how akonadi at least currently work and it is a
   design decision upstream to do it this way.
 
  Then, respectfully, upstream do need to have their heads examined.
 
  Using the mysql client libraries would be understandable, but
  this is just completely objectionable.
 
  I don't want a trace of mysql near my system, but I would like to
  use kde4.  Optional mysql database bindings for the server would
  be preferable so I don't even need the mysql client libraries
  installed.  Really.

 you would prefer if they used oracle or postgresql?
 I really think using mysql is much better than reimplementing a fast
 storage that allows concurrent access.

 http://techbase.kde.org/Projects/PIM/Akonadi#Which_DBMS_does_Akonadi_use.3F

A quick update on that:

quite recently some new contributor provided patches for using sqlite instead. 
Unforuntately the situation with respect to sqlite hasn't changed yet, e.g. 
it still deadlocks.

However it shows that the code can support different database engines, so 
assuming some body contributes the code for postgresql or something else 
those might become options in the future.

   No value in keeping this bug open.
 
  You might want to reconsider not pulling in the mysql server package
  into the default kde install by not including akonadi-server
  in the metapackage dependencies.  The current requirement to run
  mysql is horrible in the extreme.
 
  kde[4] - kdepim - korganizer - akonadi-server - mysql-server

 Without akonadi-server, korganizer won't work.

Not entirely correct, i.e. Korganizer of 4.2 does not, Korganizer of 4.3 will.
KPilot already requires Akonadi though.

Anyway, this is just nitpicking. The Akonadi server is a runtime requirement 
of the Akonadi KDE libraries, which are part of the KDE platform.

 Very soon, kmail will also require akonadi-server.

True, we hope this to happen with 4.4, there are still huge porting efforst 
ahead.

 Akonadi is here to stay.

Indeed. It is a pity we didn't have the resources to do more app porting 
already, but it seems we are on a good track for 4.3

Cheers,
Kevin


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


Bug#522878: file aborts with file: munmap_chunk(): invalid pointer: 0x082b4a80

2009-04-07 Thread Ralf Hildebrandt
Package: file
Version: 5.00-1
Severity: normal


amavisd-new uses file to determine the type of a file.
Today, my amavisd-new partition filled up, since amavisd-new encountered an 
error with a particular mail.

I examined the mail, extracted the attachment and reproduced the problem:

# file CostaXdeXla_luz_Tarifa_a_Chiclana.pps 
*** glibc detected *** file: munmap_chunk(): invalid pointer: 0x08534d88 ***
*** glibc detected *** file: malloc(): memory corruption: 0x08534f90 ***
=== Backtrace: =
/lib/i686/cmov/libc.so.6[0xb7dcae56]
/lib/i686/cmov/libc.so.6(__libc_malloc+0x95)[0xb7dcc5a5]
/lib/ld-linux.so.2[0xb7ef9a8f]
/lib/ld-linux.so.2[0xb7efc8cc]
/lib/ld-linux.so.2[0xb7f071e7]
/lib/ld-linux.so.2[0xb7f03006]
/lib/ld-linux.so.2[0xb7f06bee]
/lib/i686/cmov/libc.so.6[0xb7e78512]
/lib/ld-linux.so.2[0xb7f03006]
/lib/i686/cmov/libc.so.6(__libc_dlopen_mode+0x55)[0xb7e786d5]
/lib/i686/cmov/libc.so.6(backtrace+0xee)[0xb7e526ae]
/lib/i686/cmov/libc.so.6[0xb7dc1e43]
/lib/i686/cmov/libc.so.6[0xb7dc81e4]
/usr/lib/libmagic.so.1(cdf_read_sat+0x203)[0xb7ee3813]
/usr/lib/libmagic.so.1(file_trycdf+0x6e)[0xb7ee3cce]
/usr/lib/libmagic.so.1(file_buffer+0x1ca)[0xb7ee121a]
/usr/lib/libmagic.so.1[0xb7ed3092]
file[0x8048e3d]
file[0x804995c]
/lib/i686/cmov/libc.so.6(__libc_start_main+0xe5)[0xb7d6f775]
file[0x8048ba1]
=== Memory map: 
08048000-0804b000 r-xp  68:05 2924276/usr/bin/file
0804b000-0804c000 rw-p 2000 68:05 2924276/usr/bin/file
08527000-08578000 rw-p 08527000 00:00 0  [heap]
b7a0-b7a21000 rw-p b7a0 00:00 0 
b7a21000-b7b0 ---p b7a21000 00:00 0 
b7b33000-b7b3f000 r-xp  68:05 1228434/lib/libgcc_s.so.1
b7b3f000-b7b4 rw-p c000 68:05 1228434/lib/libgcc_s.so.1
b7b48000-b7ba9000 rw-p b7b48000 00:00 0 
b7ba9000-b7d58000 rw-p  68:05 2919241/usr/share/file/magic.mgc
b7d58000-b7d59000 rw-p b7d58000 00:00 0 
b7d59000-b7eb3000 r-xp  68:05 1228056/lib/i686/cmov/libc-2.9.so
b7eb3000-b7eb4000 ---p 0015a000 68:05 1228056/lib/i686/cmov/libc-2.9.so
b7eb4000-b7eb6000 r--p 0015a000 68:05 1228056/lib/i686/cmov/libc-2.9.so
b7eb6000-b7eb7000 rw-p 0015c000 68:05 1228056/lib/i686/cmov/libc-2.9.so
b7eb7000-b7ebb000 rw-p b7eb7000 00:00 0 
b7ebb000-b7ecf000 r-xp  68:05 2923842/usr/lib/libz.so.1.2.3.3
b7ecf000-b7ed rw-p 00013000 68:05 2923842/usr/lib/libz.so.1.2.3.3
b7ed-b7ee9000 r-xp  68:05 2924106/usr/lib/libmagic.so.1.0.0
b7ee9000-b7eea000 rw-p 00019000 68:05 2924106/usr/lib/libmagic.so.1.0.0
b7ef1000-b7ef4000 rw-p b7ef1000 00:00 0 
b7ef4000-b7ef5000 r-xp b7ef4000 00:00 0  [vdso]
b7ef5000-b7f11000 r-xp  68:05 1228899/lib/ld-2.9.so
b7f11000-b7f12000 r--p 0001b000 68:05 1228899/lib/ld-2.9.so
b7f12000-b7f13000 rw-p 0001c000 68:05 1228899/lib/ld-2.9.so
bfdfe000-bfe13000 rw-p bffeb000 00:00 0  [stack]
CostaXdeXla_luz_Tarifa_a_Chiclana.pps: Aborted


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

Kernel: Linux 2.6.29.1 (SMP w/4 CPU cores)
Locale: lang=de...@euro, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages file depends on:
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libmagic1  5.00-1File type determination library us
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

file recommends no packages.

file suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522879: pdftops: error while loading shared libraries

2009-04-07 Thread Axel K. Stammler
Package: xpdf-utils
Version: 3.02-1.4
Severity: important

While xpdf works and can print to a postscript printer...

pdftops vbb.pdf
pdftops: error while loading shared libraries: libstdc++-libc6.0-1.so.2: cannot 
open shared object file: No such file or directory

I have tried purging  reinstalling xpdf, xpdf-utils and libstc++6, but to no 
avail.

-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.29.1 (SMP w/1 CPU core; PREEMPT)
Locale: LANG=C, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages xpdf-utils depends on:
ii  gsfonts   1:8.11+urwcyr1.0.7~pre44-3 Fonts for the Ghostscript interpre
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libfreetype6  2.3.7-2FreeType 2 font engine, shared lib
ii  libgcc1   1:4.3.2-1.1GCC support library
ii  libpaper1 1.1.23+nmu1library for handling paper charact
ii  libstdc++64.3.2-1.1  The GNU Standard C++ Library v3
ii  libt1-5   5.1.2-3Type 1 font rasterizer library - r
ii  xpdf-common   3.02-1.4   Portable Document Format (PDF) sui

xpdf-utils recommends no packages.

Versions of packages xpdf-utils suggests:
ii  pdftk 1.41-3 useful tool for manipulating PDF d

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#521892: evolution-common: scrollkeeper errors in evolution.xml

2009-04-07 Thread Mikhail Mikhaylenko
Same problem in 2.24.5-3


-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
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

evolution-common depends on no packages.

Versions of packages evolution-common recommends:
ii  evolution 2.24.5-3   groupware suite with mail client a

evolution-common suggests no packages.



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522880: Corrections to zabbix-frontend-php.templates

2009-04-07 Thread Christian Perrier
Package: zabbix
Severity: normal
Tags: patch

I am mumbling;-)

The recent additions to debconf templates are not really inline with the
review we did for other templates.

- Frontend should probably not be capitalized
- the line where it is has a trailing space...leading to two spaces in
translatable strings
- your Zabbix server should be avoided: that was the spirit of the review
- Re-using existing paragraphs would help lowering the needed work for
translators

Please consider using the attached file instead of the current one.

After doing this and running debconf-updatepo, sending a call for
translation updates with the podebconf-report-po tool would be appreciated.


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

Kernel: Linux 2.6.28-1-686 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
# These templates have been reviewed by the debian-l10n-english
# team
#
# If modifications/additions/rewording are needed, please ask
# debian-l10n-engl...@lists.debian.org for advice.
#
# Even minor modifications require translation updates and such
# changes should be coordinated with translators and reviewers.

Template: zabbix-frontend-php/reconfigure-webserver
Type: multiselect
Choices: apache, apache-ssl, apache-perl, apache2
Default: apache, apache-ssl, apache-perl, apache2
_Description: Web server to reconfigure for Zabbix:
 Zabbix supports any web server supported by PHP5, however only
 Apache can be configured automatically. 
 .
 Please select which Apache version you want to configure the Zabbix
 frontend for.

Template: zabbix-frontend-php/restart-webserver
Type: boolean
Default: true
_Description: Restart the web server(s) now?
 In order to apply the changes needed for Zabbix configuration, the
 web server needs to be restarted.
 .
 Please choose whether you prefer doing it automatically now
 or manually later.

Template: zabbix-frontend-php/zabbix-server
Type: string
Default: 127.0.0.1
_Description: Zabbix server host address:
 Please enter the host name or IP address of the Zabbix server you
 want to connect to.
 .
 This is needed for some advanced frontend functionalities.

Template: zabbix-frontend-php/zabbix-server-port
Type: string
Default: 10051
_Description: Zabbix server port:
 Please enter the port used by the Zabbix server.
 .
 This is needed for some advanced frontend functionalities.


Bug#522881: aptitude: safe-upgrade stopped working after kde4 upload

2009-04-07 Thread Sven Joachim
Package: aptitude
Version: 0.5.1-1
Severity: important

The kde4 transition in sid (which I'm not quite ready to accede yet) has
caused the safe-upgrade command to stop functioning:

,
| % LANG=C aptitude -s -v safe-upgrade
| Reading package lists... Done
| Building dependency tree   
| Reading state information... Done
| Reading extended state information  
| Initializing package states... Done
| Reading task descriptions... Done
| The following packages are BROKEN:
|   gitk kappfinder kate kcharselect kcontrol kdebase-bin kdepasswd kdesktop 
|   kfind kicker klipper kmines kmix knetworkconf konqueror 
|   konqueror-nsplugins konsole kpersonalizer kscreensaver ksnapshot ksplash 
|   ksudoku ksysguard ksysguardd 
| The following packages will be REMOVED:
|   kdebase-bin-kde3{u} 
| The following packages will be upgraded:
|   kdebase-data kdewallpapers lsb-base 
| The following packages are RECOMMENDED but will NOT be installed:
|   dolphin kde-window-manager kscreensaver-xsavers 
| 22 packages upgraded, 0 newly installed, 1 to remove and 0 not upgraded.
| Need to get 21.1MB of archives. After unpacking 8806kB will be freed.
| The following packages have unmet dependencies:
|   kcharselect: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to 
be installed.
|Depends: kdelibs5 (= 4:4.2.2) but it is not going to be 
installed.
|Depends: libqtcore4 (= 4.4.3) but it is not going to be 
installed.
|Depends: libqtgui4 (= 4.4.3) but it is not going to be 
installed.
|   kscreensaver: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to 
be installed.
| Depends: kdebase-workspace-libs4+5 (= 4:4.2.2) but it is not 
going to be installed.
| Depends: kdelibs5 (= 4:4.2.2) but it is not going to be 
installed.
| Depends: libqt4-opengl (= 4.4.3) but it is not going to be 
installed.
| Depends: libqtcore4 (= 4.4.3) but it is not going to be 
installed.
| Depends: libqtgui4 (= 4.4.3) but it is not going to be 
installed.
| Depends: kdebase-workspace-bin but it is not going to be 
installed.
|   ksnapshot: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to be 
installed.
|  Depends: kdelibs5 (= 4:4.2.2) but it is not going to be 
installed.
|  Depends: libqt4-dbus (= 4.4.3) but it is not going to be 
installed.
|  Depends: libqtcore4 (= 4.4.3) but it is not going to be 
installed.
|  Depends: libqtgui4 (= 4.4.3) but it is not going to be 
installed.
|   kcontrol: Depends: kdebase-data ( 4:3.5.10.dfsg.2) but 4:4.2.2-1 is to be 
installed.
|   konqueror-nsplugins: Depends: kdebase-runtime (= 4:4.2.2) but it is not 
going to be installed.
|Depends: kdelibs5 (= 4:4.2.2) but it is not going to 
be installed.
|Depends: libqt4-dbus (= 4.4.3) but it is not going to 
be installed.
|Depends: libqtcore4 (= 4.4.3) but it is not going to 
be installed.
|Depends: libqtgui4 (= 4.4.3) but it is not going to 
be installed.
|   klipper: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to be 
installed.
|Depends: kdelibs5 (= 4:4.2.2) but it is not going to be installed.
|Depends: libqt4-dbus (= 4.4.3) but it is not going to be 
installed.
|Depends: libqtcore4 (= 4.4.3) but it is not going to be installed.
|Depends: libqtgui4 (= 4.4.3) but it is not going to be installed.
|   kicker: Depends: kdebase-data ( 4:3.5.10.dfsg.2) but 4:4.2.2-1 is to be 
installed.
|   ksysguard: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to be 
installed.
|  Depends: kdebase-workspace-libs4+5 (= 4:4.2.2) but it is not 
going to be installed.
|  Depends: kdelibs5 (= 4:4.2.2) but it is not going to be 
installed.
|  Depends: libqt4-dbus (= 4.4.3) but it is not going to be 
installed.
|  Depends: libqt4-xml (= 4.4.3) but it is not going to be 
installed.
|  Depends: libqtcore4 (= 4.4.3) but it is not going to be 
installed.
|  Depends: libqtgui4 (= 4.4.3) but it is not going to be 
installed.
|   ksplash: Depends: kdebase-data ( 4:3.5.10.dfsg.2) but 4:4.2.2-1 is to be 
installed.
|   konsole: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to be 
installed.
|Depends: kdelibs5 (= 4:4.2.2) but it is not going to be installed.
|Depends: libqt4-dbus (= 4.4.3) but it is not going to be 
installed.
|Depends: libqtcore4 (= 4.4.3) but it is not going to be installed.
|Depends: libqtgui4 (= 4.4.3) but it is not going to be installed.
|   kfind: Depends: kdebase-runtime (= 4:4.2.2) but it is not going to be 
installed.
|  Depends: kdelibs5 (= 4:4.2.2) but it is not going to be installed.
|  Depends: libqt4-qt3support (= 4.4.3) but it is not going to 

Bug#522876: Cannot start luvcview - SDL error

2009-04-07 Thread Aurelien Jarno
Marc F. Clemente a écrit :
 Package: luvcview
 Version: 1:0.2.4-2
 Severity: important
 
 
 I am trying to run luvcview to see images from a Logitech Quickcam 9000.  I 
 use amd64, but I don't know if that's my problem.  Anyway, this is what I get:
 
 luvcview 
 luvcview 0.2.4
 
 XDM authorization key matches an existing client!Couldn't initialize SDL: 
 Couldn't open X11 display
 Exit 1
 
 I have no idea what XDM means in this case.  I do not run XDM (X display 
 manager).  I cannot find a debug option, so I don't know how to proceed.
 

Most probably not a luvcview problem? Are you trying to run is as root?
If yes, that's most probably the problem.


-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522882: libssl0.9.8: /tmp is used to store a script that has to be executed

2009-04-07 Thread Sébastien NOBILI
Package: libssl0.9.8
Version: 0.9.8g-15+lenny1
Severity: normal

When upgrading libssl0.9.8 on my Lenny, I found the following message :
 Can't exec /tmp/libssl0.9.8.config.77291: Permission non accordée at 
/usr/share/perl/5.10/IPC/Open3.pm line 168.
 open2: exec of /tmp/libssl0.9.8.config.77291 configure 0.9.8g-15 failed at 
/usr/share/perl5/Debconf/ConfModule.pm line 59

/tmp is a tmpfs mount with noexec option.

I think some people use the same strategy and another way to handle this script 
should be found so that this it gets executed. I have no idea how this should 
be done to avoid this problem...


-- System Information:
Debian Release: 5.0
  APT prefers stable
  APT policy: (990, 'stable')
Architecture: i386 (i686)

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

Versions of packages libssl0.9.8 depends on:
ii  debconf [debconf-2.0]  1.5.24Debian configuration management sy
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

libssl0.9.8 recommends no packages.

libssl0.9.8 suggests no packages.

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#337074: MD Lists

2009-04-07 Thread Vince Lyon


Certified Doctors in the US 

788,513 in total  17,387 emails

Lots of Doctors in specialties like Orthopedics, Surgery, Radiology, 
Dermatology, Neurology, General Practice etc..

16 different sortable fields

Cost just slashed -  $397


 Receive the items below as a Bon.US if  you order this week 

-- Contact List of American Pharma Companies
  Personal email addresses (47,000 in total) and names for top level executives

-- American Hospitals
  complete contact information for CEO's, CFO's, Directors and more - over 
23,000 listings in total for more than 7,000 hospitals in the USA

-- US Dentist List
  Practically every dentist in the USA is listed here

-- American Chiropractors Listing
  100,000 Chiropractors in the USA (worth $250 alone)

reply to:  gra...@medlistsources.com

  

valid thru  April 11 


to be taken off please email stopp...@medlistsources.com 



-- 
Este mensaje ha sido analizado por MailScanner
en busca de virus y otros contenidos peligrosos,
y se considera que está limpio.
For all your IT requirements visit: http://www.transtec.co.uk




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522741: ITP: ieee-data -- Organizationally Unique Identifier listing

2009-04-07 Thread Filippo Giunchedi
On Tue, Apr 07, 2009 at 12:23:07AM -0600, Wesley J. Landaker wrote:
  The idea would be to gather more data under the same source package and
  split it into binaries as needed, 
 
 Okay, I have no objections if it's just the source package with that name.
 
  can you point to more IEEE data already
  in the archive you are referring to?
 
 Not off the top of my head, but if this is meant to be a source package to 
 collect it all and avoid duplication, I'm all for that!

Allright then, indeed it was not crystal clear that ieee-data is the source
name. :)

filippo
--
Filippo Giunchedi - http://esaurito.net - 0x6B79D401

It is easier to write an incorrect program than understand a correct one.
-- Alan Perlis



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522767: [Pkg-db-devel] Bug#522767: Please introduce a db-utils package

2009-04-07 Thread Joerg Dorchain
On Mon, Apr 06, 2009 at 10:19:23PM +0200, Florian Weimer wrote:
  in order to always have the latest dbx.x-utils, it would be nice
  to create a db-utils dummy package which always depends on the
  latest version of the actual pakcage. This could be similiar to
  the gcc-package, which always depends upon the latest real
  package.
 
 The various dbx.x-util packages are incompatible, and each has
 binaries in its own namespace.  I don't think providing a db-utils
 package makes sense at the current stage (where we still have multiple
 Berkeley DB versions in active use).

My idea is to have package without any files, merely having a
depends: line on the latest dbx.x-utils package.

My background for this is that some packages, e.g. torrus, use
berkely db by build-depending on the libdb-dev package (Notice
the package without a version in the name). When the db version
number increases, existing databases have to be manually converted to
the new format, typically by running dbx.x-recover on it (Using
the side effect of automatically updating existing databses to
the latest format).

By having an unversioned db-tulis package, the db_recover
corresponding to the libdb version used to build torrus would be
automatically available to ease or even automatise these upgrades.

This definitivly does not mean to abandon the versioned
dbx.x-utils packages.

Just as the gcc dummy package ensures that typing gcc gives
something useful, i.e. the latest gcc (currently gcc-4.3 4.3.3-3 by
providing /usr/bin/gcc - gcc-4.3), IMHO a similiar db-utils
package would be useful.

To go further with the analogy, this does not prevent to have gcc
4.1, 4.2 and 4.3 (or even older gccs) installed and working at
the same time.

Bye,

Joerg


signature.asc
Description: Digital signature


Bug#522883: python-constraint: Does not load (import).

2009-04-07 Thread Brett Nash
Package: python-constraint
Version: 0.3.0-6.1
Severity: grave
Justification: renders package unusable

nstalling python-constraint I am unable to use it.

Python 2.5.4 (r254:67916, Feb 17 2009, 20:16:45)
[GCC 4.3.3] on linux2
Type help, copyright, credits or license for more information.
 import logilab
 import logilab.constraint
Traceback (most recent call last):
  File stdin, line 1, in module
  ImportError: No module named constraint


Similarly with the examples:
% python /usr/share/doc/python-constraint/examples/chess.py
Traceback (most recent call last):
  File /usr/share/doc/python-constraint/examples/chess.py, line 4, in module
from logilab.constraint import fd
ImportError: No module named constraint

I can reproduce this on a second machine too.

Regards,
nash

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

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

Versions of packages python-constraint depends on:
ii  python2.5.2-2An interactive high-level object-o
ii  python-central0.6.8  register and build utility for Pyt
ii  python-logilab-common 0.39.0-1   useful miscellaneous modules used 

python-constraint recommends no packages.

Versions of packages python-constraint suggests:
pn  python-psyco  none (no description available)

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#516262: festival: Please add support for --language russian

2009-04-07 Thread Kartik Mistry
On Mon, Apr 6, 2009 at 2:05 PM, Dmitry E. Oboukhov un...@debian.org wrote:
 The package festvox-ru has already been added to Debian/main.
 Please, apply the patch :)

Kumar, Can we upload festival now? :)

I will start working on rest pending things

-- 
 Cheers,
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 Debian GNU/Linux Developer
 Blog.en: ftbfs.wordpress.com
 Blog.gu: kartikm.wordpress.com



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#517748: linux-image-2.6.26-1-686 System locks up under heavy disk load (MD Resync e.g.)

2009-04-07 Thread Rudi Daemen
I have not been able to reproduce the problem on my testbox (Since I
test this onder VMware, hardware is not comparable to the production
machine). I did update the kernel with the newer version in te
repositories (Now running linux-image-2.6.26-1-686, 2.6.26-13lenny2)
but the problem still exists.

To keep the system workable (and prevent long lockups) I set the
resync speed to 2MB/s resulting in a two day resync time for the
array. Though even at 2MB/s the system still lockes up only for
shorter periods of time. Still getting the same messages in dmesg, see
attached txt file.
[1406330.496019] BUG: soft lockup - CPU#0 stuck for 85s! [snmpd:4612]
[1406330.496019] Modules linked in: ppdev parport_pc lp parport sit tunnel4 
ipt_
MASQUERADE xt_multiport xt_tcpudp xt_state 
ip6table_filter iptable_nat nf_nat nf   
 _conntrack_ipv4 
iptable_filter ip_tables jfs dm_snapshot dm_mirror dm_log dm_mod

 ip6t_rt ip6table_mangle ip6_tables x_tables ipv6 cpufreq_ondemand 
acpi_cpufreq
 freq_table fuse nf_conntrack_ftp nf_conntrack 
usb_storage ntfs nls_base loop snd  
  _pcm snd_timer snd 
soundcore snd_page_alloc pcspkr button i2c_viapro i2c_core sh   

 pchp pci_hotplug via_agp agpgart evdev ext3 jbd mbcache raid456 async_xor 
async_  
  memcpy async_tx xor raid1 md_mod sd_mod 
ide_pci_generic usbhid hid ff_memless vi
a82cxxx ide_core 
sata_promise via_rhine mii ata_generic libata ehci_hcd uhci_hcd 

usbcore scsi_mod dock thermal processor fan thermal_sys
[1406330.496019]
[1406330.496019] Pid: 4612, comm: snmpd Not tainted (2.6.26-1-686 #1)
[1406330.496019] EIP: 0060:[c023db1e] EFLAGS: 00200202 CPU: 0
[1406330.496019] EIP is at get_stats+0x2e/0x50
[1406330.496019] EAX: f74523c0 EBX: f74cc858 ECX:  EDX: c03c48c0
[1406330.496019] ESI:  EDI: 05a5734f EBP: 08badbff ESP: eb96df0c
[1406330.496019]  DS: 007b ES: 007b FS: 00d8 GS: 0033 SS: 0068
[1406330.496019] CR0: 8005003b CR2: b7fb CR3: 2b951000 CR4: 0690
[1406330.496019] DR0:  DR1:  DR2:  DR3: 
[1406330.496019] DR6: 0ff0 DR7: 0400
[1406330.496019]  [c0257412] ? dev_seq_show+0x1c/0x7b
[1406330.496019]  [c018a7b3] ? seq_read+0x196/0x26f
[1406330.496019]  [c018a61d] ? seq_read+0x0/0x26f
[1406330.496019]  [c01a12b2] ? proc_reg_read+0x58/0x6b
[1406330.496019]  [c01a125a] ? proc_reg_read+0x0/0x6b
[1406330.496019]  [c017499e] ? vfs_read+0x81/0x11e
[1406330.496019]  [c0174def] ? sys_read+0x3c/0x63
[1406330.496019]  [c0103853] ? sysenter_past_esp+0x78/0xb1
[1406330.496019]  ===
[1406413.424020] BUG: soft lockup - CPU#0 stuck for 74s! [snmpd:4612]
[1406413.424020] Modules linked in: ppdev parport_pc lp parport sit tunnel4 
ipt_
MASQUERADE xt_multiport xt_tcpudp xt_state 
ip6table_filter iptable_nat nf_nat nf   
 _conntrack_ipv4 
iptable_filter ip_tables jfs dm_snapshot dm_mirror dm_log dm_mod

 ip6t_rt ip6table_mangle ip6_tables x_tables ipv6 cpufreq_ondemand 
acpi_cpufreq
 freq_table fuse nf_conntrack_ftp nf_conntrack 
usb_storage ntfs nls_base loop snd  
  _pcm snd_timer snd 
soundcore snd_page_alloc pcspkr button i2c_viapro i2c_core sh   

 pchp pci_hotplug via_agp agpgart evdev ext3 jbd mbcache raid456 async_xor 
async_  
  memcpy async_tx xor raid1 md_mod sd_mod 
ide_pci_generic usbhid hid ff_memless vi
a82cxxx ide_core 
sata_promise via_rhine mii 

Bug#522533: devilspie: below function doesn't work as before

2009-04-07 Thread Ross Burton
On Sat, 2009-04-04 at 17:13 +0100, Luís Picciochi Oliveira wrote:
   After yesterday's upgrade on my machine, devilspie stopped working as
 before: the terminal stays below every window as it should, but as soon
 as I start another terminal, the DesktopConsole appears in front of it
 (and in front of all other windows). If I click other windows, they will
 get over the DesktopConsole, but when I click some gnome-terminal again,
 the DesktopConsole appears on top of all windows again.

Try reverting gnome-terminal back to 2.22.  It sounds like
gnome-terminal is doing some window raising which works around the nasty
hacks Devils Pie tries to do.

Ross
-- 
Ross Burton mail: r...@burtonini.com
  jabber: r...@burtonini.com
   www: http://burtonini.com


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


Bug#522884: RFP: vmpk -- Virtual Midi Piano Keyboard

2009-04-07 Thread rosea
Package: wnpp
Severity: wishlist

Pleae package an improve virtual keyboard

* Package name: vmpk
  Version : 0.4.2
  Upstream Author : Pedro Lopez-Cabanillas plcl AT users.sourceforge.net 
* URL : http://vmpk.sourceforge.net/#Installation/
* License : GPL 
  Programming Lang: C++
  Description : Virtual Midi Piano Keyboard


Virtual MIDI Piano Keyboard is a MIDI event generator and receiver. It doesn't 
produce any sound by itself, but can be used to drive a MIDI synthesizer 
(either hardware or software, internal or external). You can use the computer's 
keyboard to play MIDI notes, and also the mouse. You can use the Virtual MIDI 
Piano Keyboard to display the played MIDI notes from another instrument or MIDI 
file player. To do so, connect the other MIDI port to the input port of VMPK.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522879: pdftops: error while loading shared libraries

2009-04-07 Thread Hamish Moffatt
On Tue, Apr 07, 2009 at 08:59:17AM +0200, Axel K. Stammler wrote:
 Package: xpdf-utils
 Version: 3.02-1.4
 Severity: important
 
 While xpdf works and can print to a postscript printer...
 
 pdftops vbb.pdf
 pdftops: error while loading shared libraries: libstdc++-libc6.0-1.so.2: 
 cannot open shared object file: No such file or directory
 
 I have tried purging  reinstalling xpdf, xpdf-utils and libstc++6, but to no 
 avail.

Could you please post the output of

which pdftops
dpkg -S `which pdftops`
dpkg -s xpdf-utils
ls -l /usr/lib/libstdc++*

Because xpdf-utils and xpdf-reader are built at the same time and the
dependencies force you to have matched versions installed, so I suspect
your pdftops is not the one from the package.


Hamish
-- 
Hamish Moffatt VK3SB ham...@debian.org ham...@cloud.net.au



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#506011: [Yum-devel] I'm the new maintainer for yum in Debian

2009-04-07 Thread Thomas Goirand
Tim Lauridsen wrote:
 I think someone is working on getting iniparse into debian
 http://code.google.com/p/iniparse/issues/detail?id=14can=1
 
 It is used instead of the standard ConfigParser, because the it
 preserves the order, comments and formatting of the ini files, when
 written back to
 disk, ConfigParser will totally messup the file when writing til back to
 disk.
 
 Tim

I know that, there is an ITP (intention do package) filled here:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=506011

What I don't understand is why the ITP has been tagged twice as pending,
then the tag got removed. Maybe Joao Eriberto Mota Filho will be able to
tell us more about the status of his package, and why it's taking 4
months to have it uploaded in SID?

Anyway, even if python-iniparse is uploaded, if I want that the new
package of yum I did reaches Lenny, we can't depend on it. Indeed, the
current yum package in Debian Lenny is broken, as per this entry:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=496137

I'm not sure the package will be accepted in the Lenny point release
though. I'll do my best so it is. And this is all why I am saying that
this iniparse patch is temporary (when trying to have yum sent to Lenny).

Joao Eriberto Mota Filho, is there anything we can do to speedup the
upload process of python-iniparse in SID? Has python-iniparse been
rejected by the ftp masters? What happened?

Thomas




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522885: Memory leaks in HAL scanner code

2009-04-07 Thread Micha Lenk
Package: libchipcard-tools
Version: 4.2.5-1
Severity: serious

There are several memory leaks in the code that scans HAL for new
hardware devices. The problem has been reported and is discussed on the
[1]AqBanking mailinglist.

This bug report intends to keep the buggy version of libchipcard out of
testing.

Regards
  Micha

1.
http://www.mail-archive.com/aqbanking-de...@lists.sourceforge.net/msg03251.html



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#513382: closed by Sune Vuorela deb...@pusling.com (Re: Bug#513382: akonadi-server: depends on mysql-server)

2009-04-07 Thread Roger Leigh
On Tue, Apr 07, 2009 at 01:19:53AM +0200, Sune Vuorela wrote:
 On Tuesday 07 April 2009 00:22:33 Roger Leigh wrote:
  On Wed, Jan 28, 2009 at 02:55:26PM +, Debian Bug Tracking System wrote:
   Date: Wed, 28 Jan 2009 15:51:19 +0100
   From: Sune Vuorela deb...@pusling.com
   Subject: Re: Bug#513382: akonadi-server: depends on mysql-server
   To: 513382-d...@bugs.debian.org
  
   No. this is how akonadi at least currently work and it is a
   design decision upstream to do it this way.
 
  Then, respectfully, upstream do need to have their heads examined.
 
  Using the mysql client libraries would be understandable, but
  this is just completely objectionable.
 
  I don't want a trace of mysql near my system, but I would like to
  use kde4.  Optional mysql database bindings for the server would
  be preferable so I don't even need the mysql client libraries
  installed.  Really.
 
 you would prefer if they used oracle or postgresql?
 I really think using mysql is much better than reimplementing a fast storage 
 that allows concurrent access.

Depending on /any/ database *server* is not acceptable.  It should
be using the *client interface* like every other program out there.
This means either the client program, client library, or some other
database abstraction library are used to connect to the server.

If it wants to embed a server, then sqlite exists for just this
purpose.

Directly running an entire database server instance for a single
client is *wrong*, bloated and broken design.  And I'm forced to
run a system mysql instance unless I take special steps to
disable it, with all the security issues that implies.  No thanks.

  kde[4] - kdepim - korganizer - akonadi-server - mysql-server
 
 Without akonadi-server, korganizer won't work.
 Very soon, kmail will also require akonadi-server.
 Akonadi is here to stay.

Then these packages must be removed from the appropriate kde
metapackages until they are fixed.

Installing mysql is *simply not acceptable*.

This might be something the Technical Committee could look at;
I won't find anything other than the removal of this dependency
acceptable.


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#513382: closed by Sune Vuorela deb...@pusling.com (Re: Bug#513382: akonadi-server: depends on mysql-server)

2009-04-07 Thread Sune Vuorela
On Tuesday 07 April 2009 09:26:59 Roger Leigh wrote:
  you would prefer if they used oracle or postgresql?
  I really think using mysql is much better than reimplementing a fast
  storage that allows concurrent access.

 Depending on /any/ database *server* is not acceptable.  It should
 be using the *client interface* like every other program out there.
 This means either the client program, client library, or some other
 database abstraction library are used to connect to the server.

It uses the client interface like any other program out there to a *local* 
database. Currently, only mysql is supported.

 If it wants to embed a server, then sqlite exists for just this
 purpose.

Then please fix sqlite to be fast and deadlock free when accessed from multiple 
processes and threads.

 Directly running an entire database server instance for a single
 client is *wrong*, bloated and broken design.  And I'm forced to
 run a system mysql instance unless I take special steps to
 disable it, with all the security issues that implies.  No thanks.

I have several times approached mysql maintainers to make it possible to 
create a version that does not start a system daemon as well. Akonadi starts 
its own instance as user.

   kde[4] - kdepim - korganizer - akonadi-server - mysql-server
 
  Without akonadi-server, korganizer won't work.
  Very soon, kmail will also require akonadi-server.
  Akonadi is here to stay.

 Then these packages must be removed from the appropriate kde
 metapackages until they are fixed.

Nothing here is broken, so nothing to fix.

 Installing mysql is *simply not acceptable*.

 This might be something the Technical Committee could look at;
 I won't find anything other than the removal of this dependency
 acceptable.

Oh well. Just take it to tech-ctte then. As said, Akonadi uses mysql-server 
and akonadi is here to stay.

/Sune
-- 
Genius, I cannot boot the mailer, how does it work?

First of all from X-Windows you neither should debug a AGP system, nor should 
doubleclick the sendmail to overclock the URL of a 47X driver.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#313434: database problem probably

2009-04-07 Thread Matus UHLAR - fantomas
Hello,

I guess this may be a problem of htdig's database. Could you try wiping it
out?
-- 
Matus UHLAR - fantomas, uh...@fantomas.sk ; http://www.fantomas.sk/
Warning: I wish NOT to receive e-mail advertising to this address.
Varovanie: na tuto adresu chcem NEDOSTAVAT akukolvek reklamnu postu.
10 GOTO 10 : REM (C) Bill Gates 1998, All Rights Reserved!



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#439717: [Build-common-hackers] Bug#439717: Bug#439717: dh_desktop: no patch needed

2009-04-07 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Mon, Apr 06, 2009 at 09:09:28PM -0400, Jay Berkenbilt wrote:
Jonas Smedegaard d...@jones.dk wrote:

 On Mon, Apr 06, 2009 at 07:50:40PM -0400, Jay Berkenbilt wrote:

Looking into this further, I believe no patch to cdbs is required. 
Simply including /usr/share/cdbs/1/class/gnome.mk sometime after 
including /usr/share/cdbs/1/rules/debhelper.mk appears to be 
sufficient to cause dh_desktop to be run at the correct time.  At 
least for my package, this is sufficient to remove the lintian 
warning.

 Hm.  If you won't do it then I will: It is wrong to require a 
 specific order of including the CDBS snippets, if at all possible to 
 avoid it.


 Thanks for raising attention to the issue, even if you do not see it 
 as relevant to fix it (properly). :-)

Actually, I didn't really check carefully about the order.  The order
may not matter.  I didn't have gnome.mk included at all, so I figured
the problem was just my omission.  However, I see code in gnome.mk
that is conditional inside of

ifdef _cdbs_rules_debhelper
...
endif

which is most likely order-dependent since the ifdef will be evaluated 
at the time that the file is loaded rather than at the time that the 
rules are evaluated as with ordinary macros.

Yes, that indeed sounds like order-dependent.  Many places in the CDBS 
code has such without being strictly needed.  I want to clean that up - 
I apologize if I am now stealing your attention from something related 
but slightly different: I just really would appreciate help :-)


Anyway, if you'd still like me to patch, I can still look into it.  I
wasn't trying to punt it...just thinking that the error was actually
in my rules rather than in cdbs. :-)  However, I won't have another
chance to look at it until at least the weekend.

Yes, please.  If I can persuade you to cook up a patch then please do.  
Just take your time.


Another thought (but please note that I still haven't looked looked 
closely at this bugreport - am just replying to your recent messages): 
If it is safe to always run dh_debhelper (e.g. it does not require new 
dependencies) then perhaps it should be added to debhelper.mk (and 
dropped from gnome.mk if that snippet depend on debhelper).  My 
reasoning here is that I suspect desktop files are not GNOME-specific, 
so should be equally easy handled for other desktops too.


Thanks,

  - Jonas

- -- 
* Jonas Smedegaard - idealist og Internet-arkitekt
* Tlf.: +45 40843136  Website: http://dr.jones.dk/

  [x] quote me freely  [ ] ask before reusing  [ ] keep private
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)

iEYEARECAAYFAknbBdUACgkQn7DbMsAkQLjwaQCfXzhHC/+LRguBT9vK+JK0M34v
LoIAmgI0HgI4nJE2zqSVDtI4nhgZNmd2
=zsPg
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522831: dh-ocaml: it should be possible to automatically calulate runtime dependencies

2009-04-07 Thread Stefano Zacchiroli
On Mon, Apr 06, 2009 at 10:39:57PM +0200, Eugeniy Meshcheryakov wrote:
 I saw it, but it is about build-time dependencies, not run-time ones.

No, it is only about runtime dependencies of the shipped bytecode and
nativecode objects. If the objects happen to be used at compile time
(e.g. for linking) then they can become build-time dependencies for
something.

Cheers.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime


signature.asc
Description: Digital signature


Bug#490772: configure needs --with-pam-mods-dir=/lib/security

2009-04-07 Thread Paweł Więcek
tag 490772 +pending
thanks

Hi,

On Tue, 2009-04-07 at 01:05 +0100, Malcolm Locke wrote:
 Adding --with-pam-mods-dir=/lib/security to ./configure on line 51 of
 debian/rules gets the package to build correctly on my Lenny system.

It's already added in my working copy.
Thanks anyway :^)

  Paweł



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522836: zile: Assertion crash in auto-fill-mode

2009-04-07 Thread Reuben Thomas

On Mon, 6 Apr 2009, Tim wrote:


Oh, please take no offense, as none was intended.  I'm not even sure
what bug reports I might have submitted on the issue in the past, and
if I did, it probably didn't have enough detail.  It's just one of
those bugs that only pops up right in the middle of something and I
never find the time to come back and look into it.


Not at all, just wanted to reassure you that I'm on the case.

--
http://rrt.sc3d.org/ | Quidquid latine dictum sit, altum viditur (Anon)



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522310: [Pkg-libvirt-maintainers] Bug#522310: virt-manager: recognizing USB devices requires restart of libvirt

2009-04-07 Thread Andreas Unterkircher

I tried again.

lsusb shows up the newly plugged in device
(Aladdin Knowledge Systems HASP v0.06):

u...@srv-mfm-vm02:~$ sudo lsusb
Bus 006 Device 003: ID 03f0:1327 Hewlett-Packard
Bus 006 Device 002: ID 03f0:1027 Hewlett-Packard
Bus 006 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 005 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 003 Device 002: ID 0529:0001 Aladdin Knowledge Systems HASP v0.06
Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
Bus 001 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub


virsh nodedev-list at the same time :

virsh # nodedev-list
error: Failed to count node devices
error: this function is not supported by the hypervisor: virNodeNumOfDevices


after a restart of libvirtd it is working:

u...@srv-mfm-vm02:~$ sudo virsh nodedev-list
computer
net_00_1f_29_5d_dd_14
net_00_1f_29_5d_dd_15
net_00_1f_29_5d_dd_16
net_00_1f_29_5d_dd_17
net_00_21_5a_cf_e7_aa
net_00_21_5a_cf_e7_ac
pci_1002_515e
pci_103c_3230
pci_103c_3230_0
pci_103c_3300
pci_103c_3302
pci_111d_8018
pci_111d_8018_0
pci_111d_8018_1
pci_1166_103
pci_1166_103_0
pci_14e4_164c
pci_14e4_164c_0
pci_8086_10bc
pci_8086_10bc_0
pci_8086_10bc_1
pci_8086_10bc_2
pci_8086_244e
pci_8086_25d8
pci_8086_25e2
pci_8086_25e3
pci_8086_25e5
pci_8086_25e7
pci_8086_25f0
pci_8086_25f0_0
pci_8086_25f0_1
pci_8086_25f1
pci_8086_25f3
pci_8086_25f5
pci_8086_25f6
pci_8086_25f8
pci_8086_25f9
pci_8086_2670
pci_8086_2688
pci_8086_2689
pci_8086_268a
pci_8086_268b
pci_8086_268c
pci_8086_2690
pci_8086_2692
pci_8086_269e
pci_8086_3500
pci_8086_350c
pci_8086_3510
pci_8086_3514
pci_8086_3518
pci_e11_b203
pci_e11_b204
storage_serial_3600508b100104c39565743344e530005
storage_serial_3600508b100104d3953574b304a4b0008
storage_serial_3600508b100104d3953574b304a4b0009
storage_serial_KZ188921642
usb_device_1d6b_1__00_1d_0
usb_device_1d6b_1__00_1d_0_if0
usb_device_1d6b_1__00_1d_0_usbraw
usb_device_1d6b_1__00_1d_1
usb_device_1d6b_1__00_1d_1_if0
usb_device_1d6b_1__00_1d_1_usbraw
usb_device_1d6b_1__00_1d_2
usb_device_1d6b_1__00_1d_2_if0
usb_device_1d6b_1__00_1d_2_usbraw
usb_device_1d6b_1__00_1d_3
usb_device_1d6b_1__00_1d_3_if0
usb_device_1d6b_1__00_1d_3_usbraw
usb_device_1d6b_1__01_04_4
usb_device_1d6b_1__01_04_4_if0
usb_device_1d6b_1__01_04_4_usbraw
usb_device_1d6b_2__00_1d_7
usb_device_1d6b_2__00_1d_7_if0
usb_device_1d6b_2__00_1d_7_usbraw
usb_device_3f0_1027_noserial
usb_device_3f0_1027_noserial_if0
usb_device_3f0_1027_noserial_if1
usb_device_3f0_1027_noserial_usbraw
usb_device_3f0_1327_noserial
usb_device_3f0_1327_noserial_if0
usb_device_3f0_1327_noserial_usbraw
usb_device_529_1_noserial
usb_device_529_1_noserial_if0
usb_device_529_1_noserial_usbraw


Yes, hald is up too:

u...@srv-mfm-vm02:~$ ps ax | grep [h]ald
 6462 ?Ss 0:00 /usr/sbin/hald


Regards,
Andreas




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522733: Debian Developer's Reference: FR instead of EN

2009-04-07 Thread Simon Paillard
On Mon, Apr 06, 2009 at 03:40:17PM -0700, Matt Kraai wrote:
 On Mon, Apr 06, 2009 at 09:46:52PM +0200, Simon Paillard wrote:
  The names from the packages are not the ones expected by the
  content-negociation setup.
  
  Hence the change in the crontab.
  
  However, I guess the old files *html.* shoud be removed.
 
 That leaves all of the links broken, since they link to FILE.html.

The links should not exist either, since request to filename.html is
handled by apache content negociation which will display the relevant
filaname.$lang.html to the user.

I don't know where these symlinks come from..

-- 
Simon Paillard



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522831: dh-ocaml: it should be possible to automatically calulate runtime dependencies

2009-04-07 Thread Samuel Mimram
On Tue, Apr 7, 2009 at 9:54 AM, Stefano Zacchiroli z...@debian.org wrote:

 On Mon, Apr 06, 2009 at 10:39:57PM +0200, Eugeniy Meshcheryakov wrote:
  I saw it, but it is about build-time dependencies, not run-time ones.

 No, it is only about runtime dependencies of the shipped bytecode and
 nativecode objects. If the objects happen to be used at compile time
 (e.g. for linking) then they can become build-time dependencies for
 something.


By the way, since the 3.11 migration is now over, do we have some insights
about when we could start to switch to these versionned dependencies?

Cheers,

Sam.


Bug#509371: installation-guide: Installation guide accessibility sections

2009-04-07 Thread Samuel Thibault
Hello,

Frans Pop, le Tue 07 Apr 2009 05:02:08 +0200, a écrit :
  Here is an updated patch.
 
 I've reviewed the patch

Thanks for the the review!  I'm OK with your changes.

 - titleHardware Speech Syntheses/title
 + titleHardware Speech Synthesis/title

Oops I missed that one indeed.

Samuel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522848: [Pkg-hpijs-devel] Bug#522848: hplip: scanning only working as root

2009-04-07 Thread Mark Purcell
On Tuesday 07 April 2009 08:23:58 Anders Boström wrote:
 hp-toolbox and scanning isn't working. Scanning works as root, but
 when run as a normal user, I get this:

Hi Anders,

This is almost certainly a permissions issue.

Please confirm your user account is a member of the group lp.

 # Hewlett-Packard PSC750
 SYSFS{idVendor}==03f0, SYSFS{idProduct}==1411, MODE=0664,
 GROUP=scanner, ENV{libsane_matched}=yes

Your rule has added the group scanner.  You should check what permissions are 
for your device without your rule.

[...]
 Checking for permissions of USB attached printers...

 HP Device 0x1411 at 007:005:
 Device URI: hp:/usb/PSC_750?serial=HU1BGCT0M6WB
 Device node: /dev/bus/usb/007/005
 Mode: 0664
 getfacl: Removing leading '/' from absolute path names
 # file: dev/bus/usb/007/005
 # owner: root
 # group: scanner
 user::rw-
 group::rw-
 other::r--

This is the permissions after your additional rule is applied.  What are the 
permissions without your rule?

Mark


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


Bug#522886: Typo in German locale: „wir beendet“

2009-04-07 Thread Joachim Breitner
Package: mail-notification
Version: 5.4.dfsg.1-1+b1
Severity: minor
Tags: l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

minor mistake in German translation:

$ mail-notification --quit
** Message: E-Mail-Eingangsüberwachung wir beendet

ought to say

$ mail-notification --quit
** Message: E-Mail-Eingangsüberwachung wird beendet

Greetings,
Joachim


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

Kernel: Linux 2.6.28-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/bash

Versions of packages mail-notification depends on:
ii  gconf2 2.24.0-7  GNOME configuration database syste
ii  gnome-icon-theme   2.24.0-4  GNOME Desktop icon theme
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.24.0-2  The ATK accessibility toolkit
ii  libbonobo2-0   2.24.1-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
ii  libc6  2.9-6 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.12-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared lib
ii  libgconf2-42.24.0-7  GNOME configuration database syste
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libgmime-2.0-2a2.2.22-4  MIME library
ii  libgnome-keyring0  2.26.0-2  GNOME keyring services library
ii  libgnome2-02.24.1-2  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.24.0-3GNOME Virtual File System (runtime
ii  libgnomevfs2-extra 1:2.24.0-3GNOME Virtual File System (extra m
ii  libgtk2.0-02.14.7-5  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.24.0-2  Layout and rendering of internatio
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsasl2-2 2.1.22.dfsg1-23   Cyrus SASL - authentication abstra
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libx11-6   2:1.2-1   X11 client-side library
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  notification-daemon0.4.0-1   a daemon that displays passive pop
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

mail-notification recommends no packages.

Versions of packages mail-notification suggests:
pn  fetchyahoonone (no description available)
pn  getlive   none (no description available)
pn  mail-notification-evolution   none (no description available)

- -- no debconf information

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

iEYEARECAAYFAknbDcMACgkQ9ijrk0dDIGw8zACdF+1ob9wDo2hg/cHE1hcOFYID
RGMAn2Pmkk0pAb+6oMvCCNsYrPEaF+bJ
=IDS3
-END PGP SIGNATURE-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#518016: netfilter-extensions-source: fails to build against kernel 2.6.28: error: asm/semaphore.h: No such file or directory

2009-04-07 Thread Michael Prokop
* Michael Prokop m...@grml.org [20090407 08:20]:

 [...]
 make[2]: Entering directory `/home/mika/linux-2.6.28'
   CC [M]  /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_set.o
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_set.c:130: 
 warning: initialization from incompatible pointer type
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_set.c:134: 
 warning: initialization from incompatible pointer type
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_set.c:135: 
 warning: initialization from incompatible pointer type
   CC [M]  /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_SET.o
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_SET.c:150: 
 warning: initialization from incompatible pointer type
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_SET.c:154: 
 warning: initialization from incompatible pointer type
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ipt_SET.c:155: 
 warning: initialization from incompatible pointer type
   CC [M]  /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ip_set.o
 /usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ip_set.c:27:27: 
 error: asm/semaphore.h: No such file or directory
 make[3]: *** 
 [/usr/src/modules/netfilter-extensions/net/ipv4/netfilter/ip_set.o] Error 1
 [...]

Any news?

regards,
-mika-


signature.asc
Description: Digital signature


Bug#513382: closed by Sune Vuorela deb...@pusling.com (Re: Bug#513382: akonadi-server: depends on mysql-server)

2009-04-07 Thread Kevin Krammer
On Tuesday 07 April 2009, Roger Leigh wrote:
 On Tue, Apr 07, 2009 at 01:19:53AM +0200, Sune Vuorela wrote:

  you would prefer if they used oracle or postgresql?
  I really think using mysql is much better than reimplementing a fast
  storage that allows concurrent access.

 Depending on /any/ database *server* is not acceptable.  It should
 be using the *client interface* like every other program out there.
 This means either the client program, client library, or some other
 database abstraction library are used to connect to the server.

It is actually using an abstraction, the Qt SQL plugin system and the database 
access code is also quite centralized.
Adding support for other database engines is possible, just not that high on 
the priority list as getting the rest of the infrastruture running and 
porting the applications.

Once support for more than one database engine is available, it might be 
possible to create a meta package and have it provided by several database 
packages.

 If it wants to embed a server, then sqlite exists for just this
 purpose.

There is also mysql embedded, but unfortunately it doesn't work reliably 
enough either (IIRC it doesn't support transactions).

Starting a local mysql instance is basically a workaround that provides the 
necessary features in a reliable way and does not require administrator level 
settings like using a system daemon. (this is supported though)

 Directly running an entire database server instance for a single
 client is *wrong*, bloated and broken design.  And I'm forced to
 run a system mysql instance unless I take special steps to
 disable it, with all the security issues that implies.  No thanks.

As Sune already wrote it is unfortunate that the mysql server package also 
contains the global startup mechanism. Makes sense if running a single 
instance is the only use case, but obviously breaks for others.

Cheers,
Kevin
-- 
Kevin Krammer, KDE developer, xdg-utils developer
KDE user support, developer mentoring


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


Bug#522772: ITP: CDO -- Climate Data Operators

2009-04-07 Thread Andreas Tille

Hi,

a Debian Science task meteorology comes to mind ...

Kind regards

Andreas.

On Mon, 6 Apr 2009, Alastair McKinstry wrote:


Package: wnpp
Severity: wishlist
Owner: Alastair McKinstry mckins...@debian.org

* Package name: CDO
 Version : 1.3.0
 Upstream Author : Uwe Schulzweida  uwe.schulzwe...@zmaw.de
* URL : http://www.mpimet.mpg.de/fileadmin/software/cdo/
* License : GPL2
 Programming Lang: C
 Description : Climate Data Operators - tools for climate data manipulation

CDO is a collection of command line Operators to manipulate and analyse Climate 
model Data.
Supported data formats are GRIB, netCDF, SERVICE, EXTRA and IEG. There are more 
than 400
operators available. The following table provides a brief overview of the main 
categories.

-- System Information:
Debian Release: 5.0
 APT prefers stable
 APT policy: (500, 'stable')
Architecture: powerpc (ppc)



--
To UNSUBSCRIBE, email to debian-devel-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org





--
http://fam-tille.de



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522776: debian-policy: mandate existence of a standardised UTF-8 locale

2009-04-07 Thread Giacomo A. Catenazzi

Roger Leigh wrote:

On Mon, Apr 06, 2009 at 11:09:17AM -0700, Steve Langasek wrote:

On Mon, Apr 06, 2009 at 05:33:35PM +, Thorsten Glaser wrote:

If you need a specific locale (as seems from mksh, not
sure if it is a bug in that program), you need to set it.

You can only set a locale on a glibc-based system if it’s
installed beforehand, which root needs to do.

You can build-depend on the locales package and generate the locales you
want locally, using LOCPATH to reference them.  There's no need for Debian
to guarantee the presence of a particular locale ahead of time -
particularly one that isn't actually useful to end users, as C.UTF-8 would
be.


I think that it would be very useful, I'll detail why below.

The GCC toolchain has, for some time now, been using UTF-8 as the
internal representation for narrow strings (-fexec-charset).  It has
also been using UTF-8 as the default input encoding for C source code
(-finput-charset).  This means that unless you take any special
measures, your program will be outputting UTF-8 strings for all file
and terminal I/O.  Of course, this is backward compatible with ASCII,
and is also transcoded automatically when in a non-UTF-8 locale.  I've
attached a trivial example.  Just to be clear: this handling is
completely built into GCC and libc, and is completely transparent.


Hmm. Warning, you confuse some terms.
- input charset is the source charset (used to parse C code)
- exec charset is the charset of the target machine (which run the program).
- C99 must support unicode identifier (written with \u or in other
  non portable implementation defined way)
- standard libraries can use locales (but only if you initialized the locale),
  but not all the functions, not all uses.
- wide charaters are yet an other things (as you note in your example,
  the wide string is not in UTF-8, but I think UTF-32)

Same input and exec charset really means: don't translate strings
(e.g. in
   if(c = 'a') printf(bcde\n);
 'a' and bcde\n will have the same values as in the input file, else
 it will put in binary the representation of exec charset)

I expect that your program will run fine (i.e. really no changes: the
same binary output), if you use tell GCC that you use any other ASCII-7
derived 8-bit encoding (both for input and exec charset).

printf/wprintf uses locale only for numeric representation.

Usually the interpretation of bytes is done by terminal, not by compiler.



Now, this will work fine in all locales *except for C/POSIX*.
Obviously the charsets of some locales can't represent all the
characters used in this example, but the C library will actually
transcode (iconv) to the locale codeset as best it can.  Except for
C/POSIX.

Now, why is this needed?

If I write a program, I might want to use non-ASCII UTF-8 characters
in the sources.  We have been doing this for years without realising
since GCC switched to UTF-8 as the default internal encoding, but
simply for portability when using the C locale we are restricted to
using ASCII only in the sources,


Really minimal C charset is smaller than ASCII (a portable program
must not have $ and no @, plus C supports also smaller charset,
with trigraps [preprocessor] and/or new bigraphs [compiler])


and then a translation library such
as libintl/gettext to get translated strings with the extended
characters in them.  This is workable, but it imposes a big burden on
translators because I might want to use symbols and other characters
which are not part of a /language/ translation, but need adding by
each and every translator through explicit translator comments in the
sources.  This is tedious and error-prone.  If the sources were UTF-8
encoded, this would work perfectly since I could just use the
necessary UTF-8 characters directly in the source rather than abusing
the translation machinery to avoid non-ASCII codes.  A UTF-8 C locale
thus cuts out a big pile of cruft and complexity in sources which only
exists to cater for people who want to run your code in a C locale!
And the translators can completely ignore the now no longer needed
job of translating special characters as well doing as the actual
translation work, so the symbol usage is identical in all
translations, and their job is much easier.


yes, in a perfect world we need only one charset (and maybe only
one language and one locale). From all the proposals to reach this
target, unicode and UTF-8 seems the best solution.
But... for now take care about locales and don't assume UTF-8,
or you will cause trouble with a lot of non-UTF-8 users.
Converting locale (from non-UTF-8 to UTF-8) is simple for
English and few European languages, but it is a tedious work
for many user: it need a flag day, in which I should convert
all my files to UTF-8 or annotate every file with the right
encoding (most of editors and tools understands such annotations).

So for now we support UTF-8, we try to set UTF-8 default to
new users, and UTF-8 is the encoding for debian files in 

Bug#501930: Bug#501927: debian_bundle fails with empty lines containing a space

2009-04-07 Thread Stefano Zacchiroli
On Sat, Oct 11, 2008 at 07:05:31PM +0200, Stefano Zacchiroli wrote:
 Interestingly enough, the Debian policy is ambiguous about what are
 the paragraph separators in debian/control. Section 5.1 first states
 that blank lines are separators (which is usually interpreted as \n
 alone):
 
  A control file consists of one or more paragraphs of fields[1].
  The paragraphs are separated by blank lines.
 
 Then, later on, it seems to allow for other blank characters,
 mentioning spaces and tabs:
 
  Blank lines, or lines consisting only of spaces and tabs, are not
  allowed within field values or between fields - that would mean a
  new paragraph.
 
 If generic blanks (space, tabs, ...) are the intended separators I've
 no objection in fixing the bug as you propose. Cloning/reassigning
 this bug to policy, as it needs to be discussed there as well.

Heya, policy maintainers, can you please give us a bit of feedback on
your draft stance on this issue?

I _think_ I'm going to apply the proposed patch in python-debian,
i.e. allow for liberal blank lines as stanza separators, on the
basis that:

- it is my feeling than that interpretation is the one the policy
  intended (according to the second paragraph I quoted)

- apparently there are out there Packages using liberal separators

Still, I would have preferred to have at least an idea of how you plan
to clarify this, even if the clarification will come later on.

Many thanks in advance.
Cheers.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime


signature.asc
Description: Digital signature


Bug#522888: git-buildpackage: Cannot determine upstream version from sugar-toolkit-0.84_0.84.4.orig.tar.gz

2009-04-07 Thread Jonas Smedegaard
Package: git-buildpackage
Version: 0.4.50
Severity: normal

As subject says, git-import-orig cannot automatically determine upstream
version from a tarball named sugar-toolkit-0.84_0.84.4.orig.tar.gz.

I imagine that the tool uses some fuzzy scanning for digits and chokes
the digits in package name too.  If I am right, then I suggest first
parsing by strict debian logic (version starts after an underscore and
ends at .orig) and only if that fails try with fuzzy logic.


Kind regards,

 - Jonas

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

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

Versions of packages git-buildpackage depends on:
ii  devscripts   2.10.47 scripts to make the life of a Debi
ii  git-core 1:1.6.2.2-1 fast, scalable, distributed revisi
ii  python   2.5.4-2 An interactive high-level object-o
ii  python-dateutil  1.4.1-3 powerful extensions to the standar
ii  python-support   1.0.0   automated rebuilding support for P

git-buildpackage recommends no packages.

Versions of packages git-buildpackage suggests:
ii  git-load-dirs 1.1.6+nmu2 Import upstream archives into git
ii  pristine-tar  0.21   regenerate pristine tarballs

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#378546: axel-kapt: uses all available memory, crashes, brings system to a crawl

2009-04-07 Thread Y Giridhar Appaji Nag
Hi Andrés,

On 09/04/04 15:53 +0200, Andrés Hamann said ...
 I hope this helps. If there is any additional info I can provide, let me
 know.

Would you be able to try the attached patch and check if the bug still
exists?

Thank you for your efforts :)

Cheers,

Giridhar

-- 
Y Giridhar Appaji Nag | http://people.debian.org/~appaji/
--- /home/appaji/axel-kapt	2009-04-07 14:09:50.411357000 +0530
+++ /usr/bin/axel-kapt	2009-04-07 14:12:12.0 +0530
@@ -45,7 +45,7 @@
 verb Verbose - @| --verbose ;
 quiet Quiet - @| -q ;
 
-term Terminal Type - @combo(x-terminal-emulator, xterm);
+term Terminal Type - @string()=x-terminal-emulator;
 max Max bps- @integer()=0;
 connex :horizontal Connections - @integer()=4;
 search :framed ftp Search - numsites | ! @ ;


signature.asc
Description: Digital signature


Bug#522732: gnome-do: crashes on start with DllNotFoundException

2009-04-07 Thread Jo Shields
On Mon, 2009-04-06 at 17:06 -0700, Alex Malinovich wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Jo Shields wrote:
  On Mon, 2009-04-06 at 00:13 -0700, Alex Malinovich wrote:
 - --snip--
  Trying to start up gnome-do causes it to crash immediately with the 
  following
  output:
 
  Unhandled Exception: System.DllNotFoundException: intl
at (wrapper managed-to-native) Mono.Unix.Catalog:bindtextdomain 
  (intptr,intptr)
at Mono.Unix.Catalog.Init (System.String package, System.String 
  localedir) [0x0] 
at Do.Do.Main (System.String[] args) [0x0] 
 
  Unhandled Exception: System.DllNotFoundException: msvcrt
at (wrapper managed-to-native) Mono.Unix.Native.Stdlib:free (intptr)
at Mono.Unix.UnixMarshal.FreeHeap (IntPtr ptr) [0x0] 
at Mono.Unix.Catalog.Init (System.String package, System.String 
  localedir) [0x0] 
at Do.Do.Main (System.String[] args) [0x0] 
 - --snip--
  
  This looks an AWFUL lot like a broken Mono install. Is
  your /etc/mono/config world-readable, and does it contain entries for
  intl and msvcrt? What does which mono return?
  
 
 It looks like I don't even have a /etc/mono/config. Here are the
 contents of that directory:
 
 total 324K
 drwxr-xr-x 2 root root   63 2009-04-05 23:39 1.0
 drwxr-xr-x 3 root root  114 2009-04-05 23:39 2.0
 - -rw-r--r-- 1 root root 321K 2008-08-09 08:22 browscap.ini
 drwxr-xr-x 2 root root   23 2009-04-05 23:40 mconfig
 
 which mono gives /usr/bin/mono
 
 I know nothing about mono, other than the fact that a few of the apps I
 use use it, so I've never touched any configuration files. If that
 config file is missing is there a package that I can reinstall to get it
 back?

The file in question is part of the mono-common package. Try an
aptitude purge mono-common then reinstall gnome-do


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


Bug#522890: kvm: does not shut down virtual machine when guest OS shuts down

2009-04-07 Thread Adeodato Simó
Package: kvm
Version: 84+dfsg-2
Severity: normal
X-Debbugs-CC: virt-mana...@packages.debian.org

Hello,

I’m using kvm (from experimental) to run a Windows XP guest. My
architecture is amd64, and my Linux version 2.6.29-1-amd64 (though it
happened with every version I’ve used in this computer).

When I shut down the guest OS, the VNC client shows the “Now you can
safely turn off your computer” screen, but the virtual machine does not
automatically shut down itself. Instead, which is annoying, it will go
and spin CPU at 100% (well, one of the two cores of the machine, so it
shows as 50%).

I noticed I was running kvm with -no-acpi; I removed that, but it makes
no difference (well, see below).

It would be very, very nice that kvm would automatically shut down the
virtual machine when the guest OS signals power off with an ACPI event
or whatever.

In case it’s relevant, I never invoke kvm by hand, but use “virt-manager”
and the associated virtinst/libvirt stack. It was libvirt that was passing
-no-acpi, and I removed it by adding “acpi/” in the features section
of the virtual machine; the only difference I got was that the “Shut down”
action no longer worked, and I had to do “Force poweroff”.

Thanks in advance for any help!

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#501927: debian_bundle fails with empty lines containing a space

2009-04-07 Thread Stefano Zacchiroli
On Sat, Oct 11, 2008 at 06:50:03PM +0200, Siegfried Gevatter (RainCT) wrote:
 Parsing hundreds of debian/control files from REVU (Ubuntu's New
 Package Review Platform) using debian_support.PackageFile, I've found
 out that it failed with many of them have they had a space between
 different Package stanzas (that is,  \n instead of just \n).
 
 Therefore, line «if line == '\n':» (line 110, function __iter__)
 should be «if line.strip(' ') == '\n':» instead, so that it handles
 that case gracefully.

This is now fixed, and will arrive in the (Debian) archive shortly.

A few notes:

- the policy clarification we discussed is still pending (see #501930)

- the behavior you required is coherent with what debian_bundle.deb822
  does (which is the main reason why I fixed this in spite of the
  pending clarification)

- the legacy, and more feature-ful/fast anyhow, parser for 822-like
  Debian files is debian_bundle.deb822. Please consider using it in
  the future instead of debian_bundle.debian_support for Packages file
  parsing

Cheers.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522891: drbd8-source: fails to build against 2.6.28

2009-04-07 Thread Michael Prokop
Package: drbd8-source
Version: 2:8.3.1-1
Severity: normal


[...]
  CC [M]  /usr/src/modules/drbd8/drbd/lru_cache.o
  CC [M]  /usr/src/modules/drbd8/drbd/drbd_main.o
In file included from /usr/src/modules/drbd8/drbd/drbd_main.c:52:
include/linux/swab.h:46: error: redefinition of '___swab16'
include/linux/byteorder/swab.h:65: error: previous definition of '___swab16' 
was here
include/linux/swab.h:55: error: redefinition of '___swab32'
include/linux/byteorder/swab.h:69: error: previous definition of '___swab32' 
was here
include/linux/swab.h:64: error: redefinition of '___swab64'
include/linux/byteorder/swab.h:75: error: previous definition of '___swab64' 
was here
include/linux/swab.h:77: error: expected identifier or '(' before '{' token
include/linux/swab.h:86: error: expected identifier or '(' before '{' token
In file included from /usr/src/modules/drbd8/drbd/drbd_main.c:52:
include/linux/swab.h:99:1: warning: __swab16 redefined
[...]

regards,
-mika-



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522892: bugs.debian.org: wrong indication of who a X-Debbugs-CC was sent to

2009-04-07 Thread Adeodato Simó
Package: bugs.debian.org
Severity: minor

Hello,

I just reported #522890, whose pseudo-headers where:

  | Package: kvm
  | Version: 84+dfsg-2
  | Severity: normal
  | X-Debbugs-CC: virt-mana...@packages.debian.org

In the ACK message that I got back, which can be read at [1], it said:

  | As you requested using X-Debbugs-CC, your message was also forwarded to
  |   v
  | (after having been given a Bug report number, if it did not have one).

Instead of mentioning the full address it was CC'ed to as usual. It is
my hope that it got sent to the correct address nevertheless. :-)

Thanks,

  [1]: http://bugs.debian.org/cgi-bin/bugreport.cgi?msg=4;bug=522890

-- 
- Are you sure we're good?
- Always.
-- Rory and Lorelai




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522896: [INTL:ja] Update po-debconf template translation (ja.po)

2009-04-07 Thread Hideki Yamane (Debian-JP)
Package: request-tracker3.8
Version: 3.8.2-2
Severity: wishlist
Tags: patch l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear request-tracker3.8 maintainers,

 Here's updated Japanese po-debconf template (ja.po) file.
 Could you apply it, please?

- --
Regards,

 Hideki Yamane henrich @ debian.or.jp
 http://wiki.debian.org/HidekiYamane



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

iEYEARECAAYFAknbGNYACgkQIu0hy8THJksvbACfaBWP+iqOhTF3mhLLjqgiJLJ4
aKkAoJC2eZI6z+uHf6yRyHwqv4lWN1gb
=OSn4
-END PGP SIGNATURE-
# Copyright (C) 2008-2009 Debian Request Tracker Group 
pkg-request-tracker-maintain...@lists.alioth.debian.org
# This file is distributed under the same license as the request-tracker3.6 
package.
# Hideki Yamane (Debian-JP) henr...@debian.or.jp, 2009.
#
msgid 
msgstr 
Project-Id-Version: request-tracker3.8 3.8.2-2\n
Report-Msgid-Bugs-To: request-tracker...@packages.debian.org\n
POT-Creation-Date: 2009-04-07 08:49+0200\n
PO-Revision-Date: 2009-04-07 17:59+0900\n
Last-Translator: Hideki Yamane (Debian-JP) henr...@debian.or.jp\n
Language-Team: Japanese debian-japan...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../templates:2001
msgid Name for this Request Tracker (RT) instance:
msgstr Request Tracker (RT) のインスタンス名:

#. Type: string
#. Description
#: ../templates:2001
msgid 
Every installation of Request Tracker must have a unique name. The domain 
name or an abbreviation of the organization name are usually good candidates.
msgstr 
Request Tracker のインストールはそれぞれ一意な名前を持つ必要があります。多く
の場合はドメイン名、あるいは組織名の略称を使うのが良いでしょう。

#. Type: string
#. Description
#: ../templates:2001
msgid 
Please note that once you start using a name, you should probably never 
change it. Otherwise, mail for existing tickets won't get put in the right 
place.
msgstr 
注意: 一旦その名前を使い始めると、二度と変更することは恐らく出来ません。そう
しないと、既存のチケットへのメールが正しい場所へ送られなくなります。

#. Type: string
#. Description
#: ../templates:2001
msgid This setting corresponds to the $rtname configuration variable.
msgstr この設定は $rtname 設定変数に相当します。

#. Type: string
#. Description
#: ../templates:3001
msgid Identifier for this RT instance:
msgstr この RT インスタンスの識別子:

#. Type: string
#. Description
#: ../templates:3001
msgid 
In addition to its name, every installation of Request Tracker must also 
have a unique identifier. It is used when linking between RT installations.
msgstr 
名前に加えて、全ての Request Tracker のインストールは一意な識別子を持つ必要が
あります。これは RT のインストール間で連携する際に使われます。

#. Type: string
#. Description
#: ../templates:3001
msgid 
Using this machine's fully qualified hostname (including the DNS domain 
name) is recommended.
msgstr これにはマシンの完全修飾ホスト名 (DNS ドメイン名を含む) がお勧めです。

#. Type: string
#. Description
#: ../templates:3001
msgid This setting corresponds to the $Organization configuration variable.
msgstr この設定は $Organization 設定変数に相当します。

#. Type: string
#. Description
#: ../templates:4001
msgid Default email address for RT correspondence:
msgstr RT の連絡先となるデフォルトメールアドレス:

#. Type: string
#. Description
#: ../templates:4001
msgid 
Please choose the address that will be listed in From: and Reply-To: headers 
of emails tracked by RT, unless overridden by a queue-specific address.
msgstr 
キュー特有のアドレスに上書きされない場合に RT によるトラッキング用メールの 
From: と Reply-To: ヘッダに表示されるアドレスを選んでください。

#. Type: string
#. Description
#: ../templates:4001
msgid 
This setting corresponds to the $CorrespondAddress configuration variable.
msgstr この設定は  $CorrespondAddress 設定変数に相当します。

#. Type: string
#. Description
#: ../templates:5001
msgid Default email address for RT comments:
msgstr RT コメントのデフォルトメールアドレス:

#. Type: string
#. Description
#: ../templates:5001
msgid 
Please choose the address that will be listed in From: and Reply-To: headers 
of comment emails, unless overridden by a queue-specific address. Comments 
can be used for adding ticket information that is not visible to the client.
msgstr 
キュー特有のアドレスに上書きされない場合に コメントメールの From: と Reply-To: 
ヘッダに表示されるアドレスを選んでください。コメントはクライアントには見えない
チケットへの情報追加に使われます。

#. Type: string
#. Description
#: ../templates:5001
msgid This setting corresponds to the $CommentAddress configuration variable.
msgstr この設定は $CommentAddress 設定変数に相当します。

#. Type: string
#. Description
#: ../templates:6001
msgid Base URL for the RT web interface:
msgstr RT ウェブインターフェイスのベース URL:

#. Type: string
#. Description
#: ../templates:6001
msgid 
Please specify the scheme, server and (optionally) port for constructing RT 
web interface URLs.
msgstr 
RT ウェブインターフェイスの URL を構成するスキーマ、サーバ、(必要であれば) 
ポート番号を指定してください。

#. Type: string
#. Description
#: ../templates:6001
msgid The value should not have a trailing slash (/).
msgstr 値は最後がスラッシュ (/) で終わってはいけません。

#. Type: string
#. Description
#: ../templates:6001
msgid This setting corresponds to the $WebBaseURL configuration variable.
msgstr この設定は $WebBaseURL 設定変数に相当します。

#. Type: string
#. Description
#: ../templates:7001
msgid Path to the RT web interface:
msgstr 

Bug#522893: cryptkeeper: Version 0.9.4 available upstream

2009-04-07 Thread Francesco Namuri
severity 522893 wishlist
stop

Hi Guilhem,
thanks for the report...
I'll prepare the package ASAP.

francesco

Il giorno mar, 07/04/2009 alle 11.10 +0200, Guilhem Bonnefille ha
scritto:
 Package: cryptkeeper
 Version: 0.9.3-1
 Severity: normal
 
 
 A new version (0.9.4) is available upstream:
 http://tom.noflag.org.uk/cryptkeeper/cryptkeeper-0.9.4.tar.gz
 
 -- System Information:
 Debian Release: squeeze/sid
   APT prefers testing
   APT policy: (990, 'testing')
 Architecture: i386 (i686)
 
 Kernel: Linux 2.6.26-1-686 (SMP w/2 CPU cores)
 Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/bash
 
 Versions of packages cryptkeeper depends on:
 ii  encfs 1.4.2-2encrypted virtual filesystem
 ii  fuse-utils2.7.4-1.1  Filesystem in USErspace 
 (utilities
 ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
 ii  libc6 2.9-4  GNU C Library: Shared libraries
 ii  libcairo2 1.8.6-2+b1 The Cairo 2D vector graphics 
 libra
 ii  libgcc1   1:4.3.3-3  GCC support library
 ii  libgconf2-4   2.24.0-7   GNOME configuration database 
 syste
 ii  libglib2.0-0  2.20.0-2   The GLib library of C routines
 ii  libgtk2.0-0   2.14.7-5   The GTK+ graphical user 
 interface 
 ii  libpango1.0-0 1.22.4-2   Layout and rendering of 
 internatio
 ii  libstdc++64.3.3-3The GNU Standard C++ Library v3
 ii  libx11-6  2:1.2-1X11 client-side library
 ii  zenity2.24.1-1   Display graphical dialog boxes 
 fro
 
 cryptkeeper recommends no packages.
 
 cryptkeeper suggests no packages.
 
 -- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522089: qemulator: Lot's of errors/warnings on startup

2009-04-07 Thread Francesco Namuri
severity 522089 minor
stop

Hi Michael, 
thanks for the report, this output is normal running qemulator, in my
system this not preclude the normal using of qemulator...

Unfortunately there are many defects in this program and I'm waiting the
new upstream version hoping that this can solve these warnings and
others issues.

In any case I report this to the upstream author. I think that the
biggest problem is that qemulator is not fully compatible with new
versions of Python, Pygtk2, libglade2...

I'm lowering the severity of this bug because if I've understood well,
you can use the program, the only problem is the presence of this
warnings in the console...

Best Regards,
francesco

Il giorno mar, 31/03/2009 alle 19.06 +0200, Michael Biebl ha scritto:
 Package: qemulator
 Version: 0.5-3
 Severity: normal
 
 When I start qemulator from the console, I get a lot of errors and
 warnings:
 
 $ qemulator
 File not found: mainsettings
 detected qemu_version: 0.10.1
 detected an older qemu release, using 0.8 command set
 /usr/bin/qemulator:361: GtkWarning: GtkSpinButton: setting an adjustment with 
 non-zero page size is deprecated
   self.wTree = gtk.glade.XML(self.gladefile, window1, APP)
 File not found: image_settings
 File not found: bookmarks
 /usr/bin/qemulator:2595: GtkWarning: gtk_tree_path_append_index: assertion 
 `index = 0' failed
   row = model[active]
 /usr/bin/qemulator:2595: GtkWarning: gtk_tree_model_get_iter: assertion 
 `path-depth  0' failed
   row = model[active]
 Traceback (most recent call last):
   File /usr/bin/qemulator, line 2595, in on_comboboxCDromdrive_changed
 row = model[active]
 IndexError: could not find tree path
 /usr/bin/qemulator:2702: GtkWarning: gtk_tree_path_append_index: assertion 
 `index = 0' failed
   row = model[active]
 /usr/bin/qemulator:2702: GtkWarning: gtk_tree_model_get_iter: assertion 
 `path-depth  0' failed
   row = model[active]
 Traceback (most recent call last):
   File /usr/bin/qemulator, line 2702, in on_comboboxAudiohw_changed
 row = model[active]
 IndexError: could not find tree path
 /usr/bin/qemulator:2691: GtkWarning: gtk_tree_path_append_index: assertion 
 `index = 0' failed
   row = model[active]
 /usr/bin/qemulator:2691: GtkWarning: gtk_tree_model_get_iter: assertion 
 `path-depth  0' failed
   row = model[active]
 Traceback (most recent call last):
   File /usr/bin/qemulator, line 2691, in on_comboboxMachinetype_changed
 row = model[active]
 IndexError: could not find tree path
 /usr/bin/qemulator:2675: GtkWarning: gtk_tree_path_append_index: assertion 
 `index = 0' failed
   row = model[active]
 /usr/bin/qemulator:2675: GtkWarning: gtk_tree_model_get_iter: assertion 
 `path-depth  0' failed
   row = model[active]
 Traceback (most recent call last):
   File /usr/bin/qemulator, line 2675, in comboboxEmusystem_changed
 row = model[active]
 IndexError: could not find tree path
 Traceback (most recent call last):
   File /usr/bin/qemulator, line 2702, in on_comboboxAudiohw_changed
 row = model[active]
 IndexError: could not find tree path
 Traceback (most recent call last):
   File /usr/bin/qemulator, line 2691, in on_comboboxMachinetype_changed
 row = model[active]
 IndexError: could not find tree path
 File not found: joblist
 /usr/share/qemulator/qml_machinesetup.py:127: GtkWarning: GtkSpinButton: 
 setting an adjustment with non-zero page size is deprecated
   self.wTree = gtk.glade.XML(self.gladefile, dialog_bookmarks, APP)
 /usr/share/qemulator/qml_machinesetup.py:645: GtkWarning: 
 gtk_tree_path_append_index: assertion `index = 0' failed
   row = model[active]
 /usr/share/qemulator/qml_machinesetup.py:645: GtkWarning: 
 gtk_tree_model_get_iter: assertion `path-depth  0' failed
   row = model[active]
 Traceback (most recent call last):
   File /usr/share/qemulator/qml_machinesetup.py, line 645, in 
 comboboxEmusystem_changed
 row = model[active]
 IndexError: could not find tree path
 /usr/share/qemulator/qml_machinesetup.py:661: GtkWarning: 
 gtk_tree_path_append_index: assertion `index = 0' failed
   row = model[active]
 /usr/share/qemulator/qml_machinesetup.py:661: GtkWarning: 
 gtk_tree_model_get_iter: assertion `path-depth  0' failed
   row = model[active]
 Traceback (most recent call last):
   File /usr/share/qemulator/qml_machinesetup.py, line 661, in 
 on_comboboxMachinetype_changed
 row = model[active]
 IndexError: could not find tree path
 
 
 
 I'm not sure, how critical those errors are, thus only severity normal.
 
 
 Cheers,
 Michael
 
 
 -- System Information:
 Debian Release: squeeze/sid
   APT prefers unstable
   APT policy: (500, 'unstable'), (300, 'experimental')
 Architecture: i386 (i686)
 
 Kernel: Linux 2.6.29
 Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
 Shell: /bin/sh linked to /bin/dash
 
 Versions of packages qemulator depends on:
 ii  libglade2-0   1:2.6.3-1  library to load .glade files at 
 ru
 ii  python2.5.4-2An 

Bug#520352: malo chroot /etc/group needs fixing

2009-04-07 Thread Luk Claes
Hi

Putting powerpc buildd admins in the loop...

Cheers

Luk

Daniel Kahn Gillmor wrote:
 Hi folks--
 
 It looks like the main thing holding up coreutils 7.1 from propagating
 into squeeze is a bad /etc/group file in the chroot on malo.
 
 I tried building coreutils on my own powerpc system and it built
 properly and passed all tests that were run.  (in particular, it passed
 chown/separator.log).  I can supply build logs if anyone wants them.
 
 Could someone tweak malo's chroot's /etc/group to contain a non-empty
 name for gid 1009?
 
 Thanks,
 
   --dkg
 




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522900: postinst mhdonkey creates unusable configuration

2009-04-07 Thread Dmitry E. Oboukhov
Package: mldonkey
Version: 2.9.5-2+lenny1
Severity: important


I have been using mldonkey for a few years.
Last two or three years each upgrade lead me to unusable
configuration. Every time i repair it by hand.

Each upgrade mldonkey's upugrade scripy asks me:
Do I want to change (run_as) user for mldonkey?

Each time i reply 'no'!

Each time upgrade-script damages my download.ini:
it writes into it:
run_as_user = mldonkey
run_as_useruid = 106

Now, i have upgraded mldonkey by the and it have again written these
settings into my download.ini.

PS: I cannot use mldonkey under user 'mldonkey': that is
historical fact :(
--
... mpd paused: Accept - Can't Stand The Night

. ''`.   Dmitry E. Oboukhov
: :’  :   email: un...@debian.org jabber://un...@uvw.ru
`. `~’  GPGKey: 1024D / F8E26537 2006-11-21
  `- 1B23 D4F8 8EC0 D902 0555  E438 AB8C 00CF F8E2 6537


signature.asc
Description: Digital signature


Bug#520921: Resolved

2009-04-07 Thread THeK3nger
With new upgrade all works fine. :)

-- 
{ [MyLife] http://horizon.iobloggo.com - [MyWorks]
http://slashcode.wordpress.com/ }


Bug#522898: Acknowledgement (/usr/lib/libgio-2.0.so.0: Default file associations not used)

2009-04-07 Thread Sam Morris
Ok, never mind, I noticed that I needed to install gnome-session from
unstable  log in again to fix this.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#291609: Ref Number: OSL/655/049/09

2009-04-07 Thread Microsoft/AOL Promotion Award Team



Microsoft/AOL Promotion Award Team
Ref Number: OSL/655/049/09
Batch Number: AT-640-SB05-03

PLEASE contact the award processing department of the Microsoft and AOL
award promotion 2009 for your claims of the 1,000,000.00 GBP, you happens
to be one of the lucky winners of this section promotion.

To begin your claim please contact our licensed and accredited agent
assigned to you with the verification form below via email:

Name: Mr. Mike Anderson (Claims Agent)
Email: mr.mikemicroffic...@live.com
Tel: (+44) 703-192-7506
===
Name.
Country of Origin
Place of Residence...
Occupation...
Sex/Age..
Telephone/Fax
Winning Email ID.
===

Yours in Service,
George Samuel
(Operation Manager)




--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#433091: ignores expiry of archive keys

2009-04-07 Thread Michael Vogt
On Mon, Apr 06, 2009 at 02:12:26AM +0200, Peter Palfrader wrote:
 On Tue, 05 Aug 2008, Thijs Kinkhorst wrote:
 
  On Tuesday 5 August 2008 20:24, martin f krafft wrote:
   Sure, we wouldn't want to endanger our release schedule for feature
   enhancements or Debian's reputation. ;|
  
  Or put differently, I'd rather spend our time on things that more 
  significantly improve the security a of Debian system, and to be frank I 
  think it's quite speculative that there's actual reputation risk here.
 
 So why the fuck do we ship apt keys with expiration dates anyway, if apt
 happily ignores them?
 
 When I create a key and add that to apt's trusted-keys with an
 expiration date of foo I fully expect it to not be trusted afterwards.
 
 But heck, I can even create new signatures made after the expiration
 date and apt will happily accept any and all Release files signed by
 that expired key.
 
 I was shocked when I realized this today, after reading this bug
 report I'm dumbfounded that you even consider this acceptable!

Sorry for this. I'm looking through the code now and it seems like
this caused by a misinterpretation of the gpg documentation for the
GOODSIG vs VALIDSIG status mesages (and is in the code since day 1 of
apt-secure :(

I'm working on a patch now and would appreicate help with the
testing/verification ones its ready.

Thanks,
 Michael



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522906: tg2quilt.mk: may cause multiple rebuilds

2009-04-07 Thread Євгеній Мещеряков
Package: topgit
Version: 0.7-1
Severity: normal

tg2quilt.mk contains:
   $(QUILT_STAMPFN): tg-export
where tg-export is phony target. This causes execution of $(QUILT_STAMPFN) 
target
whenewer it is referenced, not only when $(QUILT_STAMPFN) does not exist. This
in turn causes execution of all depending targets, even non-phony. This
can lead to repeated compilation if debian/rules relies on -stamp files.

For example you can look at build log of topgit and see how build-stamp target
is executed twice. In this case nothing is recompiled (only make is run), but
it is different for some other packages.

It can be fixed by introducing non-phony target (let's say tg-export-stamp).
Stamp file can be removed in clean rule.

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

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

Versions of packages topgit depends on:
ii  git-core 1:1.6.2.2-1 fast, scalable, distributed revisi

topgit recommends no packages.

Versions of packages topgit suggests:
ii  git-email1:1.6.2.2-1 fast, scalable, distributed revisi
ii  make 3.81-5  The GNU version of the make util
ii  quilt0.46-6  Tool to work with series of patche

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522908: evolution: view of vfolder searching unread mails should not update and remove current message once read

2009-04-07 Thread Olivier Berger
Package: evolution
Version: 2.24.5-3
Severity: normal

Hi.

Here's a problem that appeared after migration to 2.24 : I have vfolders 
constructed to search for unread messages.

If the option to mark mails automatically as read after a delay is activated, 
then all mails displayed in the vfolder will be automatically marked as read in 
sequence after a while, without me touching anything. That's no good.

What happens is that the current email is marked as read, and then 
automatically removed from the view, which passes to the next email, and again 
until all are marked read, without any interaction of the user (nor maybe the 
time to read content).

I think that the bug is with the recalculation of the vfolder content when the 
mail is marked read which should only happen *after* another mail is selected 
manually, as it used to be with earlier versions.

Hope this helps.

Best regards,


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

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

Versions of packages evolution depends on:
ii  dbus 1.2.12-1simple interprocess messaging syst
ii  debconf [debconf 1.5.26  Debian configuration management sy
ii  evolution-common 2.24.5-3architecture independent files for
ii  evolution-data-s 2.24.5-4+b1 evolution database backend server
ii  gconf2   2.24.0-7GNOME configuration database syste
ii  gnome-icon-theme 2.24.0-4GNOME Desktop icon theme
ii  libart-2.0-2 2.3.20-2Library of functions for 2D graphi
ii  libatk1.0-0  1.22.0-1The ATK accessibility toolkit
ii  libbluetooth23.36-1  Library to use the BlueZ Linux Blu
ii  libbonobo2-0 2.24.1-1Bonobo CORBA interfaces library
ii  libbonoboui2-0   2.24.1-1The Bonobo UI library
ii  libc62.9-4   GNU C Library: Shared libraries
ii  libcairo21.8.6-2+b1  The Cairo 2D vector graphics libra
ii  libcamel1.2-14   2.24.5-4+b1 The Evolution MIME message handlin
ii  libdbus-1-3  1.2.12-1simple interprocess messaging syst
ii  libdbus-glib-1-2 0.80-3  simple interprocess messaging syst
ii  libebackend1.2-0 2.24.5-4+b1 Utility library for evolution data
ii  libebook1.2-92.24.5-4+b1 Client library for evolution addre
ii  libecal1.2-7 2.24.5-4+b1 Client library for evolution calen
ii  libedataserver1. 2.24.5-4+b1 Utility library for evolution data
ii  libedataserverui 2.24.5-4+b1 GUI utility library for evolution 
ii  libegroupwise1.2 2.24.5-4+b1 Client library for accessing group
ii  libenchant1c2a   1.4.2-3.3   a wrapper library for various spel
ii  libexchange-stor 2.24.5-4+b1 Client library for accessing Excha
ii  libfontconfig1   2.6.0-3 generic font configuration library
ii  libfreetype6 2.3.9-4 FreeType 2 font engine, shared lib
ii  libgconf2-4  2.24.0-7GNOME configuration database syste
ii  libgdata-google1 2.24.5-4+b1 Client library for accessing Googl
ii  libgdata1.2-12.24.5-4+b1 Client library for accessing Googl
ii  libglade2-0  1:2.6.3-1   library to load .glade files at ru
ii  libglib2.0-0 2.20.0-2The GLib library of C routines
ii  libgnome-pilot2  2.0.15-2.4  Support libraries for gnome-pilot
ii  libgnome2-0  2.24.1-2The GNOME 2 library - runtime file
ii  libgnomecanvas2- 2.20.1.1-1  A powerful object-oriented display
ii  libgnomeui-0 2.24.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0   1:2.24.0-2  GNOME Virtual File System (runtime
ii  libgtk2.0-0  2.14.7-5The GTK+ graphical user interface 
ii  libgtkhtml-edito 3.24.5-2HTML rendering/editing library - e
ii  libgtkhtml3.14-1 3.24.5-2HTML rendering/editing library - r
ii  libhal1  0.5.11-8Hardware Abstraction Layer - share
ii  libice6  2:1.0.5-1   X11 Inter-Client Exchange library
ii  libldap-2.4-22.4.11-1OpenLDAP libraries
ii  libnm-glib0  0.6.6-3 network management framework (GLib
ii  libnotify1 [libn 0.4.5-1 sends desktop notifications to a n
ii  libnspr4-0d  4.7.1-4 NetScape Portable Runtime Library
ii  libnss3-1d   3.12.2.with.ckbi.1.73-1 Network Security Service libraries
ii  liborbit21:2.14.17-0.1   libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-01.22.4-2 

Bug#522801: flim: byte-compile fails for xemacs21 because ccl.el is missing

2009-04-07 Thread Tatsuya Kinoshita
tags 522801 + pending
thanks

On April 6, 2009 at 5:27PM +0200,
michel.casabona (at free.fr) wrote:

 flim fails to compile because xemacs21 has no ccl.el

 from file /tmp/elc.XXX:
Compiling /usr/share/xemacs21/site-lisp/flim/mel-b-ccl.el...
While compiling toplevel forms in file
/usr/share/xemacs21/site-lisp/flim/mel-b-ccl.el:
  !! File error ((Cannot open load file ccl))
Error occurred processing mel-b-ccl.el: Cannot open load file: ccl
[...]
 ii xemacs21-nomule [emacsen] 21.4.22-1 highly customizable text

Thanks for the bug report.  This problem occurs if xemacs21-nomule
is installed and xemacs21-mule is not installed.  Will fix soon.

Thanks,
--
Tatsuya Kinoshita


pgpzbXzRT3kip.pgp
Description: PGP signature


Bug#318058: works fine under libdbd-mysql-perl 4.008-1 in unstable

2009-04-07 Thread Alex Muntada
* WK w...@hot.ee:

 Thank you, but sorry, I still can't. Did you change anything
 in testcase?

Only $username and $password.

 Could you please let me see your mysql-server status report
 (i mean \s from client)?

mysql  Ver 14.12 Distrib 5.0.77, for debian-linux-gnu (i486) using readline 5.2

Connection id:  46
Current database:   
Current user:   r...@localhost
SSL:Not in use
Current pager:  stdout
Using outfile:  ''
Using delimiter:;
Server version: 5.0.77-1 (Debian)
Protocol version:   10
Connection: Localhost via UNIX socket
Server characterset:latin1
Db characterset:latin1
Client characterset:latin1
Conn.  characterset:latin1
UNIX socket:/var/run/mysqld/mysqld.sock
Uptime: 2 days 19 hours 48 min 27 sec

Threads: 1  Questions: 245  Slow queries: 0  Opens: 149  Flush tables:
2  Open tables: 18  Queries per second avg: 0.001

 I set up fresh Debian Squeeze on Virtualbox and i still got wrong characters.

I'm using LANG=en_US.UTF-8, just in case. Do you think
that testing it with your locales should fail too? I'm willing
to perform any tests you'd like, just ask ;-)

-- 
Alex Muntada al...@alexm.org
http://alexm.org/



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522916: must use invoke-rc.d (policy 9.3.3.2)

2009-04-07 Thread Holger Levsen
Package: wordnet
Version: 1:3.0-13
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts piuparts.d.o

Hi, 

during a test with piuparts I noticed your package left processes running on 
the system after installation and removal. This is due to directly 
calling /etc/rc.d/ scripts in your packages maintainer scripts, which is a 
violation of policy 9.3.3.2 and must be replaced by using policy-rc.d - see
http://www.debian.org/doc/debian-policy/ch-opersys.html#s9.3.3


regards,
Holger
Start: 2009-04-05 22:53:56 UTC

Package: dict-wn
Priority: optional
Section: text
Installed-Size: 12332
Maintainer: Debian Science Team debian-science-maintain...@lists.alioth.debian.org
Architecture: all
Source: wordnet
Version: 1:3.0-14
Provides: dictd-dictionary
Depends: dictd | dict-server
Suggests: dict-gcide
Filename: pool/main/w/wordnet/dict-wn_3.0-14_all.deb
Size: 10893808
MD5sum: 24a063f60fadb4f7a5472ed5e1c0bf68
SHA1: f64b417780af7ec01ff6a651c8f74f4e817a4033
SHA256: 920c59f196bbe0ea470b2e5066f8c6b46e9f15a3cfc1e0ec60ecd6699de167ba
Description: electronic lexical database of English language for dict
 WordNet(C) is an on-line lexical reference system whose design is
 inspired by current psycholinguistic theories of human lexical
 memory. English nouns, verbs, adjectives and adverbs are organized
 into synonym sets, each representing one underlying lexical
 concept. Different relations link the synonym sets.
 .
 WordNet was developed by the Cognitive Science Laboratory
 (http://www.cogsci.princeton.edu/) at Princeton University under the
 direction of Professor George A. Miller (Principal Investigator).
 .
 This package will be of limited use without the server found in the
 dictd package.
Homepage: http://wordnet.princeton.edu/
Tag: made-of::dictionary, role::app-data, works-with::dictionary

Executing: sudo /org/piuparts.debian.org/sbin/piuparts --no-symlinks --scriptsdir /etc/piuparts/scripts/ --tmpdir /org/piuparts.debian.org/tmp -ad sid -b sid.tar.gz dict-wn
Guessed: debian
0m0.0s INFO: --
0m0.0s INFO: To quickly glance what went wrong, scroll down to the bottom of this logfile.
0m0.0s INFO: FAQ available at http://wiki.debian.org/piuparts/FAQ
0m0.0s INFO: --
0m0.0s INFO: piuparts version 0.36~20090405 starting up.
0m0.0s INFO: Command line arguments: /org/piuparts.debian.org/sbin/piuparts --no-symlinks --scriptsdir /etc/piuparts/scripts/ --tmpdir /org/piuparts.debian.org/tmp -ad sid -b sid.tar.gz dict-wn
0m0.0s INFO: Running on: Linux piatti 2.6.29.1-dsa-amd64 #2 SMP Sun Apr 5 00:16:11 CEST 2009 x86_64
0m0.0s DEBUG: Created temporary directory /org/piuparts.debian.org/tmp/tmpTyHOIU
0m0.0s DEBUG: Unpacking sid.tar.gz into /org/piuparts.debian.org/tmp/tmpTyHOIU
0m0.0s DEBUG: Starting command: ['tar', '-C', '/org/piuparts.debian.org/tmp/tmpTyHOIU', '-zxf', 'sid.tar.gz']
0m2.6s DEBUG: Command ok: ['tar', '-C', '/org/piuparts.debian.org/tmp/tmpTyHOIU', '-zxf', 'sid.tar.gz']
0m2.6s DEBUG: Created policy-rc.d and chmodded it.
0m2.6s DEBUG: Starting command: ['chroot', '/org/piuparts.debian.org/tmp/tmpTyHOIU', 'apt-get', 'update']
0m12.2s DUMP: 
  Get:1 http://ftp.fi.debian.org sid Release.gpg [197B]
  Get:2 http://ftp.fi.debian.org sid Release [92.6kB]
  Get:3 http://ftp.fi.debian.org sid/main Packages/DiffIndex [2038B]
  Get:4 http://ftp.fi.debian.org sid/main Packages [7543kB]
  Fetched 7638kB in 1s (5925kB/s)
  Reading package lists...
0m12.2s DEBUG: Command ok: ['chroot', '/org/piuparts.debian.org/tmp/tmpTyHOIU', 'apt-get', 'update']
0m12.2s DEBUG: Starting command: ['chroot', '/org/piuparts.debian.org/tmp/tmpTyHOIU', 'mount', '-t', 'proc', 'proc', '/proc']
0m12.2s DEBUG: Command ok: ['chroot', '/org/piuparts.debian.org/tmp/tmpTyHOIU', 'mount', '-t', 'proc', 'proc', '/proc']
0m12.2s DEBUG: Starting command: ['chroot', '/org/piuparts.debian.org/tmp/tmpTyHOIU', 'apt-get', '-yf', 'upgrade']
0m17.3s DUMP: 
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages have been kept back:
debianutils
  The following packages will be upgraded:
base-passwd grep libc6 libncurses5 libpam-modules libpam-runtime libpam0g
libslang2 lsb-base mktemp ncurses-base ncurses-bin tar tzdata
  14 upgraded, 0 newly installed, 0 to remove and 1 not upgraded.
  Need to get 8915kB of archives.
  After this operation, 172kB disk space will be freed.
  WARNING: The following packages cannot be authenticated!
grep mktemp ncurses-bin tar libc6 base-passwd libncurses5 ncurses-base
libpam-modules libpam-runtime libpam0g libslang2 lsb-base tzdata
  Authentication warning overridden.
  Get:1 http://ftp.fi.debian.org sid/main grep 2.5.4-4 [317kB]
  Get:2 http://ftp.fi.debian.org sid/main mktemp 1.6-3 [11.7kB]
  Get:3 http://ftp.fi.debian.org sid/main ncurses-bin 5.7+20090321-1 [310kB]
  Get:4 

Bug#522851: Acknowledgement (Gdal problems with libmysqlclient-dev)

2009-04-07 Thread Francesco P. Lovergine
Cfr:

http://bugs.mysql.com/bug.php?id=28184

Would you please provide a fix ASAP? That prevents me uploading a new
version onto experimental for gdal, thanks.

-- 
Francesco P. Lovergine



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522918: piuparts should kill leftover processes

2009-04-07 Thread Holger Levsen
package: piuparts
severity: wishlist

Hi,

currently piuparts just detects processes left over after removal of the 
package. It should also kill them :-)


regards,
Holger


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


Bug#522919: gitg: Version 0.0.2 available upstream

2009-04-07 Thread Guilhem Bonnefille
Package: gitg
Version: 0.0.1+20090307.git.99b20ff-2
Severity: normal


A new version (0.0.2) is available upstream:
http://trac.novowork.com/gitg/attachment/wiki/Releases/gitg-0.0.2.tar.bz2

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

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

Versions of packages gitg depends on:
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libcairo2 1.8.6-2+b1 The Cairo 2D vector graphics libra
ii  libfontconfig12.6.0-3generic font configuration library
ii  libfreetype6  2.3.9-4FreeType 2 font engine, shared lib
ii  libgconf2-4   2.24.0-7   GNOME configuration database syste
ii  libglib2.0-0  2.20.0-2   The GLib library of C routines
ii  libgtk2.0-0   2.14.7-5   The GTK+ graphical user interface 
ii  libgtksourceview2.0-0 2.4.2-1shared libraries for the GTK+ synt
ii  libpango1.0-0 1.22.4-2   Layout and rendering of internatio

gitg recommends no packages.

gitg suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522909: linux-image-2.6.29-1-amd64: Package cannot be configured due to invalid mkinitrd options

2009-04-07 Thread maximilian attems
On Tue, Apr 07, 2009 at 01:27:45PM +0200, Frank Blendinger wrote:
  post the output of 
  cat /etc/kernel-img.conf
 
 # Kernel image management overrides
 # See kernel-img.conf(5) for details
 do_symlinks = yes
 relative_links = yes
 do_bootloader = no
 do_bootfloppy = no
 do_initrd = yes
 link_in_boot = no
 ramdisk=mkinitrd.yaird mkinitramfs

well that is wrong, easiest way is to just scratch that last line.

longer explanation
* yaird doesn't fully implement update-initramfs compat syntax
  so can no longer install any linux image since 2.6.28
  #518315
  (beside beeing not recommended, not distributed in Lenny, buggy
   in many ways, not developed anymore and thus deprecated)

* mkinitramfs was never the direct wrapper to call
  previously in lenny you could have had mkinitramfs-kpkg
  in aboves line.
  now you want update-initramfs that is the upper layer
  and the recommended command to generat an initramfs
  since at least etch.

kind regards

-- 
maks



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522322: mail-notification-evolution: Blocks users on upgrade; applies to Evolution in general, not just with Exchange

2009-04-07 Thread Stephen Kitt
Package: mail-notification-evolution
Version: 5.4.dfsg.1-1+b1
Severity: normal


Hi,

This problem can block users who upgrade; this happened to my wife this
morning, after I upgraded (this machine tracks testing). She had
mail-notification running against an Evolution folder, and after the
upgrade Evolution would start and immediately crash. A gdb backtrace
allowed me to determine that mail-notification was causing the problem,
but I dare say quite a few users will be stuck; I've increased this
bug's severity as a result.

Also note that the for Exchange part in the original bug report isn't
significant, I'm not using Exchange.

Regards,

Stephen

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

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

Versions of packages mail-notification-evolution depends on:
ii  evolution  2.24.5-3  groupware suite with mail client a
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.24.1-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.24.1-1  The Bonobo UI library
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libcamel1.2-14 2.24.5-4+b1   The Evolution MIME message handlin
ii  libdbus-1-31.2.12-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libedataserver1.2-11   2.24.5-4+b1   Utility library for evolution data
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared lib
ii  libgconf2-42.24.0-7  GNOME configuration database syste
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libgnome2-02.24.1-2  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.24.1-1  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.24.0-2GNOME Virtual File System (runtime
ii  libgtk2.0-02.14.7-5  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  liborbit2  1:2.14.17-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.22.4-2  Layout and rendering of internatio
ii  libpopt0   1.14-4lib for parsing cmdline parameters
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libsoup2.4-1   2.24.3-2  an HTTP library implementation in 
ii  libsqlite3-0   3.6.12-1  SQLite 3 shared library
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  mail-notification  5.4.dfsg.1-1+b1   mail notification in system tray
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

mail-notification-evolution recommends no packages.

mail-notification-evolution suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522920: linux-image-2.6.29-1-686: please add CONFIG_MOUSE_PS2_ELANTECH=y for the Asus eee pc 1000

2009-04-07 Thread Rafael Kitover
Package: linux-image-2.6.29-1-686
Version: 2.6.29-1
Severity: normal


To get features like 2-finger scrolling with the Xorg Synaptics driver on the
eee pc 1000 and other devices with an elantech touchpad, the config option
CONFIG_MOUSE_PS2_ELANTECH is needed.

-- Package-specific info:

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

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

Versions of packages linux-image-2.6.29-1-686 depends on:
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.93.2 tools for generating an initramfs
ii  module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo

Versions of packages linux-image-2.6.29-1-686 recommends:
ii  libc6-i6862.9-6  GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.29-1-686 suggests:
ii  grub   0.97-47lenny2 GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.29   none(no description available)

-- debconf information excluded



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522875: a better patch

2009-04-07 Thread Russell Coker
The last patch didn't stop my program from SEGVing.  The attached patch seems 
to solve the problem.

It seems that gethostbyname() was the culprit.  gethostbyname_r() is not a 
standard function, so this will need to have a ./configure test for it.  This 
means of course that on platforms which lack gethostbyname_r() the library 
will never be thread-safe.

-- 
russ...@coker.com.au
http://etbe.coker.com.au/  My Main Blog
http://doc.coker.com.au/   My Documents Blog
diff -ru libcsoap-1.1.0.bak/nanohttp/nanohttp-socket.c libcsoap-1.1.0/nanohttp/nanohttp-socket.c
--- libcsoap-1.1.0.bak/nanohttp/nanohttp-socket.c	2009-04-07 15:19:25.0 +1000
+++ libcsoap-1.1.0/nanohttp/nanohttp-socket.c	2009-04-07 19:51:15.0 +1000
@@ -176,19 +176,30 @@
 {
   struct sockaddr_in address;
   struct hostent *host;
-  char *ip;
+#define GETHOSTBYNAME_R
+#ifdef GETHOSTBYNAME_R
+  struct hostent hostbuf;
+  char gethostbyname_buf[1024];
+  int h_errnop;
+#endif
+  struct in_addr **h_addr_list;
 
   if ((dsock-sock = socket(AF_INET, SOCK_STREAM, 0)) = 0)
 return herror_new(hsocket_open, HSOCKET_ERROR_CREATE,
   Socket error (%s), strerror(errno));
 
   /* Get host data */
-  if (!(host = gethostbyname(hostname)))
+#ifdef GETHOSTBYNAME_R
+  gethostbyname_r(hostname, hostbuf, gethostbyname_buf, sizeof(gethostbyname_buf), host, h_errnop);
+#else
+  host = gethostbyname(hostname);
+#endif
+  if(!host)
 return herror_new(hsocket_open, HSOCKET_ERROR_GET_HOSTNAME,
   Socket error (%s), strerror(errno));
 
-  ip = inet_ntoa(*(struct in_addr *) *host-h_addr_list);
-  address.sin_addr.s_addr = inet_addr(ip);
+  h_addr_list = (struct in_addr **)host-h_addr_list;
+  address.sin_addr.s_addr = h_addr_list[0]-s_addr;
 
   /* set server addresss */
   address.sin_family = host-h_addrtype;
@@ -308,6 +319,7 @@
 hsocket_accept(hsocket_t * sock, hsocket_t * dest)
 {
   herror_t status;
+  char ntop_buf[16];
 
   if (sock-sock  0)
 return herror_new(hsocket_accept, HSOCKET_ERROR_NOT_INITIALIZED,
@@ -323,7 +335,7 @@
   }
 
   log_verbose3(accepting connection from '%s' socket=%d,
-   SAVE_STR(((char *) inet_ntoa(dest-addr.sin_addr))),
+   SAVE_STR(((char *) inet_ntop(AF_INET, dest-addr.sin_addr, ntop_buf, sizeof(dest-addr.sin_addr,
dest-sock);
 
   return H_OK;


Bug#522924: ITP: agda-stdlib -- standard library for Agda - a dependently typed functional programming language and proof assistant

2009-04-07 Thread Iain Lane
Package: wnpp
Severity: wishlist
Owner: Iain Lane la...@ubuntu.com

* Package name: agda-stdlib
  Version : unreleased
  Upstream Author : Nils Anders Danielsson n...@cs.nott.ac.uk
* URL : 
http://wiki.portal.chalmers.se/agda/agda.php?n=Libraries.StandardLibrary
* License : MIT/X
  Programming Lang: Agda
  Description : standard library for Agda - a dependently typed functional 
programming language and proof assistant

Agda is a dependently typed functional programming language: It has
inductive families, which are like Haskell's GADTs, but they can be
indexed by values and not just types. It also has parameterised
modules, mixfix operators, Unicode characters, and an interactive
Emacs interface (the type checker can assist in the development of
your code).
..
Agda is a proof assistant: It is an interactive system for writing
and checking proofs. Agda is based on intuitionistic type theory, a
foundational system for constructive mathematics developed by the
Swedish logician Per Martin-Lf. It has many similarities with other
proof assistants based on dependent types, such as Coq, Epigram and
NuPRL.
..
This package contains the standard library for Agda, which provides
some modules for common programming- and proof-structuring idioms.
Modules are included for algebra, category theory, coinduction, data
types, the foreign function interface, induction, IO, relations,
and sized types.

-- System Information:
Debian Release: 5.0
  APT prefers jaunty-updates
  APT policy: (500, 'jaunty-updates'), (500, 'jaunty-security'), (500, 
'jaunty-backports'), (500, 'jaunty')
Architecture: i386 (i686)

This message has been checked for viruses but the contents of an attachment
may still contain software viruses, which could damage your computer system:
you are advised to perform your own checks. Email communications with the
University of Nottingham may be monitored as permitted by UK legislation.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522909: linux-image-2.6.29-1-amd64: Package cannot be configured due to invalid mkinitrd options

2009-04-07 Thread Frank Blendinger
Hi.

On Tue 2009-04-07 13:31, maximilian attems m...@stro.at proclaimed:
 On Tue, Apr 07, 2009 at 01:27:45PM +0200, Frank Blendinger wrote:
   post the output of 
   cat /etc/kernel-img.conf
  
  # Kernel image management overrides
  # See kernel-img.conf(5) for details
  do_symlinks = yes
  relative_links = yes
  do_bootloader = no
  do_bootfloppy = no
  do_initrd = yes
  link_in_boot = no
  ramdisk=mkinitrd.yaird mkinitramfs
 
 well that is wrong, easiest way is to just scratch that last line.

Indeed. It works fine without that line.

 longer explanation
 * yaird doesn't fully implement update-initramfs compat syntax
   so can no longer install any linux image since 2.6.28
   #518315
   (beside beeing not recommended, not distributed in Lenny, buggy
in many ways, not developed anymore and thus deprecated)
 
 * mkinitramfs was never the direct wrapper to call
   previously in lenny you could have had mkinitramfs-kpkg
   in aboves line.
   now you want update-initramfs that is the upper layer
   and the recommended command to generat an initramfs
   since at least etch.

Thanks for the explanation. Would you recommend purging yaird completely
then?

After all, I am wondering how the line ended up in kernel-img.conf at
all. I never touched it myself (etckeeper helps my unreliable brain
here), so it has to be generated by some package, but I could not find
which one it is. Do you happen to know that? Should a bug against that
package be filed?


Greetings,
Frank

-- 
Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A
Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A


signature.asc
Description: Digital signature


Bug#438429: [Pkg-aide-maintainers] Bug#438429: aide: Same problem on Debian Etch concerning missing bash functions/aliases

2009-04-07 Thread Marc Haber
On Mon, Apr 06, 2009 at 01:06:33PM -0400, Luke Reeves wrote:
 I'm having the same issue on Etch after a fresh install of AIDE.  The
 daily cron job for it produces this output:
 
 /etc/cron.daily/aide:
 /etc/cron.daily/aide: line 117: onexit: command not found
 /etc/cron.daily/aide: line 61: onexit: command not found
 run-parts: /etc/cron.daily/aide exited with return code 127

You updated from an older broken version and did not allow the bug fix
(which was in a dpkg-conffile) to be installed.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 3221 2323190



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#509371: installation-guide: Installation guide accessibility sections

2009-04-07 Thread Samuel Thibault
Frans Pop, le Tue 07 Apr 2009 11:09:32 +0200, a écrit :
 It would be great if you could revisit the documentation sometimes, 

Sure!

Samuel



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522900: postinst mhdonkey creates unusable configuration

2009-04-07 Thread Mehdi Dogguy


Dmitry E. Oboukhov wrote:
 
 PS: I cannot use mldonkey under user 'mldonkey': that is
 historical fact :(

Could you explain please?

-- 
Mehdi Dogguy مهدي الدقي
http://www.pps.jussieu.fr/~dogguy
Tel.: (+33).1.44.27.28.38



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#344399: wajig show don't show locally created packages

2009-04-07 Thread Graham Williams
I believe this was fixed:

$ wajig show sim
Package: sim
Priority: optional
Section: net
Installed-Size: 7856
[...]

Regards,
Graham


Received Fri 23 Dec 2005 12:49am +1100 from Serge Matveev:
 Package: wajig
 Version: 2.0.31
 Severity: normal
 
 I thing the behaviour of aptitude is more handy
 
  wajig show sim
 No packages found from those known to be available or installed
  aptitude show sim
 Package: sim
 State: installed
 Automatically installed: no
 Version: 0.9.3+svn051212-1
 Priority: extra
 Section: net
 Maintainer: r...@serge.relcom.net
 Uncompressed Size: 8701k
 Description: SIM is a open-source ICQ client, using QT with enhanced features.
 
 
 -- System Information:
 Debian Release: testing/unstable
   APT prefers testing
   APT policy: (500, 'testing')
 Architecture: i386 (i686)
 Shell:  /bin/sh linked to /bin/dash
 Kernel: Linux 2.6.12-1-686-smp
 Locale: LANG=ru_RU.KOI8-R, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
 
 Versions of packages wajig depends on:
 ii  apt   0.6.42.1   Advanced front-end for dpkg
 ii  python2.3.5-3An interactive high-level 
 object-o
 ii  python-apt0.6.13.1   Python interface to libapt-pkg
 
 wajig recommends no packages.
 
 -- no debconf information
 
 -- 
 Serge Matveev (home) - ICQ:3575357
 
 



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522905: confirmed for 522905

2009-04-07 Thread Eugene V. Lyubimkin
package htop
tags 522905 +confirmed
thanks

Hello Tomas, thanks for report, I will add this in the next upload.

-- 
Eugene V. Lyubimkin aka JackYF, JID: jackyf.devel(maildog)gmail.com
C++/Perl developer, Debian Maintainer



signature.asc
Description: OpenPGP digital signature


Bug#509547: rt2500-source fails to build against 2.6.27 (AMD64)

2009-04-07 Thread Michael Prokop
* Vítězslav Kotrla vitezslav.kot...@gmail.com [20090407 10:30]:

 I've noticed rt2500-source fails to build (at least on AMD64) against
 kernel 2.6.27, first I failed with vanilla 2.6.27.5 from kernel.org,
 then while trying latest debian experimental 2.6.27 snapshot[1]. See
 'make-kpkg modules-image' output below.

This bug is still valid for kernel 2.6.28 (and I assume for 2.6.29
as well).

Any news from the maintainer?

regards,
-mika-


signature.asc
Description: Digital signature


Bug#461314: reprepro version indifference

2009-04-07 Thread Bernhard R. Link
* Joey Korkames j...@kidfixit.com [090406 23:57]:
 I don't need a separate morgue/archive area, just a way to tell reprepro
 to allow multiple versions to be in the repo. It could be via a
 conf/distribuitions option or maybe a --ignoreskipold flag that I can
 use with bin/reprepro.

 Redundant versions would just stack up in the pool/ and likewise in the
 Packages/Sources manifests. apt-get has no problem dealing with multiple
 versions in a single repo as that is how my mini-dinstall repo used to
 work.

 An admin could work out their own way to copy the old versions to another
 distro/area for morgue/archival purposel.

 This would be most useful for my inoticoming infrastructure, which gets
 queued via debrelease uploads for test building (done with rebuildd) and
 only the desired build gets pulled via conf/updates into the normal
 repo.

Sorry, the current database layout does not allow for multiple versions
of the same package in the same
distribution-component-packagetype-architecture quadruple. Support with
not be possible before a complete rewrite of database handling[1] (or some
other code that assumes this).

If you only want files in the pool, you can use Tracking: or tell it
to not delete unneeded files.

Having things apt-getable is only possible with snapshots or different
distributions.

Hochachtungsvoll,
Bernhard R. Link

[1] Which I plan to do anyway, as I want to get rid of that buggy libdb,
but it will not happen soon.



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#516780: crash when downoading

2009-04-07 Thread Paolo Cavallini
Do not know if this is related, but I get a crash when downloading anything:

ERROR: ld.so: object '/usr/lib/libartsdsp.so.0' from LD_PRELOAD cannot
be preloaded: ignored.
ERROR: ld.so: object '/usr/lib/libartsc.so.0' from LD_PRELOAD cannot be
preloaded: ignored.
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
GCJ PLUGIN: thread 0xa88fa0: NP_GetMIMEDescription
GCJ PLUGIN: thread 0xa88fa0: NP_GetMIMEDescription return
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue: returning plugin name.
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue return
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue: returning plugin description.
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue return
sh: acroread: command not found
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
** Message: GetValue variable 1 (1)
** Message: GetValue variable 2 (2)
GCJ PLUGIN: thread 0xa88fa0: NP_GetMIMEDescription
GCJ PLUGIN: thread 0xa88fa0: NP_GetMIMEDescription return
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue: returning plugin name.
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue return
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue: returning plugin description.
GCJ PLUGIN: thread 0xa88fa0: NP_GetValue return
[ConvConfHandler] isPreferred contentType: application/zip
Segmentation fault

This on Lenny, up to date.
Thanks.
-- 
Paolo Cavallini: http://www.faunalia.it/pc



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#433322: patch for iscsitarget-source-0.4.16+svn162-2~bpo40+1 against 2.6.18-6-k7/

2009-04-07 Thread Michael Prokop
* Derek Chan:

 based on patch from Jeremy Laine,

 added the missing compat-* patch, and fixed the patch against current
 backport

Any news from the maintainer?

regards,
-mika-


signature.asc
Description: Digital signature


Bug#522288: same issue here

2009-04-07 Thread Alexandre Fayolle
Hi,

I've had the same issue here:

GnuPG signature check failed on constraint_0.4.0-3_i386.changes
gpg: Signature made Tue Apr  7 08:22:12 2009 UTC using RSA key ID A827CEDE
gpg: WARNING: signing subkey A827CEDE is not cross-certified
gpg: please see http://www.gnupg.org/faq/subkey-cross-certify.html for more 
information
gpg: Can't check signature: general error
(Exit status 2)
/constraint_0.4.0-3_i386.changes has bad PGP/GnuPG signature!
Removing /constraint_0.4.0-3_i386.changes, but keeping its associated files 
for now.


$ gpg --edit-key DF67A55E
gpg (GnuPG) 1.4.9; Copyright (C) 2008 Free Software Foundation, Inc.
This is free software: you are free to change and redistribute it.
There is NO WARRANTY, to the extent permitted by law.

La clé secrète est disponible.

pub  1024D/DF67A55E  créé: 2002-03-01  expire: jamais  utilisation: SC  
  confiance: ultimevalidité: ultime
sub  1024g/A99AFB92  créé: 2002-03-01  expire: jamais  utilisation: E   
sub  2048R/A827CEDE  créé: 2005-03-08  expire: jamais  utilisation: S   
sub  2048R/6CD1CADB  créé: 2005-03-08  expire: jamais  utilisation: E   
[  ultime ] (1). Alexandre Fayolle alexandre.fayo...@logilab.fr
[  ultime ] (2)  Alexandre Fayolle a...@logilab.fr
[  ultime ] (3)  Alexandre Fayolle (private address) 
alexandre.fayo...@free.fr
[  ultime ] (4)  Alexandre Fayolle alexandre.fayo...@centraliens.net
[  ultime ] (5)  [jpeg image of size 4949]
[ revoquée] (6)  Alexandre Fayolle afayo...@nerim.net
[ revoquée] (7)  Gurney Alex (poête) agur...@nerim.net
[  ultime ] (8)  Alexandre Fayolle (Debian Developer) afayo...@debian.org

Commande cross-certify
subkey A99AFB92 does not sign and so does not need to be cross-certified
signing subkey A827CEDE is already cross-certified
subkey 6CD1CADB does not sign and so does not need to be cross-certified


Any help welcome,

-- 
Alexandre Fayolle  LOGILAB, Paris (France)
Formations Python, Zope, Plone, Debian:  http://www.logilab.fr/formations
Développement logiciel sur mesure:   http://www.logilab.fr/services
Informatique scientifique:   http://www.logilab.fr/science



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522894: [INTL:da] updated danish strings for aolserver4 debconf

2009-04-07 Thread Frank Damgaard
Package: aolserver4
Severity: wishlist
Tags: patch l10n

Attached updated da.po file for aolserver4 debconf


-- 
Regards Frank Damgaard  | 

#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans
#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: aolserver4 4.5.0-16.1\n
Report-Msgid-Bugs-To: aolserv...@packages.debian.org\n
POT-Creation-Date: 2009-03-29 10:15+0200\n
PO-Revision-Date: 2009-04-07 10:55+0200\n
Last-Translator: Frank Damgaard deb...@overbygaard.dk\n
Language-Team: Danish\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
Plural-Forms: nplurals=2; plural=(n != 1);\n

#. Type: string
#. Description
#: ../aolserver4.templates:2001
msgid Server hostname:
msgstr Indtast værtsnavn:

#. Type: string
#. Description
#: ../aolserver4.templates:2001
msgid 
AOLserver needs a hostname to use for redirect page URLs and for identifying 
itself.
msgstr 
AOLserver kræver et værtsnavn til URL-viderestilling og til at identificere 
sig.

#. Type: string
#. Description
#: ../aolserver4.templates:2001
msgid 
It is generally the fully-qualified DNS hostname of the computer, or 
localhost if it is not networked. Any name valid for a URL string can be 
used.
msgstr 
Det er generelt det fuldt-kvalificerede DNS-værtsnavn på din maskine, eller 
localhost hvis det ikke er på netværket. Brug hvilket som helst navn, som 
kan være en gyldig URL-streng.

#. Type: string
#. Description
#: ../aolserver4.templates:3001
msgid Server IP address:
msgstr Indtast værts IP-adresse:

#. Type: string
#. Description
#: ../aolserver4.templates:3001
msgid AOLserver needs an IP address to listen to.
msgstr AOLserver kræver en IP-adresse at lytte på.

#. Type: string
#. Description
#: ../aolserver4.templates:3001
msgid 
The default is the address of the loopback interface. If the server is to be 
remotely accessible this should be replaced by the address of the 
appropriate network interface.
msgstr 
Som standard er dette adressen på loopback netværksenheden. Hvis serveren 
skal være tilgængelig fra netværket, så skal denne adresse udskiftes med 
adressen for den pågældende netværksenhed.

#. Type: string
#. Description
#: ../aolserver4.templates:4001
msgid Server TCP port:
msgstr Indtast værts TCP-port:

#. Type: string
#. Description
#: ../aolserver4.templates:4001
msgid 
AOLserver needs a port number assigned for its use. This is almost always 
port 80 (the standard HTTP port), but might be different if another web 
server is installed, or some other service is listening on that port.
msgstr 
AOLserver kræver et portnummer tildelt. Dette er næsten altid 80 (standard 
HTTP-porten), men kan være en anden hvis du har installeret en anden 
webserver, eller hvis du har andre services lyttende på denne port.

#
#~| msgid 
#~| The server needs at least an IP address to listen to. It is generally 
#~| the primary Ethernet interface (or the loopback address, if the server 
#~| will be used just locally).
#~ msgid 
#~ AOLserver needs at least an IP address to listen to. It is generally the 
#~ primary Ethernet interface (or the loopback address, if the server will 
#~ be used just locally).
#~ msgstr 
#~ Serveren kræver mindst én IP-adresse at lytte på. Det er generelt den 
#~ primære ethernet-enhed (eller loopback adressen, hvis du kun vil bruge 
#~ serveren lokalt).

#~ msgid 
#~ The default address is the loopback one, which is not recommended for 
#~ general (network or Internet) use.
#~ msgstr 
#~ Standardadressen er loopback, som ikke er anbefalet for generelt (netværk 
#~ eller internet) brug.

#~ msgid It is recommended using the default.
#~ msgstr Det er anbefalet at du bruger standardværdien.

#~ msgid Welcome to the AOLserver 4
#~ msgstr Velkommen til AOLserver 4

#~ msgid 
#~ AOLserver is a multithreaded, Tcl-enabled, high-performance webserver.
#~ msgstr AOLserver er en multitrådet, Tcl-aktiveret, højydelse webserver.

#~ msgid 
#~ This software is designed to run multiple domains on a single machine. 
#~ Just one (main) will be setup right now. The configuration file in /etc/
#~ aolserver4 and its init script can be modified for more complicated multi-
#~ site configurations.
#~ msgstr 
#~ Denne software er lavet til at køre flere domæner på en enkelt maskine. 
#~ Vi vil kun sætte en (main) op nu. Du kan redigere opsætningsfilen i /etc/
#~ aolserver4 og dens init-script selv, hvis du vil have en mere kompliceret 
#~ opsætning.


Bug#522897: dh-make: add X11 license

2009-04-07 Thread Yuya.Nishida.
Package: dh-make
Version: 0.47
Severity: wishlist

Please add X11 license.
Because it is a famous free software license.
* http://www.gnu.org/licenses/license-list.html#X11License
* http://www.xfree86.org/3.3.6/COPYRIGHT2.html#3 

I want to use --copyright x11 option for debianizing softwares, that
is under the X11 license.

---
Yuya.Nishida.
http://www.j96.org/~yuya/

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

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: LANG=ja_JP.UTF-8, LC_CTYPE=ja_JP.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages dh-make depends on:
ii  debhelper 7.0.17 helper programs for debian/rules
ii  dpkg-dev  1.14.25Debian package development tools
ii  make  3.81-5 The GNU version of the make util
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

dh-make recommends no packages.

Versions of packages dh-make suggests:
ii  build-essential   11.4   Informational list of build-essent

-- debconf-show failed



-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#503832: I get this as well

2009-04-07 Thread Alex King

I am bitten by this bug too.

First had problems (different error, but could not print) after perl had 
been upgraded to 5.8, with sql-ledger 2.6.22.


Next I tried to upgrade sql-ledger to 2.8.16-1, and I get the:

*panic: attempt to copy freed scalar 8821f00 to 8233d70 at SL/Form.pm 
line 984.


*error when trying to print (or email a PDF).

I assume this bug only bites people upgrading, and is to do with the 
database.


Alex King



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522889: dhcp3-client: dhcp client should send hostname by default

2009-04-07 Thread Xavier Bestel
Package: dhcp3-client
Version: 3.1.2-1
Severity: wishlist


Hi,

when connecting a debian system to a coupled DHCP+DNS system (e.g. using 
dnsmasq)
dhcp3-client doesn't send the hostname to the server, so it's impossible to find
it afterwards.
dhcp3-client should send the hostname to the DHCP server, so that it can be fed
to the local DNS server. Manually changing the configuration file is too complex
a task for most people.

Thanks,
Xav

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

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

Versions of packages dhcp3-client depends on:
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  debianutils   3.0.1  Miscellaneous utilities specific t
ii  dhcp3-common  3.1.2-1common files used by all the dhcp3
ii  libc6 2.9-6  GNU C Library: Shared libraries

dhcp3-client recommends no packages.

Versions of packages dhcp3-client suggests:
pn  avahi-autoipd none (no description available)
ii  resolvconf1.43   name server information handler

-- debconf information:
  dhcp3-client/dhclient-needs-restarting:
  dhcp3-client/dhclient-script_moved:




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#432265: Uses more than double amount of memory on 64bit

2009-04-07 Thread Thomas Damgaard Nielsen

I can confirm this problem.

--
Med venlig hilsen / Best regards
Thomas Damgaard Nielsen
email: m...@thomasdamgaard.dk
web:   http://thomasdamgaard.dk/



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522926: client cannot write to new files on server, only edit/delete/create

2009-04-07 Thread martin f krafft
Package: nfs-common
Version: 1:1.1.4-1
Severity: grave

I've had a great morning with NFS. First, the server had to be
restarted, which caused all clients (at least one was using each of
1.1.4-1 and 1.1.5-[12]) to require a restart, since all processes
just hung hard.

New mounts would also not work, even though trying to mount exported
filesystems without permission on the server yielded an access
denied error on the client.

After I rebooted the clients, they could mount and browse the
filesystem, and read files without problems.

They could edit files too.

However, they could not write to new files. They could create them,
but trying to write to them causes:

  open(testfile, O_WRONLY|O_CREAT|O_TRUNC, 0666) = -1 EINVAL (Invalid 
argument)

The file is created, but it cannot be written to.

I can delete files just fine.

This happens with 1.1.4-1 through 1.1.5-2, talking to
a 1:1.1.2-6lenny1 kernel server.

The NFS infrastructure here has been working for years and also
after the lenny upgrade, and I have tried restarting the kernel
server daemon many times. The only thing that has changed between
when it was working and now was today's OpenSSL upgrade.

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

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

Versions of packages nfs-common depends on:
ii  adduser  3.110   add and remove users and groups
ii  initscripts  2.86.ds1-61 Scripts for initializing and shutt
ii  libc62.9-6   GNU C Library: Shared libraries
ii  libcomerr2   1.41.3-1common error description library
ii  libevent11.3e-3  An asynchronous event notification
ii  libgssglue1  0.1-2   mechanism-switch gssapi library
ii  libkrb53 1.6.dfsg.4~beta1-12 Transitional library package/krb4 
ii  libnfsidmap2 0.21-2  An nfs idmapping library
ii  librpcsecgss30.18-1  allows secure rpc communication us
ii  libwrap0 7.6.q-16Wietse Venema's TCP wrappers libra
ii  lsb-base 3.2-22  Linux Standard Base 3.2 init scrip
ii  netbase  4.34Basic TCP/IP networking system
ii  portmap  6.0-9   RPC port mapper
ii  ucf  3.0018  Update Configuration File: preserv

nfs-common recommends no packages.

nfs-common suggests no packages.

-- debconf-show failed


-- 
 .''`.   martin f. krafft madd...@d.o  Related projects:
: :'  :  proud Debian developer   http://debiansystem.info
`. `'`   http://people.debian.org/~madduckhttp://vcs-pkg.org
  `-  Debian - when you have better things to do than fixing systems


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


Bug#522899: gnome-screensaver: Fails to activate when on battery

2009-04-07 Thread Samson Wong
Package: gnome-screensaver
Version: 2.22.2-2
Severity: normal

Gnome screensaver fails to activate when on battery, works fine when on power. 
Instead of the chosen screensaver (e.g. popsquares) activating, 
it would simply blank screen (screen/blacklight is still on - just a blank 
screen). It would still ask for a password, if you had set that option though.

This occurs whether the screensaver occurs naturally or when you use gnome 
screensaver to lock scteen.

When this happens, gnome power manager events (e.g. autosuspend) also do not 
happen.

Gnome screensaver will work as normal, if after being on battery, I kill it and 
start it again.

I am currently using fluxbox, with gnome-screensaver (and gnome power manager, 
I only have those two installed) put into the startup file, 
so it would autostart on login. I don't know whether this issue occurs in a 
standard debian gnome environment, (which has other things installed) 
might be a relevant factor. 


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

Kernel: Linux 2.6.29-1.slh.1-sidux-686 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages gnome-screensaver depends on:
ii  dbus-x11   1.2.12-1  simple interprocess messaging syst
ii  gconf2 2.24.0-7  GNOME configuration database syste
ii  gnome-icon-theme   2.24.0-4  GNOME Desktop icon theme
ii  libatk1.0-01.24.0-2  The ATK accessibility toolkit
ii  libc6  2.9-6 GNU C Library: Shared libraries
ii  libcairo2  1.8.6-2+b1The Cairo 2D vector graphics libra
ii  libdbus-1-31.2.12-1  simple interprocess messaging syst
ii  libdbus-glib-1-2   0.80-3simple interprocess messaging syst
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.9-4   FreeType 2 font engine, shared lib
ii  libgconf2-42.24.0-7  GNOME configuration database syste
ii  libgl1-mesa-glx [libgl 7.0.3-7   A free implementation of the OpenG
ii  libglade2-01:2.6.4-1 library to load .glade files at ru
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libgnome-menu2 2.24.2-2  an implementation of the freedeskt
ii  libgnomekbd2   2.22.0-2  GNOME library to manage keyboard c
ii  libgnomekbdui2 2.22.0-2  User interface library for libgnom
ii  libgtk2.0-02.14.7-5  The GTK+ graphical user interface 
ii  libice62:1.0.5-1 X11 Inter-Client Exchange library
ii  libnotify1 [libnotify1 0.4.5-1   sends desktop notifications to a n
ii  libpam0g   1.0.1-9   Pluggable Authentication Modules l
ii  libpango1.0-0  1.24.0-2  Layout and rendering of internatio
ii  libpixman-1-0  0.14.0-1  pixel-manipulation library for X a
ii  libpng12-0 1.2.35-1  PNG library - runtime
ii  libsm6 2:1.1.0-2 X11 Session Management library
ii  libx11-6   2:1.2-1   X11 client-side library
ii  libxcb-render-util00.3.3-2   utility libraries for X C Binding 
ii  libxcb-render0 1.2-1 X C Binding, render extension
ii  libxcb11.2-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.2.1-2 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxklavier12  3.5-2 X Keyboard Extension high-level AP
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  libxrandr2 2:1.3.0-2 X11 RandR extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxss11:1.1.3-1 X11 Screen Saver extension library
ii  libxxf86misc1  1:1.0.1-3 X11 XFree86 miscellaneous extensio
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages gnome-screensaver recommends:
ii  gnome-power-manager   2.24.4-1   power management tool for the GNOM
ii  libpam-gnome-keyring  2.26.0-2   PAM module to unlock the GNOME key
pn  rss-glx   none (no description available)

Versions of packages gnome-screensaver suggests:
pn  xscreensaver-data none (no description available)

-- no debconf information



-- 
To 

Bug#522909: linux-image-2.6.29-1-amd64: Package cannot be configured due to invalid mkinitrd options

2009-04-07 Thread Frank Blendinger
Package: linux-image-2.6.29-1-amd64
Version: 2.6.29-2
Severity: important

Installation of the packages fails with the following output:

Reading package lists... Done
Building dependency tree   
Reading state information... Done
Reading extended state information  
Initializing package states... Done
Reading task descriptions... Done  
The following partially installed packages will be configured:
  linux-image-2.6.29-1-amd64 
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Setting up linux-image-2.6.29-1-amd64 (2.6.29-2) ...
Running depmod.
Running mkinitrd.yaird.
Other valid candidates: mkinitrd.yaird mkinitramfs
mkinitrd.yaird: invalid option -- 't'
Terminating...
mkinitrd.yaird failed to create initrd image.
Running mkinitramfs.
Other valid candidates: mkinitrd.yaird mkinitramfs
/usr/sbin/mkinitramfs: invalid option -- 'c'
/usr/sbin/mkinitramfs: invalid option -- 't'
Terminating...
mkinitramfs failed to create initrd image.
Failed to create initrd image.
dpkg: error processing linux-image-2.6.29-1-amd64 (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 linux-image-2.6.29-1-amd64
E: Sub-process /usr/bin/dpkg returned an error code (1)
A package failed to install.  Trying to recover:
Setting up linux-image-2.6.29-1-amd64 (2.6.29-2) ...
Running depmod.
Running mkinitrd.yaird.
Other valid candidates: mkinitrd.yaird mkinitramfs
mkinitrd.yaird: invalid option -- 't'
Terminating...
mkinitrd.yaird failed to create initrd image.
Running mkinitramfs.
Other valid candidates: mkinitrd.yaird mkinitramfs
/usr/sbin/mkinitramfs: invalid option -- 'c'
/usr/sbin/mkinitramfs: invalid option -- 't'
Terminating...
mkinitramfs failed to create initrd image.
Failed to create initrd image.
dpkg: error processing linux-image-2.6.29-1-amd64 (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 linux-image-2.6.29-1-amd64
Reading package lists... Done 
Building dependency tree   
Reading state information... Done
Reading extended state information  
Initializing package states... Done
Reading task descriptions... Done


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

Kernel: Linux 2.6.28 (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 linux-image-2.6.29-1-amd64 depends on:
ii  debconf [debconf-2.0] 1.5.26 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.93.2 tools for generating an initramfs
ii  module-init-tools 3.7-pre9-1 tools for managing Linux kernel mo
ii  yaird [linux-initramfs-tool]  0.0.13-5   Yet Another mkInitRD

linux-image-2.6.29-1-amd64 recommends no packages.

Versions of packages linux-image-2.6.29-1-amd64 suggests:
ii  grub  0.97-53GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.29  none (no description available)

-- 
Frank Blendinger | fb(at)intoxicatedmind.net | GPG: 0x0BF2FE7A
Fingerprint: BB64 F2B8 DFD8 BF90 0F2E 892B 72CF 7A41 0BF2 FE7A


signature.asc
Description: Digital signature


Bug#522778: S/390 fails similarily

2009-04-07 Thread Thorsten Glaser
https://buildd.debian.org/fetch.cgi?pkg=mksh;ver=37.2-1;arch=s390;stamp=1238952678

diet mksh segfaults, but normal mksh doesn’t
might be related though…

//mirabilos
-- 
“It is inappropriate to require that a time represented as
 seconds since the Epoch precisely represent the number of
 seconds between the referenced time and the Epoch.”
-- IEEE Std 1003.1b-1993 (POSIX) Section B.2.2.2



--
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522907: Acknowledgement (winbind: Winbind daily crashes, possible fix to bug #483235)

2009-04-07 Thread Francis Brosnan Blazquez
There is a wrong reference in the bug report. Here is the right link:

http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=484235#145
-- 
Francis Brosnan Blazquez fran...@aspl.es
ASPL




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#522891: [Debian-ha-maintainers] Bug#522891: drbd8-source: fails to build against 2.6.28

2009-04-07 Thread Michael Prokop
* Norbert Tretkowski norb...@tretkowski.de [20090407 11:11]:
 Am Dienstag, den 07.04.2009, 11:03 +0200 schrieb Michael Prokop:

  In file included from /usr/src/modules/drbd8/drbd/drbd_main.c:52:
  include/linux/swab.h:99:1: warning: __swab16 redefined

 known issue, and already fixed in our svn repository. It affects all
 kernels older than 2.6.29-rc3.

Ah, that's great news - thanks!

Is an upload planned for the next days/weeks?

regards,
-mika-


signature.asc
Description: Digital signature


Bug#522910: clamav-daemon: ArchiveLimitMemoryUsage is deprecated

2009-04-07 Thread Török Edwin
Package: clamav-daemon
Version: 0.95+dfsg-2
Severity: normal

ArchiveLimitMemoryUsage option in clamd.conf is deprecated, but the default
clamd.conf installed by Debian sets it.

This causes a default install of clamav-daemon to give a deprecated warning on
startup.

-- Package-specific info:
--- configuration ---
ClamAV engine version: devel-r5017-468d0de
Checking configuration files in /usr/local/etc

Config file: clamd.conf
---
LogFile = /tmp/clamd.log
LogFileUnlock disabled
LogFileMaxSize = 1048576
LogTime = yes
LogClean = yes
LogVerbose = yes
LogSyslog disabled
LogFacility = LOG_LOCAL6
PidFile = /tmp/clamd.pid
TemporaryDirectory disabled
DatabaseDirectory = /usr/local/share/clamav
LocalSocket = /tmp/clamd.socket
FixStaleSocket = yes
TCPSocket = 3310
TCPAddr disabled
MaxConnectionQueueLength = 15
StreamMaxLength = 26214400
StreamMinPort = 1024
StreamMaxPort = 2048
MaxThreads = 10
ReadTimeout = 120
CommandReadTimeout = 5
SendBufTimeout = 500
MaxQueue = 100
IdleTimeout = 30
ExcludePath = ^/proc/, ^/sys/, ^/tmp/
MaxDirectoryRecursion = 15
FollowDirectorySymlinks disabled
FollowFileSymlinks disabled
SelfCheck = 600
VirusEvent disabled
ExitOnOOM disabled
Foreground = yes
Debug disabled
LeaveTemporaryFiles disabled
User = clamav
AllowSupplementaryGroups disabled
DetectPUA = yes
ExcludePUA disabled
IncludePUA disabled
AlgorithmicDetection = yes
ScanPE = yes
ScanELF = yes
DetectBrokenExecutables disabled
ScanMail = yes
MailFollowURLs disabled
ScanPartialMessages disabled
PhishingSignatures disabled
PhishingScanURLs = yes
PhishingAlwaysBlockCloak disabled
PhishingAlwaysBlockSSLMismatch disabled
HeuristicScanPrecedence disabled
StructuredDataDetection disabled
StructuredMinCreditCardCount = 3
StructuredMinSSNCount = 3
StructuredSSNFormatNormal = yes
StructuredSSNFormatStripped disabled
ScanHTML = yes
ScanOLE2 = yes
ScanPDF = yes
ScanArchive = yes
ArchiveBlockEncrypted disabled
MaxScanSize = 104857600
MaxFileSize = 26214400
MaxRecursion = 16
MaxFiles = 1
ClamukoScanOnAccess disabled
ClamukoScanOnOpen disabled
ClamukoScanOnClose disabled
ClamukoScanOnExec disabled
ClamukoIncludePath disabled
ClamukoExcludePath disabled
ClamukoMaxFileSize = 5242880
DevACOnly disabled
DevACDepth disabled

Config file: freshclam.conf
---
LogFileMaxSize = 2097152
LogTime = yes
LogVerbose = yes
LogSyslog disabled
LogFacility = LOG_LOCAL6
PidFile disabled
DatabaseDirectory = /usr/local/share/clamav
Foreground disabled
Debug disabled
AllowSupplementaryGroups disabled
UpdateLogFile = /tmp/freshclam.log
DatabaseOwner = clamav
Checks = 12
DNSDatabaseInfo = current.cvd.clamav.net
DatabaseMirror = db.ro.clamav.net, database.clamav.net
MaxAttempts = 3
ScriptedUpdates = yes
CompressLocalDatabase disabled
HTTPProxyServer disabled
HTTPProxyPort disabled
HTTPProxyUsername disabled
HTTPProxyPassword disabled
HTTPUserAgent disabled
NotifyClamd = /usr/local/etc/clamd.conf
OnUpdateExecute disabled
OnErrorExecute disabled
OnOutdatedExecute disabled
LocalIPAddress disabled
ConnectTimeout = 30
ReceiveTimeout = 30
SubmitDetectionStats = /usr/local/etc/clamd.conf
DetectionStatsCountry disabled
SafeBrowsing = yes

Config file: clamav-milter.conf
---
LogFile = /tmp/clamav-milter.log
LogFileUnlock disabled
LogFileMaxSize = 1048576
LogTime = yes
LogVerbose = yes
LogSyslog disabled
LogFacility = LOG_LOCAL6
PidFile disabled
TemporaryDirectory disabled
FixStaleSocket = yes
MaxThreads = 10
ReadTimeout = 120
Foreground disabled
User disabled
AllowSupplementaryGroups disabled
MaxFileSize = 26214400
ClamdSocket = tcp:127.0.0.1:3310
MilterSocket = local:/var/spool/postfix/clamav/clamav-milter.socket
LocalNet disabled
OnClean = Accept
OnInfected = Quarantine
OnFail = Defer
RejectMsg disabled
AddHeader = yes
Chroot disabled
Whitelist disabled
SkipAuthenticated disabled
LogInfected = Full

--- data dir ---
total 47544
-rw-r--r-- 1 clamav clamav  2429952 2009-04-07 12:24 daily.cld
-rw-r--r-- 1 clamav clamav 20091559 2009-04-07 12:23 main.cvd
-rw--- 1 clamav clamav  156 2009-04-07 13:26 mirrors.dat
-rw-r--r-- 1 clamav clamav 26152960 2009-04-07 12:56 safebrowsing.cld

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

Kernel: Linux 2.6.29.1 (SMP w/4 CPU cores; PREEMPT)
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 clamav-daemon depends on:
ii  clamav-base0.95+dfsg-2   anti-virus utility for Unix - base
ii  clamav-freshclam [clam 0.95+dfsg-2   anti-virus utility for Unix - viru
ii  libbz2-1.0 1.0.5-1   high-quality block-sorting file co
ii  libc6  2.9-6 GNU C Library: Shared libraries
ii  libclamav6 0.95+dfsg-2   anti-virus utility for Unix - libr
ii  libltdl3   1.5.26-4  A system independent dlopen wrappe
ii  

Bug#522914: ITP: agda -- a dependently typed functional programming language and proof assistant

2009-04-07 Thread Iain Lane
Package: wnpp
Severity: wishlist
Owner: Iain Lane la...@ubuntu.com

* Package name: agda
  Version : 2.2.0
  Upstream Author : Ulf Norell u...@chalmers.se
* URL : http://wiki.portal.chalmers.se/agda/
* License : MIT/X11
  Programming Lang: Haskell
  Description : a dependently typed functional programming language and 
proof assistant

Agda is a dependently typed functional programming language: It has
inductive families, which are like Haskell's GADTs, but they can be
indexed by values and not just types. It also has parameterised
modules, mixfix operators, Unicode characters, and an interactive
Emacs interface (the type checker can assist in the development of
your code).
..
Agda is a proof assistant: It is an interactive system for writing
and checking proofs. Agda is based on intuitionistic type theory, a
foundational system for constructive mathematics developed by the
Swedish logician Per Martin-Lf. It has many similarities with other
proof assistants based on dependent types, such as Coq, Epigram and
NuPRL.

-- System Information:
Debian Release: 5.0
  APT prefers jaunty-updates
  APT policy: (500, 'jaunty-updates'), (500, 'jaunty-security'), (500, 
'jaunty-backports'), (500, 'jaunty')
Architecture: i386 (i686)

This message has been checked for viruses but the contents of an attachment
may still contain software viruses, which could damage your computer system:
you are advised to perform your own checks. Email communications with the
University of Nottingham may be monitored as permitted by UK legislation.




-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



  1   2   3   4   5   >