Bug#382298: Add support for MacBook Pro touchpad

2006-08-10 Thread Matt Kraai
Package: linux-2.6
Version: 2.6.17-5
Tags: patch

The kernel does not support the MacBook Pro touchpad with the
appletouch driver.  In order to add this support, the patch

 
http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=9effa978f1d51f6d0426ebabcf6cb32336bb3153

needs to be applied and CONFIG_USB_APPLETOUCH needs to be set to m in
the config file.

-- 
Matt


signature.asc
Description: Digital signature


Bug#382299: Max width support in format string should be documented

2006-08-10 Thread H. S. Teoh
Package: ratpoison
Version: 1.4.0.dfsg-5
Severity: minor

The format strings used in ratpoison (e.g., in the 'winfmt' setting)
actually support max width specifications (e.g., %n%s%40t to limit the
width of the windows list). This should be documented in the manpage 
info pages. Currently, they only list the possible substitution
characters.


T

-- 
There's light at the end of the tunnel. It's the oncoming train.


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



Bug#381641: Video mode change during init script disrupts fixed freq monitor

2006-08-10 Thread Petter Reinholdtsen
reassign 381641 console-tools
thanks

[Jack Carroll]
 you might want to change the package line and take over the report;
 I don't think I have access to do that.

You probably have access to do it, but I'll take care of it.


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



Bug#382300: /etc/hddtemp.db: New entry for Seagate 7200.10 320GB

2006-08-10 Thread Jindrich Makovicka
Package: hddtemp
Version: 0.3-beta15-21
Severity: wishlist

ST3320620AS 194 C Seagate Barracuda 7200.10 320GB SATA

Regards,
-- 
Jindrich Makovicka


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



Bug#381726: Review of this bug (and pending upload)

2006-08-10 Thread Javier Fernández-Sanguino Peña

severity 381726 normal
thanks

Demarc reported a security vulnerability to Snort through Bugtraq, this
security issue is actually a problem with the HTTP inspector module in
Snort which prevents it from detecting an attack against *Apache* web servers
(not others) because it doesn't take into account that a carriage return
might be included in the request and accepted (even if its not RFC). More
info in the attached text file.

FWI the 2.4.5 changelog of Snort says:
2006-06-05 - Snort 2.4.5 Released
* Fixed potential evasion in URI content buffers
* Fixed potential evasion in Stream4

So, actually, to evasion bugs were fixed in this engine.

I have backported both fixes to the 2.3.3-8 packages and have uploaded
a new snort package. However, I don't think that the 'grave' severity of this
bug stands and I'm downgrading it.

Notice that:

a) it is an evasion issue, not a security vulnerability. That is, it only
affects the ability of Snort to detect attacks (but much in the same way that
an *outdated* ruleset [1] could be considered a security issue)

b) it only affects attacks to Apache web servers

For reference, attached is the 2.4.4 vs.  2.4.5 patch (stripping other info)
which fixes the bug, it is easily backported to the 2.3.3 (there is only one
rejection, easy to solve). [2]

Regards

Javier

[1]  Like the one we are providing due to the license change in Snort, post
2.3, with the appearance of the VRT rules

