Bug#515244: RM: kernel-patch-debianlogo -- ROM; transitional dummy package for linux-patch-debianlogo

2009-02-15 Thread Frank S. Thomas
Package: ftp.debian.org
Severity: normal

Hi,

Please remove kernel-patch-debianlogo from unstable because it is only
a transitional dummy package for linux-patch-debianlogo. Now that the
transitional kernel-patch-debianlogo is part of a stable release, which
means a proper upgrade path is in place, the package is not required in
unstable anymore.

Thanks
Frank

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

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



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



Bug#511996: sl-modem-daemon: slmodemd doesn't work, process unkillable (fwd) (fwd)

2009-02-15 Thread Corey Hickey
Maurizio Avogadro wrote:
 Il 13/02/2009 00:14, Corey Hickey ha scritto:
 There aren't any flags on the open() system call; O_CREAT would be
 needed.
 
 The data file is actually created on the first write:
 
 modem/modem_datafile.c:110, function datafile_save_info()
 --
   int fd;
 
   fd = open(file_name,O_CREAT|O_WRONLY,(S_IRUSR|S_IWUSR));
   if(fd  0)
   return -errno;
   [...]
 --
 
 During my quick tests the file has been created the second time I tried
 to start slmodemd; notice that the first datafile_load_info() happens
 before dropping privileges: if the file is created at that time it will
 be root:root.

You're right, and I see that behavior now too. The file is created on
the first run, before slmodemd exits. On the second run, the file is
available, and slmodemd can open it for reading.

I just did a quick grep of the source, before, and I didn't realize the
file was created elsewhere from where it was read; sorry for wasting
your time on that.

Anyway, to answer your original question about the file's permissions:

# ls -l /var/lib/slmodem/data.modem\:1
-rw--- 1 Slmodemd Slmodemd 24 Feb 14 20:14 /var/lib/slmodem/data.modem:1

 In case it's of any use, I'm attaching a couple log files:

 slmodemd_2.6.26-1-686.log
 slmodemd_2.6.26-1-686_no-drop-privs.log
 
 I couldn't get your logs, please send them again.

Argh, I forgot them. They're attached this time.

 Anyway, I made some tests and - since now - I couldn't reproduce this
 issue, at least with current 2.6.26-1 Lenny kernel.

I think at this point it would be useful for me to summarize my current
understanding of what's going on in this bug report, since it has sort
of split into three different issues.

1. slmodemd hangs and isn't killable under kernels configured with a
particular realtime scheduling configuration. This was the original
reason for my bug report, and I have tracked it down to a kernel bug (or
at least some nasty behavior, if the kernel developers decide it's not a
bug). I sent a report and a test program to the LKML several hours ago:
http://lkml.org/lkml/2009/2/14/272

2. slmodemd creates /var/lib/slmodem/data.modem:1 before exit; that was
just me being confused, so I think this issue can be dropped.

3. On a non-realtime kernel, such as the standard Debian 2.6.26-1-686
kernel, slmodemd doesn't work for me with 10_drop_priveliges.diff
applied, with this error:
164.501196 err: modem:1: modem start = -1: cannot start device.


On that last issue, I dug around with gdb a bit, starting with the
function in which that error message is printed.

modem.c:1140, function modem_start()
modem_comp_init() fails

modem_comp.c:795, function modem_comp_init()
comp_init() fails

modem_comp.c:730, function comp_init()
COMP_ALLOC(dict_size*sizeof(*d));   fails

That last part turns into:
malloc(2048 * 8);


I don't know why the malloc() fails. I went to the same line in my
slmodemd binary that doesn't have 10_drop_privileges.diff, and that
malloc() succeeded, with the same arguments.

Going back to the regular privilege-dropping binary, I used gdb to run
some malloc() tests immediately before and immediately after the
setuid() call. The results showed that malloc() could only allocate a
small amount of memory after the setuid().

I still don't know why that is. I cut modem_main.c down to just the
privilege-dropping code and made it a standalone program, and that
didn't have any trouble allocating lots of memory after the setuid().

My Slmodemd user doesn't have any memory allocation limits, as far as I
can tell (ulimit -a).


I'll do some more investigation, but that will have to wait a day or
two. If you have any tips meanwhile, please let me know.

