Bug#384730: undocumented features referenced in description

2006-08-28 Thread Ola Lundqvist
Hi

On Sun, Aug 27, 2006 at 11:59:59AM +0200, Robert Millan wrote:
 On Sun, Aug 27, 2006 at 11:54:51AM +0200, Ola Lundqvist wrote:
  severity 384730 minor
  thanks
  
  I'll see what I can do about it. I was not aware of those features.
 
 Well, I assumed you had written this Description and knew something I don't.
 
 Unless the author of this Description can clarify, I would suggest to remove
 the reference.  It doesn't look at all like these exist.

I took over the package quite late, so I do not think I have written that.
Maybe it should just be removed. I'll look at it.

 As for -r, it would be good to document it.

Agree.

Regards,

// Ola

 -- 
 Robert Millan
 
 My spam trap is [EMAIL PROTECTED]  Note: this address is only intended for
 spam harvesters.  Writing to it will get you added to my black list.
 
 

-- 
 - Ola Lundqvist ---
/  [EMAIL PROTECTED] Annebergsslingan 37  \
|  [EMAIL PROTECTED] 654 65 KARLSTAD  |
|  +46 (0)54-10 14 30  +46 (0)70-332 1551   |
|  http://www.opal.dhs.org UIN/icq: 4912500 |
\  gpg/f.p.: 7090 A92B 18FE 7994 0C36  4FE4 18A1 B1CF 0FE5 3DD9 /
 ---


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



Bug#383271: Fixed in

2006-08-28 Thread Josh Triplett
forcemerge 384165 383271
thanks

2.62 changed the dependency on an MTA to a recommendation, and closed
the newer duplicate 384165; merging and closing my original report
383271 accordingly.

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


Bug#384941: Short description of konsolekalendar could be better

2006-08-28 Thread Stefan Borggraefe
Package: konsolekalendar
Version: 4:3.5.4-1
Severity: minor

The current short description of konsolekalendar reads:

KDE konsole personal organizer

KonsoleKalendar is not really a personal organizer. You can only
access KDE calendars, but not e.g. address books. It is just a
calendar. Also konsole instead of console is wrong since this
program doesn't only work with KDE's Konsole. My suggestion would be
to use the first sentence of the konsolekalendar man-page:

KonsoleKalendar is a command line interface to KDE calendars.

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

Versions of packages konsolekalendar depends on:
ii  kdelibs4c2a  4:3.5.4-3   core libraries and binaries for al
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.1-11  GCC support library
ii  libkcal2b4:3.5.4-1   KDE calendaring library
ii  libkdepim1a  4:3.5.4-1   KDE PIM library
ii  libqt3-mt3:3.3.6-4   Qt GUI Library (Threaded runtime v
ii  libstdc++6   4.1.1-11The GNU Standard C++ Library v3

konsolekalendar recommends no packages.

-- no debconf information


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



Bug#384938: conf log

2006-08-28 Thread Joshua N Pritikin
Attached as gzip'd text.


xlog.gz
Description: Binary data


xorg.gz
Description: Binary data


Bug#383979: Please, upgrade mysql.

2006-08-28 Thread Stefan Borggraefe
Spamassassin now works again after the fixed mysql packages were 
uploaded. :-)

I guess this bug should be marked as a dupe of 
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=384741

Cheers, Stefan!


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



Bug#384943: start/stop zoneserver

2006-08-28 Thread Boris Dorès
Package: maradns
Version: 1.2.12.02-1
Tags: patch

  Hi everyone,

  I think I found three bugs related to the init.d script of the zoneserver of
maradns package :

1) zoneserver doesn't start if there are more than one configuration
   file mentionned in /etc/default/maradns ($SERVERS is used on the
   command line instead of $rcfile, which zoneserver doesn't
   understand).

2) zoneserver isn't started unless zone_transfer_acl is defined in the
   configuration file, even if it is (only) used to serve DNS records
   over TCP (with the tcp_convert_server option).

3) when zoneserver is stopped with /etc/init.d/zoneserver stop, only
   the parent process of each server is killed : children processes keep
   running in the background and must be killed manually.



  For 1) and 2), here is a patch proposal :

--- /etc/init.d/zoneserver  2006-08-28 07:42:00.094624092 +0200
+++ /etc/init.d/zoneserver2 2006-08-28 05:57:15.210295564 +0200
@@ -33,11 +33,11 @@
   start)
echo -n Starting $DESC: 
for rcfile in $SERVERS ; do
-   if grep -q -i ^zone_transfer_acl $rcfile; then
+   if grep -q -i ^\(zone_transfer_acl\|tcp_convert_server\) $rcfile; 
then
SERVERNAME=`echo $rcfile | sed 's/\//_/g;s/^_*//;' | awk -F. 
'{print $NF}'`
SERVERNAME=zoneserver.$SERVERNAME
start-stop-daemon --start -m --pidfile /var/run/$SERVERNAME.pid 
\
-   --exec $DAEMON -- -f $SERVERS /dev/null 21 | logger -p daemon.notice 
-t $SERVERNAME 2/dev/null 
+   --exec $DAEMON -- -f $rcfile /dev/null 21 | logger -p daemon.notice 
-t $SERVERNAME 2/dev/null 
else
echo No zone ACL's configured for $rcfile -- not starting 
zoneserver for it.
fi
@@ -47,7 +47,7 @@
   stop)
echo -n Stopping $DESC: 
for rcfile in $SERVERS ; do
-   if grep -q -i ^zone_transfer_acl $rcfile; then
+   if grep -q -i ^\(zone_transfer_acl\|tcp_convert_server\) $rcfile; 
then
SERVERNAME=`echo $rcfile | sed 's/\//_/g;s/^_*//;' | awk -F. 
'{print $NF}'`
SERVERNAME=zoneserver.$SERVERNAME
start-stop-daemon --stop -m --quiet --pidfile 
/var/run/$SERVERNAME.pid \



  As for 3), I guess it's more like an upstream issue.

  Thanks.

-- 
Boris Dores


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



Bug#384942: edict: Today, we got a new version: Created: 2006-08-28

2006-08-28 Thread Dr. Markus Waldeck

Package: edict
Version: 2006.04.30-1
Severity: normal

*** Please type your report below this line ***
I checked Jim Breens page few minutes ago and saw the new version.


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

-- no debconf information

-- 


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#384945: texlive system will not install

2006-08-28 Thread Ross Boylan
Package: texlive
Version: 2005.dfsg.1-1
Severity: normal

Warrants higher severity if I have not put my system into some
idiosyncratic, oddball state. 

I think there's some kind of circular dependency among the the texlive
packages; I'm too sleepy to get to the bottom of it.

The various tex's have a checkered history on this system.  I think I
first tried texlive, found it was incompatible with some other stuff,
removed it, and installed tetex.

In the recent upgrade to KDE 3.5.4 kdegraphics seemed to require texlive
packages, but these failed with  an error that a file was owned by two
packages, and that I should remove texlive.  I attempted to do so.

I was able to proceed with the dist-upgrade.  Then I upgraded
kdegraphics, which no longer seemed to require texlive.

Then I attempted to install texlive, leading to the kind of errors
seen in the attached log.

The system currently has tetex and parts of texlive, some of the
latter being unconfigured.

-- Package-specific info:
##
 List of ls-R files

lrwxrwxrwx 1 root root 27 2006-08-27 23:16 /usr/share/texmf-texlive/ls-R - 
/var/lib/texmf/ls-R-TEXLIVE
##
 Config files
total 20
drwx-- 2 ross ross  256 2006-06-26 09:18 Desktop
drwxr-xr-x 3 ross ross  256 2006-02-15 21:18 download
drwx-- 2 ross ross   48 2006-02-14 10:42 Mail
-rw-r--r-- 1 root root 1828 2006-03-31 21:14 pci
-rw--- 1 ross ross0 2006-04-16 15:21 postponed
drwxr-xr-x 2 ross ross   80 2006-06-17 16:16 RCS
-rw--- 1 ross ross 8612 2006-07-22 12:13 sent
-rw-r--r-- 1 ross ross  850 2006-06-25 23:18 testspam
total 20
drwx-- 2 ross ross  256 2006-06-26 09:18 Desktop
drwxr-xr-x 3 ross ross  256 2006-02-15 21:18 download
drwx-- 2 ross ross   48 2006-02-14 10:42 Mail
-rw-r--r-- 1 root root 1828 2006-03-31 21:14 pci
-rw--- 1 ross ross0 2006-04-16 15:21 postponed
drwxr-xr-x 2 ross ross   80 2006-06-17 16:16 RCS
-rw--- 1 ross ross 8612 2006-07-22 12:13 sent
-rw-r--r-- 1 ross ross  850 2006-06-25 23:18 testspam
total 20
drwx-- 2 ross ross  256 2006-06-26 09:18 Desktop
drwxr-xr-x 3 ross ross  256 2006-02-15 21:18 download
drwx-- 2 ross ross   48 2006-02-14 10:42 Mail
-rw-r--r-- 1 root root 1828 2006-03-31 21:14 pci
-rw--- 1 ross ross0 2006-04-16 15:21 postponed
drwxr-xr-x 2 ross ross   80 2006-06-17 16:16 RCS
-rw--- 1 ross ross 8612 2006-07-22 12:13 sent
-rw-r--r-- 1 ross ross  850 2006-06-25 23:18 testspam
total 20
drwx-- 2 ross ross  256 2006-06-26 09:18 Desktop
drwxr-xr-x 3 ross ross  256 2006-02-15 21:18 download
drwx-- 2 ross ross   48 2006-02-14 10:42 Mail
-rw-r--r-- 1 root root 1828 2006-03-31 21:14 pci
-rw--- 1 ross ross0 2006-04-16 15:21 postponed
drwxr-xr-x 2 ross ross   80 2006-06-17 16:16 RCS
-rw--- 1 ross ross 8612 2006-07-22 12:13 sent
-rw-r--r-- 1 ross ross  850 2006-06-25 23:18 testspam

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

Versions of packages texlive depends on:
pn  texlive-context   none (no description available)
pn  texlive-doc-ennone (no description available)
pn  texlive-fonts-recommended none (no description available)
pn  texlive-latex-base | tetex-ba none (no description available)
pn  texlive-latex-recommended none (no description available)

texlive recommends no packages.

-- no debconf information
Script started on Sun 27 Aug 2006 11:20:37 PM PDT
corn:~# date; aptitude -q install texlive-base
Sun Aug 27 23:20:50 PDT 2006
Reading package lists...
Building dependency tree...
Reading extended state information...
Initializing package states...
Writing extended state information...
Reading task descriptions...
Building tag database...
The following NEW packages will be automatically installed:
  texlive-base-bin texlive-doc-base
The following NEW packages will be installed:
  texlive-base texlive-base-bin texlive-doc-base
0 packages upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/18.9MB of archives. After unpacking 37.6MB will be used.
Do you want to continue? [Y/n/?]
Writing extended state information...
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done[2/3]
(Reading database ... 154481 files and directories currently installed.)
Unpacking texlive-doc-base (from .../texlive-doc-base_2005-2_all.deb) ...
Upgrade from experimental versions are not supported!
Please purge all texlive packages before installation.
dpkg: error processing /var/cache/apt/archives/texlive-doc-base_2005-2_all.deb 
(--unpack):
 subprocess pre-installation script returned error exit status 1