[2] Even if asked to (in #320920) I'm not sure it is reasonable to do
an upgrade to 2.6.0 and provide a Snort package with *no* ruleset (which
means that the Snort service could not be started by default). Since people
now have to download it manually from snort.org as it is not provided
in the GPL package.
diff -Nru snort-2.4.4/doc/README.http_inspect 
snort-2.4.5/doc/README.http_inspect
--- snort-2.4.4/doc/README.http_inspect 2005-05-19 17:05:07.0 +0200
+++ snort-2.4.5/doc/README.http_inspect 2006-06-02 21:41:41.0 +0200
@@ -249,7 +249,7 @@
 since some web sites refer to files using directory traversals.
 
 * apache_whitespace [yes/no] *
-This option deals with non-RFC standard of tab for a space delimiter.  Apache
+This option deals with non-RFC standard of tab or carriage return for a space 
delimiter.  Apache
 uses this, so if the emulated web server is Apache you need to enable this
 option.  Alerts on this option may be interesting, but may also be false
 positive prone.
diff -Nru snort-2.4.4/src/generators.h snort-2.4.5/src/generators.h
--- snort-2.4.4/src/generators.h2005-10-16 20:55:29.0 +0200
+++ snort-2.4.5/src/generators.h2006-05-24 18:14:33.0 +0200
@@ -98,6 +98,7 @@
 #define STREAM4_ZERO_TIMESTAMP  21
 #define STREAM4_OVERLAP_LIMIT   22
 #define STREAM4_TCP_NO_ACK  23
+#define STREAM4_EVASIVE_FIN 24
 
 #define GENERATOR_SPP_ARPSPOOF  112
 #define ARPSPOOF_UNICAST_ARP_REQUEST 1
@@ -335,6 +336,7 @@
 #define STREAM4_ZERO_TIMESTAMP_STR (spp_stream4) TCP Option Timestamp value 
of 0
 #define STREAM4_OVERLAP_LIMIT_STR (spp_stream4) TCP stream too many 
overlapping packets
 #define STREAM4_TCP_NO_ACK_STR (spp_stream4) Packet in Established TCP stream 
missing ACK
+#define STREAM4_EVASIVE_FIN_STR (spp_stream4) possible EVASIVE FIN detection
 
 /*   FRAG3 strings */
 #define FRAG3_IPOPTIONS_STR (spp_frag3) Inconsistent IP Options on Fragmented 
Packets
diff -Nru snort-2.4.4/src/preprocessors/HttpInspect/client/hi_client.c 
snort-2.4.5/src/preprocessors/HttpInspect/client/hi_client.c
--- snort-2.4.4/src/preprocessors/HttpInspect/client/hi_client.c
2005-03-16 22:52:18.0 +0100
+++ snort-2.4.5/src/preprocessors/HttpInspect/client/hi_client.c
2006-06-02 21:41:41.0 +0200
@@ -85,6 +85,8 @@
 */
 static LOOKUP_FCN lookup_table[256];
 static int hex_lookup[256];
+static int NextNonWhiteSpace(HI_SESSION *Session, u_char *start,
+u_char *end, u_char **ptr, URI_PTR *uri_ptr);
 
 /*
 **  NAME
@@ -455,7 +457,7 @@
 return URI_END;
 }
 
-return NO_URI;
+return NextNonWhiteSpace(Session, start, end, ptr, uri_ptr);
 }
 
 /*
@@ -677,7 +679,7 @@
 (*ptr)++;
 continue;
 }
-else if((**ptr == '\t'))
+else if((**ptr == '\t') || (**ptr == '\r'))
 {
 if(ServerConf-apache_whitespace.on)
 {
diff -Nru snort-2.4.4/src/preprocessors/spp_stream4.c 
snort-2.4.5/src/preprocessors/spp_stream4.c
--- snort-2.4.4/src/preprocessors/spp_stream4.c 2006-01-09 21:38:30.0 
+0100
+++ snort-2.4.5/src/preprocessors/spp_stream4.c 2006-05-24 18:14:33.0 
+0200
@@ -412,7 +412,7 @@
 void PreprocCleanExitFunction(int);
 static INLINE int isBetween(u_int32_t low, u_int32_t high, u_int32_t cur);
 static INLINE int NotForStream4(Packet *p);
-static INLINE int SetFinSent(Packet *p, Session *ssn, int direction);
+static INLINE int SetFinSent(Session *ssn, 

Bug#382296: crash log

2006-08-10 Thread Jindrich Makovicka
I guess I am experiencing the same, here is the log.

[2006/08/10 08:02:00, 0] smbd/server.c:main(847)
  smbd version 3.0.23b started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2006/08/10 08:02:00, 0]
passdb/pdb_interface.c:make_pdb_method_name(174) No builtin nor plugin
backend for tdbsam guest found [2006/08/10 08:02:00, 0]
lib/util.c:smb_panic(1592) PANIC (pid 8432): pdb_get_methods_reload:
failed to get pdb methods for backend tdbsam guest 
[2006/08/10 08:02:00, 0] lib/util.c:log_stack_trace(1699)
  BACKTRACE: 7 stack frames:
   #0 /usr/sbin/smbd(log_stack_trace+0x23) [0x822b923]
   #1 /usr/sbin/smbd(smb_panic+0x46) [0x822ba16]
   #2 /usr/sbin/smbd [0x81ea8d1]
   #3 /usr/sbin/smbd(initialize_password_db+0xe) [0x81ea91e]
   #4 /usr/sbin/smbd(main+0x591) [0x82c1bf1]
   #5 /lib/tls/i686/cmov/libc.so.6(__libc_start_main+0xc8) [0xb7be2ea8]
   #6 /usr/sbin/smbd [0x8082a01]
[2006/08/10 08:02:00, 0] lib/util.c:smb_panic(1600)
  smb_panic(): calling panic action [/usr/share/samba/panic-action 8432]
[2006/08/10 08:02:02, 0] lib/util.c:smb_panic(1608)
  smb_panic(): action returned status 0
[2006/08/10 08:02:02, 0] lib/fault.c:dump_core(173)
  dumping core in /var/log/samba/cores/smbd

Regards,
-- 
Jindrich Makovicka


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



Bug#382301: Certain Windows Media streams cause gxine to completely hang

2006-08-10 Thread Paul Dwerryhouse
Package: gxine
Version: 0.5.7-1
Severity: normal


A number of windows media audio streams (not all) cause gxine to lock up
hard, such that it must be killed off and restarted, to recover.
Typically, the stream buffers, then starts to play, and after two or
three seconds of audio, gxine hangs.

This does not appear to be a bug in libxine, because the streams play
perfectly in xine. This problem occurs in both the unstable and testing
Debian packages.

Here are a few of the streams that cause the problem:

http://stream2.cooeeweb.com.au/seafmsc

mms://a451.l672123077.c6721.g.lm.akamaistream.net/D/451/6721/v0001/reflector:23077

mms://stream.polskieradio.pl/Program 1
(yes, there is a space in that address)

http://202.147.105.46/goldfm

I can provide plenty of others if needed.

Cheers,

Paul



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

Versions of packages gxine depends on:
ii  libc62.3.6-18GNU C Library: Shared libraries
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libgtk2.0-0  2.8.18-7The GTK+ graphical user interface 
ii  liblircclient0   0.8.0-5 LIRC client library
ii  libmozjs0d   1.8.0.4-2   The Mozilla SpiderMonkey JavaScrip
ii  libpango1.0-01.12.3-1+b1 Layout and rendering of internatio
ii  librsvg2-common  2.14.4-2SAX-based renderer library for SVG
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxine1 1.1.2-2 the xine video/media player librar
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library

gxine recommends no packages.

-- no debconf information


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



Bug#382303: please add timezone option to vfat mounts

2006-08-10 Thread Blars Blarson
Package: mount,kernel
Severity: wishlist

When mouting the sd card from my gps, the file timestamps are 8 hours
off.  It appears that the gps records the time stamps in GMT, and
linux vfat uses the local time zone for timestamps.

Please add support for using alternate timezones on vfat filesystems.


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

Versions of packages mount depends on:
ii  libblkid1 1.39-1 block device id library
ii  libc6 2.3.6-18   GNU C Library: Shared libraries
ii  libuuid1  1.39-1 universally unique id library

mount recommends no packages.

-- no debconf information


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



Bug#379292: xkb-data hr layout broke the normal AltGr+numbers behaviour

2006-08-10 Thread Denis Barbier
On Sat, Jul 22, 2006 at 06:35:36PM +0200, Josip Rodin wrote:
 Package: xkb-data
 Version: 0.8-5
 
 Hi,
 
 On a standard Croatian keyboard, the AltGr (right Alt) key is not used as
 a compose key in combination with the second row of the qwertz keyboard.
 
 This change annoys me to no end, because right now in order for me to get
 the characters tilde (~) or caret (^) I have to make three keypresses
 instead of two like everywhere else.
 
 The change needs to be reverted and the compose thing relegated to an
 option. I'll try to find a way to patch this and submit it.

Hi Josip,

/usr/share/X11/xkb/symbols/hr does not contain any such definition, this
is a configuration problem on your side.  Can you please check?

Denis


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



Bug#382302: alsa-base: leaves files on disk after upgrading from sarge and then purging

2006-08-10 Thread Lars Wirzenius
Package: alsa-base
Version: 1.0.11-4

When testing alsa-base with piuparts, we get the following error:

2m14.7s ERROR: Package purging left files on system:
  /etc/devfs
  /etc/devfs/conf.d
  /var/lib/alsa
owned by: alsa-utils
  /var/lib/alsa/autosave-once

This happens when testing an upgrade from sarge to etch to sid. The full
log file can be found at:

http://piuparts.cs.helsinki.fi/bugged/alsa-base_1.0.11-4.log

I hope this helps. Thanks.

-- 
Perfectionism is a good way to kill a new project.



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



Bug#382296: samba: smbd SEGFAULTS on startup (me too; my log)

2006-08-10 Thread Phillip Pi
Me too with samba: smbd SEGFAULTS on startup -- 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=382296

# cat /var/log/samba/log.smbd
[2006/08/09 15:16:00, 0] smbd/server.c:main(847)
  smbd version 3.0.23b started.
  Copyright Andrew Tridgell and the Samba Team 1992-2006
[2006/08/09 15:16:00, 0] passdb/pdb_interface.c:make_pdb_method_name(174)
  No builtin nor plugin backend for tdbsam guest found
[2006/08/09 15:16:00, 0] lib/util.c:smb_panic(1592)
  PANIC (pid 1267): pdb_get_methods_reload: failed to get pdb methods for 
backend tdbsam
guest

[2006/08/09 15:16:00, 0] lib/util.c:log_stack_trace(1699)
  BACKTRACE: 7 stack frames:
   #0 /usr/sbin/smbd(log_stack_trace+0x23) [0x822b923]
   #1 /usr/sbin/smbd(smb_panic+0x46) [0x822ba16]
   #2 /usr/sbin/smbd [0x81ea8d1]
   #3 /usr/sbin/smbd(initialize_password_db+0xe) [0x81ea91e]
   #4 /usr/sbin/smbd(main+0x591) [0x82c1bf1]
   #5 /lib/tls/libc.so.6(__libc_start_main+0xc8) [0xb7c35ea8]
   #6 /usr/sbin/smbd [0x8082a01]
[2006/08/09 15:16:00, 0] lib/util.c:smb_panic(1600)
  smb_panic(): calling panic action [/usr/share/samba/panic-action 1267]
/usr/share/samba/panic-action: line 51: mail: command not found
[2006/08/09 15:16:01, 0] lib/util.c:smb_panic(1608)
  smb_panic(): action returned status 127
[2006/08/09 15:16:01, 0] lib/fault.c:dump_core(173)
  dumping core in /var/log/samba/cores/smbd


Thank you in advance. :)


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



Bug#382304: quanta: crash when after manipulate the page frames by the frame-guider

2006-08-10 Thread wuhongming
Package: quanta
Version: 4:3.5.2-2
Severity: important

always crash after manipulate the page frames by the frame-guider

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

Versions of packages quanta depends on:
ii  kdelibs4c2a4:3.5.4-3 core libraries and binaries for al
ii  kfilereplace   4:3.5.2-2 batch search-and-replace component
ii  klinkstatus4:3.5.2-2 web link validity checker for KDE
ii  kommander  4:3.5.2-2 visual dialog builder and executor
ii  libacl12.2.41-1  Access control list shared library
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libattr1   2.4.32-1  Extended attribute shared library
ii  libaudio2  1.8-1 The Network Audio System (NAS). (s
ii  libc6  2.3.6-18  GNU C Library: Shared libraries
ii  libcvsservice0 4:3.5.2-1+b2  DCOP service for accessing CVS rep
ii  libfontconfig1 2.3.2-7   generic font configuration library
ii  libfreetype6   2.2.1-2   FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0]0.1.7-3   Client library for the gamin file 
ii  libgcc11:4.1.1-10GCC support library
ii  libice61:1.0.0-3 X11 Inter-Client Exchange library
ii  libidn11   0.6.5-1   GNU libidn library, implementation
ii  libjpeg62  6b-13 The Independent JPEG Group's JPEG 
ii  libpcre3   6.4-2 Perl 5 Compatible Regular Expressi
ii  libpng12-0 1.2.8rel-5.2  PNG library - runtime
ii  libqt3-mt  3:3.3.6-3 Qt GUI Library (Threaded runtime v
ii  libsm6 1:1.0.0-4 X11 Session Management library
ii  libstdc++6 4.1.1-10  The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.0-8 X11 client-side library
ii  libxcursor11.1.5.2-5 X cursor management library
ii  libxext6   1:1.0.0-4 X11 miscellaneous extension librar
ii  libxft22.1.8.2-8 FreeType-based font drawing librar
ii  libxi6 1:1.0.0-5 X11 Input extension library
ii  libxinerama1   1:1.0.1-4 X11 Xinerama extension library
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.0.2-4   X Rendering Extension client libra
ii  libxslt1.1 1.1.17-3  XSLT processing library - runtime 
ii  libxt6 1:1.0.0-5 X11 toolkit intrinsics library
ii  quanta-data4:3.5.2-2 data files for Quanta Plus web dev
ii  tidy   20051018-1HTML syntax checker and reformatte
ii  zlib1g 1:1.2.3-13compression library - runtime

Versions of packages quanta recommends:
ii  cervisia4:3.5.2-1+b2 a graphical CVS front end for KDE
ii  docbook-defguide2.0.8-2  DocBook: The Definitive Guide - HT
ii  gnupg   1.4.5-1  GNU privacy guard - a free PGP rep
ii  kompare 4:3.5.2-1+b2 a KDE GUI for viewing differences 
ii  kxsldbg 4:3.5.2-2graphical XSLT debugger for KDE
pn  phpdoc  none   (no description available)
pn  wdg-html-reference  none   (no description available)

-- no debconf information


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



Bug#382305: clamav-freshclam fails to start

2006-08-10 Thread Martin Sebald
Package: clamav-freshclam
Version: 0.88.4-1

Hello,

after upgrading from 0.88.3-1 to 0.88.4-1 I experience the following
problem when trying to start clamav-freshclam:

 /etc/init.d/clamav-freshclam restart
 Starting ClamAV virus database updater: freshclam/sbin/start-stop-daemon: 
 stat /var/run/clamav/freshclam.pid: No such file or directory
  failed!

/var/run/clamav exists and has the appropriate rights. Hm...

If more information is needed I would be happy to provide it.

Regards,
Martin




Bug#382307: dselect: SIGWINCH ignored in help screens

2006-08-10 Thread Sven Joachim

Package: dselect
Version: 1.13.22
Severity: normal

If the terminal is resized while dselect is displaying a help screen,
dselect does not update the display accordingly.


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

Versions of packages dselect depends on:
ii  dpkg1.13.22  package maintenance system for Deb
ii  libc6   2.3.6-18 GNU C Library: Shared libraries
ii  libgcc1 1:4.1.1-10   GCC support library
ii  libncurses5 5.5-2Shared libraries for terminal hand
ii  libstdc++6  4.1.1-10 The GNU Standard C++ Library v3

dselect recommends no packages.

-- no debconf information





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



Bug#356783: What's wrong with descriptions?

2006-08-10 Thread Filipus Klutiero



The only problem I see is package descriptions mismatching with
actual content.



Sorry but what's wrong with the pacakge descriptions?


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



Bug#382306: gnome-panel-data: Fails to upgrade from 2.14.2-2 to 2.14.3-1_all: several errors of parsing

2006-08-10 Thread yves caniou
Package: gnome-panel-data
Version: 2.14.2-2
Severity: grave
Justification: renders package unusable

Example of error of parsing:

/tmp/gconf-8keoq3/temp.entries:4: parser error : error parsing attribute
name
keylist/key
  ^
/tmp/gconf-8keoq3/temp.entries:4: parser error : attributes construct error
keylist/key
  ^
and etc.

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

Versions of packages gnome-panel-data depends on:
ii  gconf22.14.0-2   GNOME configuration database syste
ii  scrollkeeper  0.3.14-10  A free electronic cataloging syste

Versions of packages gnome-panel-data recommends:
pn  gnome-panel   none (no description available)

-- no debconf information


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



Bug#382311: grepping of ntp.conf gets refclocks, misses peers

2006-08-10 Thread sacrificial-spam-address
Package: ntpdate
Version: 4.2.2+dfsg-2.1

The relevant lines from my ntp.conf file:
peer 192.35.100.1 key 101 minpoll 4 iburst
server 127.127.29.0 minpoll 1 maxpoll 4 iburst

Result in ntpdate trying uselessly to sync up to 127.127.29.0
while failing to query the perfectly good server at 192.35.100.1.

It's not causing me any problems, but perhaps the script could
be made fractionally smarter.

Something like

sed -rne 's/^(server|peer) ([-_.[:alnum:]]+).*$/\2/p' /etc/ntp.conf | grep -v 
'^127\.127\.'

or even (allowing alternate whitespace and making the server name regexp
a bit stricter)

sed -rne 's/^(server|peer)[ \t]+([_[:alnum]][-_.[:alnum:]]*)[ \t].*$/\2/p' 
/etc/ntp.conf | grep -v '^127\.127\.'

Alternatively, perhaps if there are both peer and server lines,
peers should be given absolute precedence...

# Servers to check (Separate multiple servers with spaces.)
# This code will take the server list from /etc/ntp.conf, if that exists,
# so you only have to keep it in one place.

# Peers (if any) are most trusted, and preferred.
NTPSERVERS=$(sed -rne 's/^peer[ \t]([-_.[:alnum:]]+)[ \t].*$/\1/p' 
/etc/ntp.conf 2/dev/null)
# Then any configured servers
if [ -z $NTPSERVERS ]; then
NTPSERVERS=$(sed -rne 's/^server[ \t]([-_.[:alnum:]]+)[ \t].*$/\1/p' 
/etc/ntp.conf 2/dev/null)
fi
# A good fallback list if /etc/ntp.conf is missing or unhelpful
if [ -z $NTPSERVERS ]; then
NTPSERVERS=0.debian.pool.ntp.org 1.debian.pool.ntp.org 
2.debian.pool.ntp.org 3.debian.pool.ntp.org
fi


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



Bug#382309: Postfix-pgsql latin2 problem

2006-08-10 Thread PChot
Package: postfix-pgsql Version: 2.3.2-1Pgsql database is in LATIN2 encoding. Postfix version is 2.3.2-1. There is a problem recieving email. Here is some log example:Aug 3 22:37:45 panda postfix/trivial-rewrite[2378]: warning: dict_pgsql: cannot set the encoding to LATIN1, skipping panda
Aug 3 22:37:45 panda postfix/trivial-rewrite[2378]: fatal: pgsql:/etc/postfix/psql/virtual_alias_maps.cf(0,lock|fold_fix): table lookup problemAug 3 22:37:46 panda postfix/smtpd[2352]: warning: premature end-of-input on private/rewrite socket while reading input attribute name
Aug 3 22:37:46 panda postfix/smtpd[2352]: warning: problem talking to service rewrite: SuccessAug 3 22:37:46 panda postfix/master[32318]: warning: process /usr/lib/postfix/trivial-rewrite pid 2378 exit status 1
Aug 3 22:37:46 panda postfix/master[32318]: warning: /usr/lib/postfix/trivial-rewrite: bad command startup -- throttling 


Bug#382240: ksh: FTBFS: bashisms ?

2006-08-10 Thread Oliver Kiddle
--- Julien Danjou [EMAIL PROTECTED] wrote:

 ksh fails to build, however I guess this is caused by /bin/sh linked
 to /bin/dash.
 
 If you really need bash and don't use only POSIX compliant syntax,
 please call /bin/bash instead of sh.

Actually, more likely this is dash failing to be POSIX compliant.

dash is pdksh based right? Those ksh build scripts are fairly
complicated and they work with ksh88/ksh93/bash/zsh(with sh emulation)
and the /bin/sh on various Unix systems but not with pdksh. I even had
to apply a fix for it to work with bash 3.1.

It would be useful if you could attempt to track down which part of the
build script is not running correctly under dash. The alternative might
be detecting /bin/sh being dash and trying zsh/bash whatever instead.

Oliver





___ 
All new Yahoo! Mail The new Interface is stunning in its simplicity and ease 
of use. - PC Magazine 
http://uk.docs.yahoo.com/nowyoucan.html


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



Bug#379796: dbconfig-common: Please support sqlite as a database type

2006-08-10 Thread Thijs Kinkhorst
Hello Matt,

 Both errors were caused by a simple typo in the function that checked
 whether a database existed. I've also made a few other tidy ups and
 merged in the changes from trunk.
 
 I've built new packages (1.8.19~sqlite0) and put them at:
 http://www.mattb.net.nz/debian/dists/sid/main/source/admin/
 
 Would you have time to test them out with your package again? It would
 be much appreciated.

Sure, thanks for the quick response. I've checked it out and it works
good, except for the fact that the database is owned by root:root and
filemode 0640. That makes it unreadable for my webapp. Would there be a
way to specify the file owner to be www-data, or would I have to code
that into the package scripts?

One more tweak, you didn't add lintian overrides for the newly added
example packages; it should be easy to add that to the existing
debian/lintian file following the lines already there.


Thanks for your work! I hope it can be incorporated soon.


Thijs


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


Bug#348480: (no subject)

2006-08-10 Thread Thomas Weber
package octave2.1
forwarded 348480 
http://www.cae.wisc.edu/pipermail/octave-maintainers/2006-August/000457.html
thanks

I've sent a patch for polyfit upstream, based on your
suggestions. I'll wait a few days for upstream's comments before
including it in the package.

Thanks
Thomas


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



Bug#382310: jabref: new upstream release available

2006-08-10 Thread Lucas Nussbaum
Package: jabref
Version: 2.0.1+2.1b2-6
Severity: wishlist

Hi,

Jabref 2.1 was released on Aug 9th. It fixes a least one bug that has
annoyed me for a long time: SF bug 1516199
(https://sourceforge.net/tracker/?func=detailatid=600306aid=1516199group_id=92314).
 It would really be great if you could package it.

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


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



Bug#378346: gnucash on alpha

2006-08-10 Thread Thomas Bushnell BSG
Jim Woodruff [EMAIL PROTECTED] writes:

 To make sure, I restarted gnucash, ran the check  repair all utility,
 and resaved
 my account file. bug #378346 is still there.

Thanks for checking; this is what I suspected would be the case.

Thomas


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



Bug#382264: vncserver doesn't allow specification of -dpi option

2006-08-10 Thread Chris Moore
On Thu, 2006-08-10 at 07:03 +0200, Ola Lundqvist wrote: 
 Thanks a lot for the fix.

I just noticed - any arguments which realvncserver doesn't recognise are
passed on to Xnvc, so using vncserver -dpi 100 would have worked
before my fix.

It wouldn't have been possible to put the value in ~/.vncrc and have it
recognised, so it's probably still worth applying the patch.  I've
attached a patch for vnc.conf and the vnc.conf man page, documenting
this dpi setting, and fixing a few little problems with the formatting
of the man page.

Looking at the package source, there are a couple of man pages in the
vnc_3.3.7-12.diff file which aren't used, since the debian/rules file
has their install commands commented out:

# install -o root -g root -m 644 debian/Xvnc.1x \
# $(CURDIR)/debian/vncserver/usr/share/man/man1/Xvnc.1x

and

# install -o root -g root -m 644 debian/xvncviewer.1x \
# $(CURDIR)/debian/xvncviewer/usr/share/man/man1/xrealvncviewer.1x

The upstream man pages are used in place of them, so are they needed in
the patch?

Also, the word plattforms appears 3 times in the diff, and should only
have 1 t.  Also, dsigned should be designed (twice) and in tha
man should be in the man (once).
--- Backup/vnc.conf.~1~ 2006-08-10 09:14:40.0 +0200
+++ vnc.conf2006-08-10 09:49:45.0 +0200
@@ -97,7 +97,10 @@
 # of xdpyinfo.
 # It is useful to get the default from the X server you will
 # run xvncviewer in.
-# Example:  $getDefaultFrom = -display localhost:0
+# Example:  $getDefaultFrom = -display localhost:0;
+
+# $dpi sets the resolution for all screens, in  dots per inch.
+# Example:  $dpi = 96;
 
 # $rfbwait sets the maximum time in msec to wait for vnc client viewer.
 # $rfbwait = 12;
--- Backup/vnc.conf.5x.~1~  2006-08-10 09:14:40.0 +0200
+++ vnc.conf.5x 2006-08-10 10:13:51.0 +0200
@@ -37,7 +37,8 @@
 
 .SH EXAMPLES
 A sample examplae file should come with the Debian package, under
-.IR /usr/share/doc/vncserver/examples/vnc.conf.gz. It is pretty 
self-descriptive, and this
+.IR /usr/share/doc/vncserver/examples/vnc.conf.gz .
+It is pretty self-descriptive, and this
 document will mainly repeat the information that already can be found there.
 
 .SH OVERVIEW
@@ -66,7 +67,7 @@
 .IR $vncClasses\ \| =\  /usr/X11R6/lib/vncserver ;
 Should be the path to the java classes of the server.
 .TP
-.IR $XFConfigPath\ \| =\ /etc/X11/XF86Config ; 
+.IR $XFConfigPath\ \| =\  /etc/X11/XF86Config ; 
 
 Can be set to the global
 .I XF86Config
@@ -113,7 +114,7 @@
 This can be changed at the command line with
 .IR -name .
 .TP
-.I $geometry\ \| =\  640x400 ;
+.IR $geometry\ \| =\  640x400 ;
 This sets framebuffer width  height. Default will be calculated if
 server is started from within a running X servers. Can be changed at
 the commandline (
@@ -141,11 +142,17 @@
 the above three options, if you don't want to start vncserver
 from within a running X server. It will be added to the call of xdpyinfo.
 It is useful to get the default from the X server you will run xvncviewer
-in, because the data has not to be recalculated then.
+in, because then the data doesn't need to be recalculated.
 
-.I $getDefaultFrom\ \| =\  \-display\ localhost:0 ;
+.IR $getDefaultFrom\ \| =\  \-display\ localhost:0 ;
 is an example how to do this.
 .TP
+.IR $dpi
+Sets the resolution for all screens, in  dots per inch.
+
+For example:
+.IR $dpi\ \| =\  96 ;
+.TP
 .IR $rfbwait\ \| =\  12 ;
 Sets the maximum time in msec to wait for vnc client viewer.
 


Bug#382312: apt-file -F list does not list all files

2006-08-10 Thread Benjamin Mesing
Package: apt-file
Version: 2.0.8
Severity: important


Hello,

apt-file -F list produces not the correct lists of files:

 apt-file -F list cyrus-clients-2.2
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/README.Debian
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/changelog.Debian.gz
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/changelog.gz
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/changelog.html.gz
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/copyright

while apt-file list gives a more complete list (it also lists the files
for other packages which is #358821):

 apt-file list cyrus-clients-2.2
cyrus-clients-2.2: usr/bin/imtest
cyrus-clients-2.2: usr/bin/lmtptest
cyrus-clients-2.2: usr/bin/mupdatetest
cyrus-clients-2.2: usr/bin/nntptest
cyrus-clients-2.2: usr/bin/pop3test
cyrus-clients-2.2: usr/bin/sivtest
cyrus-clients-2.2: usr/bin/smtptest
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/README.Debian
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/changelog.Debian.gz
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/changelog.gz
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/changelog.html.gz
cyrus-clients-2.2: usr/share/doc/cyrus-clients-2.2/copyright
cyrus-clients-2.2: usr/share/man/man1/imtest.1.gz
cyrus-clients-2.2: usr/share/man/man1/lmtptest.1.gz
cyrus-clients-2.2: usr/share/man/man1/mupdatetest.1.gz
cyrus-clients-2.2: usr/share/man/man1/nntptest.1.gz
cyrus-clients-2.2: usr/share/man/man1/pop3test.1.gz
cyrus-clients-2.2: usr/share/man/man1/sivtest.1.gz
cyrus-clients-2.2: usr/share/man/man1/smtptest.1.gz
cyrus21-clients: usr/bin/imtest
[...]
kolab-cyrus-clients: usr/share/man/man1/smtptest.1.gz
[...]

This bug and #358821 occur due to bad handling of files which can be found
in multiple packages.
I would appreciate a timely fix (before etch freeze), since this results 
in my application producing wrong results (since it relies on packagesearch)

The problem was mentioned in #259416 before.

Best regards

Ben


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



Bug#380977: Please, verify the package

2006-08-10 Thread Pierre HABOUZIT
tag 380977 - help
thanks

On Tue, Aug 08, 2006 at 04:44:20PM +0200, Jesus Climent wrote:
 tag 380977 + help
 thanks
 
 The package can be found from https://debian.pumuki.org/trac/trac_0.9.6-2.dsc

  I'd say it look good, though, trac is not supposed to work for python
 2.3, so maybe you should add a debian/pyversions with `2.3-` in it
(without the `) for the sake of it.


-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature


Bug#382240: ksh: FTBFS: bashisms ?

2006-08-10 Thread Julien Danjou
On Thu, Aug 10, 2006 at 08:45:02AM +0100, Oliver Kiddle wrote:
 Actually, more likely this is dash failing to be POSIX compliant.

You're probably better than me on the subject ;)

 dash is pdksh based right? Those ksh build scripts are fairly
 complicated and they work with ksh88/ksh93/bash/zsh(with sh emulation)
 and the /bin/sh on various Unix systems but not with pdksh. I even had
 to apply a fix for it to work with bash 3.1.
 
 It would be useful if you could attempt to track down which part of the
 build script is not running correctly under dash. The alternative might
 be detecting /bin/sh being dash and trying zsh/bash whatever instead.

Since bash is essential and is installed you could simply use it
explicitely (SHELL=/bin/bash), no?.

I'll try to take a look on what fails. I can send you the full buildd
log if it helps.

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


signature.asc
Description: Digital signature


Bug#382186: [Debconf-devel] Bug#382186: Proposed changes to the debconf templates

2006-08-10 Thread Colin Watson
On Wed, Aug 09, 2006 at 08:49:08AM -0500, Christian Perrier wrote:
 Indeed, these ones should not be translatable *at all*.
 
 Joey, what about using the po-debconf new features that allow marking
 some choices as non translatable. From the 6 choices we have those 2
 are obviously non translatable stuff. The other could be translated
 (indeed, in French, we translate themwhile we don't translate the
 other 2and if the French do not translate something, this is
 definitely untranslatable, isn't it?).

Are GNOME and KDE not transliterated in some languages? After all,
Debian gets transliterated sometimes ...

-- 
Colin Watson   [EMAIL PROTECTED]


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



Bug#382313: siege: segfaults on --hlep

2006-08-10 Thread Nigel McNie
Package: siege
Severity: normal

When I run:

siege --hlep

I get:

Segmentation fault.

Yes, that was a typo, but I'm guessing a segfault isn't the best way to
report that :)

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


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



Bug#382314: Need to scramble wpa-psk? Apparently yes, but not obvious

2006-08-10 Thread Eduard Bloch
Package: wpasupplicant
Version: 0.5.4-5
Severity: normal

Hello,

I was using previous versions of wpasupplicant (before ifupdown
integration) with a self-made conf file containing a preshared key.
Relevant contents:

eapol_version=1
ap_scan=1
fast_reauth=1
network={
ssid=secret
psk=longsecret
# long ascii psk copied from the windows client
priority=5
}

That worked fine, wpa_supplicant was started manually and I had no
complaints. But then came the ifupdownisation, I tried to follow
README.Debian.gz and README.modes.gz and it still did not work. There
was no usefull debug information in the logs either (as usual, sorry :-( ).
Just the usual game link, few lost pakets, link lost, multiple times.

It was not obvious to me what was wrong. I integrated the values from
the mentioned config file with wpa- prefixes in the interfaces file.

Then I decided to play with the tools mentioned in README.modes.gz, I
used wpa_passphrase, passed my essid and the old psk to it and it threw
me some new key inside of a config section. When I added this new key
as wpa-psk in the interfaces file, it worked.

Honestly, WTF? What is the difference? Manpage of wpa_passphrase does
not explain ANYTHING (like where and why I need to generate this key).
It displays a config section which differs from my old one... why? The
old one works when the config is supplied with -c configfile, why does
the same passphrase not work as wpa-psk variable?

I can only ASSUME that the programers decided to switch from a plaintext
pass phrase to a scrambled form. But in this case, DOCUMENT THE CHANGE
ON VISIBLE PLACES. Sorry, that's the minimum requirement for
user-friendlines.

And if I am wrong with this assumption then there is a bug,
wpa_supplicant does not buy the same psk as in the config file specified
with -c.

Eduard.


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

Versions of packages wpasupplicant depends on:
ii  libc6 2.3.6-18   GNU C Library: Shared libraries
ii  libncurses5   5.5-2  Shared libraries for terminal hand
ii  libreadline5  5.1-7  GNU readline and history libraries
ii  libssl0.9.8   0.9.8b-2   SSL shared libraries

Versions of packages wpasupplicant recommends:
pn  dhcp3-client  none (no description available)

-- no debconf information


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



Bug#382186: [Debconf-devel] Bug#382186: Proposed changes to the debconf templates

2006-08-10 Thread Colin Watson
On Wed, Aug 09, 2006 at 03:08:17PM +0200, Emanuele Aina wrote:
 Here are the suggestion:
 
  #. Type: select
  #. Choices
  #: ../templates:1001
  msgid Gnome
  msgstr 
 
 
  #. Type: select
  #. Choices
  #: ../templates:1001
  msgid Kde
  msgstr 
 
 
 Those should be written even in English as KDE and GNOME, according to
 their guidelines.

I think at the moment they're presented that way because under the hood
the frontends are case-sensitively called Gnome and Kde. You'd need
to check whether setting debconf/frontend to GNOME or KDE will do the
right thing at the moment.

  #. Type: select
  #. Description
  #: ../templates:1002
  msgid 
  The dialog frontend is a full-screen, character based interface,
  while the 
  readline frontend uses a more traditional plain text interface, and
  both the 
  gnome and kde frontends are modern X interfaces, fitting the
  respective 
  desktops (but may be used in any X environment). The editor frontend
  lets 
  you configure things using your favorite text editor. The
  noninteractive 
  frontend never asks you any questions.
 
 
 What about a little modification:
 
 The dialog frontend is a full-screen, character based interface, while

(This should be either full-screen, character-based or full screen,
character based - I prefer the former, but then British English is a
little biased towards hyphens.)

 the readline frontend uses a more traditional plain text interface, and
 both the GNOME and KDE frontends are modern graphical interfaces,
 fitting the respective desktops environment (but may be used in any X

desktop environments

 The GNOME and KDE frontends are modern graphical interfaces,
 fitting the respective desktops environment (but may be used in any

desktop environments

-- 
Colin Watson   [EMAIL PROTECTED]


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



Bug#382316: libfuse-dev: Examples don't build out-of-the-box

2006-08-10 Thread Lars Skovlund
Package: libfuse-dev
Version: 2.5.3-2.1
Severity: normal


The documentation says to include a #define that indicates the APi
version you're using. This is not done in the example programs;

#define FUSE_USE_VERSION 25

works. The FUSE framework also wants another define (the absence of
which results in an explicit error message);

#define _FILE_OFFSET_BITS 64

works for me, but this definitely looks arch specific, so I'm not sure
whether this should go in a patch. Therefore, no patch attached.

BTW, the How To Use section in the README glosses over this with the
simple sentence 'Build the fusexmp program'. If only it was that easy
:)

Lars

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

Versions of packages libfuse-dev depends on:
ii  libfuse2  2.5.3-2.1  Filesystem in USErspace library

libfuse-dev recommends no packages.

-- no debconf information


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



Bug#382317: kile: crash when change the icon of the toolbar button

2006-08-10 Thread wuhongming
Package: kile
Version: 1:1.9.1-2
Severity: important

crash when change the toolbar buttons

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

Versions of packages kile depends on:
ii  kdelibs4c2a   4:3.5.4-3  core libraries and binaries for al
ii  konsole   4:3.5.4-2  X terminal emulator for KDE
ii  libc6 2.3.6-18   GNU C Library: Shared libraries
ii  libgcc1   1:4.1.1-10 GCC support library
ii  libqt3-mt 3:3.3.6-3  Qt GUI Library (Threaded runtime v
ii  libstdc++64.1.1-10   The GNU Standard C++ Library v3
ii  tetex-bin 3.0-18 The teTeX binary files

Versions of packages kile recommends:
ii  kdvi  4:3.5.4-2  dvi viewer for KDE
ii  kghostview4:3.5.4-2  PostScript viewer for KDE
pn  tetex-doc none (no description available)
ii  tetex-extra   3.0-20 Additional library files of teTeX

-- no debconf information


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



Bug#382315: partman-auto-lvm wont overwrite a lvm volume group on disk. breaking preseeded installations

2006-08-10 Thread Ronny Aasen
Package: partman-auto-lvm
Version: 13


automatically_partition/some_device_lvm/do_option checks for a pre
existing VG/PV on the disks to partition. the reason for this check is
described here http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=347479 

this means that a reinstall on a disk using lvm is not possible. 
one must remove the lvm partitions, or the VG before partitioning. 
something that is doable, but anoying, when installing manualy.
But this check breaks CCD distributions, and installations that use
preseeding.

the installer should have a preseedable option to 
erase VG's on discs before attempting automatic partitioning
or simply erase partition table before trying automatic partitioning

one could also argue that setting the preseedable option
partman-auto-lvm/disk  /dev/discs/disc0/disc
already implies erasing the whole disk and just do so without further
ado, and no need for additional preseed options.


-- 
mvh
Ronny Aasen -- 41616155 -- [EMAIL PROTECTED] --
Datapart AS -- 57682100 --  www.datapart-as.no  --



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


Bug#382181: nmap is a clairvoyant

2006-08-10 Thread Dr. Markus Waldeck
Please change submitter addresse from [EMAIL PROTECTED] to [EMAIL PROTECTED]
-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#380951: diff for 0.6.17-5.1 pseudo-NMU

2006-08-10 Thread Pierre HABOUZIT
tag 380951 - help
thanks

  Hi,

  Attached is the diff to migrate skencil to the new python policy.

  lintian shouts about missing python depends, but this is by design
because it now depends upon python-support that by itself will *allways*
depend upon python. so don't mind the error, lintian has to be fixed.

  Cheers,
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org
diff -u skencil-0.6.17/debian/changelog skencil-0.6.17/debian/changelog
--- skencil-0.6.17/debian/changelog
+++ skencil-0.6.17/debian/changelog
@@ -1,3 +1,11 @@
+skencil (0.6.17-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Migrate package to the new python policy (Closes: #380951):
++ use dh_pysupport new generation (instead of dh_python).
+
+ -- Pierre Habouzit [EMAIL PROTECTED]  Thu, 10 Aug 2006 11:00:21 +0200
+
 skencil (0.6.17-5) unstable; urgency=low
 
   * Added 07-text-patch from Fabien Ninoles [EMAIL PROTECTED] to fix the text
diff -u skencil-0.6.17/debian/control skencil-0.6.17/debian/control
--- skencil-0.6.17/debian/control
+++ skencil-0.6.17/debian/control
@@ -2,7 +2,7 @@
 Section: graphics
 Priority: optional
 Maintainer: Daniel Baumann [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4), dpatch, python-dev, python-imaging-tk, 
sharutils, tcl8.4-dev, tk8.4-dev
+Build-Depends: debhelper (= 5), dpatch, python-support (= 0.4), python-dev, 
python-imaging-tk, sharutils, tcl8.4-dev, tk8.4-dev
 Standards-Version: 3.7.2
 
 Package: skencil
diff -u skencil-0.6.17/debian/rules skencil-0.6.17/debian/rules
--- skencil-0.6.17/debian/rules
+++ skencil-0.6.17/debian/rules
@@ -88,7 +88,7 @@
dh_strip
dh_compress -Xexamples -Xtools
dh_fixperms
-   dh_python
+   dh_pysupport -v
dh_installdeb
dh_shlibdeps
dh_gencontrol


signature.asc
Description: Digital signature


Bug#380733: scanssh 2.1 is available since 2005-03-05

2006-08-10 Thread Dr. Markus Waldeck
Please change submitter addresse from [EMAIL PROTECTED] to [EMAIL PROTECTED]
-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#379259: freebsd-buildutils: freebsd-mtree does not work correctly

2006-08-10 Thread Dr. Markus Waldeck
Please change submitter addresse from [EMAIL PROTECTED] to [EMAIL PROTECTED]
-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#379463: perl-base: setlocale() does not work as documented

2006-08-10 Thread Brendan O'Dea
On Sun, Jul 23, 2006 at 09:05:43PM +0200, Helge Kreutzmann wrote:
I am trying to write a locale aware program. As I understand the
perl documentation (mainly the man page perllocale) perl is currently
dealing only with output (I will discuss this man page in a different
wishlist bug later). So I attempt to construct an input routine.

I'm not sure if this is a documentation bug or an implementation one.

The perllocale(1) manual page states that:

  In the scope of use locale, Perl obeys the LC_NUMERIC locale
  information [...]

although the locale(3) man page mentions only LC_CTYPE and LC_COLLATE.

It appears that the latter is correct:

  $ LANG=de_DE perl -Mlocale -le 'print 2/5'
  0.4
  $ LANG=de_DE perl -MPOSIX=setlocale,LC_ALL -le 'setlocale LC_ALL, ; print 
2/5'
  0,4
  $ LANG=de_DE perl -MPOSIX=setlocale,LC_NUMERIC -le 'setlocale LC_NUMERIC, ; 
print 2/5'
  0,4

an explicit setlocale is required to change the behaviour of gcvt .

--bod


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



Bug#380744: /ect/init.d/acct does not create /var/log/account if it is missing

2006-08-10 Thread Dr. Markus Waldeck
Please change submitter addresse from [EMAIL PROTECTED] to [EMAIL PROTECTED]
-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#381990: man sysv-rc-conf mentions chkconfig man page

2006-08-10 Thread Dr. Markus Waldeck
Please change submitter addresse from [EMAIL PROTECTED] to [EMAIL PROTECTED]
-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#377136: sudo: visudo editor

2006-08-10 Thread Matt Taggart

Bdale Garbee writes...

 I worry that it's worked this way for so long that a change like this
 would be perceived as purely disruptive.

There was a cage with several apes in it. In the cage there was a banana hung 
on a string, and stairs under it. Before long an ape went to the stairs to get 
the banana, but as soon as it even touched the stairs, all apes were sprayed 
with water. After a while the same ape or another one made another attempt, 
with the same result: all apes are sprayed. If later another ape tries to 
climb the stairs, the others will try to prevent it.
Now they took one ape from the cage and put in a new one. The new ape saw the 
banana, and wanted to climb the stairs. To his horror all other apes attacked 
him. After another attempt he knew: if he wanted to climb the stairs, he would 
be beaten up. Then they removed a second ape and replaced it by another new 
one. The newcomer went to the stairs and got beaten up. The previous new ape 
took part in the punishment with enthusiasm.
A third old ape was replaced by a third new one. The new one made it to the 
stairs and got beaten up as well. Two of the apes who beat him have no idea 
why they may not climb the stairs. They replace the fourth old ape, and the 
fifth, etc. until all apes which have been sprayed with water have been 
replaced. Nevertheless, no ape ever tries to climb the stairs.
One day a new, young ape asks, But Sir, why not?
Because that's the way we do things around here, my boy.

:)




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



Bug#370171: fixed in exscalibar 1.0.4-6

2006-08-10 Thread Martin Michlmayr
reopen 370171
found 370171 1.0.4-6
thanks

* Bas Zoetekouw [EMAIL PROTECTED] [2006-07-12 07:47]:
* Fix FTBFS with gcc-4.2 (thanks to tbm for the patch) [06_gcc42.dpatch]
  (closes: #370171)

You forgot to add the pach to 00list.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#339009: ITA: Lua50

2006-08-10 Thread Enrico Tassi
I've imported the package in the pkg-lua svn repo:

 http://svn.debian.org/wsvn/pkg-lua/

so that me and Zak B. Elep [EMAIL PROTECTED] can cooperate.

ciao
-- 
Enrico Tassi


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



Bug#382242: couldn't check access. No groups file? problem

2006-08-10 Thread Martin Sebald
Hello Matthew!

 I'm experiencing strange problems with libapache2-mod-auth-mysql. I
 personally experienced it only on one virtual host with Typo3 installed.
 But this may has nothing to say, maybe my customers did not complain
 yet. Here's what I get from the Apache2 error.log: 
 [Wed Aug 09 19:16:47 2006] [crit] [client x.x.x.x] configuration error:
 couldn't check access.  No groups file?:
 /typo3/ext/phpmyadmin/modsub/thirdparty_db.gif, referer:
 http://www.domain.tld/typo3/alt_menu.php
 This isn't a message from m-a-mysql.  From recollection, it comes from the
 standard auth module.

Well but it has something to do with m-a-mysql?!? At least I'm using online
m-a-mysql for securing directories.

 I don't get it every time I work in the backend of Typo3, just from time
 to time. Then I have to reload Apache2 and everything's fine again. Than
 it happens again, maybe one minute or even days later. 
 This is the weird bit.  Perhaps m-a-mysql is failing to process for some
 reason (MySQL server acting weird?) and declining, so it's falling back
 to the standard auth module.

Everything is ok with the MySQL server. Or let's say it this way: The MySQL
server is mission critical because everything depends on it, e.g. Apache2,
Postfix, SpamAssassin, AMaViS, Courier, etc. So I think I should see
problems everywhere all the time. Forums like phpBB or Postfix produce many
queries every second on the MySQL server, m-a-mysql only several queries
per hour.

 Very strange, though.  If you turn the log level in Apache down to debug,
 you should get a pretty comprehensive trace of what's being done; that
 info might help pinpoint the cause of the trouble.

I'll do that and click through the Typo3 backend and hope that the error
accurs soon. As this is a live server with many paying customers on it I
cannot do this very long. ;-) I'll be back with the result soon.

 I found a similar bug from 2004 on Google, bug # 287160, there the
 problem was with version 4.3.9-1, but I cannot see any clue.
 That was originally, but the problem still exists in 4.3.9-2.  I've got
 to get around to fixing that, and I'd imagine that it'll solve the
 problem for you too, actually.  Can you try the fix described in 
 http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=287160;msg=135 and see
 if it does the job for you, too?

Ah thank you for the link. But as written above: This is a live server and
as our own policy we do not compile any packages. We only use final
packages. Well, not the best idea to use a hybrid system with stable and
unstable packages, but stable is sometimes really unusable for us.

Regards,
Martin




Bug#381991: /usr/share/doc/sysvconfig contains COPYING.gz (GPL)

2006-08-10 Thread Dr. Markus Waldeck
1.  Note that it says should, not must.

   Okay!

2. Please change submitter addresse from [EMAIL PROTECTED] to [EMAIL PROTECTED]


Thanks!

Dr. Markus Waldeck
-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#381622: [Pkg-lyx-devel] Re: [PATCH] bug 2741: configure.py is not run when using batch mode

2006-08-10 Thread Per Olofsson
Jean-Marc Lasgouttes:
 What about that:
 mkdir /tmp/tempuserdir
 lyx -userdir /tmp/tempuserdir -e latex foo.lyx
 rm -rf /tmp/tempuserdir

Yes, I think that's an acceptable workaround.

 Per The best would be if configure.py was removed completely and
 Per everything was detected at runtime (or defaults used, or
 Per whatever).
 
 Yes, this is something I would like to see for at least some of the
 stuff. It is not clear however what the runtime penalty would be.

Much stuff in configure.py only have one alternative, so LyX can
simply check if the program is available. When it comes to viewers, it
could use xdg-open from portland.freedesktop.org which uses the user's
preferred viewer (that's what we do in the Debian package).

I guess the problem is the LaTeX checking stuff. I don't know what to
do about that.

-- 
Pelle


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



Bug#382243: Segmentation faults

2006-08-10 Thread Martin Sebald
Hello Matthew!

 Check (using ldd or apt-cache show) that anything that might link against
 both Apache and MySQL (directly *or* indirectly) is using the same
 libmysqlclient version.  Fixing it is extra special, but in this case I'd
 suggest just going back to 4.3.9-2.  -2.1 was a transition upload, and it
 looks like it's been rebuilt since (the +b1), but none of that should
 have any effect on you if you were running 4.3.9-2 properly. 

I looked up the packages that are MySQL-related and might have something to
do with Apache2. I also use MySQL with Postfix and Courier. Could this also
have an effect?

Here's the package list:

 apache2 2.0.55-4.1
 apache2-common 2.0.55-4.1
 apache2-mpm-worker 2.0.55-4.1
 apache2-threaded-dev 2.0.55-4.1
 apache2-utils 2.0.55-4.1
 libapache2-mod-auth-mysql 4.3.9-2
 libapache2-mod-auth-plain 2.0.48-4-2.1
 libapache2-mod-fastcgi 2.4.2-6
 libapache2-mod-perl2 2.0.2-2
 libapache2-mod-security 1.8.7-1
 libapache2-mod-suphp 0.6.1-1
 php5-mysql 5.1.4-0.1
 libmysqlclient10 3.23.56-3
 libmysqlclient12 4.0.24-10sarge2
 libmysqlclient14 4.1.15-3
 libmysqlclient15off 5.0.22-4
 mysql-client 5.0.22-4
 mysql-client-5.0 5.0.22-4
 mysql-common 5.0.22-4
 mysql-server 5.0.22-4
 mysql-server-5.0 5.0.22-4
 libdbd-mysql-perl 3.0004-1
 libpam-mysql 0.6.2-1

And here what apt-cache show told me:

 Package: libapache2-mod-auth-mysql
 Version: 4.3.9-2
 Depends: libc6 (= 2.3.2.ds1-4), libmysqlclient12, apache2-common (= 
 2.0.50-10)

 Package: libapache2-mod-auth-mysql
 Version: 4.3.9-2.1+b1
 Depends: libc6 (= 2.3.5-1), libmysqlclient15off (= 5.0.19-1), 
 apache2-common (= 2.0.50-10)

 Package: php5-mysql
 Version: 5.1.4-0.1
 Depends: libc6 (= 2.3.6-6), libmysqlclient15off (= 5.0.19-1), debconf (= 
 0.5) | debconf-2.0, phpapi-20051025, php5-common (= 5.1.4-0.1)

 Package: libdbd-mysql-perl
 Version: 3.0004-1
 Depends: libc6 (= 2.3.6-6), libmysqlclient15off (= 5.0.19-1), zlib1g (= 
 1:1.2.1), perlapi-5.8.8, perl (= 5.8.8-4), libdbi-perl (= 1.08-1)

 Package: libpam-mysql
 Version: 0.6.2-1
 Depends: libc6 (= 2.3.5-1), libmysqlclient15off (= 5.0.19-1), zlib1g (= 
 1:1.2.1)

Every package depends on libmysqlclient15off exept the old package of
libapache2-mod-auth-mysql. But as I said I'm running this version (4.3.9-2)
because 4.3.9-2.1+b1 is producing segmentation faults.

What else can I get you out of my system?

Regards,
Martin




Bug#382305: clamav-freshclam fails to start

2006-08-10 Thread Stephen Gran
severity 382305 important
merge 382305 382092
thanks

This one time, at band camp, Martin Sebald said:
 Hello,
 
 after upgrading from 0.88.3-1 to 0.88.4-1 I experience the following
 problem when trying to start clamav-freshclam:
 
  /etc/init.d/clamav-freshclam restart
  Starting ClamAV virus database updater: freshclam/sbin/start-stop-daemon: 
  stat /var/run/clamav/freshclam.pid: No such file or directory
   failed!
 
 /var/run/clamav exists and has the appropriate rights. Hm...
 
 If more information is needed I would be happy to provide it.

This has been reported in bug #382092.  Th efull debugging and some
fixes and workarounds are in that bug log.

Thanks for reporting,
-- 
 -
|   ,''`.Stephen Gran |
|  : :' :[EMAIL PROTECTED] |
|  `. `'Debian user, admin, and developer |
|`- http://www.debian.org |
 -


signature.asc
Description: Digital signature


Bug#382319: Samba panic action

2006-08-10 Thread PChot
Package: sambaVersion: 3.0.23b-1Here I attach error mail reportThe Samba 'panic action' script, /usr/share/samba/panic-action,
was called for pid 13867 (/usr/sbin/smbd).

Below is a backtrace for this process generated with gdb, which shows
the state of the program at the time the error occurred. 

If the problem persists, you are encouraged to first install the 
samba-dbg package which contains the debugging symbols for samba 
binaries. Then submit the provided information as a bug report to Debian.
For information about the procedure for submitting bug reports , please see
http://www.debian.org/Bugs/Reportingor the reportbug(1) manpage.

Using host libthread_db library /lib/tls/libthread_db.so.1.
[Thread debugging using libthread_db enabled]
[New Thread -1212918080 (LWP 13867)]
0xb7c527be in waitpid () from /lib/tls/libc.so.6
#0 0xb7c527be in waitpid () from /lib/tls/libc.so.6
#1 0xb7bfa699 in strtold_l () from /lib/tls/libc.so.6
#2 0xb7d8a56d in system () from /lib/tls/libpthread.so.0
#3 0x0822ba7a in smb_panic (
 why=0xbfb455b4 pdb_get_methods_reload: failed to get pdb methods for backend tdbsam guest\n) at lib/util.c:1601
#4 0x081ea8d1 in pdb_get_methods_reload (reload=value optimized out)
 at passdb/pdb_interface.c:218
#5 0x081ea91e in initialize_password_db (reload=0)
 at passdb/pdb_interface.c:1116
#6 0x082c1bf1 in main (argc=-1212177065, argv=0xb7d8dff4) at smbd/server.c:922




Bug#382233: [l10n] Czech translation for bandwidthd

2006-08-10 Thread Andreas Henriksson
On Wed, 2006-08-09 at 18:44 +0200, Martin Šín wrote:
 Package: bandwidthd
 Severity: wishlist
 Tags: l10n, patch
 
 In attachement there is initial Czech translation (cs.po) for
 bandwidthd package, please include it.

I'm preparing the next upload where the template strings has been
rephrased according to lintian suggestions. Could you please have a look
at my work-in-progress package and update the translation accordingly? 

http://fjortis.info/pub/debian/bandwidthd/bandwidthd-workinprogress-20060731/


 
 Regards
 Martin Sin




Bug#382306: gnome-panel-data: Fails to upgrade from 2.14.2-2 to 2.14.3-1_all: several errors of parsing

2006-08-10 Thread Loïc Minier
reassign 382306 gconf2 2.14.0-3
close 382306 2.14.0-4
stop

Hi,

On Thu, Aug 10, 2006, yves caniou wrote:
 /tmp/gconf-8keoq3/temp.entries:4: parser error : error parsing attribute
 name
 keylist/key
   ^
 /tmp/gconf-8keoq3/temp.entries:4: parser error : attributes construct error
 keylist/key
 ^

 This was a bug in gconf2 which is fixed in 2.14.0-4.

   Bye,
-- 
Loïc Minier [EMAIL PROTECTED]



Bug#368591: [Popcon-developers] Bug#368591: [INTL:dz] Dzongkha popularity-contest templates translation

2006-08-10 Thread Mohammed Adnène Trojette
On Thu, Aug 10, 2006, Tenzin Dendup wrote:
 Package: popularity-contest
 Followup-For: Bug #368591

Hi Tenzin!

I've commited the file in popcon's CVS repository. Please file a new
separate bug report for each new update translation. It makes it easier
to maintainers to track in the changelog what was changed in which
upload.

Thanks for your contribution,
-- 
adn
Mohammed Adnène Trojette



Bug#382320: qiv: Zoom should be multiplicative, not additive

2006-08-10 Thread Ladislav Dobias
Package: qiv
Version: 2.0-4.2
Severity: wishlist


Hi,

I want to improve zoom experience. Now is zoom (+) unusable for large
zooms.

Details:

Now qiv is using additive zooming, like:

100, 110, 120, 130, 140, 150,... %

This is not comfortable for larger zooms, because of 2 things:
1) zoom difference is decreasing with increased zoom.

   Example:
   Difference between 240 and 250 % is only 4%
   (240-250/250), and this difference is still decreasing with
   increased zoom factor.

2) each zoom step takes some amount of time, and it is unusable
   and when I want some large zoom.

   Example:
   If I want 800 % zoom, and each zoom step takes 1 second, it would take 
   me over 1 minute ( (800-100)/10=70 s ), because I have to do 60 zoom
   steps. (Moreover with increased zoom factor, the time increases too,
   so the time could be much larger).

Solution:

I propose to use multiplicative zoom. And I even suggest to use some
larger factor of zoom, than 1,1 (10 %).

I maybe suggest factor of 2, so the zooms would be: 

100, 200, 400, 800,... %

Maybe, this factor is to large, so we add zooms in the middle, so
factor can be sqrt(2)=1.414

100, 141.4, 200, 282.8, 400, 565.7, 800,... %

For more precise zooms (but I think that they are not needed in
practice), we can use something like 2^(1/3), or 2^(1/4) etc...

What do you think?

Regards,
Lada Dobias

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

Versions of packages qiv depends on:
ii  gdk-imlib11  1.9.14-30   imaging library for use with gtk
ii  libc62.3.6-18GNU C Library: Shared libraries
ii  libglib1.2   1.2.10-10.1 The GLib library of C routines
ii  libgtk1.21.2.10-18   The GIMP Toolkit set of widgets fo
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxext6 1:1.0.0-4   X11 miscellaneous extension librar
ii  libxi6   1:1.0.0-5   X11 Input extension library
ii  libxinerama1 1:1.0.1-4   X11 Xinerama extension library

qiv recommends no packages.

-- debconf-show failed


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



Bug#382306: gnome-panel-data: Fails to upgrade from 2.14.2-2 to 2.14.3-1_all: several errors of parsing

2006-08-10 Thread Loïc Minier
On Thu, Aug 10, 2006, Yves Caniou wrote:
 Maybe a dependency on gconf2 and its version has to be added to the package?

 No, we don't use Depends to workaround buggy versions, nor
 Build-Depends.

-- 
Loïc Minier [EMAIL PROTECTED]



Bug#382318: updatejail problem

2006-08-10 Thread Mario Manno
Package: jailer 
Version: 0.4-8

I'm using jailer to create a chroot for pdns and pdns-recursor.

'/usr/sbin/updatejail /etc/jailer.conf pdns' gives the following error
message:
jail:  /var/chroot/pdns /var/chroot/pdns-recursor
config:  /etc/jailer.conf

/usr/sbin/updatejail: line 21: test: /var/chroot/pdns: binary operator
expected

After looking into updatejail i would suggest the following patch:

--- /usr/sbin/updatejail2003-10-28 02:09:53.0 +0100
+++ updatejail  2006-08-10 11:30:17.0 +0200
@@ -12,13 +12,13 @@
echo Usage: upratejail config.file jail identifier
 else

-   JAIL=`cat $1 | grep Root: | grep $2 | awk '{print $2}'`
+   JAIL=`cat $1 | grep Root: | grep $2$ | awk '{print $2}'`
echo jail:  $JAIL
echo config:  $1
read


-   if test -d $JAIL
+   if test -d $JAIL
then
cd $JAIL


-- 
Mario Manno [EMAIL PROTECTED]



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



Bug#382306: gnome-panel-data: Fails to upgrade from 2.14.2-2 to 2.14.3-1_all: several errors of parsing

2006-08-10 Thread Yves Caniou
Hi,

Maybe a dependency on gconf2 and its version has to be added to the package?

Best Regards.

.Yves.

Loïc Minier a écrit :
 reassign 382306 gconf2 2.14.0-3
 close 382306 2.14.0-4
 stop
 
 Hi,
 
 On Thu, Aug 10, 2006, yves caniou wrote:
 /tmp/gconf-8keoq3/temp.entries:4: parser error : error parsing attribute
 name
 keylist/key
   ^
 /tmp/gconf-8keoq3/temp.entries:4: parser error : attributes construct error
 keylist/key
^
 
  This was a bug in gconf2 which is fixed in 2.14.0-4.
 
Bye,




Bug#366231: gmime2.1: new upstream version available

2006-08-10 Thread Jose Carlos Garcia Sogo
El sáb, 06-05-2006 a las 15:37 +0200, Guus Sliepen escribió:
 On Sat, May 06, 2006 at 03:14:27PM +0200, Jose Carlos Garcia Sogo wrote:
 
   I'm waiting for the release of 2.2.2, which will clarify the license for
   the documentation.
  
Ok, in the meantime, I am writing you a patch for -cil package, so it
  uses new cli policy. For that I will have to modify how you build you
  package a bit (use dh_install instead of deprecated dh_movefiles) and
  some other minor changes.
  
I will send as soon as I hav it ready.
 
 Ok. Maybe you are interested in co-maintaining gmime? I have no
 knowledge about mono at all...

  Hi,

 I am planning to upload a new package for gmime 2.2.3. It will be
source package gmime2.2 so there is no need for now to remove gmime2.1,
but I can also treat it as a very intrusive NMU and upload it closing
gmime2.1 bugs and asking for its removal.

 I would like to see beagle-evolution working in etch as best as
possible.

 Cheers,

-- 
Jose Carlos Garcia Sogo
   [EMAIL PROTECTED]


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#382321: udev_0.093-1_amd64.deb error

2006-08-10 Thread patco
Package: udevVersion: 0.093-1_amd64this error appear when I try to upgrade udev:/var/cache/apt/archives/udev_0.093-1_amd64.debE: Sub-process /usr/bin/dpkg returned an error code (1)My kernel version:# uname -aLinux Laptix 2.6.14-kanotix64-9 #1 SMP PREEMPT Wed Dec 28 10:20:07 GMT 2005 x86_64 GNU/Linux# ls -l /lib/libc.so.6lrwxrwxrwx 1 root root 13 2006-08-10 04:58 /lib/libc.so.6 - libc-2.3.6.somy chipset is a VIA K8M800RegardsPatco 
		 
Découvrez un nouveau moyen de poser toutes vos questions quelque soit le sujet ! 
Yahoo! Questions/Réponses pour partager vos connaissances, vos opinions et vos expériences. Cliquez ici. 


Bug#251877: Related to many other bugs?

2006-08-10 Thread Jerome Warnier
It seems to me like this bug #251877 is related to many other bugs to
bind9, of which #150165, #152144, #251877, #274910, #322459, #146170 and
#118230.
If not, they should be at least forwarded upstream.

Regards
-- 
Jérôme Warnier
FLOSS Consultant
http://beeznest.net




Bug#320460: Same as #169577 ?

2006-08-10 Thread Jerome Warnier
This is probably a duplicate of #169577.
-- 
Jérôme Warnier
FLOSS Consultant
http://beeznest.net




Bug#379796: dbconfig-common: Please support sqlite as a database type

2006-08-10 Thread Matt Brown
Thijs Kinkhorst wrote:

 Sure, thanks for the quick response. I've checked it out and it works
 good, except for the fact that the database is owned by root:root and
 filemode 0640. That makes it unreadable for my webapp. Would there be a
 way to specify the file owner to be www-data, or would I have to code
 that into the package scripts?

See the following post (2nd point) for background.

http://lists.alioth.debian.org/pipermail/dbconfig-common-devel/2006-June/000545.html

So the answer is code it into your package scripts. I haven't really
tested that we preserve permissions on upgrade, and I have a nasty
feeling that we probably don't... I'll take a look at that.

It would be nice to come up with some examples for how a packager should
set custom permissions from their maintainer scripts.

 One more tweak, you didn't add lintian overrides for the newly added
 example packages; it should be easy to add that to the existing
 debian/lintian file following the lines already there.

Will do.

-- 
Matt Brown
[EMAIL PROTECTED]
Mob +64 21 611 544 www.mattb.net.nz



signature.asc
Description: OpenPGP digital signature


Bug#366231: gmime2.1: new upstream version available

2006-08-10 Thread Guus Sliepen
On Thu, Aug 10, 2006 at 12:06:59PM +0200, Jose Carlos Garcia Sogo wrote:

  Ok. Maybe you are interested in co-maintaining gmime? I have no
  knowledge about mono at all...
 
  I am planning to upload a new package for gmime 2.2.3. It will be
 source package gmime2.2 so there is no need for now to remove gmime2.1,
 but I can also treat it as a very intrusive NMU and upload it closing
 gmime2.1 bugs and asking for its removal.

Maybe that is best. It would Conflict or Replace gmime2.1 anyway,
because both provide libgmime-2.0.so.2.

-- 
Met vriendelijke groet / with kind regards,
  Guus Sliepen [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#381622: [Pkg-lyx-devel] Re: [PATCH] bug 2741: configure.py is not run when using batch mode

2006-08-10 Thread Jean-Marc Lasgouttes
 Per == Per Olofsson [EMAIL PROTECTED] writes:

Per Jean-Marc Lasgouttes:
 What about that: mkdir /tmp/tempuserdir lyx -userdir
 /tmp/tempuserdir -e latex foo.lyx rm -rf /tmp/tempuserdir

Per Yes, I think that's an acceptable workaround.

Could you confirm that the patch I sent fits your needs?

Per The best would be if configure.py was removed completely and
Per everything was detected at runtime (or defaults used, or
Per whatever).
  Yes, this is something I would like to see for at least some of
 the stuff. It is not clear however what the runtime penalty would
 be.

Per When it comes to viewers, it could use xdg-open from
Per portland.freedesktop.org which uses the user's preferred viewer
Per (that's what we do in the Debian package).

How widespread is this code currently? In particular, I am very
interested by the DAPI library. We have os-specific code to use system
viewers on windows and osx, it would be nice to do the same on kde/gnome.

Per I guess the problem is the LaTeX checking stuff. I don't know
Per what to do about that.

We could use kpsewhich online. But it requires some work.

JMarc


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



Bug#382322: zeroc-ice-python: FTBFS: missing .so files

2006-08-10 Thread Julien Danjou
Package: zeroc-ice-python
Version: 3.1.0-1
Severity: serious

Hello,

There was a problem while autobuilding your package:

 Automatic build of zeroc-ice-python_3.1.0-1 on avidan by sbuild/i386 0.49
 Build started at 20060810-1227
 **
...
 make[1]: Leaving directory `/build/buildd/zeroc-ice-python-3.1.0'
 dh_installdirs -ppython-zeroc-ice 
 dh_installdocs -ppython-zeroc-ice ./README  
 dh_installexamples -ppython-zeroc-ice 
 dh_installman -ppython-zeroc-ice  
 dh_installinfo -ppython-zeroc-ice  
 dh_installmenu -ppython-zeroc-ice 
 dh_installcron -ppython-zeroc-ice 
 dh_installinit -ppython-zeroc-ice   
 dh_installdebconf -ppython-zeroc-ice 
 dh_installemacsen -ppython-zeroc-ice   
 dh_installcatalogs -ppython-zeroc-ice 
 dh_installpam -ppython-zeroc-ice 
 dh_installlogrotate -ppython-zeroc-ice 
 dh_installlogcheck -ppython-zeroc-ice 
 dh_installmime -ppython-zeroc-ice 
 dh_installchangelogs -ppython-zeroc-ice  ./CHANGES 
 dh_installudev -ppython-zeroc-ice 
 dh_install -ppython-zeroc-ice --sourcedir=debian/tmp 
 dh_link -ppython-zeroc-ice  
 mkdir -p debian/python-zeroc-ice/usr/lib/python2.3
 mv debian/python-zeroc-ice/usr/python \
   debian/python-zeroc-ice/usr/lib/python2.3/site-packages
 dh_pysupport -ppython-zeroc-ice
 IcePy.so.31: this shared object should not be versioned
 IcePy.so.3.1.0: this shared object should not be versioned
 mv debian/python-zeroc-ice/usr/share/python-support/python-zeroc-ice/*.so.* \
   
 debian/python-zeroc-ice/usr/lib/python-support/python-zeroc-ice/python2.3
 mv: cannot stat 
 `debian/python-zeroc-ice/usr/share/python-support/python-zeroc-ice/*.so.*': 
 No such file or directory
 make: *** [binary-install/python-zeroc-ice] Error 1
 **
 Build finished at 20060810-1229
 FAILED [dpkg-buildpackage died]
 --

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


signature.asc
Description: Digital signature


Bug#374327: Working on this

2006-08-10 Thread P.
Hi.

I've already compiled ssmtp with libgnutls-dev, but I'm still testing
it. I just wanted to let people know I'm working on this issue.




signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#382325: empty package

2006-08-10 Thread Frederic Peters
Package: python-quixote-doc
Version: 2.4-4
Severity: normal

Hello,

I was just looking for the quixote demo to explain something to a friend and
didn't found it; actually python-quixote-doc only has three files:

  /usr/share/doc/python-quixote-doc/copyright
  /usr/share/doc/python-quixote-doc/changelog.gz
  /usr/share/doc/python-quixote-doc/changelog.Debian.gz



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

-- no debconf information


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



Bug#382296: Solution

2006-08-10 Thread Martin Schuster
According to the thread starting at
http://www.mail-archive.com/samba@lists.samba.org/msg76115.html
it helps to change the line
passdb backend = tdbsam guest
to
passdb backend = tdbsam

(at least, it worked for me, had the same problem)

hth, and thanks to Simo Sorce,
-- 
Martin Schuster  [EMAIL PROTECTED]
CenterPoint  http://www.centerpoint.eu.com/


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



Bug#381545: Bug reproducible here

2006-08-10 Thread Joachim Breitner
Hi,

I have the same bug, but only with /usr/X11R6/man/man3. A bit
investigation showed me that I have this snipped in my
~.gnome2/yelp.d/manindex.xml:

dir mtime=1144966185
  name/usr/X11R6/man/man3/name
  pagelibXp.3x.gz/page
  /dir

I don't know though why this entry is there, the man page really is
in /usr/share/man/man3/libXp.3Xp.gz

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



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



Bug#382323: rater3d depends on libgfortran0 which is not installable in sid

2006-08-10 Thread Patrick Winnertz
Package: raster3d
Version: 2.7d-1
Severity: normal

raster3d depends on the nonexistend package libgfortran0. Please
change the dependency to libgfortran1.

I've rebuild it with libfortran1 installed and it works. So a rebuild of
the package should do the job.

Greetings
Patrick

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

Versions of packages raster3d depends on:
ii  gs-esp   8.15.2.dfsg.1-1 The Ghostscript PostScript interpr
ii  imagemagick  7:6.2.4.5.dfsg1-0.9 Image manipulation programs
ii  libc62.3.6-18GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-10  GCC support library
ii  libgfortran1 4.1.1-10Runtime library for GNU Fortran ap
ii  libjpeg626b-13   The Independent JPEG Group's JPEG 
ii  libpng12-0   1.2.8rel-5.2PNG library - runtime
ii  libtiff4 3.8.2-6 Tag Image File Format (TIFF) libra
ii  zlib1g   1:1.2.3-13  compression library - runtime

raster3d recommends no packages.

-- no debconf information


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



Bug#382324: indent: URL in README is broken

2006-08-10 Thread Paul Wise
Package: indent
Version: 2.2.9-7
Severity: minor

The URLs specified in the README as sources of documentation no longer exist:

$ wget http://home.hccnet.nl/d.ingamells/indent.html 
http://myweb.freeserve.com/indent/beautify.html
--18:57:33--  http://home.hccnet.nl/d.ingamells/indent.html
   = `indent.html'
Resolving home.hccnet.nl... 62.251.0.15
Connecting to home.hccnet.nl|62.251.0.15|:80... connected.
HTTP request sent, awaiting response... 404 Not Found
18:57:34 ERROR 404: Not Found.

--18:57:34--  http://myweb.freeserve.com/indent/beautify.html
   = `beautify.html'
Resolving myweb.freeserve.com... failed: Name or service not known.

FINISHED --18:57:34--
Downloaded: 0 bytes in 0 files

Please remove/update them. Be nice to have this and other bugs fixed by etch.

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

Versions of packages indent depends on:
ii  libc6 2.3.6-18   GNU C Library: Shared libraries

-- 
bye,
pabs

http://wiki.debian.org/PaulWise


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


Bug#374327: patch

2006-08-10 Thread P.
This is a simple/obvious port from openssl to gnutls and has not been
completely tested, that's why I think it should go to experimental. The
simple functions of the package work fine with this (this message is
being sent with a patched ssmtp as a proof).

Regards.


Index: debian/control
===
--- debian/control  (revisión: 20)
+++ debian/control  (copia de trabajo)
@@ -3,7 +3,7 @@
 Priority: extra
 Maintainer: Anibal Monsalve Salazar [EMAIL PROTECTED]
 Uploaders: Santiago Ruano Rincón [EMAIL PROTECTED]
-Build-Depends: po-debconf, libssl-dev
+Build-Depends: po-debconf, libgnutls-dev
 Standards-Version: 3.7.2

 Package: ssmtp
Index: debian/changelog
===
--- debian/changelog(revisión: 20)
+++ debian/changelog(copia de trabajo)
@@ -1,6 +1,7 @@
-ssmtp (2.61-8) UNRELEASED; urgency=low
+ssmtp (2.61-8) experimental; urgency=high

-  * NOT RELEASED YET
+  [ Alejandro Rios ]
+  * Initial port from openssl to gnutls (Closes: #374327)

  -- Santiago Ruano Rincón [EMAIL PROTECTED]  Sat, 24 Jun 2006
12:39:51 -0500

Index: ssmtp.c
===
--- ssmtp.c (revisión: 20)
+++ ssmtp.c (copia de trabajo)
@@ -28,11 +28,7 @@
 #include ctype.h
 #include netdb.h
 #ifdef HAVE_SSL
-#include openssl/crypto.h
-#include openssl/x509.h
-#include openssl/pem.h
-#include openssl/ssl.h
-#include openssl/err.h
+#include gnutls/openssl.h
 #endif
 #ifdef MD5AUTH
 #include md5auth/hmac_md5.h







-- 
Alejandro Ríos Peña
 Avatar Ltda.
 Bogotá D.C.
 (+57) 300 390 4764


signature.asc
Description: Esta parte del mensaje está firmada	digitalmente


Bug#381682: ikiwiki orphans plugin

2006-08-10 Thread Christian Aichinger
On Wed, Aug 09, 2006 at 11:30:32PM -0400, Joey Hess wrote:
 The issue with the orphans plugin not taking inlining into account is
 documented in the plugin's page.

Ah sorry, missed that.

 I'm not sure of the value of checking
 for this, at least for blog-type things, since unless you set up archive
 pages, any blog post will eventually fall off the blog and be orphaned,
 even if it wasn't before.

I have an archive page set up, that one's properly linked, it links
to all the blog posts, but the blog posts still show up as orphaned.

 What I do is use something like 
 pages=* and !*/blog to exclude all pages in the blog.

Ah, I'll do that as a workaround, thanks.

 Good point about CSS files, although of course ikiwiki can't even try
 to parse out literal link rel=stylesheet html. But it would be good if
 the orphans plugin was aware of [[meta link=foo.css rel=stylesheet]].

Well, even the default style.css shows up, however I'm not sure if
that's fixable, since it's possible to specify an alternate
templatedir, and thus use other style sheets.

It's the same problem with image files, btw.

Cheers,
Christian Aichinger


signature.asc
Description: Digital signature


Bug#382326: missing /dev/mdX cause assembly to fail *and* to generate missing nodes

2006-08-10 Thread martin f krafft
Package: mdadm
Version: 2.5.3-1~unreleased.3
Severity: normal

Dear Neil,

Here's an issue I've stumbled over today: say /etc/mdadm/mdadm.conf
refers to /dev/md1, but that does not exist during boot and udev
does *not* create it. Now, check this out:

  mdadm:~# rm /dev/md?
  mdadm:~# mdadm -As
  mdadm: No arrays found in config file or automatically
  mdadm:~# ls /dev/md?
  /dev/md1  /dev/md5  /dev/md6
  mdadm:~# mdadm -As
  mdadm: /dev/md5 is already active.
  mdadm: /dev/md1 is already active.
  mdadm: /dev/md6 is already active.

So it seems that mdadm creates the device nodes even though it does
not find any. On second try then, of course, it works.

Strace of first run attached.

I think this appeared with 2.5.3, or else a bug like
http://bugs.debian.org/382263 would not have happened with 2.5.2.
Short rundown: if devices are brought up before mdadm -A is run by
init and udev does not create the /dev nodes, boots will fail to
mount partitions or initialise LVM/crypt.

-- 
martin;  (greetings from the heart of the sun.)
  \ echo mailto: !#^.*|tr * mailto:; [EMAIL PROTECTED]
 
spamtraps: [EMAIL PROTECTED]
 
die menschen drängen sich zum lichte, nicht um besser zu sehen,
 sondern um besser zu glänzen.
 - friedrich nietzsche


mdadm.strace.bz2
Description: Binary data


signature.asc
Description: Digital signature (GPG/PGP)


Bug#365127: #365127

2006-08-10 Thread Peter Weber
hi,

add to your sources.list

# Experimental
deb http://ftp.de.debian.org/debian experimental main contrib non-free
deb-src http://ftp.de.debian.org/debian experimental main contrib non-free

apt-get install xserver-xorg-video-i810/experimental 
xserver-xorg-core/experimental

this will install the version
xserver-xorg-video-i810 1.6.3-1
xserver-xorg-core 1.1.1-1
which work's

-- 


Der GMX SmartSurfer hilft bis zu 70% Ihrer Onlinekosten zu sparen!
Ideal für Modem und ISDN: http://www.gmx.net/de/go/smartsurfer


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



Bug#382327: Please don't consider UNRELEASED an invalid distro

2006-08-10 Thread martin f krafft
Package: lintian
Version: 1.23.22
Severity: wishlist

E: mdadm_2.5.3-1~unreleased.3_i386.changes: bad-distribution-in-changes-file 
UNRELEASED

I think it would be better not to flag this as an error. UNRELEASED
is a commonly used name in changelogs during testing and it's
refused by dak anyhow. If lintian reports an error, it's impossible
to get error-free lintian runs during testing, which may lead
maintainers to ignore lintian altogether (or miss other things in
skim mode).

-- 
Please do not send copies of list mail to me; I read the list!
 
 .''`. martin f. krafft [EMAIL PROTECTED]
: :'  :proud Debian developer and author: http://debiansystem.info
`. `'`
  `-  Debian - when you have better things to do than fixing a system


signature.asc
Description: Digital signature (GPG/PGP)


Bug#382269: Same problem here

2006-08-10 Thread Dionisio Martínez Soler
Followup-For: Bug #382269
Package: bluez-utils
Version: 3.1-3.1

I have exactly the same problem. I see this in /var/log/syslog :

 Aug 10 12:52:57 portatil2 hcid[6332]: pin_code_request
(sba=00:80:5A:40:DA:D9, dba=00:18:A4:17:6D:84)
 Aug 10 12:52:57 portatil2 hcid[6332]: Calling PasskeyAgent.Request:
name=:1.3, path=/org/bluez/passkey_agent_6362
 Aug 10 12:52:57 portatil2 pppd[13064]: Failed to open
/dev/bluetooth/rfcomm/0: Connection refused
 Aug 10 12:52:57 portatil2 pppd[13064]: Exit.

The mobile device I'm trying to connect to do ask for a pin, I enter the
 pin and it tells the pin is incorrect. Nothing else happens in the
computer, and the connection is not established.

Regards,

Dionisio Martínez Soler
dmsoler at mundo-r dot com




-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.12-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)
(ignored: LC_ALL set to [EMAIL PROTECTED])

Versions of packages bluez-utils depends on:
ii  libbluetooth23.1-1   Library to use the BlueZ
Linux Blu
ii  libc62.3.6-16GNU C Library: Shared libraries
ii  libdbus-1-2  0.62-4  simple interprocess
messaging syst
ii  libdbus-glib-1-2 0.62-4  simple interprocess
messaging syst
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libusb-0.1-4 2:0.1.12-2  userspace USB programming
library
ii  lsb-base 3.1-10  Linux Standard Base 3.1
init scrip
ii  makedev  2.3.1-82creates device files in /dev
ii  module-init-tools3.2.2-3 tools for managing Linux
kernel mo
ii  modutils 2.4.27.0-6  Linux module utilities
ii  sysvinit 2.86.ds1-15 System-V-like init utilities
ii  udev 0.070-2 /dev/ management daemon

bluez-utils recommends no packages.

-- no debconf information


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



Bug#381990: man sysv-rc-conf mentions chkconfig man page

2006-08-10 Thread Francesco Pedrini
severity 381990 wishlist
tags 381990 +upstream +wontfix
submitter 381990 [EMAIL PROTECTED]
forwarded 381990 [EMAIL PROTECTED]

Please use the severity level with more clue, this is a wishlist bug.
It will not be fixed because the manpage cames from upstream and is not 
specific for the Debian System.

-- 
:wq


pgpyHmKPCkADK.pgp
Description: PGP signature


Bug#382328: INTL:vi

2006-08-10 Thread Clytie Siddall

Package: debconf_debian
Version:
Severity: minor
Tags: l10n, patch

The Vietnamese translation for the Debian-Installer Level 5 file:  
debconf_debian

debconf_debian_po_vi.po.gz
Description: GNU Zip compressed data



translated and submitted by:

Clytie Siddall (vi-VN, Vietnamese free-software translation team /  
nhóm Việt hóa phần mềm tự do)

Bug#372295: please do *not* just shut down

2006-08-10 Thread Marcus Better
+1 for this bug.

My laptop has the power switch on the side, and I've already twice shut
it down by accident.

IMHO it is very bad usability to do destructive things at the push of
one button. That should be configurable, with a safe default.

(Why does the default install of KDE prompt me when I log out or press
Ctrl-Alt-Del? That's much harder to do by mistake than touching a power
switch.)

Marcus


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



Bug#382319: Samba panic action

2006-08-10 Thread Peter Eisentraut
PChot wrote:
 Using host libthread_db library /lib/tls/libthread_db.so.1.
 [Thread debugging using libthread_db enabled]
 [New Thread -1212918080 (LWP 13867)]
 0xb7c527be in waitpid () from /lib/tls/libc.so.6
 #0  0xb7c527be in waitpid () from /lib/tls/libc.so.6
 #1  0xb7bfa699 in strtold_l () from /lib/tls/libc.so.6
 #2  0xb7d8a56d in system () from /lib/tls/libpthread.so.0
 #3  0x0822ba7a in smb_panic (
 why=0xbfb455b4 pdb_get_methods_reload: failed to get pdb methods
 for backend tdbsam guest\n) at lib/util.c:1601

Please see

https://bugzilla.samba.org/show_bug.cgi?id=4000


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



Bug#309026: produce hang in cron

2006-08-10 Thread Marcus Better
found 309026 2.3.24-2
thanks

Any progress on this one? I also experienced it on an etch system with
slapd 2.3.24-2, libnss-ldap 238-1.2 and cron 3.0pl1-95, all running on
the same host.

User accounts are in LDAP, but not system accounts. I am not using
pam-ldap. I'm not using nscd.

I have now upgraded libnss-ldap to 251-5, as suggested in bug #332761.
Will see if it helps.

Marcus


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



Bug#381106: gpg: Segmentation fault caught ... exiting

2006-08-10 Thread D.A. Beauregard

Package: gnupg
Version: 1.4.5-1
Followup-For: Bug #381106

I get a segfault when I try any one of the following arguments on
the command line (gpg2 also segfaults with these):
-s, --clearsign, -b, -e, -c, -d, --gen-key, --sign-key, 
--lsign-key, --edit-key, --gen-revoke, --card-edit, 
--update-trustdb, --delete-keys


When I try any of the following there is no segfault and gpg does 
what it is meant to:
--list-keys, --list-sigs, --fingerprint, -K, --export, 
--send-keys, --recv-keys, --search-keys, --refresh-keys, --import,

--print-md sha1 test.txt

The following didn't segfault but I didn't test properly:
--delete-secret-keys, --card-status, --change-pin

When I try gdb:
$ gdb gpg
GNU gdb 6.4.90-debian
Copyright (C) 2006 Free Software Foundation, Inc.
GDB is free software, covered by the GNU General Public License, and you are
welcome to change it and/or distribute copies of it under certain conditions.
Type show copying to see the conditions.
There is absolutely no warranty for GDB.  Type show warranty for details.
This GDB was configured as sparc-linux-gnu...(no debugging symbols found)
Using host libthread_db library /lib/libthread_db.so.1.

(gdb) run -e test.txt
Starting program: /usr/bin/gpg -e test.txt
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)

Program received signal SIGSEGV, Segmentation fault.
0xf7dc9574 in memcpy () from /lib/libc.so.6
(gdb) bt full
#0  0xf7dc9574 in memcpy () from /lib/libc.so.6
No symbol table info available.
#1  0x000acae4 in ?? ()
No symbol table info available.
#2  0x000acae4 in ?? ()
No symbol table info available.
Previous frame identical to this frame (corrupt stack?)
(gdb)

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

Versions of packages gnupg depends on:
ii  libbz2-1.0  1.0.3-3  high-quality block-sorting file co
ii  libc6   2.3.6-18 GNU C Library: Shared libraries
ii  libldap22.1.30-13+b1 OpenLDAP libraries
ii  libreadline55.1-7GNU readline and history libraries
ii  libusb-0.1-42:0.1.12-2   userspace USB programming library
ii  makedev 2.3.1-82 creates device files in /dev
ii  zlib1g  1:1.2.3-13   compression library - runtime

gnupg recommends no packages.

-- no debconf information


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



Bug#315038: tomcat5: Tomcat5 doesn't start after installation

2006-08-10 Thread Adeodato Simó
* Timo Juhani Lindfors [Sun, 30 Jul 2006 22:04:57 +0300]:

 Package: tomcat5
 Version: 5.0.30-10
 Followup-For: Bug #315038

 This bug seems to still affect tomcat5 5.0.30-10 in unstable.

 Test for /usr/lib/jvm/java-gcj/bin/jdb seems to succeed if I apt-get
 install java-gcj-compat-dev. How about making java-gcj-compat-dev a
 dependency?

Hi, any news on this bug? I wanted to note that it's currently showing
in the RC bug list for Etch...

Cheers,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
 Listening to: Los Planetas - Corrientes circulares en el tiempo




Bug#382334: bootsplash: progress bar patch still missing from initscripts

2006-08-10 Thread Martin-Éric Racine
Package: bootsplash
Severity: normal

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

The kernel patch and theme work very well, but the progress 
bar doesn't move, due to missing support in iniscripts. I'm 
wondering how are things progressing with the initscripts 
maintainers to get necessary changes merged in? It would be 
desirable for this to be fixed before Etch is released.

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

iD8DBQFE2x/zeXr56x4Muc0RAhydAJ49L/ZO3wWYIWRE9DqV7fJFOF+0TACggEvn
4bdALaolO98hL4/Vtc/MP7w=
=1v6q
-END PGP SIGNATURE-


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



Bug#382242: couldn't check access. No groups file? problem

2006-08-10 Thread Matthew Palmer
On Thu, Aug 10, 2006 at 11:21:40AM +0200, Martin Sebald wrote:
  Very strange, though.  If you turn the log level in Apache down to debug,
  you should get a pretty comprehensive trace of what's being done; that
  info might help pinpoint the cause of the trouble.
 
 I'll do that and click through the Typo3 backend and hope that the error
 accurs soon. As this is a live server with many paying customers on it I
 cannot do this very long. ;-) I'll be back with the result soon.

You don't have a staging/test environment where you can try out things like
this?

  I found a similar bug from 2004 on Google, bug # 287160, there the
  problem was with version 4.3.9-1, but I cannot see any clue.
  That was originally, but the problem still exists in 4.3.9-2.  I've got
  to get around to fixing that, and I'd imagine that it'll solve the
  problem for you too, actually.  Can you try the fix described in 
  http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=287160;msg=135 and see
  if it does the job for you, too?
 
 Ah thank you for the link. But as written above: This is a live server and
 as our own policy we do not compile any packages. We only use final
 packages. Well, not the best idea to use a hybrid system with stable and
 unstable packages, but stable is sometimes really unusable for us.

I'd go beyond not the best idea, all the way to downright foolhardy.
Unstable is, on occasion, quite unstable, and only running pre-packaged
versions severely cramps your style in deploying bugfixes and customising
software to suit your needs -- the very *epitomy* of what Free Software
gives you.

I know something of what I speak of here, too -- one of things I do in my
job is put together new and customised packages to suit business needs. 
It's *crucial* to being able to give the best possible result, especially if
you're using a moving target / possibly dangerously buggy suite of packages.

I'm not trying to be harsh, but seriously, kill that policy.  And setup a
Xen instance to test things out on.

- Matt


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



Bug#382243: Segmentation faults

2006-08-10 Thread Matthew Palmer
On Thu, Aug 10, 2006 at 11:13:52AM +0200, Martin Sebald wrote:
  Check (using ldd or apt-cache show) that anything that might link against
  both Apache and MySQL (directly *or* indirectly) is using the same
  libmysqlclient version.  Fixing it is extra special, but in this case I'd
  suggest just going back to 4.3.9-2.  -2.1 was a transition upload, and it
  looks like it's been rebuilt since (the +b1), but none of that should
  have any effect on you if you were running 4.3.9-2 properly. 
 
 I looked up the packages that are MySQL-related and might have something to
 do with Apache2. I also use MySQL with Postfix and Courier. Could this also
 have an effect?

Unless they're linked into Apache, it's unlikely they'd have an effect.

  Package: libapache2-mod-auth-mysql
  Version: 4.3.9-2
  Depends: libc6 (= 2.3.2.ds1-4), libmysqlclient12, apache2-common (= 
  2.0.50-10)
 
  Package: libapache2-mod-auth-mysql
  Version: 4.3.9-2.1+b1
  Depends: libc6 (= 2.3.5-1), libmysqlclient15off (= 5.0.19-1), 
  apache2-common (= 2.0.50-10)
 
  Package: php5-mysql
  Version: 5.1.4-0.1
  Depends: libc6 (= 2.3.6-6), libmysqlclient15off (= 5.0.19-1), debconf (= 
  0.5) | debconf-2.0, phpapi-20051025, php5-common (= 5.1.4-0.1)

 Every package depends on libmysqlclient15off exept the old package of
 libapache2-mod-auth-mysql. But as I said I'm running this version (4.3.9-2)
 because 4.3.9-2.1+b1 is producing segmentation faults.

That is *very* strange.  I'd actually expect the exact opposite -- the
different versions causing the segfault, not the same versions.

 What else can I get you out of my system?

Not a lot.  Time to load up the debug symbols for Apache and friends, kick
it off in a debugger, and throw requests at it.

- Matt


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



Bug#382330: ftp.debian.org: please remove gmime2.1 source package

2006-08-10 Thread Jose Carlos Garcia Sogo
Package: ftp.debian.org
Severity: normal

 Hi,

 Once gmime2.2 is accepted in the archive, and tomboy, beagle, balsa and pan 
are 
 recompiled gmime2.1 source package can be removed.

 I will add blockers for this bug as soon as gmime2.2 is accepted and I
 can file bugs asking for those packages to be upgraded to new gmime2.2
 dependency (gmime2.2 should be completely compatible with gmime2.1)

 Cheers,


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)


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



Bug#300251: Changin' severity

2006-08-10 Thread Francesco Paolo Lovergine
severity 300251 wishlist
tags 300251 + wontfix
thanks

Sorry but I think scilab needs patching for the following reasons:

1. xaw3d is a fork of Xaw6.1, not a replacement for Xaw7.
2. IF scilab needed a Xaw7 API it should link Xaw7, not Xaw3d which is not
   basically compatible with that. If not, who cares to link Xaw7
   instead of Xaw6 and so Xaw3d? If it is not required, WHY scilab
   does that kind of check?
3. Xaw3d maintainer is passed away in 2004 unfortunately, so I have
   no idea if someone will care to update the lib to be plain compatible
   with Xaw7. Note that I had no time to check how much Xaw7 is
   different from the previous edition and Xaw3d as well.
4. Changing soname without a specific API/ABI reason is silly and could
   possibly break programs which link the current solib. For sure it
   would require a questionable transition for a few programs in debian.

-- 
Francesco P. Lovergine


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



Bug#382331: ekiga freezes when I hang up or when I call a sip adress

2006-08-10 Thread Mathieu Ruellan
Package: ekiga
Version: 2.0.2-1
Severity: grave
Justification: renders package unusable

Each time i'm calling somebody, or each time I hang up, ekiga freezes!
I have to kill the process!
Running with verbose mode (-d 6) says nothing (for me)!
This bug appears when i upgraded last monday (back after 2 weeks in holidays)
I'm using a testing distrib (Apt-Default Relase).

Best regards

Mathieu

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

Versions of packages ekiga depends on:
ii  evolution-data-server  1.6.2-3   evolution database backend server
ii  gconf2 2.14.0-1  GNOME configuration database syste
ii  libart-2.0-2   2.3.17-1  Library of functions for 2D graphi
ii  libatk1.0-01.12.1-1  The ATK accessibility toolkit
ii  libaudiofile0  0.2.6-6   Open-source version of SGI's audio
ii  libavahi-client3   0.6.11-1  Avahi client library
ii  libavahi-common3   0.6.11-1  Avahi common library
ii  libavahi-glib1 0.6.11-1  Avahi glib integration library
ii  libbonobo2-0   2.14.0-1  Bonobo CORBA interfaces library
ii  libbonoboui2-0 2.14.0-3  The Bonobo UI library
ii  libc6  2.3.6-15  GNU C Library: Shared libraries
ii  libcairo2  1.2.0-3   The Cairo 2D vector graphics libra
ii  libebook1.2-5  1.6.2-3   Client library for evolution addre
ii  libedataserver1.2-71.6.2-3   Utility library for evolution data
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libfontconfig1 2.3.2-7   generic font configuration library
ii  libgcc11:4.1.1-5 GCC support library
ii  libgconf2-42.14.0-1  GNOME configuration database syste
ii  libglib2.0-0   2.10.3-3  The GLib library of C routines
ii  libgnome-keyring0  0.4.9-1   GNOME keyring services library
ii  libgnome2-02.14.1-2  The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.14.0-2  A powerful object-oriented display
ii  libgnomeui-0   2.14.1-2  The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 2.14.2-1  GNOME virtual file-system (runtime
ii  libgtk2.0-02.8.18-1  The GTK+ graphical user interface 
ii  libice61:1.0.0-3 X11 Inter-Client Exchange library
ii  libopal-2.2.0  2.2.2.dfsg-1  Open Phone Abstraction Library - s
ii  liborbit2  1:2.14.0-2libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.12.3-1+b1   Layout and rendering of internatio
ii  libpopt0   1.10-2lib for parsing cmdline parameters
ii  libpt-1.10.0   1.10.1.dfsg-1 Portable Windows Library
ii  libpt-plugins-alsa 1.10.1.dfsg-1 Portable Windows Library Audio Plu
ii  libpt-plugins-v4l  1.10.1.dfsg-1 Portable Windows Library Video Plu
ii  libpt-plugins-v4l2 1.10.1.dfsg-1 Portable Windows Library Video Plu
ii  libsdl1.2debian1.2.10-3  Simple DirectMedia Layer
ii  libsm6 1:1.0.0-4 X11 Session Management library
ii  libstdc++6 4.1.1-5   The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.0-7 X11 client-side library
ii  libxcursor11.1.5.2-5 X cursor management library
ii  libxext6   1:1.0.0-4 X11 miscellaneous extension librar
ii  libxfixes3 1:3.0.1.2-4   X11 miscellaneous 'fixes' extensio
ii  libxi6 1:1.0.0-5 X11 Input extension library
ii  libxinerama1   1:1.0.1-4 X11 Xinerama extension library
ii  libxml22.6.26.dfsg-3 GNOME XML library
ii  libxrandr2 2:1.1.0.2-4   X11 RandR extension library
ii  libxrender11:0.9.0.2-4   X Rendering Extension client libra
ii  yelp   2.14.2-2  Help browser for GNOME 2
ii  zlib1g 1:1.2.3-13compression library - runtime

ekiga recommends no packages.

-- no debconf information


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



Bug#382296: crash log

2006-08-10 Thread Peter Eisentraut
Jindrich Makovicka wrote:
 I guess I am experiencing the same, here is the log.

 [2006/08/10 08:02:00, 0] smbd/server.c:main(847)
   smbd version 3.0.23b started.
   Copyright Andrew Tridgell and the Samba Team 1992-2006
 [2006/08/10 08:02:00, 0]
 passdb/pdb_interface.c:make_pdb_method_name(174) No builtin nor
 plugin backend for tdbsam guest found [2006/08/10 08:02:00, 0]
 lib/util.c:smb_panic(1592) PANIC (pid 8432): pdb_get_methods_reload:
 failed to get pdb methods for backend tdbsam guest

Please see

https://bugzilla.samba.org/show_bug.cgi?id=4000


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



Bug#382332: xmoto: Editor Segfaults opening downloaded levels.

2006-08-10 Thread Daniel Franganillo

Subject: xmoto: Editor Segfaults opening downloaded levels.
Package: xmoto
Version: 0.2.0-1
Severity: important

The bundled xmoto level editor segfaults whenever it loads any downloaded level.
Steps:
1 - Download (in game) any level.
2 - Go to ~/.xmoto/Levels/downloaded
3 - Run xmoto-editor and open any level.
4 - Segfaults with:

** Editor Data **
7 entity type(s):

 TYPEID=EndOfLevel
 SIZE=1.00
 PARAM NAME=style DEFAULT=default
 2 symbol part(s)

 TYPEID=PlayerStart
 SIZE=1.00
 2 symbol part(s)

 TYPEID=Wrecker
 SIZE=1.00
 PARAM NAME=style DEFAULT=default
 3 symbol part(s)

 TYPEID=Sprite
 SIZE=1.00
 PARAM NAME=z DEFAULT=-1
 PARAM NAME=name DEFAULT=Grass1
 2 symbol part(s)

 TYPEID=Strawberry
 SIZE=1.00
 2 symbol part(s)

 TYPEID=ParticleSource
 SIZE=1.00
 PARAM NAME=type DEFAULT=Smoke
 2 symbol part(s)

 TYPEID=Dummy
 SIZE=1.00
 3 symbol part(s)

Segmentation fault


-- System Information:
Debian Release: testing/unstable
 APT prefers unstable
 APT policy: (500, 'unstable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20v1
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ANSI_X3.4-1968)
(ignored: LC_ALL set to C)

Versions of packages xmoto depends on:
ii  libbz2-1.0  1.0.3-3  high-quality block-sorting file co
ii  libc6   2.3.6-18 GNU C Library: Shared libraries
ii  libcurl37.15.4-1 Multi-protocol file transfer libra
ii  libgcc1 1:4.1.1-10   GCC support library
ii  libgl1-mesa-glx [libgl1]6.4.2-1  A free implementation of the OpenG
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG
ii  liblua505.0.2-6  Main interpreter library for the L
ii  liblualib50 5.0.2-6  Extension library for the Lua 5.0
ii  libode0c2   1:0.5-5  Open Dynamics Engine - runtime lib
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libsdl-mixer1.2 1.2.6-1.1+b1 mixer library for Simple DirectMed
ii  libsdl1.2debian 1.2.11-2 Simple DirectMedia Layer
ii  libstdc++6  4.1.1-10 The GNU Standard C++ Library v3
ii  xmoto-data  0.2.0-1  2D motocross platform game
ii  zlib1g  1:1.2.3-13   compression library - runtime

xmoto recommends no packages.

-- no debconf information


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



Bug#382218: wikipediafs: want to create NEW articles

2006-08-10 Thread Sebastien Delafond
Hi Dan,

could you please split this bug report into a few smaller,
self-contained ones ? That way I can tag/fix/close them the right way.

Cheers,

--Seb

On Wed, Aug 09, 2006 at 10:34:43PM +0800, Dan Jacobson wrote:
 Package: wikipediafs
 Version: 0.1-1
 Severity: normal
 File: /usr/share/man/man8/mount.wikipediafs.8.gz
 X-Debbugs-Cc: Mathieu Blondel [EMAIL PROTECTED]
 
 I can ls and cat existing articles, but
 cannot use cp to make new articles:
 
 # cp ~/newarticle nurdsburg.org/newart
 # Traceback (most recent call last):
   File /usr/lib/python2.3/site-packages/fuse.py, line 40, in __call__
 return apply(self.func, args, kw)
   File /usr/lib/python2.3/site-packages/wikipediafs/WikipediaFS.py, line 
 365, in release
 self.__publishArticle(relative_path=path)
   File /usr/lib/python2.3/site-packages/wikipediafs/WikipediaFS.py, line 
 122, in __publishArticle
 current_WikipediaArticle = \
   File /usr/lib/python2.3/site-packages/wikipediafs/WikipediaFS.py, line 
 96, in __getWikipediaArticleFromPath
 return self.article_list[current_dir][file_name]
   File 
 /usr/lib/python2.3/site-packages/wikipediafs/WikipediaArticleList.py, line 
 50, in __getitem__
 return self.list[self.get().index(article_name)]
 ValueError: list.index(x): x not in list
 
 
 # ed /mnt/wfs/bla.org/newfile
 doesn't work either.
 So apparently we can only edit existing articles. Not add new
 articles.
 
 We can however now ls and cat newart etc. So it gets into the cache,
 but not into the wiki.
 
 
 Also add a note that on Debian,
# chmod 4750 /usr/bin/fusermount
 
# chgrp fuse /dev/fuse /usr/bin/fusermount
 have already been done for us.
 
 Trailing blanks:
 $ grep -c ' $' 
 /usr/share/pycentral/wikipediafs/site-packages/wikipediafs/WikipediaFS.py
 86
 Also GNU is no longer on Temple Place.
 
 
 In WikipediaArticle.py we see names hardwired in:
 wal = WikipediaArticleList('mblondel.org', 'www.mblondel.org',
 
 
 Man page says
none /mnt/wfs/ wikipediafs noauto,nouser,home=/home/your_username/
 
Replace  noauto  by auto if you want WikipediaFS to be mounted at boot.
Replace nouser by user if  you  want  to  allow  simple  users  to  use
WikipediaFS.
 Mention if that is all that is needed to allow simple users, or must
 one do the chmods.
 
 P.S.
 $ man mount.wikipediafs |grep '/ \?Japan'
$ cat wikipedia-en/Japan | less
$ ls wikipedia-en/ Japan
$ cp wikipedia-en/Japan ~/Desktop/
$ cp wikipedia-en/Japan mblondel.org/
 Space on second line.
 
 By the way I do
 # emacs
 and the above error messages get sent to the shell that called emacs,
 and are not seen inside emacs. Try doing them in M-x shell to test.
 
 OK, I made a workaround to upload articles, new or existing:
 
 #!/usr/bin/perl
 # wikimediawritepage -- write a page to a wikimedia
 # Offline allow ample time to think, and save big modem $$.
 # Copyright   : http://www.fsf.org/copyleft/gpl.html
 # Author  : Dan Jacobson -- http://jidanni.org/
 # Created On  : Aug 2006
 # Last Modified By: Dan Jacobson
 # Last Modified On: Wed Aug  9 03:23:18 2006
 # Update Count: 140
 use strict;
 use warnings;
 die Usage: $0 baseName_of_page  wikitext if $#ARGV;
 my $editurl = 
 http://localhost/mediawiki/index.php?title=$ARGV[0]action=edit;;
 use LWP::UserAgent;
 use HTML::Form;
 my $ua = LWP::UserAgent-new;
 ##$ua-env_proxy;
 my $response = $ua-get($editurl);
 die $response-as_string unless $response-is_success;
 my $form = HTML::Form-parse($response);##1st item
 $form-enctype(application/x-www-form-urlencoded);#else some utf problem
 $ARGV[0] = -;
 local $/;
 $form-value( wpTextbox1,  );
 $ua   = LWP::UserAgent-new;
 $response = $ua-request( $form-click );
 die $response-as_string unless $response-is_success;
 print $response-content;
 
 


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



Bug#382337: [INTL:tl] Tagalog menu-sections translation

2006-08-10 Thread eric pareja
Package: menu
Version: 2.1.29
Severity: wishlist
Tags: patch l10n

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1


Please find attached the Tagalog translation of menu-sections.

Thanks.

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

Versions of packages menu depends on:
ii  dpkg  1.13.22package maintenance system for Deb
ii  libc6 2.3.6-18   GNU C Library: Shared libraries
ii  libgcc1   1:4.1.1-10 GCC support library
ii  libstdc++64.1.1-10   The GNU Standard C++ Library v3

menu recommends no packages.

- -- no debconf information

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

iD8DBQFE2yNTqYbDibguQtkRAoYgAKCJce/LsD0G+SyrZsSvpvTxApPVBACgnZF1
PfB6Dn50qwuppSHNvhXNo4A=
=6TmL
-END PGP SIGNATURE-
# Menu section translation to Tagalog
# Copyright (C) 2005 Eric Pareja
# This file is distributed under the same license as the menu package.
# Original file, Bill Allombert [EMAIL PROTECTED], 2003.
# Translation by Eric Pareja [EMAIL PROTECTED], 2005.
#
msgid 
msgstr 
Project-Id-Version: menu-section 2.1.9-3\n
POT-Creation-Date: 2003-04-03 12:14+0100\n
PO-Revision-Date: 2006-08-10 20:11+0800\n
Last-Translator: Eric Pareja [EMAIL PROTECTED]\n
Language-Team: Tagalog [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#.  First level entry
#.  All following 2nd level entries go under it
#.  From menu policy (/usr/share/doc/pdebian-policy/menu-policy.txt.gz): 
#.  normal applications
msgid Apps
msgstr Aplikasyon

#.  Second level entry under Apps
#.  Menu policy definition: interactive database programs
msgid Databases
msgstr Database
 
#.  Second level entry under Apps
#.  Menu policy definition: text editors, word processors
msgid Editors
msgstr Panulat

#.  Second level entry under Apps
#.  Menu policy definition: educational and training programs
msgid Education
msgstr Edukasyon

#.  Second level entry under Apps
#.  Menu policy definition: wine, dosemu, etc.
msgid Emulators
msgstr Mga Emulator

#.  Second level entry under Apps
#.  Menu policy definition: image manipulation
msgid Graphics
msgstr Grapiks

#.  Second level entry under Apps
#.  Menu policy definition: anything relating to ham (amateur) radio
msgid Hamradio
msgstr Radyo

#.  Second level entry under Apps
#.  Menu policy definition: math related programs
msgid Math
msgstr Matematika

#.  Second level entry under Apps
#.  Menu policy definition: network programs that don't fit elsewhere
msgid Net
msgstr Net

#.  Second level entry under Apps
#.  Menu policy definition: debuggers, etc.
msgid Programming
msgstr Pagprograma

#.  Second level entry under Apps
#.  Menu policy definition: scientific programs
msgid Science
msgstr Agham

#.  Second level entry under Apps
#.  Menu policy definition: simple apps, like clocks, that perform only one task
msgid Tools
msgstr Kasangkapan

#.  Second level entry under Apps
#.  Menu policy definition: technical stuff
msgid Technical
msgstr Teknikal

#.  Second level entry under Apps
#.  Menu policy definition: text oriented tools other than editors
msgid Text
msgstr Teksto

#.  Second level entry under Apps
#.  Menu policy definition: bash, ksh, zsh, etc.
msgid Shells
msgstr Mga Shell

#.  Second level entry under Apps
#.  Menu policy definition: sound players and editors
msgid Sound
msgstr Tunog

#.  Second level entry under Apps
#.  Menu policy definition: image viewers
#.  Maybe also applications which able users to view some specific data
#.  such as PDF, images, Postscript...
msgid Viewers
msgstr Mga viewer

#.  Second level entry under Apps
#.  Menu policy definition: system administration and monitoring tools
msgid System
msgstr Sistema

#.  First level entry
#.  Menu policy definition: games and recreations
msgid Games
msgstr Palaro

#.  Second level entry under Games
#.  Menu policy definition: walk around virtual space, zork, MOO's, etc
#.  All adventure-style games (often includes RPG)
msgid Adventure
msgstr Abentura

#.  Second level entry under Games
#.  Menu policy definition: any game where reflexes count
msgid Arcade
msgstr Arcade

#.  Second level entry under Games
#.  Menu policy definition: games played on a board
#.  Board-style games such as Mastermind, Yahtzee, Mahjongg
msgid Board
msgstr Board

#.  Second level entry under Games
#.  Menu policy definition: games involving a deck of cards
msgid Card
msgstr Baraha

#.  Second level entry under Games
#.  Menu policy definition: tests of ingenuity and logic
#.  one-player games most often...or games which need the player to think..:-)
msgid Puzzles
msgstr Palaisipan

#.  Second 

Bug#382336: dh-make: a copyright file is not bsd with -c bsd and -n

2006-08-10 Thread Kazuhiro NISHIYAMA
Package: dh-make
Version: 0.38
Severity: normal

A message of dh_make is `License: bsd', but debian/copyright is GPL.

% mkdir hoge-0.0.0  cd hoge-0.0.0  dh_make -c bsd -n -s
Maintainer name : Kazuhiro NISHIYAMA
Email-Address   : [EMAIL PROTECTED]
Date: Thu, 10 Aug 2006 21:08:27 +0900
Package Name: hoge
Version : 0.0.0
License : bsd
Type of Package : Single
Hit enter to confirm:
Currently there is no top level Makefile. This may require additional tuning.
Done. Please edit the files in the debian/ subdirectory now. You should also
check that the hoge Makefiles install into $DESTDIR and not in / .
% cat debian/copyright 
This is hoge, written and maintained by Kazuhiro NISHIYAMA [EMAIL PROTECTED]
on Thu, 10 Aug 2006 21:08:27 +0900.

The original source can always be found at:
ftp://ftp.debian.org/dists/unstable/main/source/

Copyright (C) 2005  Kazuhiro NISHIYAMA

License:

  This program is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this package; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
  02111-1307, USA.

On Debian systems, the complete text of the GNU General
Public License can be found in `/usr/share/common-licenses/GPL'.
%

-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (105, 'testing'), (90, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8-3-686
Locale: LANG=ja_JP.eucJP, LC_CTYPE=ja_JP.eucJP (charmap=EUC-JP)

Versions of packages dh-make depends on:
ii  debhelper  4.2.32helper programs for debian/rules
ii  dpkg-dev   1.10.28   Package building tools for Debian
ii  make   3.80-9The GNU version of the make util
ii  perl   5.8.4-8sarge4 Larry Wall's Practical Extraction 

-- no debconf information


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



Bug#380951: fix for 380951

2006-08-10 Thread Pierre HABOUZIT
tag 380951 + patch
thanks

  Hi,

  Attached is the /correct/ patch for skencil python transition.

  this uses python-support 0.4.1 (mandatory for your case) that will be
uploaded today, so you have to wait on tomorrow before uploading. but
that time it's the good one, I tested it.

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org
diff -u skencil-0.6.17/debian/changelog skencil-0.6.17/debian/changelog
--- skencil-0.6.17/debian/changelog
+++ skencil-0.6.17/debian/changelog
@@ -1,3 +1,11 @@
+skencil (0.6.17-5.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Migrate package to the new python policy (Closes: #380951):
++ use dh_pysupport new-generation (instead of dh_python).
+
+ -- Pierre Habouzit [EMAIL PROTECTED]  Thu, 10 Aug 2006 11:00:21 +0200
+
 skencil (0.6.17-5) unstable; urgency=low
 
   * Added 07-text-patch from Fabien Ninoles [EMAIL PROTECTED] to fix the text
diff -u skencil-0.6.17/debian/control skencil-0.6.17/debian/control
--- skencil-0.6.17/debian/control
+++ skencil-0.6.17/debian/control
@@ -2,7 +2,7 @@
 Section: graphics
 Priority: optional
 Maintainer: Daniel Baumann [EMAIL PROTECTED]
-Build-Depends: debhelper (= 4), dpatch, python-dev, python-imaging-tk, 
sharutils, tcl8.4-dev, tk8.4-dev
+Build-Depends: debhelper (= 5), dpatch, python-support (= 0.4.1), 
python-dev, python-imaging-tk, sharutils, tcl8.4-dev, tk8.4-dev
 Standards-Version: 3.7.2
 
 Package: skencil
diff -u skencil-0.6.17/debian/rules skencil-0.6.17/debian/rules
--- skencil-0.6.17/debian/rules
+++ skencil-0.6.17/debian/rules
@@ -88,7 +88,7 @@
dh_strip
dh_compress -Xexamples -Xtools
dh_fixperms
-   dh_python
+   dh_pysupport
dh_installdeb
dh_shlibdeps
dh_gencontrol


signature.asc
Description: Digital signature


Bug#382335: aspell-de: Broken maintainer scripts

2006-08-10 Thread Sven Joachim

Package: aspell-de
Version: 0.60-20030222-1-5
Severity: normal

The maintainer scripts make assumptions about output messages of
`update-alternatives', e.g. in the preinst:

[...]
if update-alternatives --display de.multi | grep -q 'status is manual' 

update-alternatives --display de.multi | grep -q 'points 
to.*-neu' ; then
[...]

It is generally a bad idea to depend on such output messages, since
they are subject to change; but if you do so, you should at least set
the locale to `C', e.g. use `LC_ALL=C update-alternatives ...'.
The point is that update-alternatives has become _translatable_, and I
have just translated it into German (will be part of the next dpkg
release), breaking your scripts in German locales.


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

Versions of packages aspell-de depends on:
ii  aspell0.60.4-4   GNU Aspell spell-checker
ii  dictionaries-common   0.70.2 Common utilities for spelling dict

aspell-de recommends no packages.

-- no debconf information



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



Bug#378606: The patch

2006-08-10 Thread Alexei Ustyuzhaninov

Hello,

In twisted 2.4 errbacks are not processed outside exceptions. The 
attached patch seems to resolve the problem.


--
Best regards,
Alexei


--- apt_proxy.py.old	2006-08-10 18:47:13.0 +0600
+++ apt_proxy.py	2006-08-10 18:47:42.0 +0600
@@ -1555,7 +1555,10 @@
 elif last_access  min_time:
 log.debug(file is too old: +self.local_file, 'file_ok')
 update_times[self.uri] = cur_time
-deferred.errback()
+		# Since version 2.4 twisted processes errbacks only inside an
+		# exception. So we have to raise this dummy exception.
+		try: raise Exception
+except: deferred.errback()
 else:
 log.debug(file is ok: +self.local_file, 'file_ok')
 deferred.callback(None)
@@ -1568,7 +1571,8 @@
(deferred, self), None,
None, None)
 else:
-deferred.errback()
+	try: raise Exception
+except: deferred.errback()
 return deferred
 
 def connectionLost(self, reason=None):


Bug#358001: partman: please create ext3 file systems with online resize support

2006-08-10 Thread Petter Reinholdtsen
[Goswin von Brederlow]
 100GiB is either way to high (for my 200MB / partition) or way too
 low (for my 1TiB data partition). I think the value should be less
 than 16TiB (maximum size) and no more than 10 times the filesystem
 size.

Yeah.  I read from the mke2fs manual page that -O resize_inode set the
max-size to 1024 times the current size.  That might be an OK default
for ext2prepare as well.  Perhaps it should be patched to make that
argument optional, and use 1024 * current size in that case.  Patches
most welcome. :)

 It would probably be worth a patch to mke2fs to output in D-I
 progress format though instead of parsing the current output and
 translating that.

Yes.  But I am not sure if such patch would make it into etch in time. :)

 But all of this won't remove the need for ext2prepare. Afaik there
 is no option for mke2fs to build a filesystem already perpared for
 resizing.

Are you aware of the -O resize_inode option to mk32fs, currently the
default for mke2fs?


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



Bug#358001: partman: please create ext3 file systems with online resize support

2006-08-10 Thread Goswin von Brederlow
Steinar H. Gunderson [EMAIL PROTECTED] writes:

 On Mon, Aug 07, 2006 at 05:03:39PM +0200, Petter Reinholdtsen wrote:
 I've tested this patch, and it proved to be incomplete.  ext2prepare
 need an argument extra, with the new maximum size for the partition.
 Not sure how to properly calculate that value, so I just picked a
 fairly large number 100 GiB as the value.  With this patch,
 ext2prepare seem to run successfully.

100GiB is either way to high (for my 200MB / partition) or way too low
(for my 1TiB data partition). I think the value should be less than
16TiB (maximum size) and no more than 10 times the filesystem size.

 This seems like a works by accident hack to me. To be honest, I think we
 should be using mkfs.ext3 instead of partman to generate ext3 filesystems --
 no munging around with tune2fs, fsck or ext2prepare to create filesystems
 with the options we want (and who knows what is the next option added).

 I'm aware that mkfs.ext3 has no progress bar, but isn't it more important
 to generate correct file systems that having progress bars? Cc-ing 
 debian-boot.

 /* Steinar */

mke2fs gives a progress for the first half but not for finalizing
the filesystem. If one guesses that the first half takes 90% of the
time then using that the progress would go smoothly from 0 to
90, stay there for a while and then jump to 100.

It would probably be worth a patch to mke2fs to output in D-I progress
format though instead of parsing the current output and translating
that.


But all of this won't remove the need for ext2prepare. Afaik there is
no option for mke2fs to build a filesystem already perpared for
resizing.

MfG
Goswin


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



  1   2   3   4   >