Thanks,
Corey
161.740201 SmartLink Soft Modem: version 2.9.11 Feb 11 2009 17:18:39
161.740285 modem:1: startup modem...
161.740448 modem:1: update termios...
symbolic link `/dev/ttySL0' - `/dev/pts/0' created.
modem `modem:1' created. TTY is `/dev/pts/0'
161.741660 open file: /var/lib/slmodem/data.modem:1...
161.742914 main: rt applyed: SCHED_FIFO, pri 99
161.743206 main: dropped privileges to 114.105
Use `/dev/ttySL0' as modem device, Ctrl+C for termination.
163.934191 main: termios changed.
163.934234 modem:1: update termios...
164.000320 main: termios changed.
164.000344 modem:1: update termios...
164.101065 modem:1: run cmd: AT
164.101090 modem:1: modem report result: 0 (OK)
164.200483 modem:1: run cmd: ATFC1D2V1S0=0
164.200515 modem:1: modem report result: 0 (OK)
164.301602 modem:1: run cmd: ATS7=60S30=0M1%C1\N3K3N1X1
164.301641 main: alsa_ioctl: cmd 8, arg 0...
164.301680 modem:1: modem report result: 0 (OK)
164.401317 modem:1: run cmd: AT+MS=34
164.401364 modem:1: modem report result: 0 (OK)
164.500957 modem:1: run cmd: ATDT1-760-933-2451
164.500994 modem:1: modem dial: T1-760-933-2451...
164.501004 modem:1: 

Bug#501450: ITP: libeventmachine-ruby -- Event-driven I/O library for high-performance

2009-02-15 Thread Daigo Moriwaki
Hello Ryan,

Ryan Niebur wrote:
 what's the status on this?

It is ready to upload to Debian. I just wait for Lenny's release. Soon after the
release comes out, I will upload libeventmachine-ruby to unstable.

Regards,
Daigo

-- 
Daigo Moriwaki
daigo at debian dot org



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



Bug#515239: xrandr doesn't support TV_FORMAT for the S-Video output of the D945GCLF2 integrated video

2009-02-15 Thread Brice Goglin
Ivan Shmakov wrote:
 Package: xserver-xorg-video-intel
 Version: 2:2.6.1-1
 
   Although the integrated video card on the Intel D945GCLF2
   motherboard has S-Video output, it's not usable since the
   desired format can't be set:
 
 $ xrandr 
 Screen 0: minimum 320 x 200, current 1280 x 1024, maximum 1280 x 1280
 VGA connected 1280x1024+0+0 (normal left inverted right x axis y axis) 338mm 
 x 270mm
 ...
 TV-1 disconnected (normal left inverted right x axis y axis)
 $ xrandr --output TV-1 --set TV_FORMAT PAL 
 X Error of failed request:  BadName (named color or font does not exist)
   Major opcode of failed request:  149 (RANDR)
   Minor opcode of failed request:  11 ()
   Serial number of failed request:  23
   Current serial number in output stream:  23
 $ 
 
   (I've tried the above with the TV set disconnected, but,
   apparently, the same output is shown when the TV is connected.)


The xrandr error when setting TV_FORMAT might well be related to the
upstream bug http://bugs.freedesktop.org/show_bug.cgi?id=16566 which
seems to be fixed in upstream master now.

Then, the general TV support on this board may not be ok yet
from what I see in http://bugs.freedesktop.org/show_bug.cgi?id=17776

Might be good if you could try some patches from above so that we
can see how many problems remain.

Brice



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



Bug#515233: ITP: sqldeveloper -- Oracle SQL Developer

2009-02-15 Thread Vincent Bernat
OoO  En ce  milieu de  nuit étoilée  du dimanche  15 février  2009, vers
04:45, Lazarus Long lazarus.l...@bigfoot.com disait :

 * Package name: sqldeveloper
   Version : 1.5.3.57.83
   Upstream Author : Oracle, Inc. ora...@oracle.org
 * URL : http://otn.oracle.com/software/products/sql/
 * License : Non-free Proprietary (Oracle Technologies Network)

Not even free to distribute...
-- 
BOFH excuse #417:
Computer room being moved.  Our systems are down for the weekend.


pgpCZN48gntwJ.pgp
Description: PGP signature


Bug#491723: Ping?

2009-02-15 Thread Paul van Tilburg
Hello,

On Thu, Feb 12, 2009 at 02:54:46PM +, Daniel Watkins wrote:
 On Thu, 2009-02-12 at 14:04 +0100, Paul van Tilburg wrote:
  Could you please give a status update of this ITP?
  Sorry to bother you again.
 
 Apologies for not answering your previous email, I seem to have lost it
 somehow.  Last time I looked at this (a while ago), this ITP was waiting
 on a few other packages to get into Debian before it could proceed.  I
 haven't really looked at it since, as I've started a job in the interim.
 
 If you want to take the ITP from me, that'd be fine.  If not, I wouldn't
 hold your breath. :)

Hmm ok.  I'm afraid that I have no time for it really, since in the
interim I also took on a few more projects.  So, I'll have to be patient
then.  However, it might be that people wanted to ITP, saw one already
and thought let's wait, I hope they can step in.

Kind regards,
Paul

-- 
PhD Student @ Eindhoven | email: pau...@debian.org
University of Technology, The Netherlands   | JID: p...@luon.net
 Using the Power of Debian GNU/Linux  | GnuPG key ID: 0x50064181



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



Bug#515245: vlc: crash on exit after trying to load rtmp://cp40076.edgefcs.net/ondemand/flash/srx

2009-02-15 Thread Paul Wise
Package: vlc
Version: 0.9.8a-1
Severity: normal

VLC crashes on exit after attempting to view this RTMP URL and then
checking the codec information.

To reproduce: 

$ vlc rtmp://cp40076.edgefcs.net/ondemand/flash/srx
Tools - Codec information
Close
X (close the window)
crashes

See attached backtrace.

-- System Information:
Debian Release: 5.0
  APT prefers testing
  APT policy: (700, 'testing'), (600, 'unstable'), (550, 'experimental')
Architecture: amd64 (x86_64)

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

Versions of packages vlc depends on:
ii  libaa1 1.4p5-37+b1   ascii art library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcaca0   0.99.beta16-1 colour ASCII art library
ii  libdbus-1-31.2.1-5   simple interprocess messaging syst
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libgl1-mesa-glx [libgl 7.0.3-7   A free implementation of the OpenG
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libglu1-mesa [libglu1] 7.0.3-7   The OpenGL utility library (GLU)
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libnotify1 [libnotify1 0.4.4-3   sends desktop notifications to a n
ii  libqtcore4 4.4.3-1   Qt 4 core module
ii  libqtgui4  4.4.3-1   Qt 4 GUI module
ii  libsdl-image1.21.2.6-3   image loading library for Simple D
ii  libsdl1.2debian1.2.13-2  Simple DirectMedia Layer
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libtar 1.2.11-5  C library for manipulating tar arc
ii  libvlccore00.9.8a-1  multimedia player and streamer lib
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxv1 2:1.0.4-1 X11 Video extension library
ii  libxxf86vm11:1.0.2-1 X11 XFree86 video mode extension l
ii  ttf-dejavu-core2.25-3Vera font family derivate with add
ii  vlc-nox0.9.8a-1  multimedia player and streamer (wi
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

vlc recommends no packages.

Versions of packages vlc suggests:
pn  mozilla-plugin-vlcnone (no description available)
pn  videolan-doc  none (no description available)

Versions of packages vlc-nox depends on:
ii  liba52-0.7.4   0.7.4-11  library for decoding ATSC A/52 str
ii  libasound2 1.0.16-2  ALSA library
ii  libass10.9.5-2   library for SSA/ASS subtitles rend
ii  libavahi-client3   0.6.23-3lenny1Avahi client library
ii  libavahi-common3   0.6.23-3lenny1Avahi common library
ii  libavc1394-0   0.5.3-1+b1control IEEE 1394 audio/video devi
ii  libavcodec51   0.svn20080206-17  ffmpeg codec library
ii  libavformat52  0.svn20080206-17  ffmpeg file format library
ii  libavutil490.svn20080206-17  ffmpeg utility library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcdio7   0.78.2+dfsg1-3library to read and control CD-ROM
ii  libdbus-1-31.2.1-5   simple interprocess messaging syst
ii  libdca00.0.5-1   decoding library for DTS Coherent 
ii  libdvbpsi4 0.1.5-3.1 library for MPEG TS and DVB PSI ta
ii  libdvdnav4 4.1.2-3   DVD navigation library
ii  libdvdread30.9.7-11  library for reading DVDs
ii  libebml0   0.7.7-3.1 access library for the EBML format
ii  libfaad0   2.6.1-3.1 freeware Advanced Audio Decoder - 
ii  libflac8   1.2.1-1.2 Free Lossless Audio Codec - runtim
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libfribidi00.10.9-1  Free Implementation of the Unicode
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libgcrypt111.4.1-1   LGPL Crypto library - runtime libr
ii  libgnutls262.4.2-6   the GNU TLS library - runtime libr
ii  libhal10.5.11-8  Hardware Abstraction Layer - share
ii  libid3tag0 0.15.1b-10ID3 tag reading library from the M
ii  liblircclient0

Bug#515246: ntpdate: unclear when settimeofday() is used

2009-02-15 Thread Jakub Wilk

Package: ntpdate
Version: 1:4.2.4p4+dfsg-8
Severity: normal

ntpdate manual page contradicts itself w.r.t. when the settimeofday() 
routine is used to set time:


[...]

If ntpdate determines the clock is in error more than 0.5 second it  
will simply step the time by calling the system settimeofday() routine. 
If the error is less than 0.5 seconds, it will slew the time by calling 
the system adjtime() routine. 


[...]

The default is to step the time using settimeofday() if the offset is 
greater than +-128 ms.


[...]

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

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

Versions of packages ntpdate depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libcap1   1:1.10-14  support for getting/setting POSIX.
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  netbase   4.34   Basic TCP/IP networking system

Versions of packages ntpdate recommends:
pn  lockfile-progsnone (no description available)

ntpdate suggests no packages.

-- no debconf information

--
Jakub Wilk



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



Bug#496181: console-cyrillic: confirming

2009-02-15 Thread Aleksej R. Serdyukov
Package: console-cyrillic
Version: 0.9-15.2
Followup-For: Bug #496181


Doesn't seem to work here, either.
Tried Caps lock, Ctrl-Shift, Ctrl-Alt, Menu, left Windows key.

*** /etc/console-cyrillic
# This is the system wide configuration file for cyr(1).
# In Debian it is used also by /etc/rcS.d/S61console-cyrillic
# (Package: console-cyrillic)

# LOOK:
# Change this to NO if you don't want this file to be altered by Debconf.
# Debconf: YES

# LOOK:
# Set this to NO if you don't want the package console-cyrillic
# to setup Cyrillic on console at boot-time.  Otherwise set it YES.
# Bootsetup: YES

style uni
size 16
encoding utf-8
layout ru
options ctrl_shift_toggle 
ttys /dev/tty[1-6]


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

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

Versions of packages console-cyrillic depends on:
ii  console-terminus 4.26-2.1Fixed-width fonts for fast reading
ii  console-tools1:0.2.3dbs-65.1 Linux console and font utilities
ii  debconf [debconf-2.0]1.5.24  Debian configuration management sy
ii  perl-base5.10.0-19   minimal Perl system

console-cyrillic recommends no packages.

Versions of packages console-cyrillic suggests:
ii  libunicode-string-perl2.09-3+b1  Perl modules for Unicode strings
ii  perl  5.10.0-19  Larry Wall's Practical Extraction 

-- debconf-show failed



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



Bug#515247: nautilus cant set permissions for files in ftp sessions

2009-02-15 Thread Robin Kluth
Package: nautilus
Version: 2.20.0-7
Severity: normal

Hey,

I've seen that nautilus cannot set permissions in ftp sessions - why? It says 
it doesnt can get the status of the ftp-files.
On the local machine it works perfectly.

Is this an known issue?

Greetz,
Robin K.

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

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

Versions of packages nautilus depends on:
ii  desktop-file-utils0.15-1 Utilities for .desktop files
ii  gnome-control-center  1:2.22.2.1-2   utilities to configure the GNOME d
ii  libart-2.0-2  2.3.20-2   Library of functions for 2D graphi
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.22.0-1   Bonobo CORBA interfaces library
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-7The Cairo 2D vector graphics libra
ii  libeel2-2.20  2.20.0-7   Eazel Extensions Library (for GNOM
ii  libesd0   0.2.36-3   Enlightened Sound Daemon - Shared 
ii  libexempi32.0.1-1library to parse XMP metadata (Lib
ii  libexif12 0.6.16-2.1 library to parse EXIF files
ii  libgail-common1.22.3-1   GNOME Accessibility Implementation
ii  libgail18 1.22.3-1   GNOME Accessibility Implementation
ii  libgconf2-4   2.22.0-1   GNOME configuration database syste
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.16.6-1   The GLib library of C routines
ii  libgnome-desktop-22.22.3-2   Utility library for loading .deskt
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.20.1.1-1 A powerful object-oriented display
ii  libgnomeui-0  2.20.1.1-2 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-01:2.22.0-5 GNOME Virtual File System (runtime
ii  libgtk2.0-0   2.12.11-4  The GTK+ graphical user interface 
ii  libnautilus-extension12.20.0-7   libraries for nautilus components 
ii  liborbit2 1:2.14.13-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0 1.20.5-3   Layout and rendering of internatio
ii  librsvg2-22.22.2-2lenny1 SAX-based renderer library for SVG
ii  libselinux1   2.0.65-5   SELinux shared libraries
ii  libstartup-notification0  0.9-1  library for program launch feedbac
ii  libtrackerclient0 0.6.6-2metadata database, indexer and sea
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxml2   2.6.32.dfsg-5  GNOME XML library
ii  nautilus-data 2.20.0-7   data files for nautilus
ii  shared-mime-info  0.30-2 FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
ii  app-install-data  2008.11.27 Application Installer Data Files
ii  desktop-base  5.0.3  common files for the Debian Deskto
ii  eject 2.1.5+deb1-4   ejects CDs and operates CD-Changer
ii  libgnomevfs2-extra1:2.22.0-5 GNOME Virtual File System (extra m
ii  librsvg2-common   2.22.2-2lenny1 SAX-based renderer library for SVG
ii  nautilus-cd-burner2.20.0-1   CD Burning front-end for Nautilus
ii  synaptic  0.62.1+nmu1Graphical package manager

Versions of packages nautilus suggests:
ii  eog  2.22.3-2Eye of GNOME graphics viewer progr
ii  evince [pdf-viewer]  2.22.2-4~lenny1 Document (postscript, pdf) viewer
pn  fam  none  (no description available)
pn  totem | mp3-decoder  none  (no description available)
pn  tracker  none  (no description available)

-- no debconf information



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



Bug#514405: [Pkg-puppet-devel] Bug#514405: Patch to fix this bug

2009-02-15 Thread Vincent Bernat
OoO Lors  de la soirée naissante  du jeudi 12 février  2009, vers 17:58,
Micah Anderson mi...@riseup.net disait :

 This fixes the bug for me. This bug occurs when clients are using stored
 configs. The bug report is not quite clear but I understand that the bug
 is 100%  reproducible making stored  config unusable with  Lenny. Stored
 config is one of the primary reason I use puppet in the first place.
 
 I don't bump the severity but please, try to push the patch to lenny.

 I would love to fix a number of things like this for Lenny, but with the
 release likely going to be on Saturday, and this bug not being a release
 blocking issue, I do not think it can be done. :(

Could you push the fix for 5.0.1?

Thanks.
-- 
Make sure your code does nothing gracefully.
- The Elements of Programming Style (Kernighan  Plauger)


pgpMuikghWVqW.pgp
Description: PGP signature


Bug#515248: libxml-xpath-perl: Missing newline in error message

2009-02-15 Thread Petter Reinholdtsen

Package: libxml-xpath-perl
Version: 1.13-6
Severity: minor
Tags: patch

When trying to load a non-existing file, a message from xpath states
this but fail to include a trailing newline.  This patch solve the
problem.

--- /usr/bin/xpath  2004-10-27 19:23:22.0 +0200
+++ /tmp/xpath  2009-02-15 11:42:13.0 +0100
@@ -94,7 +94,7 @@
}
}
else {
-   print STDERR No nodes found in $filename unless 
$quiet;
+   print STDERR No nodes found in $filename\n unless 
$quiet;
}
}
else {

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

Versions of packages libxml-xpath-perl depends on:
ii  libxml-parser-perl  2.34-4.2 Perl module for parsing XML files
ii  perl5.8.8-7etch6 Larry Wall's Practical Extraction

libxml-xpath-perl recommends no packages.

-- no debconf information



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



Bug#515187: problem fixed

2009-02-15 Thread Johan Van de Wauw

I found a solution for my problem:
https://bugs.launchpad.net/ubuntu/+source/xserver-xorg-video-r128/+bug/284309/comments/19

adding HorizSync 31.50-50.00 to the Monitor section of xorg.conf did the 
trick




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



Bug#512191: websvn: WebSVN exposes protected files to users with insufficient permissions

2009-02-15 Thread Thijs Kinkhorst
Hi,

Thank you for your work. I have uploaded the lenny version to stable-security, 
with one further addition: added the CVE entries for previous updates to the 
changelog.

When we can release this update, it will automatically propagate to testing 
and unstable since versions are equal.

Pierre, when making a new upload of 2.1.x, please ensure that all CVE entries 
included in the current package changelog are copied into your new version.


cheers,
Thijs


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


Bug#370822: xteddy: Please switch to newer version of imlib

2009-02-15 Thread Moritz Muehlenhoff
severity 370822 serious
thanks

On Tue, Jun 06, 2006 at 06:13:36PM -0400, Nathanael Nerode wrote:
 Package: xteddy
 Version: 2.0.2-2.1
 Severity: wishlist
 
 I just noticed that xteddy is still using imlib11.  Please
 switch to libimlib2-dev if at all possible; imlib11 is in
 oldlibs and will probably go away before etch+1.

imlib1 will be removed for Squeeze, so this is now release-critical.

Cheers,
Moritz



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



Bug#515251: RM: kommando -- ROM; irrellevant

2009-02-15 Thread Sune Vuorela
Package: ftp.debian.org
Severity: normal


Hi

Please remove kommando - it is only relevant for a kde3 based desktop.
and now we are going kde4! 

yay for lenny.

/Sune


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

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



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



Bug#515250: RM: tastymenu -- ROM; Not usable in a KDE4 based kde world

2009-02-15 Thread Sune Vuorela
Package: ftp.debian.org
Severity: normal


Hi!

Now that lenny is out, hooray, we can start making the world ready for KDE 4.

Please remove tastymenu, it is bound to kde3 desktop.


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

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



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



Bug#456127: icewm -- Please transition to imlib2

2009-02-15 Thread Moritz Muehlenhoff
severity 456127 serious
thanks

On Thu, Dec 13, 2007 at 01:30:12PM +0530, Kumar Appaiah wrote:
 Package: icewm
 Version: 1.2.33-1
 User: debian...@lists.debian.org
 Usertags: oldlibs oldlibs-imlib
 
 Hi!
 
 On behalf of the QA group, I have been looking at packages which are
 blocking the removal of libraries currently in the section oldlibs,
 and icewm is one of them, depending on imlib. With the aim
 of fixing as many of the depending as possible to pave the way for
 gradual removal of imlib, I would request you to consider
 moving to imlib2.

imlib2 will be removed from Sqeeze, so this is now release-critical.

Cheers,
Moritz



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



Bug#515249: installation-reports: Various issues on IBM Power5 (lvm, multipath, yaboot.conf)

2009-02-15 Thread Paul McEnery
Package: installation-reports
Severity: grave
Justification: renders package unusable



-- Package-specific info:

Boot method: Network boot using a TFTP server
Image version: 
ftp://ftp.debian.org/debian/dists/sid/main/installer-powerpc/current/images/powerpc64/netboot/vmlinuz-chrp.initrd
 ** see note below
Date: Sat Feb 14 21:00:00 GMT 2009

Machine: IBM,9117-570 (pSeries)
Partitions:

Machine: IBM,9117-570 (pSeries)
Partitions:

* sfdisk -d /dev/mapper/mpath0

# partition table of /dev/mapper/mpath0
unit: sectors

/dev/mapper/mpath0p1 : start=   63, size=16002, Id=41, bootable
/dev/mapper/mpath0p2 : start=16065, size=   498015, Id=83
/dev/mapper/mpath0p3 : start=   514080, size= 66589425, Id=8e
/dev/mapper/mpath0p4 : start=0, size=0, Id= 0



Base System Installation Checklist:
[O] = OK, [E] = Error (please elaborate below), [ ] = didn't try it

Initial boot:   [E]
Detect network card:[O]
Configure network:  [O]
Detect CD:  [ ]
Load installer modules: [O]
Detect hard drives: [E]
Partition hard drives:  [O]
Install base system:[O]
Clock/timezone setup:   [O]
User/password setup:[O]
Install tasks:  [ ]
Install boot loader:[O]
Overall install:[E]

Comments/Problems:

Initial boot: Maybe not soe much an error, I had to specify the
  console at the boot prompt console=hvc0,38400

Detect had drives: During an attempt to reinstall after a failed
   install, I had to drop to a shell and remove
   any existing logical volumes before the
   disk detection process was able to detect
   the hard drive. Otherwise, it simply told
   me that there were not hard drives...

Overall install:

* Although the URL above is for the SID installer, when the
install was complete, I noticed that LENNY had been installed.
I noticed this by looking at the /etc/apt/sources.list file.

Other issues that I was not particularly happy with were:

1.
Selecting guided LVM allowed a the root filesystem to be
placed in a logical volume (which I wanted), but then the
yaboot.conf file was still writted to /etc/yaboot.conf.
I had to manually rescue the system after the install and
move /etc/yaboot.conf to /boot/etc/yaboot.conf. In my view
LVM is going to be the way forward and this configuration
file should not been located on the root filesystem. I
hope everyone is aware of this issue and has looked at
keeping files required to boot the system in /boot

2.
After fixing the location of the yaboot.conf file, the
system refused to boot. It was trying to boot the label
old which was invalid because the kernel has not yet
been upgraded. I therefore had to add the following to
the yaboot.conf before the correct default entry would
boot:

defaultos=Linux


3.
I also had issues with multipath root and LVM:

3.1
I had to add multipath to the lvm2 PREREQ's in order
for multipath to be started before LVM.

3.2
Debian installer was called with:

disk-detect/multipath/enable=true

However, once the install had completed, the lvm.conf
was not configured to filter out the underlying SCSI
devices. I had to add the following filter:

filter = [ r/disk/, r/sd.*/, a/.*/ ]


After rebuilding the initramfs (above two changes
commited), it all worked quite nicely ;)



-- 

Please make sure that the hardware-summary log file, and any other
installation logs that you think would be useful are attached to this
report. Please compress large files using gzip.

Once you have filled out this report, mail it to sub...@bugs.debian.org.

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=5.0 (lenny) - installer build 20090123
X_INSTALLATION_MEDIUM=netboot

==
Installer hardware-summary:
==
umame -a: Linux rootvg 2.6.26-1-powerpc64 #1 SMP Sat Jan 10 14:42:07 CET 2009 
ppc64 unknown
lsmod: Module  Size  Used by
lsmod: ufs   103184  0 
lsmod: hfsplus   104520  0 
lsmod: hfs72464  0 
lsmod: md_mod119108  0 
lsmod: xfs   732616  0 
lsmod: reiserfs  334652  0 
lsmod: jfs   234180  0 
lsmod: ext3  187856  5 
lsmod: jbd79760  1 ext3
lsmod: vfat   20560  0 
lsmod: fat76656  1 vfat
lsmod: nls_base   15356  5 hfsplus,hfs,jfs,vfat,fat
lsmod: ext2  103952  1 
lsmod: mbcache16884  2 ext3,ext2
lsmod: dm_emc 11648  0 
lsmod: dm_round_robin  9176  1 
lsmod: dm_multipath   31816  3 dm_emc,dm_round_robin
lsmod: dm_mod 95016  21 dm_multipath
lsmod: sd_mod 3  2 
lsmod: ibmvscsic

Bug#515252: xt: Depends on legacy GTK 1.2 libs

2009-02-15 Thread Moritz Muehlenhoff
Package: xt
Severity: serious

xt build-depends on legacy libs, which will be removed for Squeeze:
gtkglarea5-dev, libgtk1.2-dev, libgdk-pixbuf-dev

Please port xt to use the newer versions or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages xt depends on:
ii  bind9-host [host]1:9.5.0.dfsg.P2-5.1 Version of 'host' bundled with BIN
pn  gtkglarea5   none  (no description available)
ii  libc62.7-18  GNU C Library: Shared libraries
pn  libgdk-pixbuf2   none  (no description available)
ii  libgl1-mesa-glx [lib 7.0.3-7 A free implementation of the OpenG
ii  libglib1.2ldbl   1.2.10-19   The GLib library of C routines
ii  libglu1-mesa [libglu 7.0.3-7 The OpenGL utility library (GLU)
pn  libgtk1.2none  (no description available)
ii  libx11-6 2:1.1.5-2   X11 client-side library
ii  libxext6 2:1.0.4-1   X11 miscellaneous extension librar
ii  libxi6   2:1.1.4-1   X11 Input extension library
ii  traceroute   2.0.12-1Traces the route taken by packets 

xt recommends no packages.

xt suggests no packages.



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



Bug#515253: RM: kwin-style-powder -- ROM; kde3 window decoration

2009-02-15 Thread Sune Vuorela
Package: ftp.debian.org
Severity: normal


This packgaes provides a kde3 window decorations and there is currently
no plans for porting it to kde4. Please remove it.

/Sune


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

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



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



Bug#515202: [INTL:es] Spanish debconf template translation for ddclient

2009-02-15 Thread Francisco Javier Cuadrado
Quoting Francisco Javier Cuadrado (fcocuadr...@gmail.com):
 Package: ddclient
 Version: 3.7.3-6
 Severity: wishlist
 Tags: l10n patch


One string remains untranslated:


 #. Type: string
 #. Description
 #: ../ddclient.templates:11001
 msgid Interval between ddclient runs:
 msgstr 

Fixed, you can use this one.

Sorry and thanks.


-- 
Saludos

Fran
# ddclient translation to spanish
# Copyright (C) 2003, 2007, 2009 Software in the Public Interest
# This file is distributed under the same license as the ddclient package.
#
# Changes:
# - Initial translation
#   Vicente H. vherr...@supercable.es, 2003
#
# - Updates
#   Javier Fernandez-Sanguino, 2007
#   Francisco Javier Cuadrado fcocuadr...@gmail.com, 2009
#
#  Traductores, si no conoce el formato PO, merece la pena leer la
#  documentación de gettext, especialmente las secciones dedicadas a este
#  formato, por ejemplo ejecutando:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#
# Equipo de traducción al español, por favor lean antes de traducir
# los siguientes documentos:
#
# - El proyecto de traducción de Debian al español
#   http://www.debian.org/intl/spanish/
#   especialmente las notas y normas de traducción en
#   http://www.debian.org/intl/spanish/notas
#
# - La guía de traducción de po's de debconf:
#   /usr/share/doc/po-debconf/README-trans
#   o http://www.debian.org/intl/l10n/po-debconf/README-trans
#
# Si tiene dudas o consultas sobre esta traducción consulte con el último
# traductor (campo Last-Translator) y ponga en copia a la lista de
# traducción de Debian al español (debian-l10n-span...@lists.debian.org)
msgid 
msgstr 
Project-Id-Version: ddclient 3.7.3-6\n
Report-Msgid-Bugs-To: ddcli...@packages.debian.org\n
POT-Creation-Date: 2009-01-30 07:04+0100\n
PO-Revision-Date: 2009-02-14 19:27+0100\n
Last-Translator: Javier Fernandez-Sanguino j...@debian.org\n
Language-Team: Debian l10n Spanish debian-l10n-span...@lists.debian.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=ISO-8859-15\n
Content-Transfer-Encoding: 8bit\n

#. Type: select
#. Choices
#: ../ddclient.templates:2001
msgid other
msgstr otro

#. Type: select
#. Description
#: ../ddclient.templates:2002
msgid Dynamic DNS service provider:
msgstr Proveedores de servicio de DNS dinámico:

#. Type: select
#. Description
#: ../ddclient.templates:2002
msgid 
Please select the dynamic DNS service you are using. If the service you use 
is not listed, choose \other\ and you will be asked for the protocol and 
the server name.
msgstr 
Seleccione el servicio dinámico DNS que usted esté usando. Si no está 
listado el servicio que utiliza elija «otro» y le pedirá el protocolo y el 
nombre del servidor.

#. Type: string
#. Description
#: ../ddclient.templates:3001
msgid Dynamic DNS server:
msgstr Servidor de DNS dinámico:

#. Type: string
#. Description
#: ../ddclient.templates:3001
msgid 
Please enter the name of the server which is providing you with dynamic DNS 
service (example: members.dyndns.org).
msgstr 
Introduzca el nombre del servidor que le esta prestando servicio DNS 
dinámico (p.ej. «members.dyndns.org»).

#. Type: select
#. Description
#: ../ddclient.templates:4001
msgid Dynamic DNS update protocol:
msgstr Protocolo de actualización de DNS dinámico:

#. Type: select
#. Description
#: ../ddclient.templates:4001
msgid 
Please select the dynamic DNS update protocol used by your dynamic DNS 
service provider.
msgstr 
Elija el protocolo de actualización DNS que utiliza su proveedor de servicio 
de DNS dinámico.

#. Type: string
#. Description
#: ../ddclient.templates:5001
msgid DynDNS fully qualified domain names:
msgstr Nombres completos de dominios DynDNS:

#. Type: string
#. Description
#: ../ddclient.templates:5001
msgid 
Please enter the list of fully qualified domain names for the local host(s) 
(for instance, \myname.dyndns.org\ with only one host or \myname1.dyndns.
org,myname2.dyndns.org\ for two hosts).
msgstr 
Introduzca la lista de los dominios completos para los sistemas locales (como
 «minombre.dyndns.org» si sólo tiene un sistema o «minombre1.dyndns.org,
minombre2.dyndns.org» si tiene dos).

#. Type: string
#. Description
#: ../ddclient.templates:6001
msgid Username for dynamic DNS service:
msgstr Nombre de usuario para el servidor de DNS dinámico:

#. Type: string
#. Description
#: ../ddclient.templates:6001
msgid Please enter the username to use with the dynamic DNS service.
msgstr 
Introduzca el nombre de usuario a utilizar para conectarse al servicio de 
DNS dinámico.

#. Type: password
#. Description
#: ../ddclient.templates:7001
msgid Password for dynamic DNS service:
msgstr Contraseña para el servicio de DNS dinámico:

#. Type: password
#. Description
#: ../ddclient.templates:7001
msgid Please enter the password to use with the dynamic DNS service.
msgstr 
Introduzca la contraseña a utilizar para acceder al servicio de DNS 
dinámico.

#. Type: string
#. Description
#: ../ddclient.templates:8001
msgid Network 

Bug#515254: cheops: Depends on legacy GTK 1.2 libs

2009-02-15 Thread Moritz Muehlenhoff
Package: cheops
Severity: serious

cheops build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages cheops depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
pn  libsnmp15 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library
ii  xterm 239-1  X terminal emulator

cheops recommends no packages.

Versions of packages cheops suggests:
pn  vncviewer none (no description available)



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



Bug#515256: [pristine-tar] pristine-gz failed to reproduce build of gnome-rdp_0.2.3.orig.tar.gz

2009-02-15 Thread David Paleino
Package: pristine-tar
Version: 0.21
Severity: normal

Hello,

$ pristine-tar -vdk commit ../gnome-rdp_0.2.3.orig.tar.gz 
pristine-tar: git archive --format=tar 35f991c3a6a714052610c3aea206609f4dc25246 
| (cd '/tmp/pristine-tar.HKtBLwsisJ'  tar x)
pristine-tar: set subdir to gnome-rdp-0.2.3
pristine-tar: subdir is gnome-rdp-0.2.3
pristine-tar: mkdir /tmp/pristine-tar.OA6avAUANc/workdir
pristine-tar: mv /tmp/pristine-tar.HKtBLwsisJ 
/tmp/pristine-tar.OA6avAUANc/workdir/gnome-rdp-0.2.3
pristine-tar: tar cf /tmp/pristine-tar.OA6avAUANc/recreatetarball --owner 0 
--group 0 --numeric-owner -C /tmp/pristine-tar.OA6avAUANc/workdir 
--no-recursion --mode 0644 --files-from /tmp/pristine-tar.OA6avAUANc/manifest
pristine-tar: pristine-gz -v -d -k gendelta ../gnome-rdp_0.2.3.orig.tar.gz 
/tmp/pristine-tar.924KBwENHs/wrapper
pristine-gz: gzip -dc  ../gnome-rdp_0.2.3.orig.tar.gz  
/tmp/pristine-gz.kuRhMrZ97j/test
debug: flags: [0, 0, 0, 0, 0, 0, 0, 0] timestamp: 3767048610 level: 0 os: 255 
name: 
pristine-gz: zgz -n -M --osflag 255 -F  -T 3767048610 -c  
/tmp/pristine-gz.kuRhMrZ97j/test  /tmp/pristine-gz.kuRhMrZ97j/test.gz
pristine-gz: zgz -n -M --osflag 255 -F  -T 3767048610 --quirk buggy-bsd -c  
/tmp/pristine-gz.kuRhMrZ97j/test  /tmp/pristine-gz.kuRhMrZ97j/test.gz
pristine-gz failed to reproduce build of ../gnome-rdp_0.2.3.orig.tar.gz
(Please file a bug report.)
pristine-tar: command failed: pristine-gz -v -d -k gendelta 
../gnome-rdp_0.2.3.orig.tar.gz /tmp/pristine-tar.924KBwENHs/wrapper
pristine-tar: failed to generate delta
$

The tarball is available at:

http://ftp.debian.org/debian/pool/main/g/gnome-rdp/gnome-rdp_0.2.3.orig.tar.gz


Ciao,
David

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.26-1-686

Debian Release: 5.0
  500 unstablewww.debian-multimedia.org 
  500 unstabledebian.fastweb.it 
  500 experimentalwww.debian-multimedia.org 
1 experimentaldebian.fastweb.it 

--- Package information. ---
Depends (Version) | Installed
=-+-=
xdelta| 1.1.3-8
libc6  (= 2.7-1) | 2.9-0exp2
zlib1g   (= 1:1.1.4) | 1:1.2.3.3.dfsg-12
perl-modules  | 5.10.0-19

-- 
 . ''`.  Debian maintainer | http://wiki.debian.org/DavidPaleino
 : :'  : Linuxer #334216 --|-- http://www.hanskalabs.net/
 `. `'`  GPG: 1392B174 | http://snipr.com/qa_page
   `-   2BAB C625 4E66 E7B8 450A C3E1 E6AA 9017 1392 B174


signature.asc
Description: PGP signature


Bug#515255: linux-image-2.6.18-6-xen-vserver-686: No grub entry's after install of kernel, and when I add it by hand the kernel can't start

2009-02-15 Thread Henrik Dige Semark
Package: linux-image-2.6.18-6-xen-vserver-686
Version: 2.6.18.dfsg.1-24
Severity: important


This is a very big problem for my anyway, I have to use both Xen and Vserver, 
and the kernel can provide my both, but when I install it, (both amd64 
and 686 kernel) it says “Changing /boot/grub/menu.lst” but there is 
nothing changed in menu.lst so I can't start the kernel, then I entered 
it by hand (see my menu.lst below) and rebooted and tried to start the 
new kernel, but then it boots and stops with “waiting for root filesystem... 
...” and then never continues

*** My menu.lst ***

## ## End Default Options ##

title   Debian GNU/Linux, kernel 2.6.18-6-686
root(hd2,0)
kernel  /boot/vmlinuz-2.6.18-6-686 root=/dev/md1 ro
initrd  /boot/initrd.img-2.6.18-6-686
savedefault

title   Debian GNU/Linux, kernel 2.6.18-6-xen-vserver-686
root(hd2,0)
kernel  /boot/vmlinuz-2.6.18-6-xen-vserver-686 root=/dev/md1 ro
initrd  /boot/initrd.img-2.6.18-6-xen-vserver-686
savedefault

title   Debian GNU/Linux, kernel 2.6.18-6-vserver-686
root(hd2,0)
kernel  /boot/vmlinuz-2.6.18-6-vserver-686 root=/dev/md1 ro
initrd  /boot/initrd.img-2.6.18-6-vserver-686
savedefault


*** ls -a of /boot ***
config-2.6.18-6-486
config-2.6.18-6-686
config-2.6.18-6-vserver-686
config-2.6.18-6-xen-vserver-686
grub
initrd.img-2.6.18-6-486
initrd.img-2.6.18-6-486.bak
initrd.img-2.6.18-6-686
initrd.img-2.6.18-6-vserver-686
initrd.img-2.6.18-6-xen-vserver-686
initrd.img-2.6.18-6-xen-vserver-686.bak
System.map-2.6.18-6-486
System.map-2.6.18-6-686
System.map-2.6.18-6-vserver-686
System.map-2.6.18-6-xen-vserver-686
vmlinuz-2.6.18-6-486
vmlinuz-2.6.18-6-686
vmlinuz-2.6.18-6-vserver-686
vmlinuz-2.6.18-6-xen-vserver-686



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

Versions of packages linux-image-2.6.18-6-xen-vserver-686 depends on:
ii  initramfs-tools 0.85itools for generating an initramfs
ii  linux-modules-2.6.18-6- 2.6.18.dfsg.1-24 Linux 2.6.18 modules on i686

Versions of packages linux-image-2.6.18-6-xen-vserver-686 recommends:
pn  libc6-xen none (no description available)

-- no debconf information



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



Bug#508469: confirmation

2009-02-15 Thread rektide
I too am getting this error, as per Slaven's report.  reinstalling did not 
alter the
results.

Let me know if there is anything I can do to aid diagnosis.



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



Bug#514249: Implementing the patch

2009-02-15 Thread Neil Williams
Package: dpkg-cross
tag 514249 + pending
thanks

Now that Lenny has been released, I can't see any reason to retain
-dcv1 packages in Squeeze, especially as dpkg-cross is destined to be
part of dpkg by then.

I've implemented the patch above and I'm going to upload 2.4.0 to
Debian unstable with -dcv1 provision removed.

-- 


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



pgpnkySFW0nUZ.pgp
Description: PGP signature


Bug#509575: module-init-tools update etch=lenny fails on old system due to old diversion

2009-02-15 Thread Alexey Pikalev
I had the same problem while updating from etch to lenny today

[UPGRADE] module-init-tools 3.3-pre4-2 - 3.4-1

dpkg failed to configure the package:

# dpkg --configure module-init-tools
Setting up module-init-tools (3.4-1) ...
dpkg-divert: rename involves overwriting `/sbin/depmod' with
  different file `/sbin/depmod.modutils', not allowed
dpkg: error processing module-init-tools (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 module-init-tools

I've found that diverted files was the same as original files:

# dpkg-divert  --list|grep depmod
diversion of /sbin/depmod to /sbin/depmod.modutils by module-init-tools
diversion of /usr/share/man/man8/depmod.8.gz to
/usr/share/man/man8/depmod.modutils.8.gz by module-init-tools
diversion of /usr/share/man/fr/man8/depmod.8.gz to
/usr/share/man/fr/man8/depmod.modutils.8.gz by module-init-tools

# ls -l /sbin/depmod*
-rwxr-xr-x 1 root root 44188 2008-04-05 05:41 /sbin/depmod
-rwxr-xr-x 1 root root 44188 2008-04-05 05:41 /sbin/depmod.modutils

# diff /sbin/depmod /sbin/depmod.modutils
no answer

tried to remove diversion:
# dpkg-divert --rename --remove /sbin/depmod
Removing `diversion of /sbin/depmod to /sbin/depmod.modutils by
module-init-tools'
dpkg-divert: rename involves overwriting `/sbin/depmod' with
  different file `/sbin/depmod.modutils', not allowed