Unpacking texlive-base-bin (from 

Bug#384944: xserver-xorg: Can't enable EXA

2006-08-28 Thread Mike Hommey
Package: xserver-xorg
Version: 1:7.0.23
Severity: normal

I totally fail to enable EXA. I've tried
Option AccelMethod EXA,
Option AccelMethod exa,
with or without AGP stuff,
with or without the composite extension,

I *always* get the XAA method loaded, as stated by the Xorg.0.log.

Mike


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

Versions of packages xserver-xorg depends on:
ii  debconf  1.5.3   Debian configuration management sy
ii  x11-common   1:7.0.23X Window System (X.Org) infrastruc
ii  xbase-clients1:7.1.ds-3  miscellaneous X clients
ii  xkb-data 0.8-7   X Keyboard Extension (XKB) configu
ii  xserver-xorg-core2:1.0.2-10  X.Org X server -- core server
ii  xserver-xorg-input-evdev [xs 1:1.1.2-1   X.Org X server -- evdev input driv
ii  xserver-xorg-input-kbd [xser 1:1.0.1.3-2 X.Org X server -- keyboard input d
ii  xserver-xorg-input-mouse [xs 1:1.0.4-3   X.Org X server -- mouse input driv
ii  xserver-xorg-video-ati [xser 1:6.6.0-1   X.Org X server -- ATI display driv
ii  xserver-xorg-video-vesa [xse 1:1.0.1.3-2 X.Org X server -- VESA display dri

Versions of packages xserver-xorg recommends:
pn  discover1 | discover   none(no description available)
ii  laptop-detect  0.12.1attempt to detect a laptop
ii  mdetect0.5.2.1   mouse device autodetection tool
ii  xresprobe  0.4.23debian1 X Resolution Probe

-- debconf information:
  xserver-xorg/multiple_possible_x-drivers:
  xserver-xorg/config/monitor/use_sync_ranges:
* xserver-xorg/config/inputdevice/mouse/port: /dev/input/mice
  xserver-xorg/config/monitor/lcd:
  xserver-xorg/config/doublequote_in_string_error:
  xserver-xorg/config/monitor/screen-size: 17 inches (430 mm)
* shared/default-x-server: xserver-xorg
* xserver-xorg/autodetect_monitor: true
* xserver-xorg/config/inputdevice/mouse/protocol: ImPS/2
  shared/no_known_x-server:
* xserver-xorg/config/display/default_depth: 24
  xserver-xorg/config/display/modes: 1280x800
  xserver-xorg/config/device/bus_id_error:
  xserver-xorg/config/inputdevice/keyboard/internal:
  xserver-xorg/config/monitor/vert-refresh: 43-60
* xserver-xorg/config/inputdevice/keyboard/options:
* xserver-xorg/autodetect_keyboard: false
* xserver-xorg/config/device/use_fbdev: false
* xserver-xorg/config/inputdevice/keyboard/variant: jp106
  xserver-xorg/config/nonnumeric_string_error:
  xserver-xorg/config/fontpath/fontserver:
* xserver-xorg/config/inputdevice/keyboard/layout: jp
* xserver-xorg/config/modules: bitmap, dbe, ddc, dri, extmod, freetype, glx, 
int10, type1, vbe
  xserver-xorg/config/monitor/identifier: Generic Monitor
* xserver-xorg/config/inputdevice/mouse/emulate3buttons: true
  xserver-xorg/autodetect_mouse: true
  xserver-xorg/config/monitor/horiz-sync: 28-64
* xserver-xorg/config/device/video_ram:
  xserver-xorg/config/monitor/range_input_error:
  xserver-xorg/config/write_dri_section: true
* xserver-xorg/config/inputdevice/keyboard/model: jp106
* xserver-xorg/config/device/driver: ati
* xserver-xorg/config/device/identifier: Generic Video Card
  xserver-xorg/config/monitor/selection-method: Advanced
  xserver-xorg/config/null_string_error:
  shared/multiple_possible_x-servers:
* xserver-xorg/config/device/bus_id: PCI:1:0:0
* xserver-xorg/config/write_files_section: true
* xserver-xorg/autodetect_video_card: true
  xserver-xorg/config/monitor/mode-list: 1280x800 @ 60Hz
* xserver-xorg/config/inputdevice/keyboard/rules: xorg


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



Bug#367052: Method of reproducing bug matches my experience

2006-08-28 Thread Josh Triplett
reassign 367052 aptitude
thanks

Frank Lichtenheld [EMAIL PROTECTED] wrote:
 But I have now found a way to reproduce this bug (although I'm not
 sure it is really fully the same situation as with the submitters).
 Normally aptitude uses libapt-pkg to call dpkg which sets
 DPKG_NO_TSTP. If dpkg fails with an error, aptitude calls dpkg
 --configure -a directly (A package failed to install.  Trying to
 recover:) without setting DPKG_NO_TSTP which leads to the situation
 described in the bug report.

Now that you point out that method of reproducing the problem, I recall
that the times I encountered the problem did indeed occur after a broken
package caused aptitude to do the second pass with dpkg --configure -a.
 So it sounds like you've found the right root cause.

 Unless someone convinces me that dpkg should do something about this
 (e.g. by changing the default behaviour of 'Z') or that there are
 other situations where this bug occours I will reassign it to aptitude
 and ask for setting DPKG_NO_TSTP before the dpkg --configure -a
 call.

That looks like the right fix; reassigning the bug..  This definitely
looks like an aptitude bug, not a dpkg bug.

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


Bug#384905: bzrtools plugins do not register

2006-08-28 Thread Adeodato Simó
retitle 384905 bzrtools: must be packaged with python-central because bzr does 
so
thanks

* Vagrant Cascadian [Sun, 27 Aug 2006 12:23:17 -0700]:

 any ideas?

Yes, the above. In the meantime, feel free to:

  % sudo rmdir /usr/lib/python2.4/site-packages/bzrlib/plugins/bzrtools
  % sudo ln -s /var/lib/python-support/python2.4/bzrlib/plugins/bzrtools 
/usr/lib/python2.4/site-packages/bzrlib/plugins/bzrtools

Thanks,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
   Listening to: Placebo - Blue American




Bug#367158: I have this problem too

2006-08-28 Thread Mike Hommey
reassign 367158 gdm
thanks

Hi,

First, I believe the bug belongs to gdm, so i'm reassigning.

The problem appears that when running a second X server by mean of gdm
(by asking a new login from the gnome desktop, for example), the gdm
login form in this second X server uses smaller fonts than the same
login form on the first X server.

I guess it is using a dpi of 75 instead of 96.

Mike


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



Bug#378667: HTML Validator dead (again)

2006-08-28 Thread Mike Hommey
On Mon, Aug 28, 2006 at 07:24:36AM +0200, cybaer [EMAIL PROTECTED] wrote:
 With the new update of firefox to 1.5.dfsg+1.5.0.6-3 the html validator
 plugin ist dead again.
 
 It worked with the version before (1.5.0.6-2?) - so the old bug
 propagated somehow?

It is not likely to be the case, since 1.5.0.6-2 did have the bug that
prevented it to work, and it was fixed in 1.5.0.6-3.

Mike


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



Bug#348680: No icons in open file dialog

2006-08-28 Thread Tomek Jarzynka
Is there any chance that I could try to workaround this bug,
i.e. how to check which icon theme GTK uses and perhaps create
some symlinks somewhere so GTK finds the icons?

-- 
tomasz k. jarzynka / 601 706 601 / tomee(a-t)kadu(d-o-t)net

Marijuana : smoke it on monday you'll be shooting up H on Friday.


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



Bug#369673: wesnoth-server: This bug hasn't been fixed

2006-08-28 Thread Isaac Clerencia
On Monday 28 August 2006 05:20, Cameron Horsburgh wrote:
 Package: wesnoth-server
 Version: 1.1.8-1
 Followup-For: Bug #369673


 I'm trying to upgrade to 1.1.9 but I still can't because of the missing
 lockfile.
It has been fixed in 1.1.9-1, you have version 1.1.8-1 installed.

I obviously can't fix version 1.1.8-1 in any way :)


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



Bug#384946: mail-notification: wrong launcher's location in Readme.Debian

2006-08-28 Thread Guilhem BONNEFILLE
Package: mail-notification
Version: 2.0.dfsg.1-3
Severity: minor


In the Readme.Debian, the launcher is located in (Gnome):
Applications - Preferences - Mail Notification.

But, on my Debian testing, the launcher appears in (Gnome):
Applications - Internet - Mail Notification.

Perhaps this wrong information confused some users.

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

Versions of packages mail-notification depends on:
ii  gconf2  2.14.0-4 GNOME configuration database syste
ii  gnome-icon-theme2.14.2-2 GNOME Desktop icon theme
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libatk1.0-0 1.12.1-1 The ATK accessibility toolkit
ii  libaudiofile0   0.2.6-6  Open-source version of SGI's audio
ii  libavahi-client30.6.12-1 Avahi client library
ii  libavahi-common30.6.12-1 Avahi common library
ii  libavahi-glib1  0.6.12-1 Avahi glib integration library
ii  libbonobo2-02.14.0-1 Bonobo CORBA interfaces library
ii  libbonoboui2-0  2.14.0-4 The Bonobo UI library
ii  libc6   2.3.6-15 GNU C Library: Shared libraries
ii  libcairo2   1.2.4-1  The Cairo 2D vector graphics libra
ii  libdbus-1-2 0.62-4   simple interprocess messaging syst
ii  libeel2-2   2.14.3-1 Eazel Extensions Library (for GNOM
ii  libesd0 0.2.36-3 Enlightened Sound Daemon - Shared 
ii  libfam0 2.7.0-10 Client library to control the FAM 
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgail-common  1.8.11-2 GNOME Accessibility Implementation
ii  libgail17   1.8.11-2 GNOME Accessibility Implementation
ii  libgconf2-4 2.14.0-4 GNOME configuration database syste
ii  libgcrypt11 1.2.2-3  LGPL Crypto library - runtime libr
ii  libglade2-0 1:2.6.0-2library to load .glade files at ru
ii  libglib2.0-02.10.3-3 The GLib library of C routines
ii  libgmime2.1 2.1.19-1 MIME library, unstable version
ii  libgnome-desktop-2  2.14.3-1 Utility library for loading .deskt
ii  libgnome-keyring0   0.4.9-1  GNOME keyring services library
ii  libgnome-menu2  2.14.3-1 an implementation of the freedeskt
ii  libgnome2-0 2.14.1-3 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0   2.14.0-2 A powerful object-oriented display
ii  libgnomeui-02.14.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0  2.14.2-1 GNOME virtual file-system (runtime
ii  libgnutls11 1.0.16-14+b1 GNU TLS library - runtime library
ii  libgpg-error0   1.2-1library for common error values an
ii  libgtk2.0-0 2.8.18-1 The GTK+ graphical user interface 
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  liborbit2   1:2.14.0-2   libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0   1.12.3-1+b1  Layout and rendering of internatio
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libpopt01.10-2   lib for parsing cmdline parameters
ii  libsasl22.1.19.dfsg1-0.2 Authentication abstraction library
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libstartup-notification 0.8-1library for program launch feedbac
ii  libtasn1-2  1:0.2.17-2   Manage ASN.1 structures (runtime)
ii  libx11-62:1.0.0-8X11 client-side library
ii  libxcursor1 1.1.5.2-5X cursor management library
ii  libxext61:1.0.0-4X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxi6  1:1.0.0-5X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxml2 2.6.26.dfsg-3GNOME XML library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  zlib1g  1:1.2.3-13   compression library - runtime

mail-notification recommends no packages.

-- no debconf information


Bug#376426: libnss-ldap: Can't login even as local user

2006-08-28 Thread Rik Theys

Hi,

I can confirm Stephen Gran's findings: login works when tls is disabled 
in /etc/libnss-ldap.conf.


--
Rik Theys


Disclaimer: http://www.kuleuven.be/cwis/email_disclaimer.htm



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



Bug#384334: jadetex: Suggested changes, NMU prepared

2006-08-28 Thread OHURA Makoto
  Hi.

From: Norbert Preining [EMAIL PROTECTED]
Subject: Bug#384334: jadetex: Suggested changes, NMU prepared
Date: Fri, 25 Aug 2006 10:17:44 +0200
 I updated the patch/NMU to include the following two suggestions from
 Frank:
   * move the ini files to /usr/share/texmf/tex/jadetex/config
 this is again for compliance with the TeX Policy.

   * extend the copyright notices on the Debian packaging part a bit
 Here I added you (with a probably because I don't know it for sure),
 and myself.

 Again attached is a diff between 3.13-6 and 3.13-6.2, an updated one.

 Best wishes and thanks for considering

  Sorry for tye inconvinience. And thanks for your patch and your
work.  I'll review a patch in a few days.  Please wait.

  Thanks.


  OHURA Makoto: [EMAIL PROTECTED](Debian Project)
[EMAIL PROTECTED](LILO/Netfort)
  GnuPG public key: http://www.netfort.gr.jp/~ohura/gpg.asc.txt
1024D/77DCE083
fingerprint: 54F6 D1B1 2EE1 81CD 65E3  A1D3 EEA2 EFA2 77DC E083
  http://www.netfort.gr.jp/~ohura/


pgppHLT3RcyOa.pgp
Description: PGP signature


Bug#384945: Acknowledgement (texlive system will not install)

2006-08-28 Thread Ross Boylan
I tried removing all the packages again, and reinstalling.  Still no
dice.  The message suggests I need a purge, so I tried purging.
Here's the log:
---
(Reading database ... 165488 files and directories currently installed.)
Removing dvipdfmx ...
/var/lib/dpkg/info/dvipdfmx.postrm: line 6: /usr/bin/mktexlsr: No such file or 
directory
dpkg: error processing dvipdfmx (--purge):
 subprocess post-removal script returned error exit status 127
Removing texlive-latex-extra ...
Running update-updmap. This may take some time... done.
Purging configuration files for texlive-latex-extra ...
dpkg: error processing preview-latex-style (--purge):
 Package is in a very bad inconsistent state - you should
 reinstall it before attempting a removal.
terminate called after throwing an instance of 'std::logic_error'
  what():  basic_string::_S_construct NULL not valid
Ouch!  Got SIGABRT, dying..
Aborted



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



Bug#238453: ddclient: cannot connect to members.dyndns.org:80 socket: IO::Socket::INET: Bad hostname 'members.dyndns.org'

2006-08-28 Thread Mourad De Clerck
 I am quite sure that the error you reported is actually a problem with 
 name resolution either on your system or with your provider at that
 time. 

 On this grounds I am closing this bug. In case you disagree and ddclient 
 is still not working for you, please drop me a note!


I still need to verify, but I believe this problem arises when ddclient
is used on ipup, and resolvconf is in active use.

I get this bug on some of my machines using DSL - ddclient basically
never updates on ipup, and I need to work around it. I notice that the
machines that don't have resolvconf installed don't have this issue.

ppp receives new nameservers, but resolv.conf isn't updated yet when
ddclient is activated. So the ordering of resolvconf or ddclient would
need to be adjusted.

I might be wrong though, like I said I still need to double check - I
won't have much time to look into this any time soon though.

-- M


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



Bug#384940: zope-ttwtype: uninstallable; zope-cmf1.4 not in sid

2006-08-28 Thread Andreas Tille

On Mon, 28 Aug 2006, Adeodato [UTF-8] Simó wrote:


Your package depends on zope-cmf1.4, but this package is no longer
available in unstable.


Yes.  That's why I also requested the removal of zope-ttwtype in

   http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=378712;msg=24

Kind regards

   Andreas.

--
http://fam-tille.de


Bug#384948: installation report

2006-08-28 Thread Myron Davis
Package: installation-reportsBoot method: CDImage version: etch beta 3 installerDate: 8/27/2006Machine: Dell 2950Processor: 2 Dual-Core 3.2GhzMemory: 8GBPartitions: df -Tl will do; the raw partition table is preferred
Output of lspci and lspci -n:Base System Installation Checklist:[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try itInitial boot worked:[O]Configure network HW:   [O]
Config network: [O]Detect CD:  [E] (see instance one)Load installer modules: [O]Detect hard drives: [O]Partition hard drives:  [O]Create file systems:[O]Mount partitions:   [O]
Install base system:[E] (see instance two)Install boot loader:[E] (see instance three)Reboot: [ ]1.Box has two CDROM drives, the second cdrom drive is a virtual SCSI drive, when detection for the cdrom the installer after it checks for the correct cdrom in the IDE drive it doesn't check the SCSI cdrom /dev/sr0.  Manually mounting the SCSI cdrom in /cdrom fixes this problem.
2.Errored out w/ debootstrap error unable to determine codename for release.Fixed by manually running: debootstrap --arch amd64 etch /target http://http.us.debian.org/debian
Then I proceeded to download other packages needed (e.g. kernel, bootloader etc)3. Complained that it would not run because the previous step was not done, but the previous step complained because it was unable to determine a codename for release.
basically I was unable to test this step.  Manually installed bootloader.


Bug#367095: closed by Reinhard Tartler [EMAIL PROTECTED] (Bug#367095: fixed in xine-lib 1.1.2-4)

2006-08-28 Thread Josselin Mouette
Le dimanche 27 août 2006 à 15:33 -0700, Debian Bug Tracking System a
écrit :
 This is an automatic notification regarding your Bug report
 #367095: libxine1: Please use the Debian ffmpeg version,
 which was filed against the libxine1 package.
 
 It has been closed by Reinhard Tartler [EMAIL PROTECTED].

Yum yum, this seriously rocks. Thanks for taking care of xine-lib, the
state of the package has vastly improved these days.
-- 
 .''`.   Josselin Mouette/\./\
: :' :   [EMAIL PROTECTED]
`. `'[EMAIL PROTECTED]
   `-  Debian GNU/Linux -- The power of freedom




Bug#384947: listen: GUI-improvements

2006-08-28 Thread Andreas Schmidt
Package: listen
Version: 0.4.3-1
Severity: wishlist

Just some suggestions that would make using Listen easier.

1) It would be nice if one could hide the middle pane, as it takes away
valuable screen space. 

2) In library view, it would be very helpful if one could adjust the 
size of the individual columns. 

3) It would be great if more info was available in library view. Perhaps
you could add more columns to chose from: Year/Date, Comment,
Bitrate/Quality would be the most obvious.

4) One can access a lot of info about a given audio file by using the 
Edit entry of the context menu in library view. However, there is no
way (at least none I've found) to display the location of a file.
It wouldn't make much sense to edit the path to the file, so one way
would be to rename the entry in the context menu to Properties,
display info about the file + $PATH/$FILENAME and access to the
Edit-menu there. One could also leave the Edit-entry alone and just add
a Copy location-entry to the menu. Perhaps the location of a file 
could pop up when one hovers with the mouse over the entry in library
view. Or, why not add just another column for it?

5) In the preferences, one can change the font for Lyrics and Wikipedia
however, these settings take no effect. 

6) Perhaps there might be a way to change how playlist entries are
displayed, based on whether or not library view is switched on.
Displaying the songinfo on 2 lines is acceptable if the library is also
shown, as there is little screen space available. However, when the 
library is hidden, it would be nice to have all info on just one line 
and make the font a bit bigger -- this would make life easier for 
visually challenged people like me. :-) Perhaps this behavior could be 
made optional, too. Perhaps it would also be possible to add font
preferences for all contexts, not just lyrics/wikipedia.

Thanks for your consideration -- and a great program!

-- 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.060820
Locale: LANG=en_US.ISO-8859-1, [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages listen depends on:
ii  gstreamer0.10-alsa   0.10.9-2GStreamer plugin for ALSA
ii  gstreamer0.10-plugins-base   0.10.9-2GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good   0.10.3-2GStreamer plugins from the good 
ii  libatk1.0-0  1.12.1-1The ATK accessibility toolkit
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libcairo21.2.4-1 The Cairo 2D vector graphics libra
ii  libfontconfig1   2.3.2-7 generic font configuration library
ii  libglib2.0-0 2.10.3-3The GLib library of C routines
ii  libgtk2.0-0  2.8.20-1The GTK+ graphical user interface 
ii  libpango1.0-01.12.3-2Layout and rendering of internatio
ii  libx11-6 2:1.0.0-8   X11 client-side library
ii  libxcursor1  1.1.7-3 X cursor management library
ii  libxext6 1:1.0.1-2   X11 miscellaneous extension librar
ii  libxfixes3   1:3.0.1.2-4 X11 miscellaneous 'fixes' extensio
ii  libxi6   1:1.0.1-3   X11 Input extension library
ii  libxinerama1 1:1.0.1-4.1 X11 Xinerama extension library
ii  libxrandr2   2:1.1.0.2-4 X11 RandR extension library
ii  libxrender1  1:0.9.0.2-4 X Rendering Extension client libra
ii  python   2.4.3-11An interactive high-level object-o
ii  python-central   0.5.5   register and build utility for Pyt
ii  python-gnome22.12.4-4Python bindings for the GNOME desk
ii  python-gnome2-extras 2.14.2-1Python bindings for the GNOME desk
ii  python-gst0.10   0.10.5-3generic media-playing framework (P
ii  python-gtk2  2.8.6-5 Python bindings for the GTK+ widge
ii  python-pymad 0.5.4-3.2   Python wrapper to the MPEG Audio D
ii  python-pyogg 1.3-1.1 A Python interface to the Ogg libr
ii  python-pysqlite2 2.3.2-1 python interface to SQLite 3
ii  python-pyvorbis  1.3-1.2 A Python interface to the Ogg Vorb
ii  python2.42.4.3-8 An interactive high-level object-o
ii  python2.4-dbus   0.62-4  simple interprocess messaging syst

Versions of packages listen recommends:
pn  gstreamer0.10-esd none (no description available)
ii  gstreamer0.10-x   0.10.9-2   GStreamer plugins for X11 and Pang
ii  serpentine0.7-3  An application for creating audio 

-- no debconf information


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



Bug#384934: Does not depend on Xen hypervisor as advertised in description

2006-08-28 Thread Bastian Blank
severity 384934 normal
tags 384934 pending

On Sun, Aug 27, 2006 at 06:20:10PM -0700, Josh Triplett wrote:
 The same problem exists with xen-linux-system-2.6.17-2-xen-k7.

Yes, it is known and waiting for something else.

Bastian

-- 
I have never understood the female capacity to avoid a direct answer to
any question.
-- Spock, This Side of Paradise, stardate 3417.3


signature.asc
Description: Digital signature


Bug#384951: drpython: Uninstalable on sid

2006-08-28 Thread Nelson A. de Oliveira
Package: drpython
Version: 161-3
Severity: grave
Justification: renders package unusable

Hi!

drpython is uninstalable on sid.
It depends on python (= 2.3) and python ( 2.4), while Python's
version on Debian is 2.4.x

Best regards,
Nelson

-- 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.18-rc4-mm3
Locale: LANG=pt_BR.UTF-8, LC_CTYPE=pt_BR.UTF-8 (charmap=UTF-8)


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



Bug#384949: Doesn't handle forgetfull (buggy) clients well

2006-08-28 Thread Goswin Brederlow
Package: rtorrent
Version: 0.6.1-1
Severity: normal

Hi,

some clients seem to have bugs in the queueing code and forget
requests made to them. In particular I see this with a BitComet client
in the Transfer list view:

452 [P: 2 F: 0]kKkKKK
496 [P: 2 F: 0]KK
503 [P: 2 F: 0]KKKKKK
508 [P: 2 F: 0]KK
645 [P: 2 F: 0]KKkkkkkKKK

The client is happily uploading at 20-50K/s to me but every now and
then it jumps a few chunks as you can see by the ks. This leaves
those blocks incomplete while it starts on more and more new blocks.

Rtorrent should notice that requests aren't replied to in the order
queued up and re-request the left out chunks.

MfG
Goswin

-- 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.8-frosties-2
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages rtorrent depends on:
ii  libc6 2.3.6-16   GNU C Library: Shared libraries
ii  libcomerr21.39-1 common error description library
ii  libcurl3  7.15.5-1   Multi-protocol file transfer libra
ii  libgcc1   1:4.1.1-5  GCC support library
ii  libidn11  0.6.5-1GNU libidn library, implementation
ii  libkrb53  1.4.3-8MIT Kerberos runtime libraries
ii  libncurses5   5.5-2  Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.16-3   type-safe Signal Framework for C++
ii  libssl0.9.8   0.9.8b-2   SSL shared libraries
ii  libstdc++64.1.1-5The GNU Standard C++ Library v3
ii  libtorrent9   0.10.1-1   a C++ BitTorrent library
ii  zlib1g1:1.2.3-13 compression library - runtime

rtorrent recommends no packages.

-- no debconf information


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



Bug#378667: HTML Validator dead (again)

2006-08-28 Thread Gal Gur-Arie
I have the same version on 2 different computers and it is working fine with Firefox 1.5.0.6-3.What version of the HTML validator are you using ? the latest is: 0.7.9.4 which works fine.
GalOn 8/28/06, Mike Hommey [EMAIL PROTECTED] wrote:
On Mon, Aug 28, 2006 at 07:24:36AM +0200, cybaer [EMAIL PROTECTED] wrote: With the new update of firefox to 1.5.dfsg+1.5.0.6-3 the html validator plugin ist dead again.
 It worked with the version before (1.5.0.6-2?) - so the old bug propagated somehow?It is not likely to be the case, since 1.5.0.6-2 did have the bug thatprevented it to work, and it was fixed in 
1.5.0.6-3.Mike--To unsubscribe, send mail to [EMAIL PROTECTED].


Bug#384323: Bug#384248: installation-report: Almost successful Etch installation with di-beta3

2006-08-28 Thread Christian Perrier
 How much of localechooser's finish-install script really needs to run at
 the very end? Could some/all/the problimatic bits be moved to a
 base-installer.d hook, where they would happen before console-cryillic
 is installed?


Interesting question. We currently have:

-install libfribidi0 for RTL languages. Can certainly be moved earlier

-install localization-config. Ditto, I guess

-configure the console. Better keep it at the end, after other
packages have been installed


On the topic of console-cyrillic configuration: I tested removing
completely the config by localechooser. This works. Indeed, when one
installs in a language that triggers the install of console-cyrillic,
that package is automatically configured and prompts for specific
settings during its installation with pkgsel. So, as Eugen suggested,
the code in localechooser's finish-install is useless and, even,
nasty, as it overwrites choices made by the user. We can definitely
remove it and I'll commit that change soon.




signature.asc
Description: Digital signature


Bug#384953: 'man debram': needless neologisms subramifications, misramifications, metaramification, etc.

2006-08-28 Thread A. Costa
Package: debram
Version: 0.6.5a
Severity: wishlist


A counted list of similar neologisms from 'man debram':

1  metaramification
1  misramifications
1  misramified
1  subramification
3  subramifications

...'ramus' is Latin for branch.  All those are just bigger words to
signify variations of tree and branch.

subramification is needless -- presumably it means sub-branch, but
ramification itself has meant that since at least 1913:

 2. A small branch or offshoot proceeding from a main stock or
channel; as, the ramifications of an artery, vein, or
nerve.
[1913 Webster]

There are several better words and word roots, (better meaning
shorter and plainer), e.g.:  branch, tree, root, index, category,
class, set, group, family, genus, system, etc.

Caveat:  hope it doesn't seem as though I don't appreciate the 'debram'
package, or its name.   Many fine utils are named after less usual
synonyms.  I'd suppose the good intention of the author was to use a
memorable English word, or portion of one, as the name of the util; yet
tree and all the obvious ones were already used... and 'ramify'
wasn't.  

The man page shows good intent by trying to consistently employ the
utility's word root to memorably describe what the util does.  With
common words that works well:

% whatis tree
tree (1)  - list contents of directories in a tree-like format.

...it should be avoided when the only way to emphasize the word root
is to weld on novel prefixes -- unless the task of the util was so new
and different that preexisting terms weren't adequate.

If it would help, I'd be willing to make a man page patch file
with some tentative rewordings.


PS: The 'debram' index itself is quite useful, I've found all sorts  of
good stuff with it.  Thanks for putting it out there.






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

Versions of packages debram depends on:
ii  debram-data  0.6.5a  debram's architecture-independent 
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  zlib1g   1:1.2.3-13  compression library - runtime

debram recommends no packages.

-- no debconf information


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



Bug#384847: deb-gview: [L10N] : .pot file in tarball

2006-08-28 Thread Neil Williams
I haven't removed the .pot file from the source package - by default the
autotools don't include it. However, I've fixed that upstream with a
small tweak and future releases will include
deb-gview-$version/po/deb-gview.pot

In the interim, the current .pot file has been added to the alioth
download page:
https://alioth.debian.org/download.php/1751/deb-gview.pot

I'll also add a README for translators.

HTH.

-- 

Neil Williams
=
http://www.data-freedom.org/
http://www.nosoftwarepatents.com/
http://www.linux.codehelp.co.uk/



signature.asc
Description: OpenPGP digital signature


Bug#384931: Should not depend on openssh-server

2006-08-28 Thread Julien Valroff
package ajaxterm
tags 384931 +pending
thanks

Hi,

I have changed this in SVN, and will be part of the next upload.
Thanks for your report.

Cheers,
Julien



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



Bug#384928: thunderbird: Please do something about the whole locale-reinstall-after-upgrade issue

2006-08-28 Thread Alexander Sack - Debian Bugmail
On Mon, Aug 28, 2006 at 02:13:02AM +0200, Andre Wendt wrote:
 Package: thunderbird
 Version: 1.5.0.5-1
 Severity: normal

This will be solved ... but not by thunderbird, but the locales
package itself. What issue are you referring to (your mail has not
hint on what issue you refer to)

 - Alexander

 p.s. please take care that the bug is listed as To: or CC: when 
  replying to this mail (e.g. /reply-all/). 
-- 
 GPG messages preferred.   |  .''`.  ** Debian GNU/Linux **
 Alexander Sack| : :' :  The  universal
 [EMAIL PROTECTED]   | `. `'  Operating System
 http://www.asoftsite.org  |   `-http://www.debian.org/


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



Bug#384950: oss-compat: fails to install

2006-08-28 Thread Mario 'BitKoenig' Holbe
Package: oss-compat
Version: 0.0.1
Severity: serious

Hello,

oss-compat fails to install on 2.4.27:

Setting up oss-compat (0.0.1) ...
modprobe: Can't locate module snd-seq-oss
dpkg: error processing oss-compat (--configure):
 subprocess post-installation script returned error exit status 255
Errors were encountered while processing:
 oss-compat

Package installation IMHO should not fail just because a module ist not
(yet?) present.


regards
   Mario
-- 
To err is human. To really foul things up requires a computer.


signature.asc
Description: Digital signature


Bug#384952: jspwiki: FTBFS: /jspwiki-2.2.33/build.xml:192: Unable to find a javac compiler

2006-08-28 Thread Andreas Jochens
Package: jspwiki
Version: 2.2.33-2
Severity: serious
Tags: patch

Hello,

when building 'jspwiki' in a clean 'unstable' chroot,
I get the following error:

BUILD FAILED
/jspwiki-2.2.33/build.xml:192: Unable to find a javac compiler;
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK

Total time: 1 second
make: *** [build] Error 1

The attached patch changes the Build-Depends to use 'java-gcj-compat-dev'.

Regards
Andreas Jochens

diff -urN ../tmp-orig/jspwiki-2.2.33/debian/control ./debian/control
--- ../tmp-orig/jspwiki-2.2.33/debian/control   2006-08-28 07:22:27.0 
+
+++ ./debian/control2006-08-28 07:22:22.0 +
@@ -2,7 +2,7 @@
 Section: web
 Priority: optional
 Maintainer: Kalle Kivimaa [EMAIL PROTECTED]
-Build-Depends-Indep: jikes | java2-compiler, ant, libservlet2.3-java, 
debhelper ( 4.1.16), wget, unzip, dpatch
+Build-Depends-Indep: java-gcj-compat-dev, ant, libservlet2.3-java, debhelper 
( 4.1.16), wget, unzip, dpatch
 Standards-Version: 3.6.1.0
 
 Package: jspwiki


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



Bug#383600: behaviour of update-initramfs -u has changed, only updates latest kernel initrd

2006-08-28 Thread Sven Luther
On Mon, Aug 28, 2006 at 12:59:53AM +0200, Michael Biebl wrote:
 severity 383600 serious
 thanks
 
 Sven Luther wrote:
  On Fri, Aug 18, 2006 at 07:03:52PM +0200, Michael Biebl wrote:
  Eduard Bloch wrote:
  #include hallo.h
  * Michael Biebl [Fri, Aug 18 2006, 01:07:34PM]:
  Eduard Bloch wrote:
  #include hallo.h
  * Michael Biebl [Fri, Aug 18 2006, 10:26:53AM]:
  I suggest to revert to the old behaviour and make -u update all
  installed kernels. Atm I have to specify each kernel separately vi -k 
  to
  update them all.
  Why should one update _all_ initramfs images when beeing interested in
  only single one? 
  Why should I be only interested in only a single one? If I install e.g.
  Because usualy it gets executed when you install a kernel-image package?
  Just grep for update-initramfs  in /var/lib/dpkg/info/*.postinst.
  I get uswsusp, cryptsetup, mdadm and udev on my machine.
  They all simply call update-initramfs -u.
  This means that security updates of these packages are not automatically
  applied to all installed kernels which is a major security issue imho.
  If you insist that update-initramfs -u only updates the latest kernel,
  you should file bug reports against all packages using update-initramfs -u.
  
 
 I'm raising the severity to serious, because as already outlined,
 packages that call update-initramfs -u in postinst (such as udev) won't
 update all installed initrds anymore. These means that security fixes of
 these packages aren't applied to all installed kernels anymore keeping a
 system potentially vulnerable (the latest kernel is not necessarily the
 default boot kernel!)
 I'm filing these bug against initramfs-tools itself, because you missed
 to inform other maintainers in advance, giving them time to change their
 postinst scripts, that you intend to change the default behaviour of
 update-initramfs -u.
 If you want to keep the current behaviour, you should file bug reports
 against all affected packages and add them as blocking bugs against this
 one.

Maks, Manoj, rest of the kernel team, ...

Would not the right solution to this be to have a system wide configuration
option managed by debconf or something, but eventually also in the
/etc/kernel-img.conf, which would allow to set the behaviour of this ?

It affects other packages too, like mkvmlinuz and maybe bootloader installer,
which are called after the ramdisk generators, and it is clear from this
thread that diverse people expect diverse behaviour on this.

It could even be done to handle the prefered choice kernel in a debconf dialog
also this way, in case multiple kernels are present, with a medium priority
question when a new choice is available or the default choice is removed, and
a low priority question in the other cases. At high priority it would default
to the last installed kernel, as is done right now. (but which has a flip-flop
undeterministic behaviour in case 2.6.17 and 2.6.16 are both installed and
upgraded since both are present in the archive right now).

Friendly,

Sven Luther


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



Bug#384957: libmatheval: FTBFS (amd64): libfl.a(libyywrap.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC

2006-08-28 Thread Andreas Jochens
Package: libmatheval
Version: 1.1.3-1
Severity: serious

When building 'libmatheval' on amd64/unstable, I get the following error:

/bin/sh ../libtool --tag=CC --mode=link x86_64-linux-gnu-gcc  -Wall -g -O2   -o 
libmatheval.la -rpath /usr/lib -version-info 1:0:0 parser.lo scanner.lo 
error.lo matheval.lo g77_interface.lo node.lo symbol_table.lo xmalloc.lo 
xmath.lo -lfl -lm 
x86_64-linux-gnu-gcc -shared  .libs/parser.o .libs/scanner.o .libs/error.o 
.libs/matheval.o .libs/g77_interface.o .libs/node.o .libs/symbol_table.o 
.libs/xmalloc.o .libs/xmath.o  -lfl -lm  -Wl,-soname -Wl,libmatheval.so.1 -o 
.libs/libmatheval.so.1.0.0
/usr/bin/ld: 
/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64/libfl.a(libyywrap.o): 
relocation R_X86_64_32 against `a local symbol' can not be used when making a 
shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64/libfl.a: could not read 
symbols: Bad value
collect2: ld returned 1 exit status
make[3]: *** [libmatheval.la] Error 1
make[3]: Leaving directory `/libmatheval-1.1.3/lib'

Regards
Andreas Jochens



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



Bug#384950: oss-compat: fails to install

2006-08-28 Thread Steve Langasek
severity 384950 important
thanks

On Mon, Aug 28, 2006 at 09:45:29AM +0200, Mario 'BitKoenig' Holbe wrote:
 Package: oss-compat
 Version: 0.0.1
 Severity: serious

 oss-compat fails to install on 2.4.27:

 Setting up oss-compat (0.0.1) ...
 modprobe: Can't locate module snd-seq-oss
 dpkg: error processing oss-compat (--configure):
  subprocess post-installation script returned error exit status 255
 Errors were encountered while processing:
  oss-compat

 Package installation IMHO should not fail just because a module ist not
 (yet?) present.

When a package isn't able to be configured due to a missing/broken facility
on the system, it is acceptable to fail in the postinst rather than complete
the installation and give the user the false impression that the package is
working correctly.

So this bug is at least not 'serious', though I'll let the maintainer decide
whether a further fix is warranted.

Cheers,
-- 
Steve Langasek   Give me a lever long enough and a Free OS
Debian Developer   to set it on, and I can move the world.
[EMAIL PROTECTED]   http://www.debian.org/


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



Bug#384955: Nokia E70 as PC suite destabilises kernel

2006-08-28 Thread Sam Freed
Package: kernel
Version: linux-image-2.6.17-2-686 2.6.17-7 x debian unstable
Severity: normal

Hardware Environment: Toshiba Portege R100, Nokia E70

When connecting Nokia E70 as PC suite, kernel 
destabilises to the point of crashing randomly. When connecting the USB 
cable, the E70 gives you a menu of 3 options: PC Suite,Data 
Transfer, and IP passthrouh. The Data transfer mode makes the 
(mini-SD) mem card in the phone look like a USB_storage - that works 
99%. But if you ask for PC suite, which AFAIK will establish some sort 
of serial channell to speak to the phone for syncing etc, All hell 
breaks loose. Never tried the IP passthrough option.

I attach the kernel log. The Oops occured in the Gnome-ternimal 
process, so probably is just an effect, but what do I know, never 
debugged kernels.

Here is the log:
Aug 28 10:19:44 r100 kernel: klogd 1.4.1#18, log source = /proc/kmsg started.
Aug 28 10:19:44 r100 kernel: Linux version 2.6.17-2-686 (Debian 2.6.17-7) 
([EMAIL PROTECTED]) (gcc version 4.1.2 20060814 (prerelease) (Debian 4.1.1-11)) 
#1 SMP Thu Aug 24 23:24:19 UTC 2006
Aug 28 10:19:44 r100 kernel: BIOS-provided physical RAM map:
Aug 28 10:19:44 r100 kernel:  BIOS-e820:  - 0009fc00 
(usable)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 0009fc00 - 000a 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 000e - 000eee00 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 000eee00 - 000ef000 
(ACPI NVS)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 000ef000 - 0010 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 0010 - 1ffca000 
(usable)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 1ffca000 - 1ffd 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 1ffd - 1ffe 
(ACPI data)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: 1ffe - 2000 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: feda - fedc 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: ffb8 - ffc0 
(reserved)
Aug 28 10:19:44 r100 kernel:  BIOS-e820: fff0 - 0001 
(reserved)
Aug 28 10:19:44 r100 kernel: 0MB HIGHMEM available.
Aug 28 10:19:44 r100 kernel: 511MB LOWMEM available.
Aug 28 10:19:44 r100 kernel: On node 0 totalpages: 131018
Aug 28 10:19:44 r100 kernel:   DMA zone: 4096 pages, LIFO batch:0
Aug 28 10:19:44 r100 kernel:   Normal zone: 126922 pages, LIFO batch:31
Aug 28 10:19:44 r100 kernel: DMI 2.3 present.
Aug 28 10:19:44 r100 kernel: ACPI: RSDP (v000 TOSHIB
) @ 0x000f01e0
Aug 28 10:19:44 r100 kernel: ACPI: RSDT (v001 TOSHIB 750  0x00970814 TASM 
0x0401) @ 0x1ffd
Aug 28 10:19:44 r100 kernel: ACPI: FADT (v002 TOSHIB 750  0x20030101 TASM 
0x0401) @ 0x1ffd005c
Aug 28 10:19:44 r100 kernel: ACPI: SSDT (v001 TOSHIB R100 0x20030220 MSFT 
0x010e) @ 0x1ffd537a
Aug 28 10:19:44 r100 kernel: ACPI: DBGP (v001 TOSHIB 750  0x00970814 TASM 
0x0401) @ 0x1ffd00e0
Aug 28 10:19:44 r100 kernel: ACPI: DSDT (v001 TOSHIB R100 0x20030313 MSFT 
0x010e) @ 0x
Aug 28 10:19:44 r100 kernel: ACPI: PM-Timer IO Port: 0xd808
Aug 28 10:19:44 r100 kernel: Allocating PCI resources starting at 3000 
(gap: 2000:deda)
Aug 28 10:19:44 r100 kernel: Built 1 zonelists
Aug 28 10:19:44 r100 kernel: Kernel command line: root=/dev/hda2 ro 
pci=assign-busses 
Aug 28 10:19:44 r100 kernel: Local APIC disabled by BIOS -- you can enable it 
with lapic
Aug 28 10:19:44 r100 kernel: mapped APIC to d000 (0140a000)
Aug 28 10:19:44 r100 kernel: Enabling fast FPU save and restore... done.
Aug 28 10:19:44 r100 kernel: Enabling unmasked SIMD FPU exception support... 
done.
Aug 28 10:19:44 r100 kernel: Initializing CPU#0
Aug 28 10:19:44 r100 kernel: PID hash table entries: 2048 (order: 11, 8192 
bytes)
Aug 28 10:19:44 r100 kernel: Detected 897.853 MHz processor.
Aug 28 10:19:44 r100 kernel: Using pmtmr for high-res timesource
Aug 28 10:19:44 r100 kernel: Console: colour VGA+ 80x25
Aug 28 10:19:44 r100 kernel: Dentry cache hash table entries: 65536 (order: 6, 
262144 bytes)
Aug 28 10:19:44 r100 kernel: Inode-cache hash table entries: 32768 (order: 5, 
131072 bytes)
Aug 28 10:19:44 r100 kernel: Memory: 511636k/524072k available (1482k kernel 
code, 11824k reserved, 544k data, 196k init, 0k highmem)
Aug 28 10:19:44 r100 kernel: Checking if this processor honours the WP bit even 
in supervisor mode... Ok.
Aug 28 10:19:44 r100 kernel: Calibrating delay using timer specific routine.. 
1797.49 BogoMIPS (lpj=3594981)
Aug 28 10:19:44 r100 kernel: Security Framework v1.0.0 initialized
Aug 28 10:19:44 r100 kernel: SELinux:  Disabled at boot.
Aug 28 10:19:44 r100 kernel: Capability LSM initialized
Aug 28 10:19:44 r100 kernel: Mount-cache hash table entries: 512
Aug 28 10:19:44 r100 kernel: CPU: After generic identify, caps: a7e9f9bf 
  

Bug#384736: freemind: crashes on startup

2006-08-28 Thread Ludvig Omholt
On Sun, Aug 27, 2006 at 07:04:11PM +0200, Eric Lavarde - Debian wrote:
 Hi Ludvig,
 
 Ludvig Omholt wrote:
 Hmm. Yes, there seems to be some problem with Java and X somehow. When
 I run freemind in an i386-chroot with Java 1.4.2_12 it crashes with a
 SIGFPE:
 Eeh, are you trying to tell me that you have an amd64 or ia64 platform? 
 (which would explain why I'm not able to reproduce the bug, despite 
 installing java 1.5.0-08-1)

Yes, it's an amd64.

 Default (System) Look  Feel: javax.swing.plaf.metal.MetalLookAndFeel
 Warning: the font you have set as standard - null - is not available.
 #
 # An unexpected error has been detected by HotSpot Virtual Machine:
 #
 #  SIGFPE (0x8) at pc=0xeb29b354, pid=7468, tid=4158318272
 #
 # Java VM: Java HotSpot(TM) Client VM (1.4.2_12-b03 mixed mode)
 # Problematic frame:
 # C  [libawt.so+0xe0354]  Java_sun_awt_motif_MFramePeer_pGetIconSize+0x1d8
 #
 # An error report file with more information is saved as hs_err_pid7468.log
 #
 # If you would like to submit a bug report, please visit:
 #   http://java.sun.com/webapps/bugreport/crash.jsp
 #
 /usr/bin/freemind: line 118:  7468 Aborted ${JAVACMD} 
 freemind.main.FreeMind $@
 Mmh, again a GetIconSize error, interesting... But, there, it sounds 
 more like a Java problem.
 
 Anyway, tell me about amd64/ia64, and we'll see from there.
 
 Last thought, could you file a bug for sun-java5-jre (for fake), and cut 
 and paste the dependencies listed by reportbug?

Versions of packages sun-java5-jre depends on:
ii  debconf [debconf-2.0]1.5.3   Debian configuration management sy
ii  ia32-sun-java5-bin   1.5.0-08-1  Sun Java(TM) Runtime Environment (
ii  java-common  0.25Base of all Java packages
ii  locales  2.3.6.ds1-4 GNU C Library: National Language (
ii  sun-java5-bin1.5.0-08-1  Sun Java(TM) Runtime Environment (

Versions of packages sun-java5-jre recommends:
ii  gsfonts-x11   0.20   Make Ghostscript fonts available t
ii  java-common   0.25   Base of all Java packages


And the same for sun-java5-bin:

Versions of packages sun-java5-bin depends on:
ii  debconf [debconf-2.0]1.5.3   Debian configuration management sy
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  sun-java5-jre1.5.0-08-1  Sun Java(TM) Runtime Environment (
ii  unixodbc 2.2.11-13   ODBC tools libraries

Versions of packages sun-java5-bin recommends:
ii  libasound21.0.11-7   ALSA library
ii  libx11-6  2:1.0.0-8  X11 client-side library
ii  libxext6  1:1.0.0-4  X11 miscellaneous extension librar
ii  libxi61:1.0.1-3  X11 Input extension library
ii  libxp61:1.0.0.xsf1-1 X Printing Extension (Xprint) clie
ii  libxt61:1.0.0-5  X11 toolkit intrinsics library
ii  libxtst6  1:1.0.1-5  X11 Testing -- Resource extension


The issue seems to be with X and Java (on amd64?) somehow. I tried
running freemind on the same computer but X-forwarded to another
computer. That worked! So the problem is most definitely not with
freemind but with Java/xorg. Do you think I should file the bug for
sun-java5-bin?

/ludde


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



Bug#384956: zimpl is currently uninstallable in testing

2006-08-28 Thread Nis Martensen
Package: zimpl
Severity: grave
Justification: renders package unusable

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

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

The following packages have unmet dependencies:
  zimpl: Depends: libgmp3c2 but it is not going to be installed
E: Broken packages


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


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



Bug#384944: xserver-xorg: Can't enable EXA

2006-08-28 Thread Michel Dänzer
On Mon, 2006-08-28 at 08:18 +0200, Mike Hommey wrote:
 Package: xserver-xorg
 Version: 1:7.0.23
 Severity: normal
 
 I totally fail to enable EXA. I've tried
 Option AccelMethod EXA,
 Option AccelMethod exa,
 with or without AGP stuff,
 with or without the composite extension,
 
 I *always* get the XAA method loaded, as stated by the Xorg.0.log.

[...]

 Versions of packages xserver-xorg depends on:
 ii  debconf  1.5.3   Debian configuration management 
 sy
 ii  x11-common   1:7.0.23X Window System (X.Org) 
 infrastruc
 ii  xbase-clients1:7.1.ds-3  miscellaneous X clients
 ii  xkb-data 0.8-7   X Keyboard Extension (XKB) 
 configu
 ii  xserver-xorg-core2:1.0.2-10  X.Org X server -- core server
 ii  xserver-xorg-input-evdev [xs 1:1.1.2-1   X.Org X server -- evdev input 
 driv
 ii  xserver-xorg-input-kbd [xser 1:1.0.1.3-2 X.Org X server -- keyboard input 
 d
 ii  xserver-xorg-input-mouse [xs 1:1.0.4-3   X.Org X server -- mouse input 
 driv
 ii  xserver-xorg-video-ati [xser 1:6.6.0-1   X.Org X server -- ATI display 
 driv

Where did you get this version of xserver-xorg-video-ati from? Looks
like it was never in the archive. There's an upstream incompatibility
between the 6.6.x releases (intended for xorg-server 1.1 from X.Org 7.1)
and the version of EXA in xorg-server 1.0, so EXA was probably disabled
at build time. It should be enabled in the versions of
xserver-xorg-video-ati currently in testing, sid and experimental
though.


-- 
Earthling Michel Dänzer   |  http://tungstengraphics.com
Libre software enthusiast |  Debian, X and DRI developer



Bug#384797: ksh stops issuing error messages for bad commands

2006-08-28 Thread Oliver Kiddle
--- Norman Ramsey [EMAIL PROTECTED] wrote:

 David Korn reports that this bug is fixed upstream in the 'ksh 93r+'
 version on the web.  A Debian update would be lovely.

That's an alpha release though isn't it? There's a few other fixes in
that but probably at least as many new bugs. I was planning to wait
till 93s. Have you tried the alpha? If this bug is irritating you, I
could be persuaded to package it. (I packaged an earlier alpha when
there was a FTBFS on amd64.)

Oliver



___ 
To help you stay safe and secure online, we've developed the all new Yahoo! 
Security Centre. http://uk.security.yahoo.com


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



Bug#384954: kicker: systray icons inconsistently aligned on normal panel size

2006-08-28 Thread Ratiu Petru
Package: kicker
Version: 4:3.5.4-2
Severity: minor


When kicker starts (on normal size), there is only one row of icons in
the systray. However, if I set the panel size on large to force
two-row systray, and then back on normal, the icons remain on two
rows.

This state proves unstable, however, because whenever an application
adds or removes an icon from the systray, it jumps back to one row.

It's not a real bug (it only annoys me, because the one-row systray
forces my current vertical panel a bit higher than my screen, adding
scroll arrows), but I believe a more consistent behaviour would be
appropriate.

I admit I haven't tested if it behaves the same on horizontal panels,
but I will and reply if it doesn't.


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

Versions of packages kicker depends on:
ii  kdebase-data4:3.5.4-2shared data files for the KDE base
ii  kdelibs4c2a 4:3.5.4-3core libraries and binaries for al
ii  libacl1 2.2.41-1 Access control list shared library
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libattr12.4.32-1 Extended attribute shared library
ii  libaudio2   1.8-2The Network Audio System (NAS). (s
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libfontconfig1  2.3.2-7  generic font configuration library
ii  libfreetype62.2.1-2  FreeType 2 font engine, shared lib
ii  libgamin0 [libfam0] 0.1.7-4  Client library for the gamin file 
ii  libgcc1 1:4.1.1-11   GCC support library
ii  libice6 1:1.0.0-3X11 Inter-Client Exchange library
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libkonq44:3.5.4-2core libraries for Konqueror
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt   3:3.3.6-4Qt GUI Library (Threaded runtime v
ii  libsm6  1:1.0.0-4X11 Session Management library
ii  libstdc++6  4.1.1-11 The GNU Standard C++ Library v3
ii  libx11-62:1.0.0-8X11 client-side library
ii  libxau6 1:1.0.0-4X11 authorisation library
ii  libxcomposite1  1:0.2.2.2-3  X11 Composite extension library
ii  libxcursor1 1.1.7-3  X cursor management library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxfixes3  1:3.0.1.2-4  X11 miscellaneous 'fixes' extensio
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxi6  1:1.0.1-3X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-4  X Rendering Extension client libra
ii  libxt6  1:1.0.0-5X11 toolkit intrinsics library
ii  libxtst61:1.0.1-5X11 Testing -- Resource extension 
ii  zlib1g  1:1.2.3-13   compression library - runtime

kicker recommends no packages.

-- no debconf information


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



Bug#373170: setools: FTBFS (amd64): libfl.a(libyywrap.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC

2006-08-28 Thread Andreas Jochens
severity 373170 serious
thanks

Hello,

since the upload of the new flex version 2.4-1 this bug can be 
reproduced by trying to build setools in a clean unstable/amd64
chroot.

The problem is that there is no shared libfl library. There is only
a static libfl.a which has not been compiled with -fPIC and therefore
cannot be used to make shared libraries on amd64.

Regards
Andreas Jochens


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



Bug#384958: tex4ht: some grouping issues with oolatex math

2006-08-28 Thread Tobias Schlemmer
Package: tex4ht
Version: 20060619-1
Severity: normal



Hi,

mk4ht oolatex test.tex  seems to produce incorrect output.
At least my oowriter (2.0.3) does not like the double indices $x_{i_j}$ without 
further grouping.
In oomath input syntax it produces x_i_j, which should be x_{i_j}.

A similar effect produces
\begin{eqnarray}a=b\end{eqnarray}, where the = expects two operators, but
a # = # b is produced. Both '{}={}' and '=' (oowriter syntax) produce 
useful output.

Example:

\documentclass{article}

\begin{document}

\[\bar\rho_{s_i} = \sum_{j\neq i}\rho_{s_j}(r_{ij})\]
\begin{eqnarray}
  \label{eq:1}
  \bar\rho_{s_i} = \sum_{j\neq i}\rho_{s_j}(r_{ij})
\end{eqnarray}

\end{document}

Note: xtpipes won't accept the eqnarray. So, please try it with commenting it 
out.
Note: I didn't check against the newer versions of tex4ht mentioned in 
Bug#384578.

-- System Information:
Debian Release: testing/unstable
  APT prefers dapper-updates
  APT policy: (500, 'dapper-updates'), (500, 'dapper-security'), (500, 
'dapper-proposed'), (500, 'dapper-backports'), (500, 'dapper'), (500, 
'breezy'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-amd64-generic
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages tex4ht depends on:
ii  libc6 2.3.6-15   GNU C Library: Shared libraries
ii  libkpathsea4  3.0-17 path search library for teTeX (run
ii  tetex-bin 3.0-17 The teTeX binary files
ii  tex4ht-common 20060619-1 LaTeX and TeX for Hypertext (HTML)

tex4ht recommends no packages.

-- no debconf information


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



Bug#375963: fvwm: CTRL+ALT+Fi doesn't change to other vti

2006-08-28 Thread Antoon Pardon

The problem IMO is realy with fvwm because:

1) I have no problem changing to an other vti
   with CTRL+ALT+Fi when I am at the xdm login screen. 
   or I am working under gnome

2) fvwm is launched rather late into the .xsession
   So there is a window of opportunity that I can
   try CTRL+ALT+Fi, without fvwm running. At that
   moment I have no problem switching to an other
   vti. But once fvwm is running it no longer works.

-- 
Antoon Pardon


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



Bug#384962: locale unusable with current firefox

2006-08-28 Thread Bastian Venthur
Package: firefox-locale-de
Version: 1.5.0.4-1
Severity: grave

The German locale is disabled in firefox for several weeks now. The package 
itself is pretty useless since the locale packages updates are not in sync with 
the firefox 
updates. I don't really understand why the firefox maintainers dont't maintain 
the locales as well. This would be more consequent and should keep the locales 
in sync with 
firefox.


Cheers,

Bastian


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

Versions of packages firefox-locale-de depends on:
ii  firefox   1.5.dfsg+1.5.0.6-3 lightweight web browser based on M

firefox-locale-de recommends no packages.

-- no debconf information


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



Bug#382391: live-package: /etc/X11/xorg.conf contains wrong BusID

2006-08-28 Thread Daniel Baumann
tags 382391 +pending

Hi,

it's a bug in the xorg maintainer scripts. However, with the upload of
7.1, it's fixed.

Regards,
Daniel

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


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



Bug#384963: gausssum: new version (1.0.5)

2006-08-28 Thread LI Daobing
Package: gausssum
Version: 1.0.4-1
Severity: normal


as the title

check it at [1]
[1] http://sourceforge.net/projects/gausssum/

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

Versions of packages gausssum depends on:
hi  gnuplot   4.0.0-3A command-line driven interactive 
hi  python2.4.3-11   An interactive high-level object-o
hi  python-central0.5.5  register and build utility for Pyt
hi  python-tk 2.4.3-3Tkinter - Writing Tk applications 

gausssum recommends no packages.

-- no debconf information


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



Bug#384960: www.ru.debian.org ip address changed

2006-08-28 Thread Max Kosmach
Package: mirrors

Please change IP address of www.ru.debian.org from 213.171.53.130 to
82.179.191.68

Our ISP changed our address space.

PS. You can check availability of debian mirror at 82.179.191.68 via
different address www.debian.org.ru


-- 
With MBR
Max
CCSA/CCSE


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



Bug#384959: pop-before-smtp: Regexp for courier-pop3 not working

2006-08-28 Thread Gregor Hermens
Package: pop-before-smtp
Version: 1.41-1
Severity: important
Tags: patch

Hi,

after upgrading pop-before-smtp to 1.41-1 only login per imap was recognized.

I added 'courierpop3' to the regexp like this:

# For Courier-POP3 and Courier-IMAP:
$pat = '^[LOGTIME] (?:\[|\S+ 
)(?:pop3|courierpop3|imap|couriertcp)(?:d|d-ssl|login)\]?: ' .
'LOGIN, user=\S+, ip=\[[:f]*(\d+\.\d+\.\d+\.\d+)\]';
$out_pat = '^[LOGTIME] (?:\[|\S+ 
)(?:pop3|courierpop3|imap|couriertcp)(?:d|d-ssl|login)\]?: ' .
'(?:LOGOUT|DISCONNECTED), user=\S+, ip=\[[:f]*(\d+\.\d+\.\d+\.\d+)\]';

Now everything works just fine again...

Greetings,
Gregor Hermens

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

Versions of packages pop-before-smtp depends on:
ii  libnet-netmask-perl   1.9012-2   parse, manipulate and lookup IP ne
ii  libtimedate-perl  1.1600-5   Time and date functions for Perl
ii  netbase   4.25   Basic TCP/IP networking system
ii  perl  5.8.8-6.1  Larry Wall's Practical Extraction 
ii  postfix [mail-transport-agent 2.2.10-2   A high-performance mail transport 

pop-before-smtp recommends no packages.

Installed courier-* packages:
ii  courier-authdaemon 0.58-3.1   Courier authentication daemon
ii  courier-authlib0.58-3.1   Courier authentication library
ii  courier-authlib-mysql  0.58-3.1   MySQL support for the Courier 
authentication
ii  courier-authlib-userdb 0.58-3.1   userdb support for the Courier 
authenticatio
rc  courier-authmysql  0.47-13Courier Mail Server - MySQL 
authentication
ii  courier-base   0.53.2-3   Courier Mail Server - Base system
ii  courier-imap   4.1.1-3Courier Mail Server - IMAP server
ii  courier-imap-ssl   4.1.1-3Courier Mail Server - IMAP over SSL
ii  courier-pop0.53.2-3   Courier Mail Server - POP3 server
ii  courier-pop-ssl0.53.2-3   Courier Mail Server - POP3 over SSL
ii  courier-ssl0.53.2-3   Courier Mail Server - SSL/TLS Support

-- no debconf information


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



Bug#384903: texmacs: ispell dies on 8-bit chars

2006-08-28 Thread René van Bevern
Teemu Ikonen [EMAIL PROTECTED] writes:

tags 384903 moreinfo
thanks

Hello,

 Writing an Angstrom sign (Å) to a text in TeXmacs and trying to
 spellcheck with ispell causes the Å to be detected as a spelling
 error. After pressing any of the Accept / Replace / Insert options, I
 get an error: ispell does not respond.

To this point this is a known upstream bug that is caused because the
communication between TeXmacs and ispell are out of sync [1] and I can
reproduce this, but:

 If I start texmacs in the command line, this error message appears:
 TeXmacs] ispell error: Word '�' contains illegal characters

 Other non-ascii characters like umlauts show this same behaviour.

This is invisible to me. I tried it with the document language set to
German, French and English and ispell reads my umlauted and otherwise
non-ASCII words just fine (up to the point where it fails for the
above mentioned bug)

What is your document language set to? How is ispell called? (see the
console messages)

René

Footnotes: 
[1]  http://savannah.gnu.org/bugs/?func=detailitemitem_id=15393

-- 
René van Bevern [EMAIL PROTECTED]
http://progn.org  http://www.debian.org  http://www.pro-linux.de


pgpfz0XeEa3wV.pgp
Description: PGP signature


Bug#384961: glimpse: FTBFS (amd64): libfl.a(libyywrap.o): relocation R_X86_64_32 against `a local symbol' can not be used when making a shared object; recompile with -fPIC

2006-08-28 Thread Andreas Jochens
Package: glimpse
Version: 4.18.0-6
Severity: serious

When building 'glimpse' on amd64/unstable, I get the following error:

gcc -O3 -fomit-frame-pointer  -fPIC -DSHARED_OBJECT -c lex.yy.c
gcc  -shared -o htuml2txt.so lex.yy.o -lfl
/usr/bin/ld: 
/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64/libfl.a(libyywrap.o): 
relocation R_X86_64_32 against `a local symbol' can not be used when making a 
shared object; recompile with -fPIC
/usr/lib/gcc/x86_64-linux-gnu/4.1.2/../../../../lib64/libfl.a: could not read 
symbols: Bad value
collect2: ld returned 1 exit status
make[2]: *** [htuml2txt.so] Error 1
make[2]: Leaving directory `/glimpse-4.18.0/dynfilters'

Regards
Andreas Jochens


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



Bug#384722: /etc/nsswitch.conf: references the wrong package for glibc info documentation

2006-08-28 Thread Andreas Beckmann
Santiago Vila wrote:

 Hmm, do you know when and why did they change the package name?

quite recently:

glibc-doc-reference (2.3.6-1) unstable; urgency=low



  * Backport from experimental (thanks Denis):


- For licensing reasons, the GNU C Library Reference Manual cannot
  be distributed in Debian and has to be shipped in the non-free
  section.


 -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 15 Aug 2006 20:51:45 +0200



glibc (2.3.6.ds1-1) unstable; urgency=low
...
- Remove the GNU Libc Reference manual from glibc-doc because it is
  not DFSG-free. (Closes: #181494)
...
 -- Aurelien Jarno [EMAIL PROTECTED]  Tue, 15 Aug 2006 23:01:43 +0200

Will /etc/nsswitch.conf be updated by the maintainer scripts or is it
installed only once during system installation?


Andreas


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



Bug#384943: start/stop zoneserver

2006-08-28 Thread Kai Hendry
Thank you for the report. I don't use the zoneserver feature myself, so
this is difficult for me to test.

The /etc/init.d/zoneserver is a Debian addition and I've being doing a
poor job maintaining it. It's also a little complex as it is supposed to
handle multiple separate servers and their configurations.

I've since prepared a package with your patch:
http://hendry.iki.fi/debian/unstable/maradns_1.2.12.02-2_i386.changes

¿Could you please test it?

Best wishes!

On 2006-08-28T08:09+0200 Boris Dorès wrote:
 Package: maradns
 Version: 1.2.12.02-1
 Tags: patch
 
   Hi everyone,
 
   I think I found three bugs related to the init.d script of the zoneserver of
 maradns package :
 
 1) zoneserver doesn't start if there are more than one configuration
file mentionned in /etc/default/maradns ($SERVERS is used on the
command line instead of $rcfile, which zoneserver doesn't
understand).
 
 2) zoneserver isn't started unless zone_transfer_acl is defined in the
configuration file, even if it is (only) used to serve DNS records
over TCP (with the tcp_convert_server option).
 
 3) when zoneserver is stopped with /etc/init.d/zoneserver stop, only
the parent process of each server is killed : children processes keep
running in the background and must be killed manually.
 
 
 
   For 1) and 2), here is a patch proposal :
 
 --- /etc/init.d/zoneserver  2006-08-28 07:42:00.094624092 +0200
 +++ /etc/init.d/zoneserver2 2006-08-28 05:57:15.210295564 +0200
 @@ -33,11 +33,11 @@
start)
 echo -n Starting $DESC: 
 for rcfile in $SERVERS ; do
 -   if grep -q -i ^zone_transfer_acl $rcfile; then
 +   if grep -q -i ^\(zone_transfer_acl\|tcp_convert_server\) 
 $rcfile; then
 SERVERNAME=`echo $rcfile | sed 's/\//_/g;s/^_*//;' | awk -F. 
 '{print $NF}'`
 SERVERNAME=zoneserver.$SERVERNAME
 start-stop-daemon --start -m --pidfile 
 /var/run/$SERVERNAME.pid \
 -   --exec $DAEMON -- -f $SERVERS /dev/null 21 | logger -p 
 daemon.notice -t $SERVERNAME 2/dev/null 
 +   --exec $DAEMON -- -f $rcfile /dev/null 21 | logger -p 
 daemon.notice -t $SERVERNAME 2/dev/null 
 else
 echo No zone ACL's configured for $rcfile -- not starting 
 zoneserver for it.
 fi
 @@ -47,7 +47,7 @@
stop)
 echo -n Stopping $DESC: 
 for rcfile in $SERVERS ; do
 -   if grep -q -i ^zone_transfer_acl $rcfile; then
 +   if grep -q -i ^\(zone_transfer_acl\|tcp_convert_server\) 
 $rcfile; then
 SERVERNAME=`echo $rcfile | sed 's/\//_/g;s/^_*//;' | awk -F. 
 '{print $NF}'`
 SERVERNAME=zoneserver.$SERVERNAME
 start-stop-daemon --stop -m --quiet --pidfile 
 /var/run/$SERVERNAME.pid \
 
 
 
   As for 3), I guess it's more like an upstream issue.
 
   Thanks.
 
 -- 
 Boris Dores
 



Bug#384966: Different kernel on AMD netinst image - 2.5.17 boots from CD, but 2.6.16 was installed - broken networking after reboot

2006-08-28 Thread George Chavdarov
Package: installation-reportsBoot method: CDImage version: netinst CD image 
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.isodownloaded 
on 28.08.2006Machine: Supermicro 6015P-8RMotherboard: X7DBP-8NIC: Intel 
82563EBProcessor: 2xIntel 5150Memory: 4 GB FB-RAMHDD: 2x73 GB Fujitsu 
SCSIRAID: Adaptec 2020ZCR RAID-1Base System Installation Checklist:

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

Initial boot worked:[O]
Configure network HW:   [O]
Config network: [O]
Detect CD:  [O]
Load installer modules: [O]
Detect hard drives: [O]
Partition hard drives:  [O] Manual partition
Create file systems:[O]
Mount partitions:   [O]
Install base system:[O]
Install boot loader:[O]
Reboot: [O]

Comments/Problems:When booting from CD it loads linux-image 2.6.17-2, but 
installs linux-image 2.6.16-2. This brokes networking after reboot. Die to 
unsupported network hardware.On board we have 2 NIC on INTEL 82563EB wich 
are not supported by e1000 driver in 2.6.16-2.All Intel based 51xx 
Supermicro X7xxx motherboards will have such problems.Best regards,
George Chavdarov 




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



Bug#384965: RFP: gmailsender -- a mono based mail sending application.

2006-08-28 Thread Nolius B
Package: wnpp

Severity: wishlist

Please can you package this software:

gmailsender is a C#/GTK# based mail sending application available from

http://gmailsender.sourceforge.net/it's an easy mail client



You can Download the last source tar.gz here:

http://sourceforge.net/project/showfiles.php?group_id=146093package_id=160821




Thank you :-)


Bug#384970: revelation: Non-installable on Etch (Testing)

2006-08-28 Thread Jerome Warnier
Package: revelation
Version: 0.4.7-3.1
Severity: wishlist

Due to the Python 2.4 transition not being complete in Testing,
revelation is not installable.

The following packages have unmet dependencies:
  revelation: Depends: python (= 2.4) but 2.3.5-11 is to be installed
  E: Broken packages

I just wanted to let you know (hence the severity), but don't really care 
myself.
Hope it helps.

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


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



Bug#384969: trac: Trac in experimental is broken/uninstallable since python transition

2006-08-28 Thread Mourad De Clerck
Package: trac
Version: 0.9.99+0.10svn20060710-1
Severity: minor

Hi, until recently I was a happy user of the trac in experimental, but it 
broke of course when the python transition happened. I know experimental is
_supposed_ to break, but I just wanted to mention it anyway. ;-)

Thanks,

-- M


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


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



Bug#356064: libapache2-mod-auth-mysql: apache2 segmentation fault with Auth_MySQL_Encryption_Types MySQL

2006-08-28 Thread Robbert Kouprie

Hi,

On Mon, 28 Aug 2006, Matthew Palmer wrote:


Can you get a symbolified backtrace to show exactly where it's segfaulting?
I know m-a-mysql doesn't ship with a debugging symbol table, but a rebuild
should fix that.


I tried building the deb src, using the command 'apt-get -b source 
libapache2-mod-auth-mysql'. However, this seems to fail because of 
conflicting build deps: apache-dev and apache2-threaded-dev.


How do I get around this?

Also, how do I specify that I want to build with a debugging symbol 
table?


Note that there's been some ABI issues with libmysqlclient15 recently -- 
I'm not sure what the effect actually is, but it might be worth just 
making sure that you're running the very, very latest libmysqlclient15.


I have verified that the problem exists in libmysqlclient15off 
versions 5.0.22-3 (testing) as well as 5.0.24-2.


Regards,
Robbert


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



Bug#384872: irssi: with ssl eats up cpu and doesn't connect

2006-08-28 Thread Daniele Sempione
On Sun, Aug 27, 2006 at 08:59:14PM +0100, David Pashley wrote:
 On Aug 27, 2006 at 15:45, Daniele Sempione praised the llamas by saying:
  Package: irssi
  Version: 0.8.10-2
  Severity: normal
  
  this happens when using irssi ssl connection and tor (maybe this is a
  low band/speed problem).
  
  tor+bitchx works
  tor+bitchk+ssl works
  tor+irssi works
  tor+irssi+ssl doesn't work
 
 Does it with without tor?
no, the problem there's only with tor, without it irssi works.

Cheers,
Daniele

-- 
  GPG Fingerprint: 7B1F 0815 BB7D CF35 1018  EEAB 4B97 6382 F151 402D
  -
  GPG Key [ID: 0xF151402D] available @ pgp.mit.edu
-
BOFH excuse #257:
That would be because the software doesn't work.


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



Bug#384926: mtr: Broken IPv6 reverse lookup

2006-08-28 Thread Rogier Wolff

Hi Bernhard, 

The patch was already in my source, 0.72 will have this, I just
haven't released it yet.

Roger. 


On Mon, Aug 28, 2006 at 01:11:59AM +0200, Bernhard Schmidt wrote:
 Package: mtr
 Severity: normal
 Tags: patch
 
 
 mtr 0.71 breaks on certain conditions when composing the reverse nibble
 format to send to the nameserver. This leads to no (or sometimes) incorrect
 hostnames for a variety of hops.
 
 A full description and patch is available in the Fedora Core ticket system
 https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=195458
 
 This bug has been reported to the mtr maintainer, but was not acted upon
 yet.
 
 -- 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-iabg-pe750
 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
 
 

-- 
** [EMAIL PROTECTED] ** http://www.BitWizard.nl/ ** +31-15-2600998 **
*-- BitWizard writes Linux device drivers for any device you may have! --*
Q: It doesn't work. A: Look buddy, doesn't work is an ambiguous statement. 
Does it sit on the couch all day? Is it unemployed? Please be specific! 
Define 'it' and what it isn't doing. - Adapted from lxrbot FAQ


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



Bug#383600: behaviour of update-initramfs -u has changed, only updates latest kernel initrd

2006-08-28 Thread maximilian attems
first of all this not serious,
update-initramfs -u doesn't update _all_ initramfs
and it never did. so this bug report is bogus.


On Mon, Aug 28, 2006 at 10:07:42AM +0200, Sven Luther wrote:
 On Mon, Aug 28, 2006 at 12:59:53AM +0200, Michael Biebl wrote:
  
  I'm raising the severity to serious, because as already outlined,
  packages that call update-initramfs -u in postinst (such as udev) won't
  update all installed initrds anymore. These means that security fixes of
  these packages aren't applied to all installed kernels anymore keeping a
  system potentially vulnerable (the latest kernel is not necessarily the
  default boot kernel!)

you are expected to run the latest and greatest linux-image,
we don't support old uname!

  I'm filing these bug against initramfs-tools itself, because you missed
  to inform other maintainers in advance, giving them time to change their
  postinst scripts, that you intend to change the default behaviour of
  update-initramfs -u.
no, again it is an intended behaviour.
and the recommended action.

  If you want to keep the current behaviour, you should file bug reports
  against all affected packages and add them as blocking bugs against this
  one.
 
 Maks, Manoj, rest of the kernel team, ...
 
 Would not the right solution to this be to have a system wide configuration
 option managed by debconf or something, but eventually also in the
 /etc/kernel-img.conf, which would allow to set the behaviour of this ?

i'd like to have a better /etc/kernel-img.conf, but Manoj doesn't
want to update that config file at all so you have to stop installation
to add obvious things there like do_initrd=yes.
even if you add this you get prompted anyway on kernel upgrades..
nor does Manoj want to add the do_bootloader response to aboves config
file.
 
 It affects other packages too, like mkvmlinuz and maybe bootloader installer,
 which are called after the ramdisk generators, and it is clear from this
 thread that diverse people expect diverse behaviour on this.
 
 It could even be done to handle the prefered choice kernel in a debconf dialog
 also this way, in case multiple kernels are present, with a medium priority
 question when a new choice is available or the default choice is removed, and
 a low priority question in the other cases. At high priority it would default
 to the last installed kernel, as is done right now. (but which has a flip-flop
 undeterministic behaviour in case 2.6.17 and 2.6.16 are both installed and
 upgraded since both are present in the archive right now).

first of all i'm against useless propagation of debconf dialog,
when you can't do the obvious.
the obvious is to be conservative and not touch all initrd,
due to potential boot trouble, but still propagate the fixes
to the newest initramfs.

regards

--
maks


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



Bug#384968: python-gnome2: Dispensable dependencies on python2.3 and python2.4 ?

2006-08-28 Thread Benjamin Leipold
Package: python-gnome2
Version: 2.12.4-4
Severity: normal

Are the dependencies on python2.3 (=2.3) and python2.4 (=2.3.90) really 
required?
They bar me from removing python2.3 from my system, since python-gnome2 must 
also
be removed in this case. All related packages have only dependencies to python 
(=2.3)
and python (2.5).


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


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



Bug#384967: initramfs-tools fails to upgrade if lilo is not installed

2006-08-28 Thread Anthony Callegaro
Package: initramfs-tools
Version: 0.76
Severity: important

Hi all,

I've seen lots of discussion already on the initramfs/lilo dependency when 
people are using grub, but I didn't see any report of my issue. 

I'm using grub only (lilo is not installed) on my machine and during the last 
2 upgrades of initramfs-tools I received the following error message :

update-initramfs: Generating /boot/initrd.img-2.6.17-2-k7
/usr/sbin/update-initramfs: line 88: lilo: command not found

I resolved the issue with a simple 
touch /usr/sbin/lilo
chmod +x /usr/sbin/lilo

But I wondered what would have happened if lilo WAS installed. As I'm using grub
it would certainly have broken my boot...

If I remember correctly the issue started with 0.75 (at least I remember only 
having to use the above workaround only twice).

Let me know if you need more info, I'll be glad to help.
Cheers
Anthony

-- Package-specific info:
-- /proc/cmdline
root=/dev/hda1 ro vga=791

-- /proc/filesystems
cramfs
reiserfs
vfat
iso9660

-- lsmod
Module  Size  Used by
isofs  33020  1 
nvidia   3929132  12 
vmnet  28460  9 
vmmon 167180  0 
binfmt_misc11272  1 
ipx26340  0 
p8023   2432  1 ipx
xt_limit3008  8 
xt_tcpudp   3392  21 
iptable_mangle  3136  0 
ipt_LOG 6400  8 
ipt_MASQUERADE  3968  0 
ip_nat 17132  1 ipt_MASQUERADE
ipt_TOS 2560  0 
ipt_REJECT  5440  1 
ip_conntrack_irc7024  0 
ip_conntrack_ftp7920  0 
xt_state2496  6 
ip_conntrack   48672  5 
ipt_MASQUERADE,ip_nat,ip_conntrack_irc,ip_conntrack_ftp,xt_state
nfnetlink   6936  2 ip_nat,ip_conntrack
iptable_filter  3328  1 
ip_tables  13348  2 iptable_mangle,iptable_filter
x_tables   13572  8 
xt_limit,xt_tcpudp,ipt_LOG,ipt_MASQUERADE,ipt_TOS,ipt_REJECT,xt_state,ip_tables
ppdev   8772  0 
lp 11108  0 
ipv6  224416  12 
wlan_wep6848  1 
nls_iso8859_1   4480  2 
nls_cp437   6144  1 
vfat   12288  1 
fat47196  1 vfat
dm_snapshot15968  0 
dm_mirror  19152  0 
dm_mod 50456  2 dm_snapshot,dm_mirror
w83781d29480  0 
hwmon_vid   2880  1 w83781d
i2c_isa 5184  1 w83781d
ide_generic 1664  0 [permanent]
snd_emu10k1_synth   7232  0 
snd_emux_synth 30848  1 snd_emu10k1_synth
snd_seq_virmidi 7168  1 snd_emux_synth
snd_seq_midi_emul   6208  1 snd_emux_synth
snd_seq_dummy   4100  0 
snd_seq_oss28928  0 
snd_seq_midi8416  0 
snd_seq_midi_event  7424  3 snd_seq_virmidi,snd_seq_oss,snd_seq_midi
snd_seq46736  9 
snd_emux_synth,snd_seq_virmidi,snd_seq_midi_emul,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq_midi_event
shpchp 34528  0 
snd_emu10k1   101668  4 snd_emu10k1_synth
tsdev   7680  0 
mousedev   11108  1 
snd_rawmidi23200  3 snd_seq_virmidi,snd_seq_midi,snd_emu10k1
snd_ac97_codec 82976  1 snd_emu10k1
snd_ac97_bus2624  1 snd_ac97_codec
pci_hotplug27516  1 shpchp
evdev   9344  2 
snd_pcm_oss36768  1 
snd_mixer_oss  16192  1 snd_pcm_oss
snd_pcm74948  4 snd_emu10k1,snd_ac97_codec,snd_pcm_oss
snd_seq_device  8012  8 
snd_emu10k1_synth,snd_emux_synth,snd_seq_dummy,snd_seq_oss,snd_seq_midi,snd_seq,snd_emu10k1,snd_rawmidi
snd_timer  21124  3 snd_seq,snd_emu10k1,snd_pcm
snd_page_alloc  9800  2 snd_emu10k1,snd_pcm
snd_util_mem4864  2 snd_emux_synth,snd_emu10k1
snd_hwdep   8964  2 snd_emux_synth,snd_emu10k1
wlan_scan_sta  12480  1 
ath_pci81888  0 
ath_rate_sample13376  1 ath_pci
wlan  169628  5 wlan_wep,wlan_scan_sta,ath_pci,ath_rate_sample
ath_hal   191824  3 ath_pci,ath_rate_sample
ali_agp 6912  1 
agpgart30152  2 nvidia,ali_agp
eth139418564  0 
snd48548  16 
snd_emux_synth,snd_seq_virmidi,snd_seq_oss,snd_seq,snd_emu10k1,snd_rawmidi,snd_ac97_codec,snd_pcm_oss,snd_mixer_oss,snd_pcm,snd_seq_device,snd_timer,snd_hwdep
i2c_ali1535 6852  0 
i2c_ali15x3 7556  0 
parport_pc 32612  1 
parport33544  3 ppdev,lp,parport_pc
soundcore   9440  2 snd
i2c_core   19904  4 w83781d,i2c_isa,i2c_ali1535,i2c_ali15x3
pwc45948  0 
emu10k1_gp  4096  0 
8250_pnp8960  0 
compat_ioctl32  1728  1 pwc
gameport   14600  2 emu10k1_gp
pcspkr  

Bug#384329: drop java bindings?

2006-08-28 Thread Rafael Laboissiere
* Ari Pollak [EMAIL PROTECTED] [2006-08-27 18:46]:

 If the java bindings can't be easily fixed, can they just be dropped from
 the plplot package, at least on the architectures that fail? No Debian
 package uses the java bindings, and in the meantime this bug is holding up
 pdl and libgimp-perl from testing.

I see no problem on dropping the java bindings, either completely or on
some architectures.  Which are the failing archs?

-- 
Rafael


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



Bug#384964: Easier means of opening mbox-formatted mails

2006-08-28 Thread Josh Triplett
Package: thunderbird
Version: 1.5.0.5-1
Severity: wishlist

Thunderbird should have an easier means of opening an mbox file, rather
than needing to manually copy the file into the Mail directory in your
profile.  Perhaps Tools-Import should offer an mbox option; perhaps
thunderbird /path/to/mbox should work and mbox files should get
associated with Thunderbird by default (such as in Firefox downloads);
perhaps drag and drop of an mbox file should work.

- Josh Triplett



signature.asc
Description: OpenPGP digital signature


Bug#383878: vim-vimoutliner: doesn't work

2006-08-28 Thread Daniele Sempione
On Mon, Aug 28, 2006 at 01:40:48AM -0400, Matej Cepl wrote:
 Could elaborate a little bit on that doesn't work part, please? 
I explained what I saw in the body

 the outliner doesn't work, its commands do nothing (only the
 syntax highlight works properly). I had to downgrade to
 version 0.3.3-6 to get it work as installed.
I mean, none of its commands work, neither ,,- nor ,,t etc ..
but the syntax highlight works .. I played a bit with the config file
but nothing changed, so I downgraded and got it work. nothing else ..

 Obviously, it works for me, so unless you provide some more 
 details, this bug report is heading fast to WONTFIX status. 
 Also, you have testing, right? If so, is it possible for you to 
 upgrade to the latest version of vim there (1:7.0-035+1)?
rigth now I don't want to upgrade to vim 7, if this is a problem of
version you should specify the version of vim in the Depends field.
probably the upstream author can tell you whether the new version of the
outliner is using vim 7.0 features or not.

Cheers,
Daniele

-- 
  GPG Fingerprint: 7B1F 0815 BB7D CF35 1018  EEAB 4B97 6382 F151 402D
  -
  GPG Key [ID: 0xF151402D] available @ pgp.mit.edu
-
The computer should be doing the hard work.  That's what it's paid to do,
after all.
-- Larry Wall in [EMAIL PROTECTED]


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



Bug#363517: xorg-server and kfreebsd

2006-08-28 Thread Petr Salinger

found 363517 1:1.0.2-5
found 363517 2:1.1.1-4
thanks

I tried to build xorg-server 1.1.1-4 on kfreebsd-i386,
there are needed following patches
 - previous 13_kfreebsd-gnu.diff,
 - byteswap patch bellow (submitted upstream as 
https://bugs.freedesktop.org/show_bug.cgi?id=8039),
 - again sync man pages suffixes with linux (aclocal.m4), changed in 1:1.1.1-2 
only for linux
 - attached changes to debian packaging - it looks like kdrive is (still) linux 
only,
files in usr/lib/xorg/modules/freebsd/*.so are needed for us


With those patches applied (and regenerated configure),
it builds fine for 1.1.1-4.

Petr

--- aclocal.m4~ 2006-08-28 13:12:09.0 +0200
+++ aclocal.m4  2006-08-28 13:12:09.0 +0200
@@ -6654,13 +6654,13 @@

 if test x$APP_MAN_SUFFIX = x; then
 case $host_os in
-   gnu* | k*bsd*-gnu)  APP_MAN_SUFFIX=1x ;;
+#  gnu* | k*bsd*-gnu)  APP_MAN_SUFFIX=1x ;;
*)  APP_MAN_SUFFIX=1  ;;
 esac
 fi
 if test x$APP_MAN_DIR = x; then
 case $host_os in
-   gnu* | k*bsd*-gnu)  APP_MAN_DIR='$(mandir)/man1' ;;
+#  gnu* | k*bsd*-gnu)  APP_MAN_DIR='$(mandir)/man1' ;;
*)  APP_MAN_DIR='$(mandir)/man$(APP_MAN_SUFFIX)' ;;
 esac
 fi
@@ -6684,7 +6684,7 @@
 fi
 if test x$FILE_MAN_DIR = x; then
 case $host_os in
-   gnu* | k*bsd*-gnu)  FILE_MAN_DIR='$(mandir)/man5' ;;
+#  gnu* | k*bsd*-gnu)  FILE_MAN_DIR='$(mandir)/man5' ;;
*)  FILE_MAN_DIR='$(mandir)/man$(FILE_MAN_SUFFIX)' ;;
 esac
 fi


https://bugs.freedesktop.org/show_bug.cgi?id=8039

--- GL/glx/indirect_dispatch_swap.c~
+++ GL/glx/indirect_dispatch_swap.c
@@ -28,7 +28,7 @@
 #include X11/Xmd.h
 #include GL/gl.h
 #include GL/glxproto.h
-#ifdef __linux__
+#if defined (__linux__) || defined (__GLIBC__)
 #include byteswap.h
 #elif defined(__OpenBSD__)
 #include sys/endian.h

--- GL/glx/indirect_util.c~
+++ GL/glx/indirect_util.c
@@ -28,7 +28,7 @@
 #include X11/Xmd.h
 #include GL/gl.h
 #include GL/glxproto.h
-#ifdef __linux__
+#if defined (__linux__) || defined (__GLIBC__)
 #include byteswap.h
 #elif defined(__OpenBSD__)
 #include sys/endian.h
diff -u xorg-server-1.1.1/debian/control xorg-server-1.1.1/debian/control
--- xorg-server-1.1.1/debian/control2006-08-28 11:47:20.0 +0200
+++ xorg-server-1.1.1/debian/control2006-08-28 13:40:31.0 +0200
@@ -132,7 +132,7 @@
  :pserver:[EMAIL PROTECTED]:/cvs/xorg
 
 Package: xserver-xephyr
-Architecture: any
+Architecture: i386 ia64 alpha amd64 armeb arm hppa m32r m68k mips mipsel 
powerpc ppc64 s390 s390x sh3 sh3eb sh4 sh4eb sparc
 Depends: ${shlibs:Depends}, ${misc:Depends}
 Recommends: xbase-clients
 Description: Next Generation Nested X Server
diff -u xorg-server-1.1.1/debian/rules xorg-server-1.1.1/debian/rules
--- xorg-server-1.1.1/debian/rules  2006-08-28 11:47:20.0 +0200
+++ xorg-server-1.1.1/debian/rules  2006-08-28 13:41:15.0 +0200
@@ -22,6 +22,8 @@
 DEB_HOST_ARCH  ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
 DEB_HOST_GNU_TYPE  ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
 DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
+DEB_HOST_ARCH_OS   ?= $(shell dpkg-architecture -qDEB_HOST_ARCH_OS)
+
 ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
confflags += --build=$(DEB_HOST_GNU_TYPE)
 else
@@ -45,8 +47,6 @@
 --enable-xtrap \
 --enable-dmx \
 --enable-vfb \
---enable-kdrive \
---enable-xephyr \
 --disable-lbx \
 --disable-xprint \
 --disable-xorgconfig \
@@ -54,6 +54,10 @@
 --with-xkb-path=/usr/share/X11/xkb \
 --with-xkb-output=/var/lib/xkb
 
+ifeq ($(DEB_HOST_ARCH_OS),linux)
+   confflags += --enable-kdrive --enable-xephyr
+endif
+
 build: patch build-stamp
 build-stamp: 
dh_testdir
@@ -102,22 +106,22 @@
 
dh_installdocs
dh_installchangelogs
-   dh_install --sourcedir=debian/tmp --list-missing
+   dh_install -s --sourcedir=debian/tmp --list-missing
$(INSTALL) -d $(CURDIR)/debian/xserver-xorg-dev/usr/share/xserver-xorg
$(INSTALL) -m644 $(CURDIR)/debian/serverabiver \
   
$(CURDIR)/debian/xserver-xorg-dev/usr/share/xserver-xorg/serverabiver
-   dh_link
-   dh_strip --exclude=usr/lib/xorg/modules
+   dh_link -s
+   dh_strip -s --exclude=usr/lib/xorg/modules
find debian/xserver-xorg-core/usr/lib/xorg/modules -name lib*.so | \
  xargs --no-run-if-empty \
  strip --strip-debug --remove-section=.note --remove-section=.comment
-   dh_compress
-   dh_fixperms
-   dh_installdeb
-   dh_shlibdeps
-   dh_gencontrol
-   dh_md5sums
-   dh_builddeb
+   dh_compress -s
+   dh_fixperms -s
+   dh_installdeb -s
+   dh_shlibdeps -s
+   dh_gencontrol -s 
+   dh_md5sums -s 
+   dh_builddeb -s
 
 # Build architecture-independent 

Bug#384974: ntfsprogs: Shouldn't check free space if output file is FIFO

2006-08-28 Thread Andree Leidenfrost
Package: ntfsprogs
Version: 1.13.1-3
Severity: normal
Tags: patch

Hi David,

Package mondo, which I maintain, uses ntfsclone to backup NTFS partitions. It
does so via outputting the file to a FIFO where another thread waits to chop
it up into chunks. The FIFO is created in /tmp. This works generally fine.

However, ntfsclone checks the space in /tmp where the FIFO is created to find
out whether there is enough free space to accomodate the output file created,
which can lead to the following error:

aurich64:/tmp# ntfsclone --save-image --overwrite fifo /dev/hda1
ntfsclone v1.13.1 (libntfs 9:0:0)
NTFS volume version: 3.0
Cluster size   : 4096 bytes
Current volume size: 3142021120 bytes (3143 MB)
Current device size: 3142024704 bytes (3143 MB)
Scanning volume ...
100.00 percent completed
Accounting clusters ...
Space in use   : 2213 MB (70.4%)
ERROR: Destination doesn't have enough free space: 400 MB  2213 MB

The attached patch makes it so that ntfsclone will not check for free space in
case the output file is a FIFO. I have tried to make things as unobtrusive as
possible and hope you find the patch acceptable. In case you would like me to
change anything, please let me know and I will happily amend and resend.

Thanks a lot  best regards,
Andree

-- 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.17-2-amd64
Locale: LANG=en_AU.UTF-8, LC_CTYPE=en_AU.UTF-8 (charmap=UTF-8)

Versions of packages ntfsprogs depends on:
ii  fuse-utils   2.5.3-3 Filesystem in USErspace (utilities
ii  libc62.3.6.ds1-4 GNU C Library: Shared libraries
ii  libfuse2 2.5.3-3 Filesystem in USErspace library
ii  libntfs9 1.13.1-3library that provides common NTFS 

ntfsprogs recommends no packages.

-- no debconf information
--- ntfsclone.c.orig	2006-06-21 17:59:19.0 +1000
+++ ntfsclone.c	2006-08-28 07:39:19.0 +1000
@@ -1608,6 +1608,7 @@
 {
 	u64 dest_bytes;
 	struct statvfs stvfs;
+	struct stat stat;
 
 	if (opt.metadata || opt.blkdev_out || opt.std_out)
 		return;
@@ -1620,6 +1621,14 @@
 		   strerror(errno));
 		return;
 	}
+	/* if file is a FIFO there is no point in checking the size */
+	if (!fstat(fd_out, stat)) {
+		if (S_ISFIFO(stat.st_mode))
+			return;
+	} else {
+		Printf(WARNING: Couldn't get file info because of the following error: %s\n,
+		   strerror(errno));
+	}
 
 	dest_bytes = (u64)stvfs.f_frsize * stvfs.f_bfree;
 	if (!dest_bytes)


Bug#384967: initramfs-tools fails to upgrade if lilo is not installed

2006-08-28 Thread maximilian attems
tags 384967 moreinfo
thanks

On Mon, Aug 28, 2006 at 10:29:58AM +0100, Anthony Callegaro wrote:
 
 Hi all,
 
 I've seen lots of discussion already on the initramfs/lilo dependency when 
 people are using grub, but I didn't see any report of my issue. 
 
 I'm using grub only (lilo is not installed) on my machine and during the last 
 2 upgrades of initramfs-tools I received the following error message :
 
 update-initramfs: Generating /boot/initrd.img-2.6.17-2-k7
 /usr/sbin/update-initramfs: line 88: lilo: command not found
 
 I resolved the issue with a simple 
 touch /usr/sbin/lilo
 chmod +x /usr/sbin/lilo
 
 But I wondered what would have happened if lilo WAS installed. As I'm using 
 grub
 it would certainly have broken my boot...

please send the output of
cat /etc/kernel-img.conf
 
 If I remember correctly the issue started with 0.75 (at least I remember only 
 having to use the above workaround only twice).
 
 Let me know if you need more info, I'll be glad to help.
 Cheers
 Anthony

if aboves doesn't look like i suppose, i may need more info.
thanks for your report.

--
maks


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



Bug#202488: isdnvboxserver: Spool directory incorrectly renamed on upgrade

2006-08-28 Thread Julian Mehnle
package isdnvboxserver
severity 202488 serious
# Justification: Breaks package on every upgrade
thanks

This bug has occurred to us multiple times, everytime I upgrade 
isdnvboxserver!  It always renames the spooldir to ttyI6 and thus breaks 
operation.  On top of this, it always gives the following brain-dead 
debconf note:

|  Configuring isdnvboxserver 
| 
| two obsolete spool directories detected
| 
| The directories `/vvaarr/ssppll/vvbbooxx/doesntexist_1' and
| `/vvaarr/ssppll/vvbbooxx/doesntexist_1' (which aren't used anymore in
| the standard configuration), and the new spool directory
| `/var/spool/vbox/ttyI6' all exist. The old directories will no longer be
| used; please manually move any messages from there to the new directory
| (if any), and delete the old directories. 

This package is seriously broken!


pgpEgRscBthpm.pgp
Description: PGP signature


Bug#383852: uswsusp: Does not properly exit sleep mode with kernel 2.6.17

2006-08-28 Thread Tim Dijkstra
On Sun, 27 Aug 2006 14:16:41 +0200
Christian Perrier [EMAIL PROTECTED] wrote:

  
  If that's not the case and it locks hard, you can try to unload some
  modules first; the usb and ieee1394 modules for example.
 
 
 I tried unloading all the ieee1394 stuff and as much USB stuff as
 possible but it didn't give much results.

OK, this sounds as a real regression. I'll send your report upstream to
the people that made s2ram, but maybe it needs to go to the kernel guys too.

They will probably ask you this too: 

To narrow this down could you try again from the console with a much
modules unloaded as you can, e.g. wireless (ipw2200), your graphics
(drm, i915, intel_agp, agpgart), usb (ehci_hcd,uhci_hcd, usbcore),
(eth1394, ohci1394, ieee1394), pcmcia (yenta_socket, rsrc_nonstatic,
pcmcia_core) maybe even sound (snd_intel8x0,snd_ac97_codec,snd_pcm_oss,
snd_pcm).

If it then works, try adding drivers untill it stops working, then we
can poke the maintainer of that driver;)

I know it's a frustrating work... I hope s2disk does work for you, that
should be easier to get to work.

grts Tim


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



Bug#384971: alsa-utils: please provide a more detailed package description

2006-08-28 Thread Alexandre Fayolle
Package: alsa-utils
Version: 1.0.11-6
Severity: wishlist
Tags: patch

Hi,

It would be nice, for searching and installation purpuse to have a
more detailed description for the alsa-utils package, possibly listing
the utilities shipped in the package. For instance

Description: ALSA utilities
 This package contains utilities for configuring and using ALSA,  including:
  * amixer: command line mixer
  * alsamixer: curses mixer
  * amidi:
  * aplay, arecord: command line playback and recording
  * aplaymidi, arecordmidi: command line MIDI playback and recording
  * aconnect, aseqnet, aseqdump: command line MIDI sequencer control
 .
 ALSA is the Advanced Linux Sound Architecture.


Thanks

-- 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-2-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages alsa-utils depends on:
ii  dialog1.0-20060221-1 Displays user-friendly dialog boxe
ii  libasound21.0.11-7   ALSA library
ii  libc6 2.3.6.ds1-4GNU C Library: Shared libraries
ii  libncurses5   5.5-2  Shared libraries for terminal hand
ii  linux-sound-base  1.0.11-5   base package for ALSA and OSS soun
ii  lsb-base  3.1-15 Linux Standard Base 3.1 init scrip
ii  module-init-tools 3.2.2-3tools for managing Linux kernel mo
ii  modutils  2.4.27.0-6 Linux module utilities
ii  pciutils  1:2.2.4~pre4-1 Linux PCI Utilities
ii  python2.4.3-11   An interactive high-level object-o
ii  whiptail  0.52.2-7   Displays user-friendly dialog boxe

Versions of packages alsa-utils recommends:
ii  alsa-base 1.0.11-5   ALSA driver configuration files

-- no debconf information


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



Bug#384970: revelation: Non-installable on Etch (Testing)

2006-08-28 Thread Stefan Völkel
Hi,

I am not sure I understand the situation. qa.d.o reports:

* Too young, only 4 of 10 days old
* Ignoring high urgency setting for NEW package
* Not considered
* Depends: revelation python-defaults

Now IMHO this is perfectly ok, since the dependencies are not met and
the package is not present in testing atm.

regards
Stefan

Jerome Warnier wrote:
 Package: revelation
 Version: 0.4.7-3.1
 Severity: wishlist
 
 Due to the Python 2.4 transition not being complete in Testing,
 revelation is not installable.
 
 The following packages have unmet dependencies:
   revelation: Depends: python (= 2.4) but 2.3.5-11 is to be installed
   E: Broken packages
 
 I just wanted to let you know (hence the severity), but don't really care 
 myself.
 Hope it helps.
 
 -- System Information:
 Debian Release: testing/unstable
   APT prefers testing
   APT policy: (500, 'testing'), (200, 'unstable')
 Architecture: i386 (i686)
 Shell:  /bin/sh linked to /bin/dash
 Kernel: Linux 2.6.16-2-686
 Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
 

-- 
Stefan Völkel  mobile: +49.170.79177.17
Millenux GmbH   phone: +49.711.88770.300
Lilienthalstraße 2  phone: +49.89.608665.27
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



signature.asc
Description: OpenPGP digital signature


Bug#384966: Different kernel on AMD netinst image - 2.5.17 boots from CD, but 2.6.16 was installed - broken networking after reboot

2006-08-28 Thread Martin Michlmayr
* George Chavdarov [EMAIL PROTECTED] [2006-08-28 12:26]:
 Comments/Problems:When booting from CD it loads linux-image 2.6.17-2, but 
 installs linux-image 2.6.16-2. This brokes networking after reboot. Die to 

debian-installer installs whatever kernel is in testing, so this will
be solved when 2.6.17 enters testing.
-- 
Martin Michlmayr
http://www.cyrius.com/


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



Bug#369906: linux-image-2.6.16-2-k7: I too have problem with mouse on latest 2.6.16 kernel.

2006-08-28 Thread Bug Filler
Package: linux-image-2.6.16-2-k7
Version: 2.6.16-18
Followup-For: Bug #369906


I too has this /dev/input/mice not found problem when the latest 2.6.16
kernel. As a result, X server won't start because it cannot find a
pointer device.

Lucky for me that I know how to use querybts and see this bug report.

lsmod mousedev
lsmod psmouse

solved the problem for me.


-- 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.16-2-k7
Locale: LANG=C, LC_CTYPE=zh_CN.GBK (charmap=GBK)

Versions of packages linux-image-2.6.16-2-k7 depends on:
ii  initramfs-tools [linux-initra 0.60   tools for generating an initramfs
ii  module-init-tools 3.2.2-3tools for managing Linux kernel mo

Versions of packages linux-image-2.6.16-2-k7 recommends:
ii  libc6-i686   2.3.6.ds1-4 GNU C Library: Shared libraries [i

-- debconf information:
  linux-image-2.6.16-2-k7/preinst/elilo-initrd-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/preinst/failed-to-move-modules-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/prerm/would-invalidate-boot-loader-2.6.16-2-k7: true
* linux-image-2.6.16-2-k7/preinst/already-running-this-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/postinst/bootloader-error-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/postinst/bootloader-test-error-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/postinst/really-run-bootloader-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/postinst/kimage-is-a-directory:
  linux-image-2.6.16-2-k7/preinst/bootloader-initrd-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/preinst/lilo-has-ramdisk:
  linux-image-2.6.16-2-k7/preinst/abort-overwrite-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/preinst/abort-install-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/postinst/depmod-error-2.6.16-2-k7: false
  linux-image-2.6.16-2-k7/postinst/old-dir-initrd-link-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/postinst/create-kimage-link-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/postinst/old-system-map-link-2.6.16-2-k7: true
* linux-image-2.6.16-2-k7/preinst/lilo-initrd-2.6.16-2-k7: false
  linux-image-2.6.16-2-k7/preinst/initrd-2.6.16-2-k7:
  linux-image-2.6.16-2-k7/postinst/old-initrd-link-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/prerm/removing-running-kernel-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/preinst/overwriting-modules-2.6.16-2-k7: true
  linux-image-2.6.16-2-k7/postinst/depmod-error-initrd-2.6.16-2-k7: false


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



Bug#384973: wengophone: Segmentation fault

2006-08-28 Thread Gilles Sadowski
Package: wengophone
Version: 0.99+svn4511-4
Severity: important

On AMD64, the program craches just after login into the Wengo server.

Regards,
Gilles

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.17.7-vs2.1.1-rc28+dusk+g2
Locale: LANG=C, LC_CTYPE=C (charmap=UTF-8) (ignored: LC_ALL set to en_US.utf8)

Versions of packages wengophone depends on:
ii  liba52-0.7.4  0.7.4-1Library for decoding ATSC A/52 str
ii  libasound21.0.11-4   ALSA library
ii  libc6 2.3.6-4GNU C Library: Shared libraries an
ii  libdc1394-13  1.1.0-3high level programming interface f
ii  libgcc1   1:4.1.1-11 GCC support library
ii  libglib2.0-0  2.10.1-2   The GLib library of C routines
ii  libgsm1   1.0.10-13  Shared libraries for GSM speech co
ii  libogg0   1.1.3-2Ogg Bitstream Library
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded runtime v
ii  libraw1394-5  0.10.1-1.1 library for direct access to IEEE 
ii  libssl0.9.8   0.9.8b-2   SSL shared libraries
ii  libstdc++64.1.1-11   The GNU Standard C++ Library v3
ii  libtheora00.0.0.alpha5-1 The Theora Video Compression Codec
ii  libvorbis0a   1.1.2-1The Vorbis General Audio Compressi
ii  libvorbisenc2 1.1.2-1The Vorbis General Audio Compressi
ii  libx11-6  2:1.0.0-7  X11 client-side library
ii  zlib1g1:1.2.3-11 compression library - runtime

wengophone recommends no packages.

-- no debconf information


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



Bug#384972: Fix sound on MacBook Pro

2006-08-28 Thread Matt Kraai
Package: linux-2.6
Version: 2.6.17-7

In order to support sound on the MacBook Pro, two patches from
upstream need to be applied:

 * 
http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=62fe78e90dc25b269362034487dc450cd8453e8c
 * 
http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=7c3dec0679c66ce177726802adbe2f403942fc27

I've attached a patch which includes the first and backports the
second.

-- 
Matt
From: Sam Revitch [EMAIL PROTECTED]
Date: Wed, 10 May 2006 13:09:17 + (+0200)
Subject: [ALSA] hda-codec - Add support for Apple Mac Mini (early 2006)
X-Git-Tag: v2.6.18-rc1
X-Git-Url: 
http://kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commitdiff;h=62fe78e90dc25b269362034487dc450cd8453e8c

[ALSA] hda-codec - Add support for Apple Mac Mini (early 2006)

Add support for some audio quirks of the Apple Mac Mini (early 2006)

Signed-off-by: Sam Revitch [EMAIL PROTECTED]
Signed-off-by: Takashi Iwai [EMAIL PROTECTED]
---

--- a/sound/pci/hda/patch_sigmatel.c
+++ b/sound/pci/hda/patch_sigmatel.c
@@ -41,6 +41,7 @@
 #define STAC_REF   0
 #define STAC_D945GTP3  1
 #define STAC_D945GTP5  2
+#define STAC_MACMINI   3
 
 struct sigmatel_spec {
struct snd_kcontrol_new *mixers[4];
@@ -52,6 +53,7 @@ struct sigmatel_spec {
unsigned int mic_switch: 1;
unsigned int alt_switch: 1;
unsigned int hp_detect: 1;
+   unsigned int gpio_mute: 1;
 
/* playback */
struct hda_multi_out multiout;
@@ -293,6 +295,7 @@ static unsigned int *stac922x_brd_tbl[] 
ref922x_pin_configs,
d945gtp3_pin_configs,
d945gtp5_pin_configs,
+   d945gtp5_pin_configs,   /* STAC_MACMINI */
 };
 
 static struct hda_board_config stac922x_cfg_tbl[] = {
@@ -324,6 +327,9 @@ static struct hda_board_config stac922x_
{ .pci_subvendor = PCI_VENDOR_ID_INTEL,
  .pci_subdevice = 0x0417,
  .config = STAC_D945GTP5 },/* Intel D975XBK - 5 Stack */
+   { .pci_subvendor = 0x8384,
+ .pci_subdevice = 0x7680,
+ .config = STAC_MACMINI }, /* Apple Mac Mini (early 2006) */
{} /* terminator */
 };
 
@@ -841,6 +847,19 @@ static int stac92xx_auto_create_analog_i
}
}
 
+   if (imux-num_items == 1) {
+   /*
+* Set the current input for the muxes.
+* The STAC9221 has two input muxes with identical source
+* NID lists.  Hopefully this won't get confused.
+*/
+   for (i = 0; i  spec-num_muxes; i++) {
+   snd_hda_codec_write(codec, spec-mux_nids[i], 0,
+   AC_VERB_SET_CONNECT_SEL,
+   imux-items[0].index);
+   }
+   }
+
return 0;
 }
 
@@ -946,6 +965,45 @@ static int stac9200_parse_auto_config(st
return 1;
 }
 
+/*
+ * Early 2006 Intel Macintoshes with STAC9220X5 codecs seem to have a
+ * funky external mute control using GPIO pins.
+ */
+
+static void stac922x_gpio_mute(struct hda_codec *codec, int pin, int muted)
+{
+   unsigned int gpiostate, gpiomask, gpiodir;
+
+   gpiostate = snd_hda_codec_read(codec, codec-afg, 0,
+  AC_VERB_GET_GPIO_DATA, 0);
+
+   if (!muted)
+   gpiostate |= (1  pin);
+   else
+   gpiostate = ~(1  pin);
+
+   gpiomask = snd_hda_codec_read(codec, codec-afg, 0,
+ AC_VERB_GET_GPIO_MASK, 0);
+   gpiomask |= (1  pin);
+
+   gpiodir = snd_hda_codec_read(codec, codec-afg, 0,
+AC_VERB_GET_GPIO_DIRECTION, 0);
+   gpiodir |= (1  pin);
+
+   /* AppleHDA seems to do this -- WTF is this verb?? */
+   snd_hda_codec_write(codec, codec-afg, 0, 0x7e7, 0);
+
+   snd_hda_codec_write(codec, codec-afg, 0,
+   AC_VERB_SET_GPIO_MASK, gpiomask);
+   snd_hda_codec_write(codec, codec-afg, 0,
+   AC_VERB_SET_GPIO_DIRECTION, gpiodir);
+
+   msleep(1);
+
+   snd_hda_codec_write(codec, codec-afg, 0,
+   AC_VERB_SET_GPIO_DATA, gpiostate);
+}
+
 static int stac92xx_init(struct hda_codec *codec)
 {
struct sigmatel_spec *spec = codec-spec;
@@ -982,6 +1040,11 @@ static int stac92xx_init(struct hda_code
stac92xx_auto_set_pinctl(codec, cfg-dig_in_pin,
 AC_PINCTL_IN_EN);
 
+   if (spec-gpio_mute) {
+   stac922x_gpio_mute(codec, 0, 0);
+   stac922x_gpio_mute(codec, 1, 0);
+   }
+
return 0;
 }
 
@@ -1132,7 +1195,7 @@ static int patch_stac922x(struct hda_cod
spec-board_config = snd_hda_check_board_config(codec, 
stac922x_cfg_tbl);
if (spec-board_config  0)
 snd_printdd(KERN_INFO hda_codec: Unknown model for STAC922x, 
using BIOS 

Bug#384967: initramfs-tools fails to upgrade if lilo is not installed

2006-08-28 Thread maximilian attems
forgot to ask:

ls -l /etc/lilo.conf
cat /etc/lilo.conf



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



Bug#384975: split into digikam-doc-LANG and digikam-doc-common

2006-08-28 Thread Nick Shaforostoff
Package: digikam-doc
Severity: wishlist

Installed-Size: 44976 = ~44mb
and after splitiing it will take only 5mb for translation that uses english 
screenshots and ~8 that uses own ones
place in digikam-doc-common images and other stuff that translations (sym)link 
to


-- System Information:
Debian Release: testing
  APT prefers unstable
  APT policy: (990, 'unstable'), (800, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-586tsc
Locale: LANG=ru_UA, LC_CTYPE=ru_UA (charmap=KOI8-U) (ignored: LC_ALL set to 
ru_UA.KOI8-U)


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



Bug#384967: initramfs-tools fails to upgrade if lilo is not installed

2006-08-28 Thread Anthony Callegaro
Hi Maximilan !

From your suggestions I manage to find a solution to my issue, sorry
about the unnecessary noise :o(

For the record here is my kernel-img.conf : 
$ cat /etc/kernel-img.conf
do_symlinks = yes
relative_links = yes
do_bootloader = yes
do_bootfloppy = no
do_initrd = yes
link_in_boot = no

But I indeed had a lilo.conf remaining of a previous configuration,
removing it did the trick... sorry to have bother you with something as
simple :o(

Anyway thanks a million for your answer
Cheers
Anthony

Le lundi 28 août 2006 à 12:07 +0200, maximilian attems a écrit :
 tags 384967 moreinfo
 thanks
 
 On Mon, Aug 28, 2006 at 10:29:58AM +0100, Anthony Callegaro wrote:
  
  Hi all,
  
  I've seen lots of discussion already on the initramfs/lilo dependency when 
  people are using grub, but I didn't see any report of my issue. 
  
  I'm using grub only (lilo is not installed) on my machine and during the 
  last 
  2 upgrades of initramfs-tools I received the following error message :
  
  update-initramfs: Generating /boot/initrd.img-2.6.17-2-k7
  /usr/sbin/update-initramfs: line 88: lilo: command not found
  
  I resolved the issue with a simple 
  touch /usr/sbin/lilo
  chmod +x /usr/sbin/lilo
  
  But I wondered what would have happened if lilo WAS installed. As I'm using 
  grub
  it would certainly have broken my boot...
 
 please send the output of
 cat /etc/kernel-img.conf
  
  If I remember correctly the issue started with 0.75 (at least I remember 
  only 
  having to use the above workaround only twice).
  
  Let me know if you need more info, I'll be glad to help.
  Cheers
  Anthony
 
 if aboves doesn't look like i suppose, i may need more info.
 thanks for your report.
 
 --
 maks
 




Bug#384977: gnuplot-mode: error seen

2006-08-28 Thread Dan Jacobson
Package: gnuplot-mode
Version: 1:0.6.0-2.1
Severity: minor

 In gnuplot-comint-start-function:
 gnuplot.el:1838:18:Warning: `make-variable-buffer-local' should be called at
 toplevel

 In gnuplot-mode:
 gnuplot.el:2516:41:Warning: `make-variable-buffer-local' should be called at
 toplevel

ii  emacs-snapshot [emacsen]1:20060730-1 The GNU Emacs editor (development 


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



Bug#384976: mkfs.vfat -c: say percent done

2006-08-28 Thread Dan Jacobson
Package: dosfstools
Version: 2.11-2.1
Severity: wishlist
File: /sbin/dosfsck

The user uses -c and,

Searching for bad blocks 224... 292... 310... 327... 341... 360...

Well the user has no idea of how long this will take.
The user is formatting a 64 MB Smartmedia card, and as you do not say
what units those output numbers are in, the user doesn't know if he
will be here overnight.

P.S., dmesg has lots of
end_request: I/O error, dev sdc, sector 923
sd 1:0:0:2: SCSI error: return code = 0x802
sdc: Current: sense key: Medium Error
Additional sense: CIRC unrecovered error
Info fld=0x0
but mkfs.vfat doesn't notify the user.


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



Bug#384984: spamassassin: don't strip blanks internally

2006-08-28 Thread Dan Jacobson
Package: spamassassin
Version: 3.1.3-1
Severity: normal

Consider this header:
  X-Keywords:a  b 
(X-Keywords:a  b )
Would you believe that all we can match on is
a  b
Why throw away the ability to match on / $|b | a/ ? :raw doesn't help.
No way to catch an X-Keywords: followed by hundreds of blanks.
Man page header description doesn't say what is going on either.

OK, had to use
full J_KEYWORDS_BLANK /^X-Keywords:  {99,}$/m
But still no way to catch any header in general, with lots of trailing blanks.

P.S. spamassassin adds some blanks of its own:
   fold_headers ( 0 | 1 )(default: 1)
   By default,  headers added by SpamAssassin will be whitespace
   folded.  In other words, they will be broken up into multiple lines
   instead of one very long one and each other line will have a tabu-
   lator prepended to mark it as a continuation of the preceding one.
And it leaves the trailing blank.
$ grep ' $' will show them, or use emacs' show-trailing-whitespace.


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



Bug#384981: /etc/cron.weekly/man-db: minor vs. major rebuilds

2006-08-28 Thread Dan Jacobson
Package: man-db
Version: 2.4.3-3
Severity: wishlist
File: /etc/cron.weekly/man-db

All I know is I haven't installed any packages in the last week and
maybe have deleted one or two, but still every week it seems this
program does as much work as if one just installed the whole system afresh.


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



Bug#384979: HTML::WikiConverter::MediaWiki: nested DL's

2006-08-28 Thread Dan Jacobson
X-debbugs-cc: [EMAIL PROTECTED]
Package: libhtml-wikiconverter-perl
Version: 0.40-1
Severity: minor
File: HTML::WikiConverter::MediaWiki

 dl
  dt台北 Taibei/dt

  dd
   dl
dt中正
Zhongzheng/dt

dd125.1 251.3 124.2b 306.6b/dd

gives

; 台北 Taibei
: ;; 中正 Zhongzheng
:: 125.1 251.3 124.2b 306.6b

which renders as

 台北 Taibei
 ;; 中正 Zhongzheng

125.1 251.3 124.2b 306.6b

(No, I don't know how one is supposed to code it.)

They probably don't have a real way... There examples on
http://en.wikipedia.org/wiki/Help:Editing
make
dldt definition lists
/dtdd can be 
/dd/dl
dldtdldt nested too


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



Bug#325461: time sensitive?

2006-08-28 Thread Jon Dowland
tags 325461 = moreinfo upstream
thanks

This sounds time-sensitive. You shoot all your shotgun shells, and 
attempting to fire with 0 shells causes you to switch to another weapon 
(such as the pistol) automatically. If you run over shells during the 
weapon switch, it will not abort. So, is this what is happening? Are you 
picking up the shotgun shells after or in the middle of firing your last 
shell / the gun receding from the screen as part of the switch?

If I've interpreted this wrong please let me know.


-- 
Jon Dowland



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



Bug#384983: xclip: can't handle UTF-8

2006-08-28 Thread Dan Jacobson
Package: xclip
Version: 0.08-5.1
Severity: normal

OK, xclip works on UTF-8, but only if one uses -o. ^Y in emacs or
SHIFT INSERT in xwindows gives a mess. Please reassign this bug to the culprit.

$ xclip -o
基隆市警察局
基隆市警察局第一分局
基隆市警察局第三分局
基隆市警察局第二分局
基隆市警察局第四分局
$ cat [SHIFT INSERT]
基隆市警察局
基隆市警察局第一分局
基隆市警察局第三分局
基隆市警察局第二分局
基隆市警察局第四分局


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



Bug#361114: Upstream patch

2006-08-28 Thread Matt Kraai
Howdy,

The attached patch was committed upstream to fix this problem.  It
applies cleanly (each hunk is offset 25 lines).  I build a new
gnome-terminal package with it applied and verified that this problem
was fixed.

-- 
Matt
===
RCS file: /cvs/gnome/gnome-terminal/src/terminal-window.c,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- terminal-window.c   2006/07/10 18:32:21 1.128
+++ terminal-window.c   2006/07/24 22:12:11 1.129
@@ -1840,6 +1840,7 @@
TerminalScreen  *screen,
TerminalWindow  *window)
 {  
+  gboolean single;
   /* Called from terminal_notebook_move_tab() */
   if (find_screen (window, screen) != NULL) {
 g_assert (terminal_screen_get_window (screen) == window);
@@ -1871,6 +1872,11 @@
   reset_tab_menuitems (window);
   update_tab_sensitivity (window);
 
+  /* The tab bar may have disappeared */
+  single = g_list_length (window-priv-terms) == 1;
+  if (single)
+terminal_window_set_size (window, window-priv-active_term, TRUE);
+
   /* Close window if no more terminals */
   if (window-priv-terms == NULL)
 gtk_widget_destroy (GTK_WIDGET (window));


Bug#384978: html-helper-mode: error seen

2006-08-28 Thread Dan Jacobson
Package: html-helper-mode
Version: 3.0.4kilo-2
Severity: minor

 In html-helper-enters-jde-mode:
 html-helper-mode.el:2421:4:Warning: value returned by `fboundp' is not used

ii  emacs-snapshot [emacsen]1:20060730-1 The GNU Emacs editor (development 


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



Bug#384980: man-db: don't guess man page authors didn't mean the ASCII they wrote

2006-08-28 Thread Dan Jacobson
Package: man-db
Version: 2.4.3-3
Severity: normal

Stop overimaginative guesses that man page authors didn't mean the
plain ASCII that they wrote!

$ man php 2-|grep Hello
   php -r ’echo Hello World\n;’
This command simply writes the text Hello World to standard out.
$ man php 2-|grep Hello|sed q|sh
Parse error: syntax error, unexpected $end in Command line code on line 1
sh: line 1: ’: command not found
$ LC_ALL=C man php 2-|grep Hello|sed q|sh
Hello World
$ man 2- php|grep Hello|sed q|cat -v
   php -r [EMAIL PROTECTED] Hello World\n;[EMAIL PROTECTED]
$ man -w php|xargs zgrep Hello|sed q|cat -v
\fIphp -r 'echo Hello World\\n;'\fP
-- System Information:
Locale: LANG=zh_TW.utf8, LC_CTYPE=zh_TW.utf8 (charmap=UTF-8)


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



Bug#384985: mmm-mode: error seen

2006-08-28 Thread Dan Jacobson
Package: mmm-mode
Version: 0.4.8-3
Severity: normal

 Loading /etc/emacs/site-start.d/50mmm-mode.el (source)...
 Error while loading 50mmm-mode

ii  emacs-snapshot [emacsen]1:20060730-1 The GNU Emacs editor (development 


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



Bug#384982: w3m: blanks within UTF-8 removed upon rendering

2006-08-28 Thread Dan Jacobson
Package: w3m
Version: 0.5.1-5
Severity: important
File: /usr/bin/w3m

For HTML
  dt啦啦 隊a href=
  lang/pinyin/index.html推漢語 拼音,摧通用拼音/a
w3m, and w3m -dump compresses the blanks out!!:
  啦啦隊推漢語拼音,摧通用拼音
Whereas lynx gets it correct:
   啦啦 隊推漢語 拼音,摧通用拼音
-- System Information:
Locale: LANG=zh_TW.utf8, LC_CTYPE=zh_TW.utf8 (charmap=UTF-8)


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



Bug#369906: linux-image-2.6.16-2-k7: upgrade initramfs-tools package solved the problem

2006-08-28 Thread Bug Filler
Package: linux-image-2.6.16-2-k7
Followup-For: Bug #369906


As seen with bug #383555, the bug is in one of
udev/initramfs-tools/klibc packages.  Upgrade to the new initramfs-tools
and recreate kernel image solved the problem.

-- 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.16-2-k7
Locale: LANG=C, LC_CTYPE=zh_CN.GBK (charmap=GBK)

Versions of packages linux-image-2.6.16-2-k7 depends on:
ii  initramfs-tools [linux-initra 0.76   tools for generating an initramfs
ii  module-init-tools 3.2.2-3tools for managing Linux kernel mo

Versions of packages linux-image-2.6.16-2-k7 recommends:
ii  libc6-i686   2.3.6.ds1-4 GNU C Library: Shared libraries [i

-- debconf information excluded


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



Bug#369670: 64-bit support in 2.4.5

2006-08-28 Thread Jon Dowland
Hi,

The new prboom package has much better 64-bit support. Can you
please check and confirm whether or not you still have this
problem, with the new package?


Thanks,

-- 
Jon Dowland



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



Bug#384988: splitmail++: space etc.

2006-08-28 Thread Dan Jacobson
Package: swish++
Version: 5.15.3-3.2
Severity: minor
File: /usr/bin/splitmail++

$ man splitmail++ 2-|grep -- -p.*prefix
   splitmail++ -p prefix [ file ]
   -pprefixSpecifies the common prefix.
no space or yes space?
And why not make a default prefix msg.
or take it from the input file name, filename.1 ...
also say what will happen when encountering existing files.


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



Bug#384986: mediawiki1.7: conflicting advice

2006-08-28 Thread Dan Jacobson
Package: mediawiki1.7
Version: 1.7.1-1
Severity: minor

Conflicting mode advice:
$ zgrep -h chmod /usr/share/mediawiki1.7/debian-scripts/upgrade-mediawiki1.5 
/usr/share/doc/mediawiki1.7/*
chmod 640 $MWVAR/LocalSettings.php
chmod 640 $MWVAR/LocalSettings.php 
chmod 640 $MWVAR/AdminSettings.php
chmod 664 /etc/mediawiki1.7/LocalSettings.php 
chmod 664 /etc/mediawiki1.7/AdminSettings.php (if exists)
chmod 664 /etc/mediawiki1.5/LocalSettings.php 
chmod 664 /etc/mediawiki1.5/AdminSettings.php (if exists)

In README.Debian.gz  you say:
   Upgrading from 1.5 to 1.6 package:
But then talk about 1.7:
2) Copy the configuration files from /etc/mediawiki1.5 to 
/var/lib/mediawiki1.7 and make them writable for
 your webserver user -- usualy www-data.
cp /etc/mediawiki/LocalSettings.php /var/lib/mediawiki1.7

/usr/share/mediawiki1.7/debian-scripts/upgrade-mediawiki1.5 is not mentioned
in /usr/share/doc/mediawiki1.7/README.Debian.gz !
Nor all of here:
grep -nH -e upgrade-mediawiki1.5 /usr/share/doc/mediawiki1.7/*

Also this
/etc/apache2/conf.d/mediawiki1.5.conf
not removed upon purge of mediawiki1.5
same for 1.7


Messages like
MediaWiki 1.7.1
To complete the installation, move config/LocalSettings.php to the parent 
directory. 
don't make sense with no root dir reference.

The message should say  mv /var/lib/mediawiki1.7/config/LocalSettings.php 
/var/lib/mediawiki1.7/


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



Bug#384989: proftpd: pam not used at all

2006-08-28 Thread Leon Bogaert
Package: proftpd
Version: 1.2.10-15sarge1.0.1
Severity: normal



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

Versions of packages proftpd depends on:
ii  adduser  3.97Add and remove users and groups
ii  debconf  1.5.3   Debian configuration management sy
ii  libc62.3.6-15GNU C Library: Shared libraries
ii  libcap1  1:1.10-14   support for getting/setting POSIX.
ii  libpam0g 0.79-3.1Pluggable Authentication Modules l
ii  libssl0.9.7  0.9.7i-1SSL shared libraries
ii  libwrap0 7.6.dbs-9   Wietse Venema's TCP wrappers libra
ii  netbase  4.25Basic TCP/IP networking system
ii  proftpd-common   1.2.10-15sarge1.0.1 Versatile, virtual-hosting FTP dae
ii  ucf  2.0013  Update Configuration File: preserv

proftpd recommends no packages.

-- debconf information:
* shared/proftpd/warning:
* shared/proftpd/inetd_or_standalone: standalone


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



  1   2   3   4   >