then i removed depmod.modutils:
# mv /sbin/depmod.modutils /root/
# dpkg-divert --rename --remove /sbin/depmod
Removing `diversion of /sbin/depmod to /sbin/depmod.modutils by
module-init-tools'
# dpkg-divert --rename --remove /sbin/depmod
No diversion `any diversion of /sbin/depmod', none removed
# dpkg --configure module-init-tools
Setting up module-init-tools (3.4-1) ...
dpkg-divert: rename involves overwriting `/sbin/insmod' with
  different file `/sbin/insmod.modutils', not allowed
dpkg: error processing module-init-tools (--configure):
 subprocess post-installation script returned error exit status 2
Errors were encountered while processing:
 module-init-tools

same with other files:
# mv /sbin/insmod.modutils /root/
# mv /sbin/update-modules.modutils /root/
# mv /sbin/modinfo.modutils /root/
# mv /sbin/lsmod.modutils /root/
# ls -l rmm*
-rwxr-xr-x 1 root root 7540 2008-04-05 05:41 rmmod
-rwxr-xr-x 1 root root 7540 2008-04-05 05:41 rmmod.Lmodutils
lrwxrwxrwx 1 root root   15 2008-07-29 02:34 rmmod.modutils -
insmod.modutils
# dpkg-divert  --list|grep rmmod
diversion of /sbin/rmmod to /sbin/rmmod.Lmodutils by module-init-tools
diversion of /usr/share/man/man8/rmmod.8.gz to
/usr/share/man/man8/rmmod.modutils.8.gz by module-init-tools
diversion of /usr/share/man/fr/man8/rmmod.8.gz to
/usr/share/man/fr/man8/rmmod.modutils.8.gz by module-init-tools
# mv rmmod.Lmodutils /root/
# ls -l modpro*
-rwxr-xr-x 1 root root 25124 2008-04-05 05:41 modprobe
-rwxr-xr-x 1 root root 25124 2008-04-05 05:41 modprobe.Lmodutils
lrwxrwxrwx 1 root root15 2008-07-29 02:34 modprobe.modutils -
insmod.modutils
# diff modprobe modprobe.Lmodutils
# mv modprobe.Lmodutils /root/
# dpkg --configure module-init-tools
Setting up module-init-tools (3.4-1) ...
# dpkg-reconfigure module-init-tools

Best regards, Alexey



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



Bug#515257: Debian-Live lack of visibiliy

2009-02-15 Thread Mathieu GELI
Owner: debian-l...@lists.debian.org
Package: www.debian.org
Severity: wishlist

Hi, since Debian 5.0 is out and even if it is quickly mentioned in the
announce [1], it would be nice if there was some evident link of
Debian Live
existence on either [2] or [3] with pointers to the cdimage mirror [4].
I think not only d-l but the whole project would benefit of such
better visibility.

Cheers

[1] http://debian.org/News/2009/20090214
[2] http://www.debian.org/
[3] http://www.debian.org/distrib/
[4] http://cdimage.debian.org/cdimage/release/5.0.0-live/

-- 
Mathieu



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



Bug#514249: Implementing the patch

2009-02-15 Thread Neil Williams
On Sun, 15 Feb 2009 11:03:23 +
Neil Williams codeh...@debian.org wrote:

 Now that Lenny has been released, I can't see any reason to retain
 -dcv1 packages in Squeeze, especially as dpkg-cross is destined to be
 part of dpkg by then.
 
 I've implemented the patch above and I'm going to upload 2.4.0 to
 Debian unstable with -dcv1 provision removed.

One amendment to the patch - in order for newly built -cross packages
to not only be installable but also not to break reverse dependencies
that have not yet been updated to remove the -dcv1 dependency, the
patch has been tweaked to retain the Provides: without adding the
dependency:

Index: dpkg-cross
===
RCS file: /cvsroot/dpkg-cross/dpkg-cross/dpkg-cross,v
retrieving revision 1.67
diff -p -u -b -B -r1.67 dpkg-cross
--- dpkg-cross  15 Feb 2009 11:04:18 -  1.67
+++ dpkg-cross  15 Feb 2009 11:19:31 -
@@ -1009,8 +1009,13 @@ sub sub_build {
}
 
# Rewrite dependency fields
+   # Make 'provides' field to exist always to all $package-$arch-dcv1
+   # but create no dependencies on dcv1 - see #514249
+   $control{provides} =  unless defined $control{provides};
for $field qw(depends conflicts provides replaces) {
next if not defined $control{$field};
+   print CONTROL ucfirst($field) . : .$control{package} 
.-$arch-dcv1\n
+   if ($field eq provides);
my $rewritten = rewrite_dependencies($control{$field});
if (length($rewritten)  0) {
# Capitalize first letter of field name

 Package: libqof1-arm-cross
 Version: 0.7.5-1
 Section: devel
 Priority: extra
 Architecture: all
 Maintainer: Debian QOF packaging team 
pkg-qof-maintain...@lists.alioth.debian.org
 Source: libqof1
 Depends: libc6-arm-cross (= 2.7-1), libgda3-3-arm-cross, 
libglib2.0-0-arm-cross (= 2.12.0)
 Conflicts: pilot-qof-arm-cross ( 0.1.1-2)
 Provides: libqof1-arm-dcv1

This allows libqof-dev to remain installed with dependencies met, until
it is updated itself.

$ apt-cache show libqof-dev-arm-cross
Package: libqof-dev-arm-cross
Status: install ok installed
Priority: extra
Section: devel
Maintainer: Debian QOF packaging team 
pkg-qof-maintain...@lists.alioth.debian.org
Architecture: all
Source: libqof-dev
Version: 0.7.5-1
Provides: libqof-dev-arm-dcv1
Depends: libgda3-dev-arm-cross, libgda3-dev-arm-dcv1, libqof1-arm-cross (= 
0.7.5-1), libqof1-arm-dcv1

The Provides itself can be removed in Squeeze+1.

-- 


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



pgpStlsOwTKm2.pgp
Description: PGP signature


Bug#457670: Please check if your problem still exist in new upstream release

2009-02-15 Thread أحمد المحمودي
Hello,

  Does your problem still exist with the new upstream release ? There is 
  a new package in unstable (sl-modem_2.9.11~20080817-3), please test 
  it, and report to me wether your bug is solved or it still exists.

  Thanks...

-- 
 أحمد المحمودي (Ahmed El-Mahmoudy)
  Digital design engineer
 GPG KeyID: 0x9DCA0B27 (@ subkeys.pgp.net)
 GPG Fingerprint: 087D 3767 8CAC 65B1 8F6C  156E D325 C3C8 9DCA 0B27



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



Bug#515258: hal hangs with 2.6.29-rc5

2009-02-15 Thread Stuart Pook
Package: hal
Version: 0.5.11-8
Severity: important


I compiled the 2.6.29-rc5 kernel using the config from
/boot/config-2.6.26-1-686 (I just changed the processor to Core 2). When
I booted this kernel it hung when starting hal. I reset the machine
and booted in single user mode. I then ran /etc/init.d/hal start. It
once again hung. I typed control-C and got a prompt but afterwards the
keyboard no longer responded (nothing I typed was echoed).

I have no problems when I'm running 2.6.28-rc6.

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

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

Versions of packages hal depends on:
ii  adduser 3.110add and remove users and groups
ii  dbus1.2.1-5  simple interprocess messaging syst
ii  hal-info20081219-1   Hardware Abstraction Layer - fdi f
ii  libc6   2.7-18   GNU C Library: Shared libraries
ii  libdbus-1-3 1.2.1-5  simple interprocess messaging syst
ii  libdbus-glib-1-20.76-1   simple interprocess messaging syst
ii  libexpat1   2.0.1-4  XML parsing C library - runtime li
ii  libgcc1 1:4.3.3-3GCC support library
ii  libglib2.0-02.16.6-1 The GLib library of C routines
ii  libhal-storage1 0.5.11-8 Hardware Abstraction Layer - share
ii  libhal1 0.5.11-8 Hardware Abstraction Layer - share
ii  libsmbios2  2.0.3.dfsg-1 Provide access to (SM)BIOS informa
ii  libstdc++6  4.3.3-3  The GNU Standard C++ Library v3
ii  libusb-0.1-42:0.1.12-13  userspace USB programming library
ii  libvolume-id0   0.125-7  libvolume_id shared library
ii  lsb-base3.2-20   Linux Standard Base 3.2 init scrip
ii  mount   2.13.1.1-1   Tools for mounting and manipulatin
ii  pciutils1:3.0.0-6Linux PCI Utilities
ii  pm-utils1.1.2.4-1utilities and scripts for power ma
ii  udev0.125-7  /dev/ and hotplug management daemo
ii  usbutils0.73-10  Linux USB utilities

Versions of packages hal recommends:
ii  eject   2.1.5+deb1-4 ejects CDs and operates CD-Changer
ii  libsmbios-bin   2.0.3.dfsg-1 Provide access to (SM)BIOS informa

Versions of packages hal suggests:
pn  gnome-device-manager  none (no description available)

-- no debconf information



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



Bug#493045: [debian-mysql] Bug#515143: [PATCH] remove glibc workaround

2009-02-15 Thread Norbert Tretkowski
Am Samstag, den 14.02.2009, 16:11 +0100 schrieb Martin Koegler:
 The attaced patch removes the startup of the dummy thread.
 
 With this patch, I can't trigger a segfault in php-cli anymore.
 strace confirms, that that php does not spawn a thread any more.
 The patch passes the mysql server test suite in the build.
 
 So I assume, that the workround is not neccesary in lenny any more.

Thanks, I'll discuss this with the MySQL developers, and put it on my
TODO list for 5.0r1.

Norbert




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



Bug#515259: libvorbisidec1: please consider compiling ivorbisfile_example.c

2009-02-15 Thread Timo Juhani Lindfors
Package: libvorbisidec1
Version: 1.0.2+svn14261-1
Severity: wishlist

I wish ivorbisfile_example.c was compiled and included in the package
or perhaps in a separate binary package (libvorbisidec-examples?).

On my openmoko neo freerunner ogg123 consumes about 60% cpu time and
lags if I try to type with xvkbd keyboard at the same time. However,
ivorbisfile_example.c which is included in the source package
libvorbisidec consumes only about 20% cpu time.


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

Kernel: Linux 2.6.28-GTA02_lindi-andy-tracking_b8b36e5ec3db71d5-mokodev 
(PREEMPT)
Locale: LANG=C, LC_CTYPE=fi_FI (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages libvorbisidec1 depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.2-4  GCC support library

libvorbisidec1 recommends no packages.

libvorbisidec1 suggests no packages.

-- no debconf information



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



Bug#515069: dpkg Format: 3.0 (quilt) support

2009-02-15 Thread Trent W. Buck
On Fri, Feb 13, 2009 at 09:16:15AM -0800, Russ Allbery wrote:
 Trent W. Buck trentb...@gmail.com writes:
 
  I know that dak doesn't support the whizzo new dpkg features yet, but it
  would be nice if I could use lintian with them for my private packages.
  Currently debuild gives me empty-debian-diff, with Format: 3.0 (quilt)
  in my debian/control file, and I suspect that means it is skipping other
  tests.
 
 What would really help with support for this would be if you could provide
 a sample package in the form of the Lintian test suite (t/tests) that uses
 Format: 3.0 (quilt).  I haven't had time to look in detail at how such
 packages function, so it would take me longer to create a basic test case
 so that we can start analyzing Lintian's behavior for those packages.

Hi, here's one:

dget http://ymir.twb.ath.cx/tmp/midori_0.1.2+94-1.dsc

Basically you can make a quilt package (with no patches) by just
adding Format: 3.0 (quilt) to the source stanza of an existing
package.  That's what I've done above.

The dpkg-source(1) manpage describes the various 3.0 variants.
Basically the difference is that there's a tarball containing debian/
rather than a diff that creates it.



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



Bug#515068: orig.tar.{bz2,lzma} support

2009-02-15 Thread Trent W. Buck
On Fri, Feb 13, 2009 at 09:47:07AM -0600, Raphael Geissert wrote:
 I know that dak doesn't support the whizzo new dpkg features yet,
 but it would be nice if I could use lintian with them for my
 private packages.  Currently debuild gives me this, with a
 orig.tar.lzma source package:

 lintian can check source packages compressed with bzip2

That's good enough for now.

 and it is not, IMO, the responsible for the lack of support for
 lzma.

I agree with your analysis that this is better addressed directly in
#347636.



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



Bug#515260: nagios3-common: cannot install; returned exit1

2009-02-15 Thread warden
Package: nagios3-common
Version: 3.0.6-3
Severity: grave
Justification: renders package unusable



Setting up nagios3-common (3.0.6-3) ...
Adding system-user for nagios
*** WARNING: ucf was run from a maintainer script that uses debconf, but
 the script did not pass --debconf-ok to ucf. The maintainer
 script should be fixed to not stop debconf before calling ucf,
 and pass it this parameter. For now, ucf will revert to using
 old-style, non-debconf prompting. Ugh!

 Please inform the package maintainer about this problem.
Not replacing deleted config file /etc/nagios3/apache2.conf
*** WARNING: ucf was run from a maintainer script that uses debconf, but
 the script did not pass --debconf-ok to ucf. The maintainer
 script should be fixed to not stop debconf before calling ucf,
 and pass it this parameter. For now, ucf will revert to using
 old-style, non-debconf prompting. Ugh!

 Please inform the package maintainer about this problem.
Not replacing deleted config file /etc/nagios3/conf.d/host-gateway_nagios3.cfg
include file /etc/nagios3/apache2.conf does not exist!
dpkg: error processing nagios3-common (--configure):
 subprocess post-installation script returned error exit status 1
Errors were encountered while processing:
 nagios3-common


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

Kernel: Linux 2.6.18-6-xen-amd64 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages nagios3-common depends on:
ii  adduser3.110 add and remove users and groups
ii  apache2-utils  2.2.9-10+lenny2   utility programs for webservers
ii  bsd-mailx [mailx]  8.1.2-0.20071201cvs-3 A simple mail user agent
ii  coreutils  6.10-6The GNU core utilities
ii  debconf [debconf-2 1.5.24Debian configuration management sy
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  mailx  1:20071201-3  Transitional package for mailx ren
ii  nagios-plugins-bas 1.4.12-5  Plugins for the nagios network mon
ii  nagios3-doc3.0.6-3   documentation for nagios3
ii  ucf3.0016Update Configuration File: preserv

Versions of packages nagios3-common recommends:
ii  apache2  2.2.9-10+lenny2 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [htt 2.2.9-10+lenny2 Apache HTTP Server - traditional n
pn  nagios-imagesnone  (no description available)
pn  nagios-plugins   none  (no description available)

nagios3-common suggests no packages.

-- debconf information:
  nagios3/adminpassword: (password omitted)
  nagios3/adminpassword-repeat: (password omitted)
  nagios3/adminpassword-mismatch:
  nagios3/nagios1-in-apacheconf: false
  nagios3/httpd: apache2



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



Bug#515261: linux-image-xen-686: missing dependancy to xen-linux-system-2.6.26-1-xen-686

2009-02-15 Thread Michael Rasmussen
Package: linux-image-xen-686
Severity: critical
Justification: breaks the whole system

When doing a full-upgrade from etch to lenny on a system running xen the xen 
hypervisor is not updated accordingly.
A dependancy to xen-linux-system-2.6.26-1-xen-686 is missing which means that 
grub is configured to use the xen
hypervisor from etch to run the 2.6.26-xen kernel. Result is an unbootable 
system.
Adding xen-linux-system-2.6.26-1-xen-686 will solve the issue since this 
correctly instructs grub to use the new
xen hyperviser from lenny.

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

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



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



Bug#239695: Added DKMS support

2009-02-15 Thread أحمد المحمودي
Hello,

  I've added DKMS support in 2.9.11~20080817-2. Once DKMS is accepted in 
  Debian (someone is already working on it), your wish will become true. 
  Hence I'm closing this bug.

-- 
 أحمد المحمودي (Ahmed El-Mahmoudy)
  Digital design engineer
 GPG KeyID: 0x9DCA0B27 (@ subkeys.pgp.net)
 GPG Fingerprint: 087D 3767 8CAC 65B1 8F6C  156E D325 C3C8 9DCA 0B27



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



Bug#515260: [Pkg-nagios-devel] Bug#515260: nagios3-common: cannot install; returned exit1

2009-02-15 Thread Alexander Wirt
warden schrieb am Sunday, den 15. February 2009:

 Package: nagios3-common
 Version: 3.0.6-3
 Severity: grave
 Justification: renders package unusable
 
 
 
 Setting up nagios3-common (3.0.6-3) ...
 Adding system-user for nagios
 *** WARNING: ucf was run from a maintainer script that uses debconf, but
  the script did not pass --debconf-ok to ucf. The maintainer
  script should be fixed to not stop debconf before calling ucf,
  and pass it this parameter. For now, ucf will revert to using
  old-style, non-debconf prompting. Ugh!
 
  Please inform the package maintainer about this problem.
 Not replacing deleted config file /etc/nagios3/apache2.conf
^ 

why did you removed that config? 

Without it it won't start. 

Alex




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



Bug#464165: postgresql-7.4: pg hardcoded uid 101?

2009-02-15 Thread Martin Pitt
Hello again,

Martin Pitt [2008-11-16 13:22 +0100]:
  I had a uid of 101 in use already when pg was installed (I changed them
  around).
 
 Do you have some details about this? How can this be reproduced?
 
 postgresql packages don't hardcode any user ID (except root's 0, of
 course), and the permissions on /var/run/postgresql/ are correct; in
 fact, postgres:postgres drwxrwsr-x is the default.
 
 Do you use NIS, AD, LDAP, or any other nonstandard/network user/group
 database?

This did not get any answer or further information in the last three
months, and is unreproducible. Thus I am closing this report now.

Please respond if you have any further information about the problem,
and thank you for your report!

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)



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



Bug#499529: bluez 4.x status update

2009-02-15 Thread martin f krafft
also sprach martin f krafft madd...@debian.org [2009.02.12.1726 +0100]:
 and bluetooth-applet also does not seem to work. If I start it and
 plug in my adapter, I get:
 
 Agent registration failed: Rejected send message, 1 matched rules;
 type=method_call, sender=:1.13 (uid=1000 pid=9760
 comm=bluetooth-applet ) interface=org.bluez.Adapter
 member=RegisterAgent error name=(unset) requested_reply=0
 destination=org.bluez (uid=0 pid=9313 comm=/usr/sbin/bluetoothd
 ))

So far, I have not managed to do an OBEX transfer to an unknown
device, since I cannot enter the PIN code.

Also, I have yet to make rfcomm work again to be able to sync with
my Palm again.

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


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


Bug#444269: pg_checksystem claims write cache is enabled but it isn't

2009-02-15 Thread Martin Pitt
Hello Antti,

Martin Pitt [2008-03-10 22:30 +0100]:
 Hi Antti-Juhani,
 
 Antti-Juhani Kaijanaho [2008-03-10 14:25 +0200]:
  I observed it once and haven't tried reproducing it.  I don't really
  care about this bug beyond the effect of letting you know of the
  occurrence.  Feel free to close if you believe it's the right thing to
  do :)
 
 It would if it is totally unreproducible and just happened once ever.
 
  If you want me to test this, please say so.  The machine is currently
  down and thus I can't do it right now.
 
 If you can test it, and find that hdparm and postgresql-common have
 differing opinions about the drive cache, I'd be very interested in
 fixing this, so please report it if you ever encounter it again. Thank
 you!

This bug has been open without any further information for about a
year now, and is unreproducible. Thus I am closing it now, since it
became quite stale.

Please respond back here if you have any further information about the
problem, and thanks for your report!

Martin
-- 
Martin Pitt| http://www.piware.de
Ubuntu Developer (www.ubuntu.com)  | Debian Developer  (www.debian.org)



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



Bug#515262: at lacks POSIX -t [[CC]YY]MMDDhhmm[.SS] option

2009-02-15 Thread Andrew Buckeridge
Package: at
Version: 3.1.10
Severity: whishlist

at -t 02201400
gave
Got at: invalid option -- t

Says garbled time if 02201400 used without the -t option.

at 14:00 20 Feb
did work and gave
job 40 at Fri Feb 20 14:00:00 2009

Good thing as there is no way English speakers would use a
middle-endian date.

The POSIX -t option allows for an unambiguous numerical big-endian date.

POSIX man page for at has:

 SYNOPSIS
at [-m][-f file][-q queuename] -t time_arg

-t  time_arg
   Submit  the  job  to  be  run  at the time specified by the time
   option-argument, which the application shall ensure has the for-
   mat as specified by the touch -t time utility.

POSIX man page for touch has:

-t  time
   Use  the specified time instead of the current time. The option-
   argument shall be a decimal number of the form:
 
   [[CC]YY]MMDDhhmm[.SS]



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



Bug#490669: privoxy: domain matching does appear to work as documented

2009-02-15 Thread Roland Rosenfeld
tag 490669 + unreproducible moreinfo
thanks

Martin Steigerwald schrieb am Sonntag, den 13. Juli 2008:

Sorry for the delay, I was a little bit inactive with privoxy in the
last weeks...

 Package: privoxy
 Version: 3.0.8-1
 Severity: normal
 
 Domain matching privoxy does not seem to work as advertised.
 
 With my current settings privoxy filters out the style sheet of
 http://www.lusc.de
 
 I didn't want to bother so I just added .lusc.de to fragile in
 user.action using the web interface:
 
 # Now you noticed that the default configuration breaks Forbes
 # Magazine, but you were too lazy to find out which action is the
 # culprit, and you were again too lazy to give feedback, so you just
 # used the fragile alias on the site, and -- whoa! -- it worked. The
 # 'fragile' aliases disables those actions that are most likely to break
 # a site. Also, good for testing purposes to see if it is Privoxy that
 # is causing the problem or not.
 #
 { fragile }
 .lusc.de
 #.forbes.com
 
 This works if I use www.lusc.de, but when I use lusc.de instead the CSS
 still is filtered.

Strange.  I tried the same with 

{ +block }
.lusc.de

on a fresh installed privoxy 3.0.8-1 (no modifications except this)
and it blocks all lusc.de stuff without problems:

| Request for blocked URL
| 
| Your request for http://lusc.de/ was blocked.
| See why or go there anyway.

And See why shows me:

| In file: user.action View Edit
| {+block }
| .lusc.de

After this I also tried your configuration and when I have a look at
http://config.privoxy.org/show-url-info?url=http%3A//lusc.de/dokuwiki/lib/styles/style.css
it shows me:

| In file: user.action View Edit
| {-block
| -crunch-incoming-cookies
| -crunch-outgoing-cookies
| -fast-redirects
| -filter
| -hide-referrer
| -kill-popups
| -prevent-compression }
| .lusc.de

Which is exactly the fragile set.
So it seems, that I cannot reproduce your problem here...

Tscho

Roland



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



Bug#515247: nautilus cant set permissions for files in ftp sessions

2009-02-15 Thread Josselin Mouette
reassign 515247 gvfs
forwarded 515247 http://bugzilla.gnome.org/show_bug.cgi?id=416221
thanks

Le dimanche 15 février 2009 à 11:12 +0100, Robin Kluth a écrit :
 I've seen that nautilus cannot set permissions in ftp sessions - why?
 It says it doesnt can get the status of the ftp-files.
 On the local machine it works perfectly.
 
 Is this an known issue?

Yes. Neither gnome-vfs nor gvfs do query the file permissions on FTP
mounts.

Marking as a gvfs bug since this is the target for future nautilus
versions.

Cheers,
-- 
 .''`.
: :' :  We are debian.org. Lower your prices, surrender your code.
`. `'   We will add your hardware and software distinctiveness to
  `-our own. Resistance is futile.


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


Bug#515263: codebreaker: Depends on GTK 1.2, which is scheduled for removal

2009-02-15 Thread Moritz Muehlenhoff
Package: codebreaker
Severity: serious

Hi,
codebreaker depends on GTK 1.2, which will be removed from
Squeeze. Please port codebreaker to GTK 2 or request its removal.
(Since gnome-mastermind is a replacement, the latter seems
more adequate)

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages codebreaker depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

codebreaker recommends no packages.

codebreaker suggests no packages.



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



Bug#515260: [Pkg-nagios-devel] Bug#515260: nagios3-common: cannot install; returned exit1

2009-02-15 Thread Radek
For a simple reason: I uninstalled nagios\* packages.
Then it failed for the other bug (in prerm script).
And then i had to manually create this file and forcibly remove the package.





On Sun, Feb 15, 2009 at 1:12 PM, Alexander Wirt formo...@debian.org wrote:
 warden schrieb am Sunday, den 15. February 2009:

 Package: nagios3-common
 Version: 3.0.6-3
 Severity: grave
 Justification: renders package unusable



 Setting up nagios3-common (3.0.6-3) ...
 Adding system-user for nagios
 *** WARNING: ucf was run from a maintainer script that uses debconf, but
  the script did not pass --debconf-ok to ucf. The maintainer
  script should be fixed to not stop debconf before calling ucf,
  and pass it this parameter. For now, ucf will revert to using
  old-style, non-debconf prompting. Ugh!

  Please inform the package maintainer about this problem.
 Not replacing deleted config file /etc/nagios3/apache2.conf
 ^

 why did you removed that config?

 Without it it won't start.

 Alex





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



Bug#515266: baycomepp: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: baycomepp
Severity: serious

baycomepp build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages baycomepp depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

baycomepp recommends no packages.

baycomepp suggests no packages.



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



Bug#515264: add note about missing firmware

2009-02-15 Thread Thijs Kinkhorst
Package: release-notes
Tags: patch

Hi,

The kernel now doesn't contain a number of firmware pieces anymore which may 
be essential to get the system in a workable state after reboot. 
Unfortunately this was missed in the release notes. The following patch adds 
a note which refers people to the relevant section of the installation manual 
that explains it better.

I hope it can be applied quickly, sorry for not catching this earlier.

The patch could be extended to include a list of such removed firmwares if 
someone has it available, but just this mention could already save a 
significant number of problems.


thanks,
Thijs
Index: whats-new.dbk
===
--- whats-new.dbk	(revision 6576)
+++ whats-new.dbk	(working copy)
@@ -537,6 +537,20 @@
 titleChanges in kernel packaging/title
 variablelist
 varlistentry
+termBinary firmware for some drivers moved to non-free/term
+listitem
+paraSome drivers load binary firmware into the device they're
+supporting at run time. While this firmware was included in the
+stock kernel in previous releases, it has now be separately
+packaged in the non-free section. If you want to continue to
+use these devices after reboot, make sure the required firmware
+is present on the installed system. See section 6.4 of the
+ulink url=url-install-manual;Installation
+Manual/ulink for details.
+/para
+/listitem
+/varlistentry
+varlistentry
 termNew OpenVZindextermprimaryOpenVZ/primary/indexterm kernel flavor/term
 listitem
 para


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


Bug#515265: aria: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: aria
Severity: serious

aria build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages aria depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libgcc11:4.3.3-1 GCC support library
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
pn  libgtk1.2  none(no description available)
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libstdc++6 4.3.3-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxi6 2:1.1.4-1 X11 Input extension library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

aria recommends no packages.

aria suggests no packages.



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



Bug#515267: baycomusb: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: baycomusb
Severity: serious

baycomusb build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages baycomusb depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
pn  libgtk1.2  none(no description available)
pn  liborbit0ldbl  none(no description available)
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxi6 2:1.1.4-1 X11 Input extension library
ii  libxml22.6.32.dfsg-5 GNOME XML library

baycomusb recommends no packages.

baycomusb suggests no packages.



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



Bug#513609: [meld] Meld 1.1.5.1-2 crashes on startup while 1.2.1 doesn't.

2009-02-15 Thread le0n_84

Package: meld
Version: 1.1.5.1-2

--- Please enter the report below this line. ---

Meld 1.1.5.1-2 crashes on startup with this message

$ meld
Traceback (most recent call last):
  File /usr/bin/meld, line 40, in 
gettext.bindtextdomain(meld, paths.locale_dir() )
AttributeError: 'module' object has no attribute 'locale_dir'

Instead version 1.2.1 downloaded by source and installed with make works 
correctly.


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.26-1-amd64

Debian Release: 5.0
  990 testing www.debian-multimedia.org 
  990 testing security.debian.org 
  990 testing secure-testing-master.debian.net 
  990 testing ftp.it.debian.org 
  600 unstableftp.it.debian.org 
  500 experimentalftp.debian.org 

--- Package information. ---
Depends (Version) | Installed
=-+-===
python| 2.5.2-3
python-support (= 0.7.1) | 0.8.4
python-gtk2  (= 2.4) | 2.12.1-6
python-glade2(= 2.4) | 2.12.1-6
python-gnome2 | 2.22.0-1



_
Party… con Eventi!
http://events.live.com/?showunauth=1


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



Bug#515268: corewars: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: corewars
Severity: serious

corewars build-depends on libgtk1.2-dev and libglib1.2-dev, which
will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal. I suppose you
could also drop the GUI version and provide only the CLI interface.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages corewars depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

corewars recommends no packages.

corewars suggests no packages.



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



Bug#514584: iso-codes: [INTL:kk] Updated Kazakh language translation

2009-02-15 Thread Tobias Quathamer
package iso-codes
tags 514584 pending
thanks

On Monday 09 February 2009 10:38:19 Timur Birsh wrote:
 Please find attached the updated Kazakh translation.

Hi,

thanks a lot for your work. I've committed the file to our repository and it 
will be part of the next release.

Regards,
Tobias

-- 
Tobias Quathamer | Warning: Dates in calendar are closer than they appear.
Hamburg, Germany |



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


Bug#515269: crank: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: crank
Severity: serious

crank build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to use GTK 2 or request it's removal. (Since it's dead
upstream, that might be the more adequate solution)

Cheers,
Moritz



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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages crank depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

crank recommends no packages.

crank suggests no packages.



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



Bug#515258: hal hangs with 2.6.29-rc5

2009-02-15 Thread Stuart Pook

hal works fine with linux 2.6.28.



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



Bug#515270: dbmix: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: dbmix
Severity: serious

dbmix build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages dbmix depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
pn  libdbaudiolib0none (no description available)
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

dbmix recommends no packages.

dbmix suggests no packages.



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



Bug#515271: dillo: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: dillo
Severity: serious

dillo build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Current upstream 2.0 seems to be based on FLTK, so that should fix it
as well.

Cheers,
Moritz


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages dillo depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.3-1 GCC support library
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
pn  libgtk1.2  none(no description available)
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libstdc++6 4.3.3-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxft22.1.12-3  FreeType-based font drawing librar
ii  libxi6 2:1.1.4-1 X11 Input extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  wget   1.11.4-2  retrieves files from the web
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

dillo recommends no packages.

dillo suggests no packages.



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



Bug#515272: gaby: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gaby
Severity: serious

gaby build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gaby depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library
pn  python2.4 none (no description available)

gaby recommends no packages.

gaby suggests no packages.



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



Bug#515274: gbuffy: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gbuffy
Severity: serious

gbuffy build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to use GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gbuffy depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
pn  libcompfaceg1 none (no description available)
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libssl0.9.8   0.9.8g-15  SSL shared libraries
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

gbuffy recommends no packages.

gbuffy suggests no packages.



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



Bug#515273: rtorrent: Read past initial payload after incoming encrypted handshake

2009-02-15 Thread Kurt Roeckx
Package: rtorrent
Version: 0.7.9-2.2
Severity: important

Hi,

I've just had rtorrent quit on me 2 times with the following message:
rtorrent: Read past initial payload after incoming encrypted handshake

I had this in my .rtorrentrc:
encryption=allow_incoming,enable_retry

I've just disabled it, we'll see if it helps or not.


Kurt




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



Bug#515276: gcvs: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gcvs
Severity: serious

gcvs build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gcvs depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-1  GCC support library
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libstdc++64.3.3-1The GNU Standard C++ Library v3
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library
ii  tcl8.48.4.19-2   Tcl (the Tool Command Language) v8

gcvs recommends no packages.

Versions of packages gcvs suggests:
pn  meld  none (no description available)
ii  tk8.4 [wish]  8.4.19-2   Tk toolkit for Tcl and X11, v8.4 -



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



Bug#515271: dillo: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Devid Antonio Filoni
fltk2 package is in the NEW queue, I will update dillo to the new upstream 
release when fltk2 will be accepted into Debian.

Devid Antonio Filoni

--- j...@debian.org wrote:

From: Moritz Muehlenhoff j...@debian.org
To: Debian Bug Tracking System sub...@bugs.debian.org
Subject: Bug#515271: dillo: Depends on GTK 1.2 and GLIB 1.2
Date: Sun, 15 Feb 2009 13:48:47 +0100

Package: dillo
Severity: serious

dillo build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Current upstream 2.0 seems to be based on FLTK, so that should fix it
as well.

Cheers,
Moritz


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages dillo depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libfontconfig1 2.6.0-3   generic font configuration library
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.3-1 GCC support library
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
pn  libgtk1.2  none(no description available)
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libpng12-0 1.2.27-2  PNG library - runtime
ii  libssl0.9.80.9.8g-15 SSL shared libraries
ii  libstdc++6 4.3.3-1   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxft22.1.12-3  FreeType-based font drawing librar
ii  libxi6 2:1.1.4-1 X11 Input extension library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  wget   1.11.4-2  retrieves files from the web
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

dillo recommends no packages.

dillo suggests no packages.






_
Are you a Techie? Get Your Free Tech Email Address Now! Visit 
http://www.TechEmail.com



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



Bug#515275: gcrontab: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gcrontab
Severity: serious

gcrontab build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request its removal.

Cheers,
Moritz


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gcrontab depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

gcrontab recommends no packages.

gcrontab suggests no packages.



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



Bug#438405: gbase should be upgarded to Gtk 2.*

2009-02-15 Thread Moritz Muehlenhoff
severity 438405 serious
thanks

 I am slowly getting rid of software that depends on ancient Gtk+ Gtk 1.*
 -libraries. Maybe one day I could get rid of those Gtk 1.* -libraries,
 too. Gtk+ 2.* and Qt is the way to go!

GTK 1.2 will be removed for Squeeze, this is now RC.

Cheers,
Moritz



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



Bug#515277: r8169.c: incorrect RX dropped counter

2009-02-15 Thread kronberg . tatiana
Package: linux-image-2.6.26-1-amd64
Version: 2.6.26-8
Severity: normal

During a network session RX dropped counter shows great numbers.  All
the other things of the network are fine. The typical value of the
counter is  of the order of magnitude of 10^9, eg.,

$ /sbin/ifconfig eth0 | grep RX packets
RX packets:483 errors:0 dropped:3771247613 overruns:0 frame:0
$

The problem appears with the following network adapter:

$ lspci -nn -s 01:00.0
01:00.0 Ethernet controller [0200]: Realtek Semiconductor Co., Ltd. 
RTL8101E/RTL8102E PCI Express Fast Ethernet controller [10ec:8136] (rev 02)
$

The same issue was mentioned with the kernel: `Linux 2.6.24-1-686' and
`RTL8111/8168B PCI Express Gigabit Ethernet controller' [1].

Francois Romieu suggested a patch [2] for `r8169.c' to solve the problem.

Please consider applying the patch to the Debian package.

[1] http://bugs.debian.org/497757
[2] https://kerneltrap.org/mailarchive/linux-netdev/2008/9/13/3288264/thread

Thanks,

Tatiana Kronberg



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



Bug#515216: [Pkg-xfce-devel] Bug#515216: xfce4-mailwatch-plugin: French Translation (minor corrections)

2009-02-15 Thread Yves-Alexis Perez
On sam, 2009-02-14 at 22:35 +0100, patrick heraud wrote:
 
 Please find attached a patch (fr.po) with minor corrections for the french 
 translation, 
 proofread by the debian-l10n-french mailing list contributors.

Thanks, I'll submit it to upstream directly.

Cheers,
-- 
Yves-Alexis


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


Bug#419547: batch accepts commands from standard input

2009-02-15 Thread Andrew Buckeridge
Package: at
Version: 3.1.10

The POSIX batch has no parameters. It not useless as it can accept
commands from standard input. The batch accepts no parameters
response will ensure scripts are portable.

batch __
# List your jobs here
job1
job2
job3
__

 SYNOPSIS
 batch

 DESCRIPTION
The  batch utility shall read commands from standard input and schedule
them for execution in a batch queue. It shall be the equivalent of  the
command:
 
   at -q b -m now
 
where queue b is a special at queue, specifically for batch jobs. Batch
jobs shall be submitted to the batch queue with no time constraints and
shall  be run by the system using algorithms, based on unspecified fac-
tors, that may vary with each invocation of batch.




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



Bug#318730: marked as done (uw-imapd: Description makes strange suggestions)

2009-02-15 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Sun, Feb 15, 2009 at 10:57:07AM +, Debian Bug Tracking System wrote:
And since I've probably got the syntax wrong, a human-readable version: 
this is fixed in Stable and can be closed.

Syntax was perfect. Thanks for both the original report and your taking 
care of closing it yourself too.


Kind regards,

   - Jonas

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

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

iEYEARECAAYFAkmYFVoACgkQn7DbMsAkQLibBQCeJa0zTUX2ZKfgEqhCZm77kfvQ
tHoAn2rqi2ldnB//57R92YW1zO6LFqcW
=w5qE
-END PGP SIGNATURE-



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



Bug#514512: joe: 3.7-1 Segmentation fault while opening non-existing files

2009-02-15 Thread Josip Rodin
On Sun, Feb 08, 2009 at 12:17:40PM +0200, jaalto wrote:
 Package: joe
 Version: 3.7-1
 Severity: important
 
   $ ls -la ~/.joerc
   none
 
   $ joe not-exist not-exist2
   Processing '/etc/joe/jmacsrc'...Processing '/etc/joe/ftyperc'...done
   done
   Segmentation fault

Ah, that's actually jmacs, you seem to have a local alias.

With debugging symbols, the backtrace is:

(gdb) bt
#0  0x0805ed33 in main (argc=3, real_argv=0xbfbfa204, envv=0xbfbfa214)
at main.c:434

The code indicates that joe -orphan mode is broken. It's also broken for
existing files.

-- 
 2. That which causes joy or happiness.



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



Bug#515278: posh segfaults in xtrace mode

2009-02-15 Thread Frank Terbeck
Package: posh
Version: 0.6.15
Severity: normal

When putting posh into xtrace mode, the next entered command causes to
crash posh with a segfault.

zsh% posh
$ set -x
$ echo foo
[1]32044 segmentation fault (core dumped)  posh

Reproducible in scripts and in interactive mode.

Regards, Frank


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

Kernel: Linux 2.6.27.8-loopaes (PREEMPT)
Locale: LANG=C, lc_ctype=de...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/dash

Versions of packages posh depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  libc6 2.7-18 GNU C Library: Shared libraries

posh recommends no packages.

posh suggests no packages.

-- debconf information excluded



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



Bug#515279: mdadm fails to reassemble RAID1 after upgrade etch-lenny

2009-02-15 Thread Philipp Kolmann
Package: mdadm
Version: 2.6.7.2-1
Severity: normal

Hi,

I just upgraded one of my servers from etch to lenny. Everything went well but
the restart. It hung while starting the root-raid1 and couldn't find any raid
devices anymore.

I managed to bring the server back up with bulding the raid with specifying
the partitons.

I see now that if I do a mdadm --examine --scan that it doens't show any
raidsets anymore. If I do a mdadm --examine --scan --config=partitions it
works ok.

r...@wkx:~# mdadm --examine --scan
r...@wkx:~# mdadm --examine --scan --config=partitions
ARRAY /dev/md0 level=raid1 num-devices=2
UUID=f19f0a12:58279226:0e55279a:bf9f3d58

I am not sure what went wrong here. I'd be very glad if you could help me
here.

thanks
Philipp


-- Package-specific info:
--- mount output
/dev/md0 on / type ext3 (rw,errors=remount-ro)
tmpfs on /lib/init/rw type tmpfs (rw,nosuid,mode=0755)
proc on /proc type proc (rw,noexec,nosuid,nodev)
sysfs on /sys type sysfs (rw,noexec,nosuid,nodev)
procbususb on /proc/bus/usb type usbfs (rw)
udev on /dev type tmpfs (rw,mode=0755)
tmpfs on /dev/shm type tmpfs (rw,nosuid,nodev)
devpts on /dev/pts type devpts (rw,noexec,nosuid,gid=5,mode=620)
/dev/sdb1 on /exchangebackup type ext3 (rw)

--- mdadm.conf
# mdadm.conf
#
# Please refer to mdadm.conf(5) for information about this file.
#

# by default, scan all partitions (/proc/partitions) for MD superblocks.
# alternatively, specify devices to scan, using wildcards if desired.
DEVICE /dev/hd[a-z] /dev/sd*[a-z]

# auto-create devices with Debian standard permissions
CREATE owner=root group=disk mode=0660 auto=yes

# automatically tag new arrays as belonging to the local system
HOMEHOST system

# instruct the monitoring daemon where to send mail alerts
MAILADDR root

# definitions of existing MD arrays
ARRAY /dev/md0 level=raid1 num-devices=2 
UUID=f19f0a12:58279226:0e55279a:bf9f3d58
devices=/dev/sda1,/dev/sdc1

--- /proc/mdstat:
Personalities : [raid1] 
md0 : active raid1 sda1[0] sdc1[1]
  72605632 blocks [2/2] [UU]
  
unused devices: none

--- /proc/partitions:
major minor  #blocks  name

   8 0   72613056 sda
   8 1   72605736 sda1
   816  293036184 sdb
   817  293033601 sdb1
   832   72613056 sdc
   833   72605736 sdc1
   9 0   72605632 md0

--- initrd.img-2.6.26-1-686:
27838 blocks
etc/mdadm
etc/mdadm/mdadm.conf
lib/modules/2.6.26-1-686/kernel/drivers/md/md-mod.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid1.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/linear.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/multipath.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid0.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid456.ko
lib/modules/2.6.26-1-686/kernel/drivers/md/raid10.ko
sbin/mdadm
scripts/local-top/mdadm

--- /proc/modules:
raid1 18016 1 - Live 0xf881a000
md_mod 67036 2 raid1, Live 0xf882a000

--- /var/log/syslog:
Feb 15 13:04:08 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:04:08 wkx kernel: md: bitmap version 4.39
Feb 15 13:04:08 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:04:08 wkx kernel: md: md0 stopped.
Feb 15 13:04:08 wkx kernel: md: bindsdc1
Feb 15 13:04:08 wkx kernel: md: bindsda1
Feb 15 13:11:19 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:11:19 wkx kernel: md: bitmap version 4.39
Feb 15 13:11:19 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:11:19 wkx kernel: md: md0 stopped.
Feb 15 13:11:19 wkx kernel: md: bindsdc1
Feb 15 13:11:19 wkx kernel: md: bindsda1
Feb 15 13:35:37 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:35:37 wkx kernel: md: bitmap version 4.39
Feb 15 13:35:37 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:35:37 wkx kernel: md: md0 stopped.
Feb 15 13:35:37 wkx kernel: md: bindsdc1
Feb 15 13:35:37 wkx kernel: md: bindsda1
Feb 15 13:40:22 wkx kernel: md: md driver 0.90.3 MAX_MD_DEVS=256, MD_SB_DISKS=27
Feb 15 13:40:22 wkx kernel: md: bitmap version 4.39
Feb 15 13:40:22 wkx kernel: md: raid1 personality registered for level 1
Feb 15 13:40:22 wkx kernel: md: md0 stopped.
Feb 15 13:40:22 wkx kernel: md: bindsdc1
Feb 15 13:40:22 wkx kernel: md: bindsda1

--- volume detail:

--- /proc/cmdline
BOOT_IMAGE=.26_PK ro root=900

--- lilo:
lilo.conf file not readable.


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

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

Versions of packages mdadm depends on:
ii  debconf   1.5.24 Debian configuration management sy
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  makedev   2.3.1-88   creates device files in /dev
ii  udev  0.125-7

Bug#514103: picwiz: Build-depends on kdebase-dev but does not use anything from it

2009-02-15 Thread José Luis Tallón
Sune Vuorela wrote:
 Package: picwiz
 Version: 0.3.1-2+b1
 Severity: normal


 Please remove the build-depend on kdebase-dev, you don't use it.

 (This bug will become seriosu post lenny where kdebase-dev will be a
 kde4 thingie)
   
FIXED. Please find the updated version at:
http://devel.adv-solutions.net/debian/pool/main/kde/picwiz/picwiz_0.3.1-3.dsc

Moreover, I also fixed all other outstanding bugs and lintian warnings.
 Or consider if this package is useful in a environment without kde3 and
 thus ask for removal when lenny is out.
   
As soon as KDE4 is in unstable and fully working (updating to it from
experimental doesn't fully work yet), we will have a chance to check it.

Meanwhile, we could have this updated version in Debian 5.0.1 :-)


Mvh

/ J.L.




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



Bug#515280: RFA: pkspxy

2009-02-15 Thread Roland Rosenfeld
Package: wnpp
Severity: normal

I request for an adopter for the packages pkspxy

Description: PGP Public Key Server Proxy Daemon
 This package implements a caching proxy to be used between any
 program which speaks the HKP protocol for PGP public key exchange,
 and any HKP-capable key server (this will probably be pks).

and pkspxyc

Description: PGP Public Key Server Proxy Client
 pkspxyc is the smart client to be used with the PKS proxy server.
 More generally, it can be used as a HKP client with almost any PGP
 key server.

I myself do not use these programs any longer and the popcon shows me,
that nearly nobody else uses these packages.

So I think they can be removed from the archive and shouldn't go into
squeeze unless somebody is interested in the package and takes over
maintainership.

Tscho

Roland



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



Bug#515282: okular: In Fit Width mode, menubars can toggle on and off

2009-02-15 Thread Dylan Thurston
Package: okular
Version: 0.7.1-1
Severity: normal

In Fit Width mode, it is possible for a document is just the right
size to fit on the page when there is a vertical scroll bar and not
fit on the page without a vertical scroll bar.  (This is because there
is slightly more horizontal room without the scroll bar, which leads
to the entire document being slightly larger.)  In this circumstance,
okular will continue to cycle between displaying and not displaying
the scroll bar.

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

Kernel: Linux 2.6.27.2
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.utf8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages okular depends on:
ii  kdebase-runtime4:4.1.0-2 runtime components from the offici
ii  kdelibs5   4:4.1.0-3+b1  core libraries for all KDE 4 appli
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libfreetype6   2.3.7-2   FreeType 2 font engine, shared lib
ii  libgcc11:4.3.3-3 GCC support library
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libokularcore1 0.7.1-1   libraries for the Okular document 
ii  libpoppler-qt4-3   0.8.7-1   PDF rendering library (Qt 4 based 
ii  libqca22.0.0-4   libraries for the Qt Cryptographic
ii  libqimageblitz41:0.0.4-4 QImageBlitz image effects library
ii  libqt4-dbus4.4.3-2   Qt 4 D-Bus module
ii  libqt4-qt3support  4.4.3-2   Qt 3 compatibility library for Qt 
ii  libqt4-xml 4.4.3-2   Qt 4 XML module
ii  libqtcore4 4.4.3-2   Qt 4 core module
ii  libqtgui4  4.4.3-2   Qt 4 GUI module
ii  libspectre10.2.2.ds-1+b1 Library for rendering Postscript d
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

okular recommends no packages.

Versions of packages okular suggests:
pn  okular-extra-backends none (no description available)

-- no debconf information



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



Bug#515281: kdebase-data: Incorrect Esperanto translation of Open Directory for DMOZ

2009-02-15 Thread Aleksej R. Serdyukov
Package: kdebase-data
Version: 4:3.5.9.dfsg.1-6
Severity: normal
Tags: l10n


kdebase-3.5.9.dfsg.1/kcontrol/ebrowsing/plugins/ikws/searchproviders/dmoz.desktop

Name=Open Directory

Name[eo]=Malfermu dosierujon

Tio ĉi estas erara, ĉar la frazo Open Directory temas pri Open Directory 
Project kaj ne estas komando enhavanta verbon kaj substantivon (Malfermu 
dosierujon).

This is incorrect, because the original (Open Directory) refers to the Open 
Directory Project and not to a command including a verb and a substantive 
(Malfermu dosierujon means Open a directory).


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

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

-- debconf-show failed



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



Bug#515261: linux-image-xen-686: missing dependancy to xen-linux-system-2.6.26-1-xen-686

2009-02-15 Thread Bastian Blank
severity 515261 important
thanks

On Sun, Feb 15, 2009 at 01:06:38PM +0100, Michael Rasmussen wrote:
 Justification: breaks the whole system

The kernel is the system, so not applicable.

 When doing a full-upgrade from etch to lenny on a system running xen the xen 
 hypervisor is not updated accordingly.
 A dependancy to xen-linux-system-2.6.26-1-xen-686 is missing which means that 
 grub is configured to use the xen
 hypervisor from etch to run the 2.6.26-xen kernel. Result is an unbootable 
 system.

This can happen with every kernel update. There was plans to add a meta
package for xen-linux-system, but it was never finished.

Bastian

-- 
... bacteriological warfare ... hard to believe we were once foolish
enough to play around with that.
-- McCoy, The Omega Glory, stardate unknown



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



Bug#498235: cacti: up to version 8.7b should depend on rrdtool 1.3

2009-02-15 Thread Teodor
On Sat, Feb 14, 2009 at 8:11 PM, Dmitry Katsubo dm...@mail.ru wrote:
 I confirm the same problem. Unfortunately, rrdtool-1.3 is already in
 lenny, while cacti does not support it even in latest version 0.8.7d and
 also does not have any entries in their bugzilla http://bugs.cacti.net/
 Maybe it is worse reporting the problem there as well?

I've sent a message to 'cacti-u...@l.sf.net' and got this reply:

 Tony Roman wrote:
 Cacti 0.8.7c supports rrdtool 1.3.x, but we are currently working on a
 beta release for testing.

 I am not sure, but maybe temporary solution is to pass
 --font-render-mode=mono to rrdtool as an argument or hardcode the font
 names...

Can you be more specific. I'm sure that anyone who is using cacti will
want a workarround for this font problem.

Thanks



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



Bug#486888: You can' use apache1 with php5 in Lenny (tested on amd64 architecture, not sure about others)

2009-02-15 Thread Petr Baláš
Update to Lenny remove this package. This is BIG problem for me :-(

r...@linux:~# apt-get install libapache-mod-php5
Reading package lists... Done
Building dependency tree
Reading state information... Done
Some packages could not be installed. This may mean that you have
requested an impossible situation or if you are using the unstable
distribution that some required packages have not yet been created
or been moved out of Incoming.
The following information may help to resolve the situation:

The following packages have unmet dependencies:
 libapache-mod-php5: Depends: php5-common (= 5.2.0-10+lenny1) but
5.2.0-8+etch13 is to be installed
E: Broken packages

-- 
Petr Baláš



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



Bug#515287: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: ghfaxviewer
Severity: serious

gcvs build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages ghfaxviewer depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libtiff4  3.8.2-11   Tag Image File Format (TIFF) libra
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

ghfaxviewer recommends no packages.

Versions of packages ghfaxviewer suggests:
pn  gfax  none (no description available)



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



Bug#515284: geg: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: geg
Severity: serious

geg build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz



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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages geg depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

geg recommends no packages.

geg suggests no packages.



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



Bug#515285: Please remove jigdo or make it functional

2009-02-15 Thread Goswin Brederlow
Package: jigdo
Version: 0.7.3-2
Severity: grave

Hi,

I just tried jigdo to download Lenny (because tab completion found
that first) and it just gets stuck at step 2. It seems to be completly
non-functional and as such has no grounds for being in
testing/stable. In fact it is confusing to users.

Please remove the jigdo binary from testing/stable leaving only the
functioning jigdo-* command line tools.

MfG
Goswin

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

Kernel: Linux 2.6.22.2-mrvn
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages jigdo depends on:
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-16GNU C Library: Shared libraries
pn  libdb4.2   none(no description available)
ii  libgcc11:4.3.2-1 GCC support library
ii  libglib2.0-0   2.16.6-1  The GLib library of C routines
ii  libgtk2.0-02.12.11-4 The GTK+ graphical user interface 
ii  libpango1.0-0  1.20.5-3  Layout and rendering of internatio
ii  libstdc++6 4.3.2-1   The GNU Standard C++ Library v3
pn  libwww-ssl0none(no description available)
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

jigdo recommends no packages.

Versions of packages jigdo suggests:
pn  jigdo-filenone (no description available)



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



Bug#515283: gcx: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gcx
Severity: serious

gcx build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gcx depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

Versions of packages gcx recommends:
pn  gnuplot   none (no description available)

gcx suggests no packages.



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



Bug#515286: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gentoo
Severity: serious

gentoo build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz


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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gentoo depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

gentoo recommends no packages.

Versions of packages gentoo suggests:
ii  file  4.26-2 Determines file type using magic



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



Bug#515290: Depends on GTK 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gpppon
Severity: serious

gpppon build-depends on libgtk1.2-dev, which will be removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gpppon depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libglib1.2ldbl 1.2.10-19 The GLib library of C routines
pn  libgtk1.2  none(no description available)
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxi6 2:1.1.4-1 X11 Input extension library
ii  ppp2.4.4rel-10.1 Point-to-Point Protocol (PPP) - da

gpppon recommends no packages.

gpppon suggests no packages.



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



Bug#515289: nagios3-common: UCF debconf error

2009-02-15 Thread Paul Sohier
Package: nagios3-common
Version: 3.0.6-3
Severity: normal

The next error messages are sended when installing nagios3/nagios3-common after 
a upgrade from etch to lenny:

Setting up nagios3-common (3.0.6-3) ...
*** WARNING: ucf was run from a maintainer script that uses debconf, but
 the script did not pass --debconf-ok to ucf. The maintainer
 script should be fixed to not stop debconf before calling ucf,
 and pass it this parameter. For now, ucf will revert to using
 old-style, non-debconf prompting. Ugh!

 Please inform the package maintainer about this problem.

Creating config file /etc/nagios3/apache2.conf with new version
*** WARNING: ucf was run from a maintainer script that uses debconf, but
 the script did not pass --debconf-ok to ucf. The maintainer
 script should be fixed to not stop debconf before calling ucf,
 and pass it this parameter. For now, ucf will revert to using
 old-style, non-debconf prompting. Ugh!

 Please inform the package maintainer about this problem.



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

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

Versions of packages nagios3-common depends on:
ii  adduser3.110 add and remove users and groups
ii  apache2-utils  2.2.9-10+lenny2   utility programs for webservers
ii  bsd-mailx [mailx]  8.1.2-0.20071201cvs-3 A simple mail user agent
ii  coreutils  6.10-6The GNU core utilities
ii  debconf [debconf-2 1.5.24Debian configuration management sy
ii  lsb-base   3.2-20Linux Standard Base 3.2 init scrip
ii  mailx  1:20071201-3  Transitional package for mailx ren
ii  nagios-plugins-bas 1.4.12-5  Plugins for the nagios network mon
ii  nagios3-doc3.0.6-3   documentation for nagios3
ii  ucf3.0016Update Configuration File: preserv

Versions of packages nagios3-common recommends:
ii  apache2  2.2.9-10+lenny2 Apache HTTP Server metapackage
ii  apache2-mpm-prefork [htt 2.2.9-10+lenny2 Apache HTTP Server - traditional n
ii  nagios-images0.4 Collection of images and icons for
ii  nagios-plugins   1.4.12-5Plugins for the nagios network mon

nagios3-common suggests no packages.

-- debconf information:
  nagios3/adminpassword: (password omitted)
  nagios3/adminpassword-repeat: (password omitted)
  nagios3/adminpassword-mismatch:
  nagios3/nagios1-in-apacheconf: false
  nagios3/httpd: apache2



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



Bug#515291: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gps
Severity: serious

gps build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gps depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-1  GCC support library
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libstdc++64.3.3-1The GNU Standard C++ Library v3
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

gps recommends no packages.

Versions of packages gps suggests:
pn  rgpsp none (no description available)



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



Bug#515288: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gman
Severity: serious

gman build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gman depends on:
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-1  GCC support library
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libstdc++64.3.3-1The GNU Standard C++ Library v3
ii  man-db2.5.2-4on-line manual pager
ii  xfce4-terminal [x-terminal-em 0.2.8-5Xfce terminal emulator
ii  xterm [x-terminal-emulator]   239-1  X terminal emulator

gman recommends no packages.

Versions of packages gman suggests:
pn  gvnone (no description available)
pn  httpd none (no description available)
pn  man2html  none (no description available)



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



Bug#515293: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gpsim-logic
Severity: serious

gpsim-logic build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gpsim-logic depends on:
pn  gpsim none (no description available)
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-1  GCC support library
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libstdc++64.3.3-1The GNU Standard C++ Library v3
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

gpsim-logic recommends no packages.

gpsim-logic suggests no packages.



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



Bug#515184: pkpgcounter failes to read PJL-wrapped postscript

2009-02-15 Thread Joachim Breitner
Hi Jerome,

thanks for your quick answer.

Am Samstag, den 14.02.2009, 16:13 +0100 schrieb a...@librelogiciel.com:
 On Sat, Feb 14, 2009 at 03:21:00PM +0100, Joachim Breitner wrote:
 This is a bug in GhotScript, not in pkpgcounter as can be seen below :
 
 
 jer...@lafrime:~$ gs testprintfile
 GPL Ghostscript 8.62 (2008-02-29)
 Copyright (C) 2008 Artifex Software, Inc.  All rights reserved.
 This software comes with NO WARRANTY: see the file PUBLIC for details.
 Error: /undefined in
 !R!CRES;SCRN0;RGBL0,0;RGBL1,0;RGBL2,0;HUE0,0;HUE1,0;HUE2,0;HUE3,0;HUE4,0;HUE5,0;HUE6,0;LGHT0,0;LGHT1,0;SATU0;EXIT;
 perand stack:
 
 Execution stack:
%interp_exit   .runexec2   --nostringval--   --nostringval--
--nostringval--   2   %stopped_push   --nostringval--
--nostringval--   --nostringval--   false   1   %stopped_push   1905
1   3   %oparray_pop   1904   1   3   %oparray_pop   1888   1   3
%oparray_pop   1771   1   3   %oparray_pop   --nostringval--
%errorexec_pop   .runexec2   --nostringval--   --nostringval--
--nostringval--   2   %stopped_push   --nostringval--
 Dictionary stack:
--dict:1151/1684(ro)(G)--   --dict:0/20(G)--   --dict:92/200(L)--
 Current allocation mode is local
 Current file position is 262
 GPL Ghostscript 8.62: Unrecoverable error, exit code 1
 jer...@lafrime:~$
 
 pkpgcounter itself correctly parses the file with its internal parser,
 which doesn't try to interpret postscript (and so is limited of course) :
 
 jer...@lafrime:~$ pkpgcounter --debug testprintfile
 Input file is in the 'PostScript' file format.
 1 * page #1
 1 * page #2
 Internal parser said : 2 pages
 2
 jer...@lafrime:~$
 
 but when pkpgcounter wants to convert this file to TIFF to do ink usage
 based print accounting, it uses GhostScript (because it was easier ;-)
 and so it fails because of GhostScript's own failure to read this file.
 
 not sure how to reassign this bug to ghostscript, but this is what to
 do.
 
 in any case, thanks a lot for your feedback.

I’m not sure if I can follow this argument. The attached print file was
not valid postscript, but rather postscript wrapped in an PJL print job,
if I understand it correctly. Therefore, it can not be a bug in
ghostscript.

OTOH, pkpgcounter tries to handle data as sent to the printer, therefore
passing this file to pkpgycounter (as done by pykota in my case) is
correct.

It seems that the included simple postscript parser is liberal enough to
skip the PJL header, but I think it’s still pkpgcounter’s responsibility
to make sure ghostscript understands the data it passes to it.

Also, it seems there might be PJL SET COPIES command that needs to be
taken in account (but this is probably a different issue, and I’m not
sure if it should be handled by pykota or pkpgcounter).

Thanks,
Joachim

-- 
Joachim nomeata Breitner
Debian Developer
  nome...@debian.org | ICQ# 74513189 | GPG-Keyid: 4743206C
  JID: nome...@joachim-breitner.de | http://people.debian.org/~nomeata


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#515292: Depends on GTK 1.2 and GLIB 1.2

2009-02-15 Thread Moritz Muehlenhoff
Package: gpsim-led
Severity: serious

gpsim-led build-depends on libgtk1.2-dev and libglib1.2-dev, which will be
removed for Squeeze.

Please port it to GTK 2 or request it's removal.

Cheers,
Moritz

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

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: LANG=C, lc_ctype=de_de.iso-8859...@euro (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages gpsim-led depends on:
pn  gpsim none (no description available)
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.3-1  GCC support library
ii  libglib1.2ldbl1.2.10-19  The GLib library of C routines
pn  libgtk1.2 none (no description available)
ii  libstdc++64.3.3-1The GNU Standard C++ Library v3
ii  libx11-6  2:1.1.5-2  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.1.4-1  X11 Input extension library

gpsim-led recommends no packages.

gpsim-led suggests no packages.



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



Bug#515294: cryptsetup: Configurable passphrase prompt

2009-02-15 Thread dick
Package: cryptsetup
Version: 2:1.0.6-7
Severity: wishlist


Is it possible, please, to make the prompt for the LUKS passphrase at boot
time configurable.  At the moment it is 'hard coded' in
/usr/share/initramfs-tools/scripts/local-top/cryptroot

Apart from me (who wants to just prompt 'Authorised key:') there may well be
some who prefer to use a different language from English.

Thanks

Dick

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

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

Versions of packages cryptsetup depends on:
ii  dmsetup  2:1.02.27-4 The Linux Kernel Device Mapper use
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libdevmapper1.02.1   2:1.02.27-4 The Linux Kernel Device Mapper use
ii  libpopt0 1.14-4  lib for parsing cmdline parameters
ii  libuuid1 1.41.3-1universally unique id library

cryptsetup recommends no packages.

Versions of packages cryptsetup suggests:
pn  dosfstoolsnone (no description available)
ii  initramfs-tools [linux-initra 0.92o  tools for generating an initramfs
ii  udev  0.125-7/dev/ and hotplug management daemo

-- no debconf information



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



Bug#503734: shell-fm does not decode quot; entities

2009-02-15 Thread Jakub Wilk

Package: shell-fm
Version: 0.4+svn20071125.r282-1
Followup-For: Bug #503734

Patch attached.

--
Jakub Wilk
diff --git a/src/http.c b/src/http.c
--- a/src/http.c
+++ b/src/http.c
@@ -258,6 +258,8 @@
 		lt;, ,
 		gt;, ,
 		nbsp;,  ,
+		quot;, \,
+		apos;, \',
 	};
 
 	for(i = 0; i  (sizeof(codes) / sizeof(char *)); i += 2) {


Bug#515295: ITP: libsyntax-highlight-engine-simple-languages-perl -- collection of syntax definition subclasses for Syntax::Highlight::Engine::Simple

2009-02-15 Thread David Bremner
Package: wnpp
Severity: wishlist
Owner: David Bremner brem...@unb.ca


* Package name: libsyntax-highlight-engine-simple-languages-perl
  Version : To be decided. 
  Upstream Author : Sugama Keita sug...@jamadam.com
* URL :  http://search.cpan.org/dist/Syntax-Highlight-Engine-Simple/
* License : GPL|Artistic
  Programming Lang: Perl
  Description : collection syntax definition subclasses for 
Syntax::Highlight::Engine::Simple

Syntax::Highlight::Engine::Simple provides a framework for generating
coloured HTML from source code and similar text using regular
expressions, controlled by cascading stylesheets (CSS). This package
provides subclasses definining syntax for concrete languages. The
current version includes 
.  
Syntax::Highlight::Engine:Simple::Perl
Syntax::Highlight::Engine:Simple::HTML

Comments from packager:

- I expect/hope to include classes from upstream for Java/PHP/C++ before too 
long, and maybe collect some others.

- I'm not 100% sure about the versioning. It might make sense for this
  to be a native package (as e.g. libcatalyst-modules-perl which it is
  modelled on).

- The base package ITP BTS #515505.  

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




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



Bug#451369: aptitude: Does not show installed package

2009-02-15 Thread Hristo Hristov
Hello,

In my first e-mail on this bug report I have a mistake. Please read:
 The package skype is now shown in aptitude. ...
as
 The package skype is NOT shown in aptitude. ...

Sorry about that. I saw it only now.

Best regards,
Hristo



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



Bug#482404: exim4-daemon-heavy: Issues happened after etch-lenny upgrade

2009-02-15 Thread Philipp Kolmann
Package: exim4-daemon-heavy
Version: 4.69-9
Followup-For: Bug #482404

Hi,

I just upgraded one of my servers and got hit by this bug.

I just wanted to confirm, that removing nearly all ca-certs solved this issue
for now for me.

I hope for a proper fix with 5.0.1.

Thanks
Philipp

-- Package-specific info:
Exim version 4.69 #1 built 30-Sep-2008 18:26:44
Copyright (c) University of Cambridge 2006
Berkeley DB: Berkeley DB 4.6.21: (September 27, 2007)
Support for: crypteq iconv() IPv6 PAM Perl Expand_dlfunc GnuTLS 
move_frozen_messages Content_Scanning Old_Demime
Lookups: lsearch wildlsearch nwildlsearch iplsearch cdb dbm dbmnz dnsdb dsearch 
ldap ldapdn ldapm mysql nis nis0 passwd pgsql sqlite
Authenticators: cram_md5 cyrus_sasl dovecot plaintext spa
Routers: accept dnslookup ipliteral iplookup manualroute queryprogram redirect
Transports: appendfile/maildir/mailstore/mbx autoreply lmtp pipe smtp
Fixed never_users: 0
Size of off_t: 8
Configuration file is /var/lib/exim4/config.autogenerated
# /etc/exim4/update-exim4.conf.conf
#
# Edit this file and /etc/mailname by hand and execute update-exim4.conf
# yourself or use 'dpkg-reconfigure exim4-config'
#
# Please note that this is _not_ a dpkg-conffile and that automatic changes
# to this file might happen. The code handling this will honor your local
# changes, so this is usually fine, but will break local schemes that mess
# around with multiple versions of the file.
#
# update-exim4.conf uses this file to determine variable values to replace
# the DEBCONFsomethingDEBCONF strings in the configuration template files.
#
# Most settings found in here do have corresponding questions in the
# Debconf configuration, but not all of them.
#
# This is a Debian specific file

dc_eximconfig_configtype='internet'
dc_other_hostnames='eacpc4.tuwien.ac.at'
dc_local_interfaces=''
dc_readhost=''
dc_relay_domains=''
dc_minimaldns='false'
dc_relay_nets=''
dc_smarthost=''
CFILEMODE='644'
dc_use_split_config='true'
dc_hide_mailname=''
dc_mailname_in_oh='true'
#dc_localdelivery=maildir_home
dc_localdelivery='maildir_home'
mailname:wkx.zid.tuwien.ac.at

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

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

Versions of packages exim4-daemon-heavy depends on:
ii  debconf [debconf-2.0]1.5.24  Debian configuration management sy
ii  exim4-base   4.69-9  support files for all Exim MTA (v4
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libdb4.6 4.6.21-11   Berkeley v4.6 Database Libraries [
ii  libgnutls26  2.4.2-6 the GNU TLS library - runtime libr
ii  libldap-2.4-22.4.11-1OpenLDAP libraries
ii  libmysqlclient15off  5.0.51a-24  MySQL database client library
ii  libpam0g 1.0.1-5 Pluggable Authentication Modules l
ii  libpcre3 7.6-2.1 Perl 5 Compatible Regular Expressi
ii  libperl5.10  5.10.0-19   Shared Perl library
ii  libpq5   8.3.6-1 PostgreSQL C client library
ii  libsasl2-2   2.1.22.dfsg1-23 Cyrus SASL - authentication abstra
ii  libsqlite3-0 3.5.9-6 SQLite 3 shared library

exim4-daemon-heavy recommends no packages.

exim4-daemon-heavy suggests no packages.

-- debconf information:
  exim4-daemon-heavy/drec:



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



Bug#486888: [php-maint] Bug#486888: You can' use apache1 with php5 in Lenny (tested on amd64 architecture, not sure about others)

2009-02-15 Thread Ondřej Surý
Send us:

apt-cache policy libapache2-mod-php5

and

apt-cache policy php5-common

It's your local problem for sure.

Ondrej.

On Sun, Feb 15, 2009 at 2:51 PM, Petr Baláš p...@balas.cz wrote:
 Update to Lenny remove this package. This is BIG problem for me :-(

 r...@linux:~# apt-get install libapache-mod-php5
 Reading package lists... Done
 Building dependency tree
 Reading state information... Done
 Some packages could not be installed. This may mean that you have
 requested an impossible situation or if you are using the unstable
 distribution that some required packages have not yet been created
 or been moved out of Incoming.
 The following information may help to resolve the situation:

 The following packages have unmet dependencies:
  libapache-mod-php5: Depends: php5-common (= 5.2.0-10+lenny1) but
 5.2.0-8+etch13 is to be installed
 E: Broken packages

 --
 Petr Baláš



 ___
 pkg-php-maint mailing list
 pkg-php-ma...@lists.alioth.debian.org
 http://lists.alioth.debian.org/mailman/listinfo/pkg-php-maint




-- 
Ondřej Surý ond...@sury.org



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



Bug#515296: release-notes: Correct spelling of Eee PC. s/EEE/Eee/

2009-02-15 Thread Paul Menzel
Subject: release-notes: Correct spelling of Eee PC s/EEE/Eee/
Package: release-notes
Severity: normal

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

Dear Debian folks,


could you please correct the spelling of Eee PC [1].

s/EEE/Eee/


Thanks,

Paul


[1] http://eeepc.asus.com

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

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


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#515233: ITP: sqldeveloper -- Oracle SQL Developer

2009-02-15 Thread Lazarus Long
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Vincent Bernat wrote:
 * Package name: sqldeveloper
   Version : 1.5.3.57.83
   Upstream Author : Oracle, Inc. ora...@oracle.org
 * URL : http://otn.oracle.com/software/products/sql/
 * License : Non-free Proprietary (Oracle Technologies Network)
 
 Not even free to distribute...

Yes, I realize that, but this is an uncommon situation where a GPL
package is being developed to generate a non-free one.

Similar to the game-data-packager, googleearth-package, java-package and
vmware-package, I developed sqldeveloper-package which lives on
http://mentors.debian.net/debian/pool/contrib/s/sqldeveloper-package.

sqldeveloper-package is GPL and it fulfills requirements to belong to
main (I classified it as contrib, because all other packages of its sort
are in contrib), and its purpose is to generate a local installable SQL
Developer package.

Since someone might decide to try either a similar or other approach
this ITP is just to avoid duplication of efforts. I believe that
sqldeveloper-package, if ever accepted, should close this ITP, since
it's its purpose.

Regards,

- --
Lazarus
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAkmYKxoACgkQCXRGvVwdwgWPPACgxGmQCrZqnF7lpK4PaD/abaYi
A7UAoPREQwpyr8p52AoOsEsChBTLKuOU
=MrgW
-END PGP SIGNATURE-



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



  1   2   3   4   >