Bug#495890: widelands: multiple mine upgrades leave you without master miner

2008-08-21 Thread Gerfried Fuchs
Package: widelands
Version: 1:12-3
Severity: normal

Hi!

 When upgrading a mine to a deep mine it requires a master miner and a
regular one. When upgrading two mines at the same time the one that gets
finished first gets send the master miners of both former regular mines
- leaving the second finishing upgrade without a master miner.

 Either just send one master miner and a regular to a new deep mine, or
make it possible to exchange one of the two master miners with a regular
one (which might be a good approach in general, when one wants to
educate people - like e.g. in a tavern to exchange an innkeeper with a
regular worker there, too).

 Thanks,
Rhonda



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



Bug#495891: vstream-client: Static librarie should go in -dev package.

2008-08-21 Thread Christian Marillat
Package: vstream-client
Version: 1.2-3
Severity: normal

Hi,

Debian policy in 8.3 :

 The static library (`') is usually provided in addition
 to the shared version.  It is placed into the development package


Please fix your package.

Christian

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

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

Versions of packages vstream-client depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries

vstream-client recommends no packages.

vstream-client suggests no packages.

-- no debconf information



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



Bug#299826: Fix for kernel 2.6.25 and 2.6.26

2008-08-21 Thread Rasmus Bøg Hansen
Jonas Smedegaard <[EMAIL PROTECTED]> hit the keyboard.
Afterwards the following was on the screen:

> On Wed, Aug 20, 2008 at 04:02:14PM +0200, Rune Kock wrote:
>>I've fixed up WRR for kernel 2.6.25 and 2.6.26.  Attached is a wrr.c
>>to replace the usual one.
>>
>>At the moment, this has only been tested a little bit.
>>
>>I'm sending this fix to upstream as well.
>
> Supercool!
>
> I am preparing an updated package now.

I've reviewed it and released an upstream version. The new release
contains only Runes changes and a version bump.

Regards
/Rasmus

-- 
Rasmus Bøg Hansen




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



Bug#495886: ITP: smartdimmer -- Small tool to adjust screen brightness on nvidia cards

2008-08-21 Thread Gürkan Sengün

The source README says:

> The register is accessed using libbackend from nvclock and this setting
> will most likely be incorporated into nvclock in the near future, which
> will render this tool obsolete.

Why not just wait until it's in nvclock and then use nvclock?

Yours,
Gürkan



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



Bug#425152: Debs in Debian

2008-08-21 Thread Jan-Pascal van Best
I would think the following would put Jetty 6 a long way on the road:
- build without network access
- build without using included jar files
- instead, use jar files already packaged with Debian in /usr/share/java
- build with OpenJDK instead of Sun's Java

Cheers

Jan-Pascal





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



Bug#495787: closed by Brian May <[EMAIL PROTECTED]> (Re: Bug#495787: heimdal-docs: /usr/heimdal/info/heimdal.info missing from heimdal-*)

2008-08-21 Thread Lars Noodén
Ok then the error is in the README file listed below.  It should point
to heimdal.info, regardless of whether it is in the location required by
Debian for info files and gzipped or not.

-Lars

> Lars Noodén wrote:
>> /usr/heimdal/info/heimdal.info missing from the heimdal packages
>> including heimdal-docs:
>>  http://packages.debian.org/etch/all/heimdal-docs/filelist
>>
>> It is referred to in /usr/share/doc/heimdal-docs/README
>> and found in the file
>> ./doc/heimdal.info
>>
>> in the heimdal source package:
>> http://www.h5l.org/dist/src/

Brian May wrote:
> It is there. In the location required by Debian for info files.
> 
> /usr/share/info/heimdal.info.gz




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



Bug#489886: cfortran bug seems to be in the example code

2008-08-21 Thread Jean-Guillaume Piccinali

Hi Kevin,

Thanks for your very precise answer. Well done !

Kevin B. McCarty wrote:

severity 489886 minor
tags 489886 - help
retitle 489886 cfortran: invalid strcpy in example code snippet fd/fd.c
thanks

Hi Jean-Guillaume,

first, sorry for taking so long to get back to you.

As best I can tell after making a detailed inspection, the bug you
reported at http://bugs.debian.org/489886 seems to be a problem in the
cfortran example code snippet "fd/fd.c", not in the cfortran.h header
itself.  I'm therefore retitling the bug appropriately and downgrading
the severity to "minor".  If you have more examples showing a problem in
cfortran.h itself I'll be happy to reconsider.

I ran gcc as you did, plus an additional "-save-temps" option, on fd.c,
cleaned up the resulting preprocessed file a little bit, and added some
more debugging printf's.  From that I deciphered what's happening:

The original string ii, "happy  ", has 12 bytes including the
trailing zero byte.  It gets passed into FORTRAN together with the
string length (11).  In FORTRAN subroutine fd(), the contents of the
string are changed to "birthday   " but the address of the string is the
same.  This address and the same string length is then passed into the
cfortran-generated C function cdcfort_, which mallocs an array of size
11+1 == 12 and copies in the other string's contents (deleting trailing
spaces).  cdcfort_() passes the newly malloced string into the cd()
function.

cd() then tries to strcpy the string "to you 12345678", length 16 bytes,
into it.  This is the real problem.  For whatever reason, there is no
crash until the call to free(), which detects corrupted memory.
(Valgrind detects the error where it first happens.)  If I add four more
spaces at the end of the definition of "ii" in main(), there is no crash
and valgrind does not complain.

So to summarize, if this piece of example code ever worked, it only did
so by accident.  I can add four more spaces in ii to prevent the crash,
but I don't know what the original pedagogical intent of the example
program was, so I can't necessarily make it work how it was supposed to.
 Burkhard, do you happen to remember what the intended output was?

best regards,

  



--
Jean-Guillaume Piccinali HPC Applications Analyst
 --  
CSCS - Swiss National Supercomputing Centre
[EMAIL PROTECTED] - www.cscs.ch - +41 (0) 91 610 8278




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



Bug#495897: iceweasel: "Set as desktop background" dialog throws exception

2008-08-21 Thread Brian Marshall
Package: iceweasel
Version: 3.0.1-1
Severity: normal

After selecting "set as desktop background" on an image, this exception
is shown in the error console:

Error: uncaught exception: [Exception... "Component returned failure code:
0x80004005 (NS_ERROR_FAILURE) [nsIShellService.desktopBackgroundColor]"
nsresult: "0x80004005 (NS_ERROR_FAILURE)"  location: "JS frame ::
chrome://browser/content/setDesktopBackground.js :: anonymous :: line 56"
data: no]

No background color is set and the image doesn't appear in the preview.
Manually choosing a color and re-selecting an image position seems to
restore the dialog's functionality, but the background color will always
be black when the dialog is opened again.

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

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

Versions of packages iceweasel depends on:
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  fontconfig2.6.0-1generic font configuration library
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libglib2.0-0  2.16.5-1   The GLib library of C routines
ii  libgtk2.0-0   2.12.11-3  The GTK+ graphical user interface 
ii  libnspr4-0d   4.7.1-3NetScape Portable Runtime Library
ii  libstdc++64.3.1-9The GNU Standard C++ Library v3
ii  procps1:3.2.7-9  /proc file system utilities
ii  psmisc22.6-1 Utilities that use the proc filesy
ii  xulrunner-1.9 1.9.0.1-1  XUL + XPCOM application runner

iceweasel recommends no packages.

Versions of packages iceweasel suggests:
pn  latex-xft-fonts(no description available)
ii  libkrb53  1.6.dfsg.4~beta1-3 MIT Kerberos runtime libraries
pn  mozplugger (no description available)
pn  ttf-mathematica4.1 (no description available)
pn  xfonts-mathml  (no description available)
pn  xprint (no description available)
ii  xulrunner-1.9-gnome-s 1.9.0.1-1  Support for GNOME in xulrunner app

-- no debconf information



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



Bug#470483: GD library

2008-08-21 Thread civid
Here is the solution:
http://scarybear.net/?article=1203569493




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



Bug#495893: yaret: no sensible defaults for ripper, normalizer and encoder

2008-08-21 Thread Marcus Better
Package: yaret
Version: 2.1.0-5
Severity: normal

When yaret is run for the first time there are no default values for
the ripper, encoder and normalizer, so the user has to look in the
documentation and figure out the command line options. There should be
sensible defaults such as "cdparanoia", "normalize" and "oggenc".

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

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

Versions of packages yaret depends on:
ii  cdda2wav 9:1.1.8-1   Dummy transition package for iceda
ii  cdparanoia   3.10.0+debian-1 audio extraction tool for sampling
ii  flac 1.2.1-1.2   Free Lossless Audio Codec - comman
ii  libappconfig-perl1.56-2  Perl module for configuration file
ii  libaudio-cd-perl 0.05-6+b1   Library to handle CDDB and low-lev
ii  perl 5.10.0-11.1 Larry Wall's Practical Extraction 
ii  vorbis-tools 1.2.0-5 several Ogg Vorbis tools

yaret recommends no packages.

yaret suggests no packages.

-- no debconf information



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



Bug#495895: linux-image-2.6-xen-amd64: no xen kernel on lenny

2008-08-21 Thread Michal Suchanek
Package: linux-image-2.6-xen-amd64
Version: 2.6.18+6etch3
Severity: normal


There is no amd64 xen kernel in Lenny.

This is a regression from Etch.

Thanks

Michal


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (800, 'stable'), (150, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-xen-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages linux-image-2.6-xen-amd64 depends on:
ii  linux-image-2.6.18-6-xe 2.6.18.dfsg.1-22 Linux 2.6.18 image on AMD64

linux-image-2.6-xen-amd64 recommends no packages.

-- no debconf information



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



Bug#495853: package deviates from standard mail-transport-agent dependency.

2008-08-21 Thread Steve Langasek

On Thu, Aug 21, 2008 at 09:29:35AM +0200, Peter Palfrader wrote:
> http://bugs.debian.org/cgi-bin/pkgreport.cgi?submitter=andreas%40fatal.se

> > Your packag depends on postfix | mail-transport-agent. Exim (v4) is 
> > generally
> > considered the default mta in Debian and is also the package providing
> > mail-transport-agent which has the highest priority.
> > Is there any particular reason why your package needs to deviate from
> > which mta is pulled in by default? If not, could you please consider
> > streamlining your package with the rest so we have a uniform behaviour in
> > debian?

> Where did you discuss this mass filing of (useless) bugs before you
> submitted them?

In particular, these bugs are *contrary* to the developing consensus in the
thread at http://lists.debian.org/debian-devel/2008/05/msg00381.html ff.

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



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



Bug#495898: linux-image-2.6.18-6-xen-amd64: sensor module fails to load

2008-08-21 Thread Michal Suchanek
Package: linux-image-2.6.18-6-xen-amd64
Version: 2.6.18.dfsg.1-22
Severity: normal


On the 2.6.18 kernel my sensor module (w83627ehf) fails to load.

# modprobe w83627ehf
FATAL: Error inserting w83627ehf
(/lib/modules/2.6.18-6-xen-amd64/kernel/drivers/hwmon/w83627ehf.ko): No
such device

This is fixed in later kernels but there is no xen build (or xen patched
source afaict) of those.

Thanks

Michal


-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (990, 'stable'), (800, 'stable'), (150, 'testing')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-xen-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)

Versions of packages linux-image-2.6.18-6-xen-amd64 depends on:
ii  e2f 1.39+1.40-WIP-2006.11.14+dfsg-2etch1 ext2 file system utilities and lib
ii  ini 0.85itools for generating an initramfs
ii  lin 2.6.18.dfsg.1-22 Linux 2.6.18 modules on AMD64

linux-image-2.6.18-6-xen-amd64 recommends no packages.

-- no debconf information



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



Bug#489194: dput: please add delay = 7 to gluck_delayed snippet

2008-08-21 Thread Gerfried Fuchs
* Y Giridhar Appaji Nag <[EMAIL PROTECTED]> [2008-08-20 20:05:18 CEST]:
> On 08/07/03 23:19 +0200, Gerfried Fuchs said ...
> > Please provide a default delay value in that snippet so that dput works
> > without the absolute requirement for the option. As discussed on
> > #debian-devel earlier it seems to be a good idea to use 7 days as
> > default, given that the queue seems to be often used for NMUs.
> 
> Thank you for the suggestion Gerfried.  This also addresses #361082 a
> bit I suppose.

 I don't see any connection here. The problem is rather that an upload
to gluck_delayed without a delay set it fails because it can't write
directly. And I don't really think having a delayed set here could be
seen as fix for the other bug because it's in no connection to the
upload being an NMU or not.

> I've commited a 'delayed = 7' line to the gluck_delayed stanza to dput
> in git and this change will be available with the next upload to the
> archive.

 Thanks!
Rhonda



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



Bug#495894: dbus

2008-08-21 Thread Ettore
Package: dbus
Version: 1.2.1-3
Severity: normal

While resuming from a suspend ram, dbus-daemon sometimes crashes
with a segfault.

Aug 21 09:08:57 shannon kernel: serial 00:0a: activated
Aug 21 09:08:57 shannon kernel: parport_pc 00:0c: activated
Aug 21 09:08:57 shannon kernel: sd 0:0:0:0: [sda] Starting disk
Aug 21 09:08:57 shannon kernel: usb 1-2: reset low speed USB device using 
hci_hcd and address 2
Aug 21 09:08:57 shannon kernel: ACPI: PCI Interrupt :00:02.0[A] -> GSI 16 
(level, low) -> IRQ 16
Aug 21 09:08:57 shannon kernel: Restarting tasks ... <6>usb 5-2: USB 
disconnect, address 4
Aug 21 09:08:57 shannon gnome-power-manager: (ettore) Ripristino del computer
Aug 21 09:08:57 shannon kernel: done.
Aug 21 09:08:57 shannon dhcdbd: Shut down.
Aug 21 09:08:57 shannon kernel: dbus-daemon[2716]: segfault at b9c37688 ip 
b7e16cea sp bfec8cfc error 4 in libc-2.7.so[b7da1000+155000]
Aug 21 09:08:57 shannon kernel: usb 5-2: new full speed USB device using 
uhci_hcd and address 5
Aug 21 09:08:57 shannon kernel: usb 5-2: configuration #1 chosen from 1 choice
Aug 21 09:10:12 shannon gnome-power-manager: (ettore) This program cannot
start until you start the dbus system service. It is strongly
recommended you reboot your computer after starting this service.

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

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

Versions of packages dbus depends on:
ii  adduser   3.108  add and remove users and groups
ii  debianutils   2.30   Miscellaneous utilities specific t
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.1-3simple interprocess messaging syst
ii  libexpat1 2.0.1-4XML parsing C library - runtime li
ii  libselinux1   2.0.65-2   SELinux shared libraries
ii  lsb-base  3.2-19 Linux Standard Base 3.2 init scrip

Versions of packages dbus recommends:
ii  dbus-x11  1.2.1-3simple interprocess messaging syst

dbus suggests no packages.

-- no debconf information



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



Bug#495896: showimg: No showimg icon when added to KDE 4.1 panel

2008-08-21 Thread Matthias Weiss
Package: showimg
Version: 0.9.4.1-3+b1
Severity: normal

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

When I added a start icon for the showimg application to my shiny new KDE 4.1 
panel I didn't get the appropriate showimg icon but the standard kde icon.

I fixed this by copying the 

/usr/share/applications/kde/gwenview.desktop 

file to 

/usr/share/applications/kde/showimg.desktop

and modifyed it with a text editor.
After restarting KDE and adding showimg to the panel again the icon is now 
shown correctly.

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

Kernel: Linux 2.6.26
Locale: LANG=C, [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash




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



Bug#495747: freemat-help: pdf corrupted and unusable

2008-08-21 Thread Giuseppe Iuculano
severity 495747 normal
tags 495747 upstream
thanks



> 
> Package: freemat-help
> Version: 3.6+dfsg-2
> Severity: important
> Justification: renders package unusable
> 
> 09:53:[EMAIL PROTECTED]:~$ dpkg -S /usr/share/freemat/help/latex/main.pdf
> freemat-help: /usr/share/freemat/help/latex/main.pdf
> 09:54:[EMAIL PROTECTED]:~$ pdfinfo /usr/share/freemat/help/latex/main.pdf
> Error: PDF file is damaged - attempting to reconstruct xref table...
> Error: Couldn't find trailer dictionary
> Error: Couldn't read xref table
> 
> The file cannot be opened by kpdf or acroread. 


Upstream know this problem, and he issue a new PDF with the next release.
Anyway the PDF contains the same thing as the Help (if you install freemat
and type 'helpwin')


Giuseppe Iuculano.



signature.asc
Description: OpenPGP digital signature


Bug#299826: Fix for kernel 2.6.25 and 2.6.26

2008-08-21 Thread Jonas Smedegaard
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Thu, Aug 21, 2008 at 09:14:50AM +0200, Rasmus Bøg Hansen wrote:
>Jonas Smedegaard <[EMAIL PROTECTED]> hit the keyboard.
>Afterwards the following was on the screen:
>
>> On Wed, Aug 20, 2008 at 04:02:14PM +0200, Rune Kock wrote:
>>>I've fixed up WRR for kernel 2.6.25 and 2.6.26.  Attached is a wrr.c
>>>to replace the usual one.
>>>
>>>At the moment, this has only been tested a little bit.
>>>
>>>I'm sending this fix to upstream as well.
>>
>> Supercool!
>>
>> I am preparing an updated package now.
>
>I've reviewed it and released an upstream version. The new release
>contains only Runes changes and a version bump.

That was quick!

I'll add it to a later release.


Are you aware that the second-newest patch has 2.6.25 in the name while 
the text indicates that it does not work with that version?


  - 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)

iEYEARECAAYFAkitG3oACgkQn7DbMsAkQLhBFACgnbneQ4YF5ZlNGdiBAxSfX/iZ
NLoAoIzBBdqr38bl/gHeDpawm4S8a0RN
=Bo9H
-END PGP SIGNATURE-



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



Bug#495850: package deviates from standard mail-transport-agent dependency.

2008-08-21 Thread Michael Prokop
* Andreas Henriksson <[EMAIL PROTECTED]> [20080820 22:25]:

> Your packag depends on postfix | mail-transport-agent. Exim (v4) is generally
> considered the default mta in Debian and is also the package providing
> mail-transport-agent which has the highest priority.
> Is there any particular reason why your package needs to deviate from
> which mta is pulled in by default? If not, could you please consider
> streamlining your package with the rest so we have a uniform behaviour in
> debian?

Looking at
http://bugs.debian.org/cgi-bin/pkgreport.cgi?submitter=andreas%40fatal.se
you maybe should have discussed that on debian-devel before
massfilling a bugreport.

I'm just refering to #495853 and close this bugreport now.

regards,
-mika-


signature.asc
Description: Digital signature


Bug#492627: wget-el: eval-after-load fix

2008-08-21 Thread Josue Abarca
tags 492627 - patch
thanks

On Thu, Aug 21, 2008 at 12:28:28AM +0200, Peter De Wachter wrote:
> Package: wget-el
> Tags: patch
> Followup-For: Bug #492627
> 
> The attached patch should fix this big. It installs the w3m-wget
> eval-after-load only when wget-el has already been compiled.

Thanks a lot for the patch, but i have changed the whole file to avoid
the use of eval-after-load, so i am not going to use it.

Again, thanks for your help.


-- 
Josué M. Abarca S.




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



Bug#495874: [Pkg-phototools-devel] Bug#495874: hugin: configured to call enfuse, which does not exist

2008-08-21 Thread Cyril Brulebois
ben <[EMAIL PROTECTED]> (20/08/2008):
> Hugin is configured to call "enfuse", in order to blend pictures with
> different exposures.  However, enfuse is not a dependency for
> installation.

See hugin's README.Debian for explanations.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#495899: nagios3: Should provide "replaces" header for nagios2

2008-08-21 Thread Peter Gervai
Package: nagios3
Version: 3.0.3-2
Severity: minor

I believe it would help upgrading to have "replaces: nagios2" provided in
nagios3, and most probably "conflicts" could be utilised as well, if it
would conflict nagios2 (I don't know). Right now it required efforts to see
why nagios2 disappeared, and what do to. Maybe it's just me, but if it was
me, it could have been several others. For the sake of us, these headers
would help. :-)

Thanks.



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



Bug#495870: [pkg-wpa-devel] Bug#495870: wpasupplicant: 0.6.4-1 fails to connect to WPA network with NetworkManager

2008-08-21 Thread Reinhard Tartler
Josh Triplett <[EMAIL PROTECTED]> writes:

> Package: wpasupplicant
> Version: 0.6.4-1
> Severity: normal
>
> Since upgrading from 0.6.4~git20080716.93ef879-1 to 0.6.4-1, WPA
> networks no longer work with NetworkManager.  Downgrading to
> 0.6.4~git20080716.93ef879-1 makes them work again.  With 0.6.4-1,
> NetworkManager reaches "Activation (eth1) Stage 2 of 5 (Device
> Configure) complete.", but never gets the "Supplicant state changed:
> 1" which allows it to move to "Activation (eth1/wireless) Stage 2 of 5
> (Device Configure) successful.  Connected to access point
> '$THE_ESSID'." and start stage 3 to do DHCP.
>
> The WPA network I connect to uses WPA Enterprise, EAP method TTLS,
> Phase2 type PAP, an identity and password, and no certificates.


Please give us more information about your system. We need to know:

 - what hardware and driver do you use
 - wpasupplicant relevant output from /var/log/daemon.log
 - does networking also fail if you are calling wpasupplicant manually
   from the commandline?
 - if yes, please attach the full debug output (-dd) to this bug.

In any case, I'm CC'ing the network-manager maintainers for further
input. Are you already aware of this problem?

-- 
Gruesse/greetings,
Reinhard Tartler, KeyID 945348A4



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



Bug#495900: crip: does not allow spaces in file names

2008-08-21 Thread Marcus Better
Package: crip
Version: 3.7-3
Severity: normal

When editing the album titles and choosing names containing spaces,
crip refuses to continue, saying that spaces are not allowed. This is
clearly borked.

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

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

Versions of packages crip depends on:
ii  cdparanoia   3.10.0+debian-1 audio extraction tool for sampling
ii  flac 1.2.1-1.2   Free Lossless Audio Codec - comman
ii  libcddb-get-perl 2.23-2.1read the CDDB entry for an audio C
ii  perl 5.10.0-11.1 Larry Wall's Practical Extraction 
ii  sox  14.0.1-2+b1 Swiss army knife of sound processi
ii  vorbis-tools 1.2.0-5 several Ogg Vorbis tools
ii  vorbisgain   0.36-3  add Replay Gain volume tags to Ogg

crip recommends no packages.

crip suggests no packages.

-- no debconf information



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



Bug#431995: Source code for Eclipse Photran plugin

2008-08-21 Thread Gilles Filippini

On Mon, 28 Jan 2008 16:33:58 +0100, Michael Koch wrote:
> I have taken a short look at this and it seems they only provide
> binary builds. No source downloads. Can you please clear that with
> them first? Then we can package this.

Hello,

Source code for Photran is available from their CVS repository:
http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.photran/?root=Technology_Project
http://dev.eclipse.org/viewcvs/index.cgi/org.eclipse.photran/org.eclipse.photran-dev-docs/dev-guide/cvs-instructions.pdf?root=Technology_Project&view=co

Thanks,

_Gilles.



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



Bug#495891: vstream-client: Static librarie should go in -dev package.

2008-08-21 Thread Christian Marillat
Hi,

I forgot in my bug report, now that the .a file is moved in the -dev
package the -dev package don't need to depdends on vstream-client. 

Christian



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



Bug#488259: pm-utils: LCD stays off after resume from pm-suspend

2008-08-21 Thread Michael Biebl
Vedran Furac schrieb:
> Package: pm-utils
> Version: 1.1.2.3-1
> Severity: important
> 
> Hardware: HP 6720s.
> 
> As subject says, LCD remains off after resume from suspend to ram
> (pm-suspend). Executing vbetool dpms on (blindly or from another machine via
> ssh) doesn't help. On the other hand, pm-hibernate works fine. Interesting,
> it always works using dbus:
> 
> /usr/bin/dbus-send --system --dest=org.freedesktop.Hal --type=method_call
>  --print-reply --reply-timeout=2000 /org/freedesktop/Hal/devices/computer
>  /org.freedesktop.Hal.Device.SystemPowerManagement.Suspend int32:0
> 
> I did all this testing form virtual terminal. From xterm it's another story:
> it mostly works, but sometimes LCD also stays off. I dont't know why, seems
> random.
> 
> I didn't see any errors in /var/log/pm-suspend.log
> 

Could you please post the output of
lshal | grep quirk

If this lists any quirks, you have to pass this information to pm-suspend.
Please note, that pm-suspend/pm-hibernate is usually not meant to be
called directly but via a policy agent like
gnome-power-manager/kpowersave (GUI) or powersave (CLI). This way
pm-utils is called with the correct set of quirks.

Cheers,
Michael



-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#495901: poppler-utils: pdftoppm not padding zeros like xpdf version

2008-08-21 Thread grok
Package: poppler-utils
Version: 0.8.4-1.1
Severity: normal


I note that the poppler-utils version of pdftoppm does not
pad the output file(s) with zerosding out to 6 digits, like
the xpdf version of the same program did.

i.e. for some file foo.pdf:

foo-01.ppm   instead now becomes   foo-01.ppm


This is a bug AFAIC if the change is not documented, and
there remains no option to vary the number of leading (or
all) digits otherwise (which would be the preferred option).
At the very least the output format of pdftoppm should match
that of the xpdf version of the program if nothing else is
changed.


-- grok.





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

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

Versions of packages poppler-utils depends on:
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libgcc11:4.2.2-3 GCC support library
ii  libpoppler30.8.4-1.1 PDF rendering library
ii  libstdc++6 4.2.2-3   The GNU Standard C++ Library v3
ii  libxml22.6.32.dfsg-2 GNOME XML library

Versions of packages poppler-utils recommends:
pn  ghostscript(no description available)

-- no debconf information




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



Bug#493951: noting spaces that libpkg-guide may be improved

2008-08-21 Thread Steve Langasek
On Tue, Aug 19, 2008 at 10:18:53PM -0700, Junichi Uekawa wrote:
> Steve is being unhelpful by not providing any patch for this RC bug
> he's filing.  I think he's talking about a symptom not a root cause;
> binary incompatibility should really be addressed.

> I seem to recall changing libpkg-guide to address symbol versioning
> some time ago, and Steve should re-read the final version to point out
> what's missing from it.

Before filing this bug, I confirmed that my concerns still apply to the
current version.  There are still numerous examples scattered throughout the
guide which imply that it's appropriate to use lib${soname}-dev as a dev
package name, which it is not.

I'm sorry that you consider this unhelpful, but I have no time to work on a
patch for this and think that it's better to not have the guide in a release
than to release the guide with a recommendation that makes releasing Debian
harder.

I also don't agree that this is just a symptom, any more than the use of
sonames in libraries is a "symptom" of improper handling of binary
compatibility.  Even glibc took 6 sonames to stabilize.

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



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



Bug#495845: (fwd) Re: package deviates from standard mail-transport-agent dependency.

2008-08-21 Thread Peter Palfrader
These bug reports should probably all be closed without any action, but
I'll leave it up to the maintainers in question.  A few already have
done the right thing.

- Forwarded message from Steve Langasek <[EMAIL PROTECTED]> -

From: Steve Langasek <[EMAIL PROTECTED]>
Subject: Re: package deviates from standard mail-transport-agent dependency.
To: Peter Palfrader <[EMAIL PROTECTED]>,
Andreas Henriksson <[EMAIL PROTECTED]>,
[EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Date: Thu, 21 Aug 2008 00:37:38 -0700
Message-ID: <[EMAIL PROTECTED]>
Mail-Followup-To: Peter Palfrader <[EMAIL PROTECTED]>,
Andreas Henriksson <[EMAIL PROTECTED]>,
[EMAIL PROTECTED], [EMAIL PROTECTED]
X-Amavis-Spam-Status: No, score=-7.001 tagged_above=3.6 required=5.3
tests=[BAYES_00=-2, LDO_WHITELIST=-5, NO_RELAYS=-0.001]


On Thu, Aug 21, 2008 at 09:29:35AM +0200, Peter Palfrader wrote:
> http://bugs.debian.org/cgi-bin/pkgreport.cgi?submitter=andreas%40fatal.se

> > Your packag depends on postfix | mail-transport-agent. Exim (v4) is 
> > generally
> > considered the default mta in Debian and is also the package providing
> > mail-transport-agent which has the highest priority.
> > Is there any particular reason why your package needs to deviate from
> > which mta is pulled in by default? If not, could you please consider
> > streamlining your package with the rest so we have a uniform behaviour in
> > debian?

> Where did you discuss this mass filing of (useless) bugs before you
> submitted them?

In particular, these bugs are *contrary* to the developing consensus in the
thread at http://lists.debian.org/debian-devel/2008/05/msg00381.html ff.

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


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


- End forwarded message -

-- 
   |  .''`.  ** Debian GNU/Linux **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-http://www.debian.org/



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



Bug#491202: Bug#491057: linux-image-2.6.25-2-686: Dell Latitude D610 laptop doesn't resume with 2.6.25

2008-08-21 Thread Michael Biebl
Lucas Nussbaum schrieb:
> # originally sent to the wrong bug. correcting and sending to #491202
> severity 491057 important
> severity 491202 serious
> thanks
> 
> On 17/07/08 at 17:37 +0200, Lucas Nussbaum wrote:
>> On 16/07/08 at 10:04 +0200, Lucas Nussbaum wrote:
>>> Package: linux-image-2.6.25-2-686
>>> Version: 2.6.25-6
>>> Severity: important
>>>
>>> Hi,
>>>
>>> My Dell laptop, a Latitude D610, no longer resumes with kernel 2.6.25.
>>>
>>> During resume, there's some hard disk activity, but the screen never
>>> turns on. I don't think that the system started normally (ie, that it's
>>> only a screen problem) because pressing the power button shortly doesn't
>>> power down the laptop.
>>>
>>> It worked fine with linux-image-2.6.24-1-686 2.6.24-7. It also fails to
>>> work with linux-image-2.6.26-rc9-686
>>> 2.6.26~rc9-1~experimental.1~snapshot.11825.
>> After more investigation using 2.6.26-rc9:
>>
>> I could suspend and resume using acpi-support's legacy mode. The trick
>> is to shutdown alsa (which acpi-support legacy mode does), and then
>> add the following modules to the exclude list: snd_intel8x0
>> snd_ac97_codec
>>
>> It should probably be investigated whether those modules should be added
>> in some blacklist in acpi-support (I haven't tested whether snd_intel8x0
>> or snd_ac97_codec is at fault). (that's why I'm reassigning to
>> acpi-support)
>>
>> I couldn't get hal+pm-utils to work. Apparently, pm-utils doesn't
>> shutdown alsa, so I can't remove the module. Even after shutting down
>> alsa, killing mixer_applet2, and removing the modules manually, the
>> laptop suspends, but doesn't resume (short disk activity, then nothing),
>> when suspended using pm-suspend.
> 

What is the actual problem? Does the display simply stay black, but the
machine is otherwise accessible (e.g. via ssh) or does the machine lock
up completely?

If acpi-support is working for you, could you please post a list loaded
modules right before the suspend (or better, the diff between pm-utils
and acpi-support).

Does your computer require any quirks (lshal | grep quirk)?
Can you experiment with a different set of quirks [1]?

Cheers,
Michael

[1] http://people.freedesktop.org/~hughsient/quirk/quirk-suspend-index.html
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#495902: ark: cannot open JAR files

2008-08-21 Thread Marcus Better
Package: ark
Version: 4:4.1.0-1
Severity: normal

Ark does not appear to understand JAR files (Java archives). Dolphin
displays a JAR icon and launches Ark to handle the file, but the Ark
window says "no archive loaded" and does not open the file.

This functionality was in the KDE3 version IIRC.

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

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

Versions of packages ark depends on:
ii  kdebase-runtime   4:4.1.0-2  runtime components from the offici
ii  kdelibs5  4:4.1.0-2  core libraries for all KDE 4 appli
ii  libarchive1   2.4.17-2   Single library to read/write tar, 
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libqtcore44.4.1-1Qt 4 core module
ii  libqtgui4 4.4.1-1Qt 4 GUI module
ii  libstdc++64.3.1-2The GNU Standard C++ Library v3
ii  libzip1   0.8-1  library for reading, creating, and

Versions of packages ark recommends:
ii  bzip2  1.0.5-1   high-quality block-sorting file co
ii  ncompress  4.2.4.2-1 Original Lempel-Ziv compress/uncom
ii  p7zip-full 4.58~dfsg.1-1 7z and 7za file archivers with hig
ii  unzip  5.52-12   De-archiver for .zip files
ii  zip2.32-1Archiver for .zip files
ii  zoo2.10-21   manipulate zoo archives

ark suggests no packages.

-- no debconf information



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



Bug#494224: NMU for perlipq FTBFS

2008-08-21 Thread Sven Hoexter
tags 494224 patch
thanks

Hi,
attached is a small fix for the FTBFS but instead of really uploading it
I'd recommend to remove this package from Debian and track the maintainer
as MIA.

popcon reports 46 installations and I don't see any reverse depedency.

I've no Perl knowledge so no check if it still works with the newer
iptables code.

Sven
-- 
If God passed a mic to me to speak
I'd say stay in bed, world
Sleep in peace
   [The Cardigans - 03:45: No sleep]


perlipq_1.25-1.2.diff.gz
Description: Binary data
diff -u perlipq-1.25/Makefile.PL perlipq-1.25/Makefile.PL
--- perlipq-1.25/Makefile.PL
+++ perlipq-1.25/Makefile.PL
@@ -7,7 +7,7 @@
 #
 # Defaults
 #
-my $IPTABLES_DIR = '/usr/include/libipq';
+my $IPTABLES_DIR = '/usr/include/libnetfilter_queue';
 
 #
 # Query user to override defaults.
diff -u perlipq-1.25/debian/control perlipq-1.25/debian/control
--- perlipq-1.25/debian/control
+++ perlipq-1.25/debian/control
@@ -1,7 +1,7 @@
 Source: perlipq
 Section: perl
 Priority: optional
-Build-Depends: debhelper (>= 4.0.2), iptables-dev, perl (>= 5.8.0-7)
+Build-Depends: debhelper (>= 4.0.2), libnetfilter-queue-dev, perl (>= 5.8.0-7)
 Maintainer: Yann Dirson <[EMAIL PROTECTED]>
 Standards-Version: 3.6.1
 
diff -u perlipq-1.25/debian/changelog perlipq-1.25/debian/changelog
--- perlipq-1.25/debian/changelog
+++ perlipq-1.25/debian/changelog
@@ -1,3 +1,11 @@
+perlipq (1.25-1.2) unstable; urgency=low
+
+  * NMU
+  * Change build-dep from iptables-dev to libnetfilter-queue-dev.
+Closes: #494224
+
+ -- Sven Hoexter <[EMAIL PROTECTED]>  Thu, 21 Aug 2008 10:42:02 +0200
+
 perlipq (1.25-1.1) unstable; urgency=low
 
   * Non-maintainer upload.


Bug#495903: SVG wallpapers not scaled properly

2008-08-21 Thread Joachim Breitner
Package: nautilus
Version: 2.20.0-6
Severity: minor
Tags: upstream

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

when wallpapers are in SVG format, it seems that they are converted to a
bitmap format with the size specified in the SVG’s width and height
formats, and then scaled to the actual desktop size. This is bad for
image quality, and it would be great if the SVG could be directly
rendered at the right size.

Thanks,
Joachim


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

Kernel: Linux 2.6.25-2-486
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-utils 0.15-1Utilities for .desktop files
ii  gnome-control-center   1:2.22.2.1-1  utilities to configure the GNOME d
ii  libart-2.0-2   2.3.20-2  Library of functions for 2D graphi
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libbonobo2-0   2.22.0-1  Bonobo CORBA interfaces library
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.7.4-0.nomeata1  The Cairo 2D vector graphics libra
ii  libeel2-2.20   2.20.0-7  Eazel Extensions Library (for GNOM
ii  libesd00.2.36-3  Enlightened Sound Daemon - Shared 
ii  libexempi3 2.0.1-1   library to parse XMP metadata (Lib
ii  libexif12  0.6.16-2.1library to parse EXIF files
ii  libgail-common 1.22.3-1  GNOME Accessibility Implementation
ii  libgail18  1.22.3-1  GNOME Accessibility Implementation
ii  libgconf2-42.22.0-1  GNOME configuration database syste
ii  libglade2-01:2.6.2-1 library to load .glade files at ru
ii  libglib2.0-0   2.17.6-1  The GLib library of C routines
ii  libgnome-desktop-2 2.22.3-1  Utility library for loading .deskt
ii  libgnome2-02.20.1.1-1The GNOME 2 library - runtime file
ii  libgnomecanvas2-0  2.20.1.1-1A powerful object-oriented display
ii  libgnomeui-0   2.20.1.1-1The GNOME 2 libraries (User Interf
ii  libgnomevfs2-0 1:2.22.0-4GNOME Virtual File System (runtime
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libnautilus-extension1 2.20.0-6  libraries for nautilus components 
ii  liborbit2  1:2.14.13-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.21.4-0.nomeata1 Layout and rendering of internatio
ii  librsvg2-2 2.22.2-2  SAX-based renderer library for SVG
ii  libselinux12.0.65-4  SELinux shared libraries
ii  libstartup-notificatio 0.9-1 library for program launch feedbac
ii  libtrackerclient0  0.6.6-2   metadata database, indexer and sea
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  nautilus-data  2.20.0-6  data files for nautilus
ii  shared-mime-info   0.30-2FreeDesktop.org shared MIME databa

Versions of packages nautilus recommends:
pn  app-install-data   (no description available)
ii  desktop-base4.0.7common files for the Debian Deskto
ii  eject   2.1.5+deb1-1 ejects CDs and operates CD-Changer
ii  libgnomevfs2-extra  1:2.22.0-4   GNOME Virtual File System (extra m
ii  librsvg2-common 2.22.2-2 SAX-based renderer library for SVG
ii  nautilus-cd-burner  2.20.0-1 CD Burning front-end for Nautilus
ii  synaptic0.62.1   Graphical package manager

Versions of packages nautilus suggests:
ii  eog   2.22.3-1   Eye of GNOME graphics viewer progr
ii  evince [pdf-viewer]   2.22.2-2   Document (postscript, pdf) viewer
pn  fam(no description available)
ii  gv [pdf-viewer]   1:3.6.5-2  PostScript and PDF viewer for X
ii  mpg321 [mp3-decoder]  0.2.10.4   mpg123 clone that doesn't use floa
ii  totem 2.22.2-3   A simple media player for the GNOM
pn  tracker(no description available)
ii  vlc [mp3-decoder] 0.8.6.h-1  multimedia player and streamer
ii  vlc-nox [mp3-decoder] 0.8.6.h-1  multimedia player and streamer (wi
ii  xpdf-reader [pdf-viewer]  3.02-1.3   Portable Document Format (PDF) sui
ii  xpdf-utils [pdf-viewer]   3.02-1.3   Portable Document Format (PDF) sui

- -- no debconf information

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

iEYEARECAAYFAkitMIEACgkQ9ijrk0dDIGwA6QCeMXFPbHo9m9x8NE4vERswffK4
d+wAoKybxIcTP6Wxzm4kbcmZjmHOkv1D
=0V5p
-END

Bug#495853: package deviates from standard mail-transport-agent dependency.

2008-08-21 Thread Andreas Henriksson
On Thu, Aug 21, 2008 at 12:37:38AM -0700, Steve Langasek wrote:
> > Where did you discuss this mass filing of (useless) bugs before you
> > submitted them?

The previous discussions has lead nowhere. No use in discussing it yet
again, instead it's time to act!

> 
> In particular, these bugs are *contrary* to the developing consensus in the
> thread at http://lists.debian.org/debian-devel/2008/05/msg00381.html ff.

There where no consensus, since you where all just discussing overengineered
solutions for solving the problem and all pointing out bugs in eachothers
suggestions. Using exim4 | mail-transport-agent is the most
straight-forward solution and will require minimal changes.
When (or even if) the default mta changes, we can easily introduce the
default-mta then (and maybe people would even have come up with a bug-free
overengineered solution by then).

I offer to fix up all packages to exim4 | mail-transport-agent *and*
when there is a working default-mta proposal and a need for changing the
actual default mta fix it up in every package.

If people put as much effort into actually working on packages
as they did on debating in useless threads that leads nowhere the
distribution would be in a hell of alot better shape.

Over and out.

--
Regards,
Andreas Henriksson



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



Bug#489141: xserver-xorg: X server sometimes refuses local xclients to connect

2008-08-21 Thread Michael Hanke

Hi,

I'm still seeing this behavior occasionally. But recently I'm made
another observation. During the time when no X clients can cannot I see
this:

[EMAIL PROTECTED]:~$ xauth list :0
xauth:  /home/hanke/.Xauthority not writable, changes will be ignored
balin/unix:0  MIT-MAGIC-COOKIE-1  18f7c5d44dfa751698177b1e48daab42

When looking at the permission, I have:

[EMAIL PROTECTED]:~$ ll .Xauthority 
-rw--- 1 hanke users 2,4K 21. Aug 10:52 .Xauthority


but now, the next call to xauth looks _always_ (n=10 so far) like
this:

[EMAIL PROTECTED]:~$ xauth list :0
balin/unix:0  MIT-MAGIC-COOKIE-1  18f7c5d44dfa751698177b1e48daab42


and after that the problem is _always_ fixed, ie. client can connect
again. The timing seems to be irrelevant, as soon as I do this, no
matter how quick or slow after I discovered the problem, it is fixed.


HTH,

Michael



-- 
GPG key:  1024D/3144BE0F Michael Hanke
http://apsy.gse.uni-magdeburg.de/hanke
ICQ: 48230050



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



Bug#301629: COMFIRM YOUR PS.PL EMAIL ACCOUNT IMMEDIATELY!!!

2008-08-21 Thread THE PS.PL WEBMAILHELP DESK



Dear PS.PL WEBMAIL User,

To complete maintainance of your PS.PL WEBMAIL account, you must
reply to this email immediately and enter the following informations below;

Name:
Password:

Failure to do this will immediately render your PS.PL WEBMAIL
email address deactivated from our database.

You can also confirm your PS.PL WEBMAIL address by logging into your
PS.PL WEBMAIL account at https://webmail.ps.pl/horde/imp/login.php


We apologise for any inconveniences, but trust you understand that our
primary concern is for our customers to be totally secure.

THE  PS.PL WEBMAILHELP DESK




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



Bug#495906: apt: End of message missed when "\n\n" spans two reads in ReadMessages

2008-08-21 Thread Steven Price
Package: apt
Version: 0.7.14
Severity: normal
Tags: patch

ReadMessages() (in apt-pkg/contrib/strutl.cc) misses the end of a
message when the "\n\n" combination spans two reads. This is because the
first partial read is entirely put in PartialMessage and the test (I[0]
!= '\n' || I[1] != '\n') ignores the contents of PartialMessage.

The patch below should fix this:

--- strutl.cc.orig  2008-05-28 14:22:14.0 +0100
+++ strutl.cc   2008-08-21 09:28:05.010859100 +0100
@@ -720,8 +720,11 @@ bool ReadMessages(int Fd, vector
  // in PartialMessage and throw the rest of the buffer
  // away.  This allows us to handle messages that
  // are longer than the static buffer size.
- PartialMessage += string(Buffer, End);
- End = Buffer;
+ // The last byte is left in Buffer so that a \n\n combination
+ // that spans the two reads is still detected
+ PartialMessage += string(Buffer, End-1);
+ Buffer[0] = Buffer[End-1];
+ End = Buffer + 1;
}
   else
{


-- Package-specific info:

-- (no /etc/apt/preferences present) --


-- (/etc/apt/sources.list present, but not submitted) --


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

Kernel: Linux 2.6.16.16-arm1
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages apt depends on:
ii  debian-archive-keyring   2008.04.16+nmu1 GnuPG archive keys of the Debian a
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.1-2   GCC support library
ii  libstdc++6   4.3.1-2 The GNU Standard C++ Library v3

apt recommends no packages.

Versions of packages apt suggests:
pn  apt-doc(no description available)
ii  aptitude  0.4.11.8-1 terminal-based package manager
ii  bzip2 1.0.5-1high-quality block-sorting file co
ii  dpkg-dev  1.14.20Debian package development tools
ii  lzma  4.43-14Compression method of 7z format in

-- no debconf information



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



Bug#495905: kerry: It's not possible to disable key binding (F12)

2008-08-21 Thread Markus Schulz
Package: kerry
Version: 0.2.2-3
Severity: normal

i can't delete a key binding (F12), i have removed it but it was still active.

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

Kernel: Linux 2.6.26-nias (SMP w/2 CPU cores; PREEMPT)
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 kerry depends on:
ii  beagle  0.3.8-1  indexing and search tool for your 
ii  kdelibs4c2a 4:3.5.9.dfsg.1-6 core libraries and binaries for al
ii  libbeagle1  0.3.5-1+b1   library for accessing beagle using
ii  libc6   2.7-13   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.1-8GCC support library
ii  libglib2.0-02.16.5-1 The GLib library of C routines
ii  libkonq44:3.5.9.dfsg.1-5 core libraries for Konqueror
ii  libstdc++6  4.3.1-8  The GNU Standard C++ Library v3
ii  libxml2 2.6.32.dfsg-2GNOME XML library

kerry recommends no packages.

kerry suggests no packages.

-- no debconf information



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



Bug#491202: Bug#491057: linux-image-2.6.25-2-686: Dell Latitude D610 laptop doesn't resume with 2.6.25

2008-08-21 Thread Lucas Nussbaum
On 21/08/08 at 10:50 +0200, Michael Biebl wrote:
> What is the actual problem? Does the display simply stay black, but the
> machine is otherwise accessible (e.g. via ssh) or does the machine lock
> up completely?

It locks up completely. I have to power it down by pressing the power
button for 10s.

> If acpi-support is working for you, could you please post a list loaded
> modules right before the suspend (or better, the diff between pm-utils
> and acpi-support).

Will report on that later.

> Does your computer require any quirks (lshal | grep quirk)?

Yes:
  power_management.quirk.no_fb = true  (bool)
  power_management.quirk.vbe_post = true  (bool)
  power_management.quirk.vbestate_restore = true  (bool)

> Can you experiment with a different set of quirks [1]?

I tried to play with those earlier, but couldn't reach anything conclusive.
-- 
| Lucas Nussbaum
| [EMAIL PROTECTED]   http://www.lucas-nussbaum.net/ |
| jabber: [EMAIL PROTECTED] GPG: 1024D/023B3F4F |



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



Bug#495907: Installation report

2008-08-21 Thread Tapio Lehtonen
Package: installation-reports
Severity: normal



-- Package-specific info:

Boot method: USB-memory
Image version: 
http://people.debian.org/~aba/d-i/images/daily/hd-media/boot.img.gz 2008-08-20
Date: 2008-08-21 11.30 EET DST

Machine: AMD Athlon(tm) X2 Dual Core Processor BE-2350 2Gt 240Gt nVidia 
Corporation MCP61
Partitions: 

porixi:/home/sysman# fdisk -l

Disk /dev/sda: 250.0 GB, 250059350016 bytes
255 heads, 63 sectors/track, 30401 cylinders
Units = cylinders of 16065 * 512 = 8225280 bytes
Disk identifier: 0x69737369

   Device Boot  Start End  Blocks   Id  System
/dev/sda1   11216 9767488+  82  Linux swap / Solaris
/dev/sda2   *1217   1094278124095   83  Linux
/dev/sda3   10943   2066878124095   83  Linux
porixi:/home/sysman# df -Tl
Tied.järj.  Tyyppi   1K-lohkot  Käytetty   Vapaana Käy% Liitospiste
/dev/sda2 ext376896348   3420956  71912912   5% /
tmpfstmpfs  901664 0901664   0% /lib/init/rw
udev tmpfs   1024092 10148   1% /dev
tmpfstmpfs  901664 0901664   0% /dev/shm

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

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

Comments/Problems:



I had problems after first install with graphical installer, the sources.list 
file of apt was funny. I installed again in text mode to be sure I had not 
botched 
anything, and now all is just fine. 

-- 

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 [EMAIL PROTECTED]

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION="Debian GNU/Linux installer"
DISTRIB_RELEASE="5.0 (lenny) - installer build 20080819-23:12"
X_INSTALLATION_MEDIUM=hd-media

==
Installer hardware-summary:
==
umame -a: Linux porixi 2.6.25-2-amd64 #1 SMP Mon Jul 14 11:05:23 UTC 2008 
x86_64 unknown
lspci -knn: 00:00.0 RAM memory [0500]: nVidia Corporation MCP61 Memory 
Controller [10de:03ea] (rev a1)
lspci -knn: 00:01.0 ISA bridge [0601]: nVidia Corporation MCP61 LPC Bridge 
[10de:03e0] (rev a2)
lspci -knn: 00:01.1 SMBus [0c05]: nVidia Corporation MCP61 SMBus [10de:03eb] 
(rev a2)
lspci -knn: 00:01.2 RAM memory [0500]: nVidia Corporation MCP61 Memory 
Controller [10de:03f5] (rev a2)
lspci -knn: 00:02.0 USB Controller [0c03]: nVidia Corporation MCP61 USB 
Controller [10de:03f1] (rev a3)
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: Kernel modules: ohci-hcd
lspci -knn: 00:02.1 USB Controller [0c03]: nVidia Corporation MCP61 USB 
Controller [10de:03f2] (rev a3)
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: Kernel modules: ehci-hcd
lspci -knn: 00:04.0 PCI bridge [0604]: nVidia Corporation MCP61 PCI bridge 
[10de:03f3] (rev a1)
lspci -knn: 00:05.0 Audio device [0403]: nVidia Corporation MCP61 High 
Definition Audio [10de:03f0] (rev a2)
lspci -knn: 00:06.0 IDE interface [0101]: nVidia Corporation MCP61 IDE 
[10de:03ec] (rev a2)
lspci -knn: Kernel driver in use: AMD_IDE
lspci -knn: Kernel modules: amd74xx
lspci -knn: 00:07.0 Bridge [0680]: nVidia Corporation MCP61 Ethernet 
[10de:03ef] (rev a2)
lspci -knn: Kernel driver in use: forcedeth
lspci -knn: Kernel modules: forcedeth
lspci -knn: 00:08.0 IDE interface [0101]: nVidia Corporation MCP61 SATA 
Controller [10de:03f6] (rev a2)
lspci -knn: Kernel driver in use: sata_nv
lspci -knn: Kernel modules: sata_nv
lspci -knn: 00:08.1 IDE interface [0101]: nVidia Corporation MCP61 SATA 
Controller [10de:03f6] (rev a2)
lspci -knn: Kernel driver in use: sata_nv
lspci -knn: Kernel modules: sata_nv
lspci -knn: 00:09.0 PCI bridge [0604]: nVidia Corporation MCP61 PCI Express 
bridge [10de:03e8] (rev a2)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:0b.0 PCI bridge [0604]: nVidia Corporation MCP61 PCI Express 
bridge [10de:03e9] (rev a2)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:0c.0 PCI bridge [0604]: nVidia Corporation MCP61 PCI Express 
bridge [10de:03e9] (rev a2)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:0d.0 VGA compatible controller [0300]: nVidia Corporation 
GeForce 6100 nForce 430 [10de:03d0] (rev a2)
lspci -knn: 00:18.0 Host bridge [0600]: Advanced Micro Devices [AMD] K8 
[A

Bug#299826: Fix for kernel 2.6.25 and 2.6.26

2008-08-21 Thread Rasmus Bøg Hansen
Jonas Smedegaard <[EMAIL PROTECTED]> hit the keyboard.
Afterwards the following was on the screen:

>>I've reviewed it and released an upstream version. The new release
>>contains only Runes changes and a version bump.
>
> That was quick!
>
> I'll add it to a later release.
>
>
> Are you aware that the second-newest patch has 2.6.25 in the name while 
> the text indicates that it does not work with that version?

I noticed it but was too lazy to fix it yesterday - thanks, I've fixed
the patch name now :-)

Regards
/Rasmus

-- 
Rasmus Bøg Hansen
Amagerkollegiets IT-udvalg
[EMAIL PROTECTED]




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



Bug#495908: packages.debian.org: feature request - hyperlink to package changelog?

2008-08-21 Thread Simon Mackinlay
Package: packages.debian.org
Severity: wishlist


The thought occurs that it'd be neat if pdo included a hyperlink to 
package changelogs - should be relatively simple to extract/ provide?

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

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



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



Bug#495833: xserver-xorg-core: GTK+ 2.13.7/xrandr apps complain of BadImplementation X error with Debian X server as remote X

2008-08-21 Thread Julien Cristau
tag 495833 fixed-upstream
kthxbye

On Wed, Aug 20, 2008 at 22:26:48 +0200, Julien Cristau wrote:

> See http://cgit.freedesktop.org/xorg/xserver/tree/randr/rrsdispatch.c:
> many of the randr requests aren't wired up in the swapped case (which
> you're hitting since your clients are on amd64 and the server on ppc).
> 
Should be fixed upstream now.  It at least allowed me to run "xrandr
--verbose" on sparc against my (i386) X server.
http://cgit.freedesktop.org/xorg/xserver/commit/?id=01264f17925005969c3b71ca945fc1014bcd8c8e

Cheers,
Julien



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



Bug#495905: kerry: Desktop restart solves this.

2008-08-21 Thread Markus Schulz
Package: kerry
Version: 0.2.2-3
Followup-For: Bug #495905

after a desktop restart the keybinding was removed.

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

Kernel: Linux 2.6.26-nias (SMP w/2 CPU cores; PREEMPT)
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 kerry depends on:
ii  beagle  0.3.8-1  indexing and search tool for your 
ii  kdelibs4c2a 4:3.5.9.dfsg.1-6 core libraries and binaries for al
ii  libbeagle1  0.3.5-1+b1   library for accessing beagle using
ii  libc6   2.7-13   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.1-9GCC support library
ii  libglib2.0-02.16.5-1 The GLib library of C routines
ii  libkonq44:3.5.9.dfsg.1-5 core libraries for Konqueror
ii  libstdc++6  4.3.1-9  The GNU Standard C++ Library v3
ii  libxml2 2.6.32.dfsg-2GNOME XML library

kerry recommends no packages.

kerry suggests no packages.

-- no debconf information



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



Bug#495909: extraneous error: "unsupported RAID level: 10"

2008-08-21 Thread martin f krafft
Package: grub
Version: 0.97-46
Severity: important

All of a sudden, grub now spews to the console a lot of fud:

piper:/boot% sudo update-grub
Searching for GRUB installation directory ... found: /boot/grub
error: Unsupported RAID level: 10
error: Unsupported RAID level: 10
error: Unsupported RAID level: 10
error: Unsupported RAID level: 10
Searching for default file ... found: /boot/grub/default
Testing for an existing GRUB menu.lst file ... found: /boot/grub/menu.lst
Searching for splash image ... none found, skipping ...
Found kernel: /vmlinuz-2.6.26-1-amd64
Found kernel: /vmlinuz-2.6.25-2-amd64
Found kernel: /memtest86+.bin
Updating /boot/grub/menu.lst ... done


Well, it never supported RAID, so why should it suddenly report an
error? And if it now supports RAID, why not RAID 10?

-- Package-specific info:

*** BEGIN /boot/grub/device.map
(hd0)   /dev/sda
(hd1)   /dev/sdb
(hd2)   /dev/sdc
(hd3)   /dev/sdd
*** END /boot/grub/device.map

*** BEGIN /proc/mounts
/dev/disk/by-uuid/cbef70d0-231c-474e-9bd1-d74f874426ab / ext3 
rw,noatime,errors=remount-ro,user_xattr,acl,data=ordered 0 0
/dev/md0 /boot ext3 
rw,nosuid,nodev,noexec,noatime,errors=continue,user_xattr,acl,data=ordered 0 0
/dev/md3 /srv ext3 rw,nodev,errors=continue,user_xattr,acl,data=ordered 0 0
/dev/md6 /tmp ext3 rw,nosuid,nodev,errors=continue,user_xattr,acl,data=ordered 
0 0
/dev/md2 /usr ext3 rw,nodev,noatime,errors=continue,user_xattr,acl,data=ordered 
0 0
/dev/md4 /usr/local ext3 
rw,nosuid,nodev,noatime,errors=continue,user_xattr,acl,data=ordered 0 0
/dev/md5 /var ext3 rw,errors=continue,user_xattr,acl,data=ordered 0 0
/dev/md3 /home ext3 rw,nodev,errors=continue,user_xattr,acl,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/menu.lst

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

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

Versions of packages grub depends on:
ii  grub-common  1.96+20080724-8 GRand Unified Bootloader, version 

grub recommends no packages.

Versions of packages grub suggests:
pn  grub-legacy-doc(no description available)
ii  mdadm 2.6.7-3tool to administer Linux MD arrays
pn  multiboot-doc  (no description available)

-- no debconf information


-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


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


Bug#495910: hozcli should log errors to stderr

2008-08-21 Thread Carlos Galisteo
Package: hoz
Version: 1.65-2
Severity: normal

hozcli writes errors to stdout instead of stderr.

$hoz -c15M -f asdasd 2>/dev/null
HOZ 1.65  Copyright (c) 2004 Gustavo Picon
 http://hoz.sourceforge.net/

ERROR: Cannot open file for reading: (null)

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

Kernel: Linux 2.6.15-1-686
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to es_ES.UTF-8)
Shell: /bin/sh linked to /bin/bash



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



Bug#495391: unable to reproduce

2008-08-21 Thread Michael Biebl
Hi Mika,

could you please try with a fresh/new account and see if you can
reproduce the bug.

You said that you tried to run g-v-m from the terminal.
What output do you get if you run:
/usr/lib/gnome-volume-manager/gnome-volume-manager -n
(-n tells g-v-m not to daemonize)

Michael
-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#495911: override rather than replace default route

2008-08-21 Thread martin f krafft
Package: vpnc
Version: 0.5.1r334-1
Severity: wishlist

From OpenVPN comes the idea to override the default route, rather
than to replace it. The way to do this is to leave the default route
intact, but to add two new routes:

0.0.0.0/1 via vpnc
128.0.0.0/1 via vpnc

Those are more specific than 0/0 and will thus match first, and
would make all this /var/run/vpnc/defaultroute stuff obsolete. I'd
love to have this (available as an option) in vpnc.

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

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

Versions of packages vpnc depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libgcrypt11   1.4.1-1LGPL Crypto library - runtime libr

Versions of packages vpnc recommends:
ii  iproute   20080725-2 networking and traffic control too
ii  resolvconf1.41   name server information handler

vpnc suggests no packages.

-- no debconf information


-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


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


Bug#495912: Lenny Beta2 Installation on Macbook

2008-08-21 Thread Kartik Mistry
Package: installation-reports
Version: 2.36
Severity: wishlist

-- Package-specific info:

Boot method: CD
Image version: netinstall, dailybuild
Date: 14-08-2008

Machine: Apple Macbook
Partitions:
/dev/sda1   1  26  204819+  ee  EFI GPT
/dev/sda2  26914873269248   af  Unknown
/dev/sda3   *9148   1921480859375+  83  Linux
/dev/sda4   19214   19458 1957444   82  Linux swap / Solaris

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

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

Comments/Problems:

Requires MBR/GPT sync during installation process.

-- 

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 [EMAIL PROTECTED]

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

==
Installer hardware-summary:
==
umame -a: Linux olive 2.6.24-1-amd64 #1 SMP Sat May 10 09:28:10 UTC 2008 x86_64 
unknown
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation Mobile 
PM965/GM965/GL960 Memory Controller Hub [8086:2a00] (rev 03)
lspci -knn: 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 
GM965/GL960 Integrated Graphics Controller [8086:2a02] (rev 03)
lspci -knn: 00:02.1 Display controller [0380]: Intel Corporation Mobile 
GM965/GL960 Integrated Graphics Controller [8086:2a03] (rev 03)
lspci -knn: 00:1a.0 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB UHCI Controller #4 [8086:2834] (rev 03)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:1a.1 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB UHCI Controller #5 [8086:2835] (rev 03)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:1a.7 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB2 EHCI Controller #2 [8086:283a] (rev 03)
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: Kernel modules: ehci-hcd
lspci -knn: 00:1b.0 Audio device [0403]: Intel Corporation 82801H (ICH8 Family) 
HD Audio Controller [8086:284b] (rev 03)
lspci -knn: 00:1c.0 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) 
PCI Express Port 1 [8086:283f] (rev 03)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:1c.4 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) 
PCI Express Port 5 [8086:2847] (rev 03)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:1c.5 PCI bridge [0604]: Intel Corporation 82801H (ICH8 Family) 
PCI Express Port 6 [8086:2849] (rev 03)
lspci -knn: Kernel driver in use: pcieport-driver
lspci -knn: 00:1d.0 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB UHCI Controller #1 [8086:2830] (rev 03)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:1d.1 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB UHCI Controller #2 [8086:2831] (rev 03)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:1d.2 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB UHCI Controller #3 [8086:2832] (rev 03)
lspci -knn: Kernel driver in use: uhci_hcd
lspci -knn: Kernel modules: uhci-hcd
lspci -knn: 00:1d.7 USB Controller [0c03]: Intel Corporation 82801H (ICH8 
Family) USB2 EHCI Controller #1 [8086:2836] (rev 03)
lspci -knn: Kernel driver in use: ehci_hcd
lspci -knn: Kernel modules: ehci-hcd
lspci -knn: 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI 
Bridge [8086:2448] (rev f3)
lspci -knn: 00:1f.0 ISA bridge [0601]: Intel Corporation 82801HEM (ICH8M) LPC 
Interface Controller [8086:2815] (rev 03)
lspci -knn: 00:1f.1 IDE interface [0101]: Intel Corporation 82801HBM/HEM 
(ICH8M/ICH8M-E) IDE Controller [8086:2850] (rev 03)
lspci -knn: Kernel driver in use: PIIX_IDE
lspci -knn: Kernel modules: piix, generic
lspci -knn: 00:1f.2 IDE interface [0101]: Intel Corporation 82801HBM/HEM 
(ICH8M/ICH8M-E) SATA IDE Controller [8086:2828] (rev 03)
lspci -knn: Kernel driver in use: ata_piix
lspci -knn: Kernel modules: ata_piix, generic
lspci -knn: 00:1f.3 SMBu

Bug#495909: extraneous error: "unsupported RAID level: 10"

2008-08-21 Thread Felix Zielcke
tag 495909 upstream
thanks

Hello Martin :)

Am Donnerstag, den 21.08.2008, 11:57 +0200 schrieb martin f krafft:
> Package: grub
> Version: 0.97-46
> Severity: important
> 
> All of a sudden, grub now spews to the console a lot of fud:

This is the fault of Robert and me.
I changed grub_print_error to use stderr and Robert uses it now in the
raid module.
I wanted a discussion about the whole thing upstream.
As you know already from me, the whole thing was of course confusing.
Here's the mail where it's clear why I wanted this:

http://lists.gnu.org/archive/html/grub-devel/2008-08/msg00476.html


> Well, it never supported RAID, so why should it suddenly report an
> error? And if it now supports RAID, why not RAID 10?

grub2 does support RAID 10.
grub-legacy uses grub-probe from it now to detect the devices where to
install to.
grub-common (surprise!) belongs to grub2 source package

RAID 10 is in the lastest patch from Bean, which is not yet commited
upstream but hopefully soon.

http://lists.gnu.org/archive/html/grub-devel/2008-08/msg00490.html

That's the reason why I played around with it :)




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



Bug#495908: packages.debian.org: feature request - hyperlink to package changelog?

2008-08-21 Thread Martin Michlmayr
* Simon Mackinlay <[EMAIL PROTECTED]> [2008-08-21 10:40]:
> Package: packages.debian.org
> Severity: wishlist
> 
> The thought occurs that it'd be neat if pdo included a hyperlink to 
> package changelogs - should be relatively simple to extract/ provide?

Adding Frank Lichtenheld.

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



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



Bug#495746: setting package to ksysguard kdebase-workspace kdebase-workspace-dev kdebase-workspace-libs4+5 libkdecorations4 libplasma-dev kdebase-workspace-data klipper systemsettings libkwineffects1

2008-08-21 Thread Armin Berres
# Automatically generated email from bts, devscripts version 2.10.35
# via tagpending 
#
# kdebase-workspace (4:4.1.0-3) experimental; urgency=low
#
#  * Install konqueror as x-www-browser alternative (Closes: #495746).
#

package ksysguard kdebase-workspace kdebase-workspace-dev 
kdebase-workspace-libs4+5 libkdecorations4 libplasma-dev kdebase-workspace-data 
klipper systemsettings libkwineffects1 libplasma2 kdebase-workspace-dbg 
ksysguardd kdebase-workspace-bin kdm kde-window-manager
tags 495746 + pending




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



Bug#495913: postfix: postinst script overwrites inet_protocols setting in main.cf without warning and without doing a backup on upgrade

2008-08-21 Thread Attila Kinali
Package: postfix
Version: 2.3.8-2+etch1
Severity: normal

On update, the postins script of postfix unconditionally sets the
inet_protocols field to the one stored in the debconf db without any warning
and without backing up main.cf before changing it. Thus this change
is hiden from the unaware admin and cannot be traced back later.

IMHO the postinst script should leave main.cf untouched in case
it has been edited by hand and in any case macke a .dpkg-old backup
of the old, unchanged main.cf.

A warning that main.cf will be changed should be shown and the
admin asked whether this is ok or not.

Attila Kinali
-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.25.4
Locale: LANG=de_CH, LC_CTYPE=de_CH (charmap=ISO-8859-1)

Versions of packages postfix depends on:
ii  adduser3.102 Add and remove users and groups
ii  debconf [debconf-2.0]  1.5.11etch2   Debian configuration management sy
ii  dpkg   1.13.25   package maintenance system for Deb
ii  libc6  2.3.6.ds1-13etch7 GNU C Library: Shared libraries
ii  libdb4.3   4.3.29-8  Berkeley v4.3 Database Libraries [
ii  libsasl2-2 2.1.22.dfsg1-8Authentication abstraction library
ii  libssl0.9.80.9.8c-4etch3 SSL shared libraries
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip
ii  netbase4.29  Basic TCP/IP networking system
ii  ssl-cert   1.0.14Simple debconf wrapper for openssl

Versions of packages postfix recommends:
ii  mailx [mail-read 1:8.1.2-0.20050715cvs-1 A simple mail user agent
ii  mutt [mail-reade 1.5.13-1.1etch1 text-based mailreader supporting M

-- debconf information:
  postfix/master_upgrade_warning:
  postfix/db_upgrade_warning: true
* postfix/mailname: batanen.kinali.ch
  postfix/tlsmgr_upgrade_warning:
  postfix/dynamicmaps_upgrade_warning:
* postfix/recipient_delim: +
* postfix/main_mailer_type: Internet Site
  postfix/transport_map_warning:
  postfix/relayhost:
* postfix/procmail: true
  postfix/bad_recipient_delimiter:
* postfix/chattr: false
* postfix/root_address: attila
  postfix/rfc1035_violation: false
  postfix/mydomain_warning:
* postfix/mynetworks: 127.0.0.1/32 78.46.43.144/32
* postfix/destinations: $myhostname localhost.localdomain
  postfix/nqmgr_upgrade_warning:
  postfix/not_configured:
* postfix/mailbox_limit: 5120
* postfix/protocols: all



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



Bug#495914: guake: hides authentication dialog and screen looks locked-up

2008-08-21 Thread Marius Mikucionis
Package: guake
Version: 0.3.1-3
Severity: normal

Hi,
I use ssh keys to authenticate when loging to remote hosts.
Normally ssh discovers my keys and prompts for password in graphical window 
(probably /usr/lib/seahorse/seahorse-ssh-askpass) which locks entire screen, 
takes 
keyboard focus, and waits for password. This happens only once per session as 
keys 
get cashed.
Now guake tends to be always on top of everything, and in this case it was on 
top of this dialog, affectively hiding it while the keyboard focus is still 
in the password dialog. From  user perspective it looks like everything is 
frozen:
ssh does not respond, one cannot enter anything to neither window (everything 
goes to invisible askpass), only mouse can move...

Could you please put guake window on top of everything except authentication 
dialogs?
Or perhaps this is a ssh-askpass problem?

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

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

Versions of packages guake depends on:
ii  gconf2   2.22.0-1GNOME configuration database syste
ii  libatk1.0-0  1.22.0-1The ATK accessibility toolkit
ii  libc62.7-13  GNU C Library: Shared libraries
ii  libcairo21.6.4-6 The Cairo 2D vector graphics libra
ii  libglib2.0-0 2.16.4-2The GLib library of C routines
ii  libgtk2.0-0  2.12.11-3   The GTK+ graphical user interface 
ii  libpango1.0-01.20.5-1Layout and rendering of internatio
ii  libx11-6 2:1.1.4-2   X11 client-side library
ii  notification-daemon  0.3.7-1+b1  a daemon that displays passive pop
ii  python   2.5.2-1 An interactive high-level object-o
ii  python-central   0.6.8   register and build utility for Pyt
ii  python-notify0.1.1-2+b1  Python bindings for libnotify
ii  python-vte   1:0.16.14-1 Python bindings for the VTE widget
ii  python2.52.5.2-6 An interactive high-level object-o

guake recommends no packages.

guake suggests no packages.

-- no debconf information



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



Bug#495908: packages.debian.org: feature request - hyperlink to package changelog?

2008-08-21 Thread Frank Lichtenheld
On Thu, Aug 21, 2008 at 01:06:57PM +0300, Martin Michlmayr wrote:
> * Simon Mackinlay <[EMAIL PROTECTED]> [2008-08-21 10:40]:
> > Package: packages.debian.org
> > Severity: wishlist
> > 
> > The thought occurs that it'd be neat if pdo included a hyperlink to 
> > package changelogs - should be relatively simple to extract/ provide?
> 
> Adding Frank Lichtenheld.

Hmm, it already does... At least for the packages where it is indeed
simple to do (so not for backports/volatile atm).

Where exactly did you find it missing?

Gruesse,
-- 
Frank Lichtenheld <[EMAIL PROTECTED]>
www: http://www.djpig.de/



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



Bug#495915: stopmotion: messagebox with a warning appears.

2008-08-21 Thread Klaus Ade Johnstad
Package: stopmotion
Version: 0.6.2-1
Severity: normal

When I use auto-mode to capture images from my webcam, a warning box appears, 
saying:
"You do not have permission to read that file". The message seems harmless, 
there is no problem capturing images, but it's very annoying. If I click on the 
"OK" button,
the warning goes away, but it returns within a few seconds.

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

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

Versions of packages stopmotion depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.1-2  GCC support library
ii  libqtcore44.4.1-1Qt 4 core module
ii  libqtgui4 4.4.1-1Qt 4 GUI module
ii  libsdl-image1.2   1.2.6-3image loading library for Simple D
ii  libsdl1.2debian   1.2.13-2   Simple DirectMedia Layer
ii  libstdc++64.3.1-2The GNU Standard C++ Library v3
ii  libtar1.2.11-5   C library for manipulating tar arc
ii  libvorbisfile31.2.0.dfsg-3.1 The Vorbis General Audio Compressi
ii  libx11-6  2:1.1.4-2  X11 client-side library
ii  libxml2   2.6.32.dfsg-2  GNOME XML library

Versions of packages stopmotion recommends:
ii  dvgrab3.1-2  grab digital video data via IEEE13
ii  ffmpeg3:20080706-0.2 audio/video encoder, streaming ser
ii  vgrabbj   0.9.6-3.1  grabs a image from a camera and pu

Versions of packages stopmotion suggests:
ii  gimp  2.4.6-1The GNU Image Manipulation Program

-- no debconf information



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



Bug#495916: libpam-usb: Fails to update pads over NFS

2008-08-21 Thread Toby Speight
Package: libpam-usb
Version: 0.4.2-1
Severity: normal

I get the following (some details censored with ***):

/
| # pamusb-check 
| * Authentication request for user "" (pamusb-check)
| * Device "**" is connected (good).
| * Performing one time pad verification...
| * Regenerating new pads...
| * Unable to update pads.
| * Access granted.
\

I guess that the "Unable to update pads" message is due to trying to
access the user's NFS-mounted home directory as root (which the NFS
server maps to nobody).

I think that PAM should temporarily become the target user when
accessing user files.

For now, my workaround is to symlink ~/.pamusb to /var/local/pamusb/$USER


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

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

Versions of packages libpam-usb depends on:
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libdbus-1-31.2.1-3   simple interprocess messaging syst
ii  libhal-storage10.5.11-2  Hardware Abstraction Layer - share
ii  libhal10.5.11-2  Hardware Abstraction Layer - share
ii  libxml22.6.32.dfsg-2 GNOME XML library
ii  pmount 0.9.17-2  mount removable devices as normal 

libpam-usb recommends no packages.

libpam-usb suggests no packages.

-- no debconf information



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



Bug#495917: openssh-client: unable to connect to Netscreen Devices with version 1:5.1p1-2

2008-08-21 Thread Reinhold Trocker
Subject: openssh-client: unable to connect to Netscreen Devices with version
1:5.1p1-2
Package: openssh-client
Version: 1:5.1p1-2
Severity: important

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

yesterday my lenny told me to update ssh
from openssh-client_4.3p2-9etch2_i386.deb
to openssh-client_5.1p1-2_i386.deb

since then, I cannot connect to Netscreen Firewalls.
unfortunately I do not know the SSH implementation of thos Netscreen
firewalls - but I am sure about the following:
* ssh v2 is used
* PKA with DSA keys worked
* Password authentication worked

I can reproduce the problem:
when I downgrade to openssh-client_4.3p2-9etch2_i386.deb, everything works
when I install openssh-client_5.1p1-2_i386.deb, everything works

I have made logfiles of the cases "ok" and "ko" 
with the command ssh -vv [EMAIL PROTECTED] 2>&1 |tee __logfile__
and replaced my username with __MYUSER__

see the included logfiles ssh_ok_4.3p2.txt and ssh_ko_5.1p1.txt

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

Kernel: Linux 2.6.25-2-686 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], LC_CTYPE=de (charmap=ISO-8859-15) (ignored: LC_ALL 
set
to [EMAIL PROTECTED])
Shell: /bin/sh linked to /bin/bash


*** ssh_ok_4.3p2.txt
OpenSSH_4.3p2 Debian-9etch2, OpenSSL 0.9.8g 19 Oct 2007
debug1: Reading configuration data /etc/ssh/ssh_config
debug1: Applying options for *
debug2: ssh_connect: needpriv 0
debug1: Connecting to 192.168.1.2 [192.168.1.2] port 22.
debug1: Connection established.
debug1: identity file /home/__MYUSER__/.ssh/identity type 0
debug2: key_type_from_name: unknown key type '-BEGIN'
debug2: key_type_from_name: unknown key type 'Proc-Type:'
debug2: key_type_from_name: unknown key type 'DEK-Info:'
debug2: key_type_from_name: unknown key type '-END'
debug1: identity file /home/__MYUSER__/.ssh/id_rsa type 1
debug2: key_type_from_name: unknown key type '-BEGIN'
debug2: key_type_from_name: unknown key type 'Proc-Type:'
debug2: key_type_from_name: unknown key type 'DEK-Info:'
debug2: key_type_from_name: unknown key type '-END'
debug1: identity file /home/__MYUSER__/.ssh/id_dsa type 2
debug1: Remote protocol version 2.0, remote software version NetScreen
debug1: no match: NetScreen
debug1: Enabling compatibility mode for protocol 2.0
debug1: Local version string SSH-2.0-OpenSSH_4.3p2 Debian-9etch2
debug2: fd 3 setting O_NONBLOCK
debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor code may provide more information
No credentials cache found

debug1: Unspecified GSS failure.  Minor code may provide more information
Unknown code H 1

debug1: SSH2_MSG_KEXINIT sent
debug1: SSH2_MSG_KEXINIT received
debug2: kex_parse_kexinit:
diffie-hellman-group-exchange-sha1,diffie-hellman-group14-sha1,diffie-hellman-group1-sha1
debug2: kex_parse_kexinit: ssh-rsa,ssh-dss
debug2: kex_parse_kexinit:
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,arcfour256,arcfour,aes192-cbc,aes256-cbc,[EMAIL
 PROTECTED],aes128-ctr,aes192-ctr,aes256-ctr
debug2: kex_parse_kexinit:
aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128,arcfour256,arcfour,aes192-cbc,aes256-cbc,[EMAIL
 PROTECTED],aes128-ctr,aes192-ctr,aes256-ctr
debug2: kex_parse_kexinit:
hmac-md5,hmac-sha1,hmac-ripemd160,[EMAIL PROTECTED],hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit:
hmac-md5,hmac-sha1,hmac-ripemd160,[EMAIL PROTECTED],hmac-sha1-96,hmac-md5-96
debug2: kex_parse_kexinit: none,[EMAIL PROTECTED],zlib
debug2: kex_parse_kexinit: none,[EMAIL PROTECTED],zlib
debug2: kex_parse_kexinit: 
debug2: kex_parse_kexinit: 
debug2: kex_parse_kexinit: first_kex_follows 0 
debug2: kex_parse_kexinit: reserved 0 
debug2: kex_parse_kexinit: diffie-hellman-group1-sha1
debug2: kex_parse_kexinit: ssh-dss
debug2: kex_parse_kexinit: 3des-cbc
debug2: kex_parse_kexinit: 3des-cbc
debug2: kex_parse_kexinit: hmac-sha1
debug2: kex_parse_kexinit: hmac-sha1
debug2: kex_parse_kexinit: none
debug2: kex_parse_kexinit: none
debug2: kex_parse_kexinit: 
debug2: kex_parse_kexinit: 
debug2: kex_parse_kexinit: first_kex_follows 0 
debug2: kex_parse_kexinit: reserved 0 
debug2: mac_init: found hmac-sha1
debug1: kex: server->client 3des-cbc hmac-sha1 none
debug2: mac_init: found hmac-sha1
debug1: kex: client->server 3des-cbc hmac-sha1 none
debug2: dh_gen_key: priv key bits set: 195/384
debug2: bits set: 515/1024
debug1: sending SSH2_MSG_KEXDH_INIT
debug1: expecting SSH2_MSG_KEXDH_REPLY
debug1: Host '192.168.1.2' is known and matches the DSA host key.
debug1: Found key in /home/__MYUSER__/.ssh/known_hosts:211
debug2: bits set: 526/1024
debug1: ssh_dss_verify: signature correct
debug2: kex_derive_keys
debug2: set_newkeys: mode 1
debug1: SSH2_MSG_NEWKEYS sent
debug1: expecting SSH2_MSG_NEWKEYS
debug2: set_newkeys: mode 

Bug#495909: extraneous error: "unsupported RAID level: 10"

2008-08-21 Thread Felix Zielcke
forwarded 495909 
http://lists.gnu.org/archive/html/grub-devel/2008-08/msg00476.html
thanks

Am Donnerstag, den 21.08.2008, 12:16 +0200 schrieb Felix Zielcke:
> 
> grub2 does support RAID 10.

Bah, little mistake.
grub2 does currently only support RAID 0, 1 and 5.
RAID 4, 6 and 10 are not yet commited upstream.




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



Bug#495918: et131x-source - Fails to build against vserver patched kernel in l-m-e-2.6, defines reserved names

2008-08-21 Thread Bastian Blank
Package: et131x-source
Version: 1.2.3-2-1
Severity: important

The et131x source defines reserved names (names beginning with two
underscores) which are themself used by some kernels. It fails to build
against them with:
| .../debian/build/build_powerpc_vserver_powerpc_et131x/et131x_main.c: In 
function ‘et131x_init_module’:
| .../debian/build/build_powerpc_vserver_powerpc_et131x/et131x_main.c:174: 
error: expected identifier or ‘(’ before ‘__func__’
| .../debian/build/build_powerpc_vserver_powerpc_et131x/et131x_main.c: In 
function ‘et131x_cleanup_module’:
| .../debian/build/build_powerpc_vserver_powerpc_et131x/et131x_main.c:238: 
error: expected identifier or ‘(’ before ‘__func__’

Bastian

-- 
Beam me up, Scotty, there's no intelligent life down here!



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



Bug#495901: poppler-utils: pdftoppm not padding zeros like xpdf version

2008-08-21 Thread Loïc Minier
severity 495901 minor
retitle 495901 pdftoppm man page doesn't document new name for ppm files
stop

On Thu, Aug 21, 2008, grok wrote:
> This is a bug AFAIC if the change is not documented, and
> there remains no option to vary the number of leading (or
> all) digits otherwise (which would be the preferred option).

 This is at least a bug on the man pages; I'm not sure this utility
 warrants a mechanism to customize the name of the output files.

> At the very least the output format of pdftoppm should match
> that of the xpdf version of the program if nothing else is
> changed.

 I don't think poppler's pdftoppm aims to be bug for bug compatible with
 xpdf's.

-- 
Loïc Minier



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



Bug#495919: kswapd0: page allocation failure. order:0, mode:0x20

2008-08-21 Thread Peter Palfrader
Package: linux-2.6
Version: 2.6.26-3snapshot.12100

linux-image-2.6.26-1-vserver-686-bigmem 2.6.26-3snapshot.12100 appears
to have page allocation failures:

[186553.927388] kswapd0: page allocation failure. order:0, mode:0x20
[186553.927388] Pid: 193, comm: kswapd0 Not tainted 2.6.26-1-vserver-686-bigmem 
#1
[186553.927388]  [] __alloc_pages_internal+0x344/0x358
[186553.927388]  [] tcp_rcv_established+0x3b3/0x636
[186553.927388]  [] __alloc_pages+0x7/0x9
[186553.927388]  [] cache_alloc_refill+0x26f/0x48c
[186553.931389]  [] __kmalloc+0x75/0xb5
[186553.931389]  [] __alloc_skb+0x49/0xf7
[186553.931389]  [] __netdev_alloc_skb+0x14/0x2d
[186553.931389]  [] tg3_alloc_rx_skb+0xb0/0x13b [tg3]
[186553.931389]  [] netif_receive_skb+0x2d6/0x343
[186553.931389]  [] tg3_poll+0x379/0x8b9 [tg3]
[186553.931389]  [] net_rx_action+0x9c/0x177
[186553.931389]  [] __do_softirq+0x66/0xd3
[186553.931389]  [] do_softirq+0x45/0x53
[186553.931389]  [] irq_exit+0x35/0x67
[186553.931389]  [] smp_apic_timer_interrupt+0x6b/0x76
[186553.931389]  [] apic_timer_interrupt+0x28/0x30
[186553.931389]  [] dispose_list+0x8c/0xc2
[186553.931389]  [] shrink_icache_memory+0x18f/0x1b7
[186553.931389]  [] shrink_slab+0xd3/0x132
[186553.931389]  [] kswapd+0x29b/0x3ed
[186553.931389]  [] isolate_pages_global+0x0/0x42
[186553.931389]  [] autoremove_wake_function+0x0/0x2d
[186553.931389]  [] kswapd+0x0/0x3ed
[186553.931389]  [] kthread+0x38/0x5f
[186553.931389]  [] kthread+0x0/0x5f
[186553.931389]  [] kernel_thread_helper+0x7/0x10
[186553.931389]  ===
[186553.931389] Mem-info:
[186553.931389] DMA per-cpu:
[186553.931389] CPU0: hi:0, btch:   1 usd:   0
[186553.931389] CPU1: hi:0, btch:   1 usd:   0
[186553.931389] CPU2: hi:0, btch:   1 usd:   0
[186553.931389] CPU3: hi:0, btch:   1 usd:   0
[186553.931389] Normal per-cpu:
[186553.931389] CPU0: hi:  186, btch:  31 usd:  64
[186553.931389] CPU1: hi:  186, btch:  31 usd: 179
[186553.931389] CPU2: hi:  186, btch:  31 usd:  58
[186553.931389] CPU3: hi:  186, btch:  31 usd: 160
[186553.931389] HighMem per-cpu:
[186553.931389] CPU0: hi:  186, btch:  31 usd:   3
[186553.931389] CPU1: hi:  186, btch:  31 usd:  28
[186553.931389] CPU2: hi:  186, btch:  31 usd:  40
[186553.931389] CPU3: hi:  186, btch:  31 usd: 181
[186553.931389] Active:183441 inactive:988359 dirty:120 writeback:0 unstable:0
[186553.931389]  free:789746 slab:92793 mapped:10406 pagetables:696 bounce:0
[186553.931389] DMA free:3504kB min:68kB low:84kB high:100kB active:716kB 
inactive:272kB present:16256kB pages_scanned:0 all_unreclaimable? no
[186553.931389] lowmem_reserve[]: 0 873 8556 8556
[186553.931389] Normal free:1540kB min:3744kB low:4680kB high:5616kB 
active:207836kB inactive:235076kB present:894080kB pages_scanned:0 
all_unreclaimable? no
[186553.931389] lowmem_reserve[]: 0 0 61467 61467
[186553.931389] HighMem free:3153940kB min:512kB low:8756kB high:17000kB 
active:525212kB inactive:3718088kB present:7867900kB pages_scanned:0 
all_unreclaimable? no
[186553.931389] lowmem_reserve[]: 0 0 0 0
[186553.931389] DMA: 364*4kB 0*8kB 0*16kB 0*32kB 0*64kB 0*128kB 0*256kB 0*512kB 
0*1024kB 1*2048kB 0*4096kB = 3504kB
[186553.931389] Normal: 63*4kB 0*8kB 1*16kB 1*32kB 0*64kB 0*128kB 1*256kB 
0*512kB 1*1024kB 0*2048kB 0*4096kB = 1580kB
[186553.931389] HighMem: 130*4kB 52*8kB 107*16kB 90*32kB 46*64kB 25*128kB 
10*256kB 2*512kB 3*1024kB 169*2048kB 681*4096kB = 3153816kB
[186553.931389] 1150784 total pagecache pages
[186553.931389] Swap cache: add 13, delete 0, find 0/0
[186553.931389] Free swap  = 7813140kB
[186553.931389] Total swap = 7813192kB
[186553.931389] 2211839 pages of RAM
[186553.931389] 1982463 pages of HIGHMEM
[186553.931389] 149619 reserved pages
[186553.931389] 226218 pages shared
[186553.931389] 13 pages swap cached
[186553.931389] 120 pages dirty
[186553.931389] 0 pages writeback
[186553.931389] 10406 pages mapped
[186553.931389] 92793 pages slab
[186553.931389] 696 pages pagetables

-- 
   |  .''`.  ** Debian GNU/Linux **
  Peter Palfrader  | : :' :  The  universal
 http://www.palfrader.org/ | `. `'  Operating System
   |   `-http://www.debian.org/



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



Bug#495921: aufs-source - Does not build against current vserver patched kernel

2008-08-21 Thread Bastian Blank
Package: aufs-source
Version: 0+20080719-3
Severity: important

aufs does not build against vserver patched kernels because the vfs
modifications was resolved upstream.

| .../vfsub.c: In function ‘do_vfsub_symlink’:
| .../vfsub.c:139: error: too many arguments to function ‘vfs_symlink’
| .../vfsub.c: In function ‘do_vfsub_mknod’:
| .../vfsub.c:162: error: too many arguments to function ‘vfs_mknod’

Bastian

-- 
Dammit Jim, I'm an actor, not a doctor.



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



Bug#495474: [kmid] kmid doesn't play any sound

2008-08-21 Thread Ana Guerrero
Ciao Valerio,

On Sun, Aug 17, 2008 at 07:59:35PM +0200, Valerio Passini wrote:
> Package: kmid
> Version: 4:3.5.9-3
> Severity: serious
> 
> --- Please enter the report below this line. ---
> Dear Developers,
> 
> I'm unable to play midi files using kmid while rosegarden works flawlessy. I 
> have a cheap integrated soundcard (Intel HDA) and so I'm pushed to use  
> fluyidsinth or timidity as software synthesyzer. I'm not completely sure 
> that's all fault of kmid, because using an older kernel (2.6.24.7) that has a 
> different configuration of output channels in alsa, I can play midi's with 
> kmid.
> Sorry for this poor bugreport, but I don't have any clue about it. Midi 
> playing has always been a nightmare in Linux :)



There's a "midi setup" option in the menus, have you tried changing it to make
kmid use a different output channel? It sounds like kmid is trying to use an 
external midi port instead of the software synthesizer port to play the music.


Ana



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



Bug#457075: Status of Salomé packaging

2008-08-21 Thread Jordi Mallach
Hi Adam & rest of list,

I've been checking the archives for progress on Salomé's ITP, which
seemed quite promising back in March. However, after the success with
the OpenCASCADE effort, I see no more references to Salomé.

Is the ITP stalled for some licensing reason, or do the compile problems
still apply and have not been resolved yet?

Thanks in advance for the info!

Jordi

PS: please CC, I'm not subscribed to this list.
-- 
Jordi Mallach Pérez  --  Debian developer http://www.debian.org/
[EMAIL PROTECTED] [EMAIL PROTECTED] http://www.sindominio.net/
GnuPG public key information available at http://oskuro.net/



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



Bug#495907: Installation report

2008-08-21 Thread Jérémy Bobbio
On Thu, Aug 21, 2008 at 12:38:16PM +0300, Tapio Lehtonen wrote:
> Boot method: USB-memory
> Image version: 
> http://people.debian.org/~aba/d-i/images/daily/hd-media/boot.img.gz 2008-08-20
> Date: 2008-08-21 11.30 EET DST
> […]
> I had problems after first install with graphical installer, the sources.list 
> file of apt was funny. I installed again in text mode to be sure I had
> not botched anything, and now all is just fine. 

Do you still have this "funny sources.list" available?  The frontend
used should make no differences when generating this file, so I have a
hard time imagining what could went wrong.

-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#495810: installation-reports: fails to mount installer CD-rom

2008-08-21 Thread Jérémy Bobbio
(Please keep the bug report CC'ed.)

On Thu, Aug 21, 2008 at 08:06:20AM +0200, Paul Sundvall wrote:
> Thanks for the help, sorry if shouting to loud. My justification for
> setting it to critical is that the system did not install at all - that
> is critical in my opinion.

Well… it would be if Etch would have supported your system in the first
place.  But if you are able to install it using the Etch-n-half
installer, Lenny beta2 and the daily build, then I don't see any
regressions that would justify a release critical bug.

Can you confirm the Lenny installer works on your system?

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#495914: guake: hides authentication dialog and screen looks locked-up

2008-08-21 Thread Sylvestre Ledru
forwarded 495914 http://trac.guake-terminal.org/trac.cgi/ticket/71
tags 495914 + upstream
thanks

Hello Marius,

I forwarded this bug upstream. 

Thanks!
Sylvestre





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



Bug#495649: rescue-mode: Mount ext3 root filesystem as ext2

2008-08-21 Thread Jérémy Bobbio
clone 495649 -1
retitle -1 rescue-mode: should bind mount /dev in /target/dev
tag 495649 + moreinfo
thanks

On Wed, Aug 20, 2008 at 12:12:00AM +0200, Frans Pop wrote:
> On Tuesday 19 August 2008, Jérémy Bobbio wrote:
> > While testing rescue-mode,  I noticed that the root filesystem (ext3)
> > was mounted as ext2 by the following log line:
> >
> >   kernel: EXT2-fs warning (device hda6) ext2_fill_super: mounting ext3
> >   filesystem as ext2
> >
> > Maybe we need to explicitely try ext3 before relying on autodection.
> > Or remove the ext2 module from the list of manually loaded modules…
> 
> Guess that is because no file system module is loaded at all and this is 
> mount trying and loading ext2 before trying ext3?
> If that is the case then I think we should at least try to modprobe ext3 
> before calling mount.

As far as I can read, rescue-mode.postinst tries to load ext2, ext3,
jfs, reiserfs, xfs, vfat, md, raid0, raid1, raid5, raid456, dm-mod,
lvm-mod before mounting the partitions.

I have not looked if it was successful in doing so, though.  I ought to
do that.

> Something else I noticed was that /dev is not bind mounted on /target/dev 
> before a root shell on /target is started. IMO this should be done 
> automatically.

Bug cloned.

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#495810: installation-reports: fails to mount installer CD-rom

2008-08-21 Thread Paul Sundvall
Hi!
Thanks for the help, sorry if shouting to loud. My justification for
setting it to critical is that the system did not install at all - that
is critical in my opinion.
paul

Jérémy Bobbio skrev:
> severity 495810 normal
> thanks
> 
> This is not a critical bug, it did not break anyone's system.
> 
> On Wed, Aug 20, 2008 at 05:35:39PM +0200, Paul Sundvall wrote:
>> Image version:
>> http://cdimage.debian.org/debian-cd/4.0_r4a/amd64/iso-cd/debian-40r4a-amd64-CD-1.iso
> 
> This image is using the Etch debian-installer and thus uses kernel
> 2.6.18.
> 
>> Everything (boot, language etc) went fine until the cd rom was to be
>> detected. It would not be recognized, and impossible to continue.
> 
> The controller on which your CD-ROM reader is connected is not supported
> in Linux 2.6.18, that why this installation step fails.
> 
> You should be able to use the Etch-n-half installer to do an Etch
> installation.
> 
> Cheers,



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



Bug#495792: cdrom: Disk partioner hangs at 52% when manual disk partion option selected

2008-08-21 Thread Stuart Scharf

Jérémy Bobbio wrote:

On Wed, Aug 20, 2008 at 07:16:09PM +0200, Frans Pop wrote:
  

On Wednesday 20 August 2008, Stuart Scharf wrote:


I was trying to install a new lenny system over an existing old-stable
system

The computer has two disk drives used for a Raid1 configuration
MD0 is a small boot partition
MD1 is a LVM with four partitions (/ /home /var /chroot)

I tried both lenny beta-2 disk and the weekly snapshot. (The beta-2
wouldn't boot on my machine so I went to the snapshot disk)

When I selected the manual partition option, the partitioner would hang
at 52% and not present the partition map of the system. Pressing 'F4'
showed a detail screen that had both the raid and LVM partitions
recognized.

The Stable install disk worked fine.
  


It's a little bit strange that this happens with both Lenny beta2 and
the weekly snapshot.  The weekly snapshot should contain the changes
that made the installer detect both previous RAID and LVM devices during
startup but those changes are not present in the beta2 CD.

Let's focus on the weekly snapshot for now.  Does the installer
completely hang or can you switch to other Linux consoles (through
Alt+F2 for example)?

If you can, could you please give us the output of the following
command:
  $ ps | grep partman
  

11605 root   1672   udpkg --configure --force-configure partman-base
11606 root   1808   /bin/sh /var/lib/dpkg/info/partman-base.postinst conf
11607 root   1812   /bin/sh /bin/partman
11719 root   1812   /bin/sh -e /lib/p;artman/init.d/35dump


  $ cat /proc/mdstat
  

md1 : active raid1 hdc5[0] hdb5[0]
 60018688 blocks [2/2] [UU]

md2 : active raid1 hdb1[0] hdc1[1]
32000 blocks [2/2] [UU]

unused devices: 


  $ pvs
  

PV VGFmtAttrPSizePFree
/dev/md1   VG1   lvm2   a-  57.23G   27.23G


If any of these commands hang, the problem is probably kernel related.

Cheers,
  


Assuming that I copied correctly from my screen. I don't know any way
to copy off of a machine in mid-install

Stuart


Bug#495792: cdrom: Disk partioner hangs at 52% when manual disk partion option selected

2008-08-21 Thread Jérémy Bobbio
(Please keep the bug report CC'ed.)

Just for the record, I have tried to reproduce the problem on my own but
I was not able to do so.  Your help is more than welcome to solve this
issue! :)

On Wed, Aug 20, 2008 at 08:37:33PM -0400, Stuart Scharf wrote:
> Jérémy Bobbio wrote:
> >If you can, could you please give us the output of the following
> >command:
> >  $ ps | grep partman
> >  
> 11605 root   1672   udpkg --configure --force-configure partman-base
> 11606 root   1808   /bin/sh /var/lib/dpkg/info/partman-base.postinst conf
> 11607 root   1812   /bin/sh /bin/partman
> 11719 root   1812   /bin/sh -e /lib/p;artman/init.d/35dump
> 
> >  $ cat /proc/mdstat
> >  
> md1 : active raid1 hdc5[0] hdb5[0]
>  60018688 blocks [2/2] [UU]
> 
> md2 : active raid1 hdb1[0] hdc1[1]
> 32000 blocks [2/2] [UU]
> 
> unused devices: 
> 
> >  $ pvs
> >  
> PV VGFmtAttrPSizePFree
> /dev/md1   VG1   lvm2   a-  57.23G   27.23G

So the problem appears to happen while parted_server tries to iterate
through the available partitions.  Could you try to add a line with
"set -x" in /lib/partman/init.d/35dump?  (using nano)

You should be able to read a trace of the script by looking at
/var/log/syslog (again using nano) while the installer is stuck.

Another thing you could try is to remove
/lib/partman/init.d/25md-devices, then see if it still hangs.  You can
also do the same for /lib/partman/init.d/26lvm-devices.

> Assuming that I copied correctly from my screen. I don't know any way
> to copy off of a machine in mid-install

One possible way is to add "modules=network-console" on the boot prompt.
Before the partitioning step, the installer will start an SSH server on
which you will be able to connect.  From there, you should be able to
start a shell and type any commands necessary.

I hope we will be able to track this down! :)

Cheers,
-- 
Jérémy Bobbio.''`. 
[EMAIL PROTECTED]: :Ⓐ  :  # apt-get install anarchism
`. `'` 
  `-   


signature.asc
Description: Digital signature


Bug#474386: I think I'm experiencing this bug, too

2008-08-21 Thread Snild Dolkow

Using Windows 98 SE as the guest, I get these hangs too.

Daniel's guess about disk image I/O seems likely to me. The vm hangs 
when the game I'm trying to play (doesn't work under wine or WinXP) is 
loading its cutscenes. Also, the vm froze several times during the Win98 
install process.


I'm attaching the last 1 lines from /tmp/qemu.log, after running 
qemu with
QEMU_AUDIO_DRV=sdl qemu -soundhw sb16 -cdrom /dev/cdrom -m 256 -d in_asm 
c.img


Using qemu 0.9.1 and Ubuntu 8.04 as the host.




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



Bug#495923: logcheck-database: Should include upsd rules

2008-08-21 Thread Michel Grentzinger
Package: logcheck-database
Version: 1.2.67
Severity: wishlist

Since I've baught an UPS (MGE Ellipse ASr 600 USBS), logcheck send me some not 
very usefull lines like :
Aug 20 22:04:58 luge upsd[3289]: Connection from 127.0.0.1
Aug 20 22:04:58 luge upsd[3289]: Client on 127.0.0.1 logged out
Aug 20 22:04:58 luge upsd[3289]: Client on 127.0.0.1 logged out

This lines appears when I read some UPS information with a client like 
knutclient.

I think they can be removed from logcheck (perhaps just in workstation mode ?).


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

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

-- debconf information:
  logcheck-database/conffile-cleanup: false



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



Bug#495925: wrong file names in man rcS

2008-08-21 Thread Dr. Markus Waldeck

Package: initscripts
Version: 2.86.ds1-61
Severity: normal

man rcS mentions two times /etc/defaults/tmpfs instead of /etc/default/tmpfs

-- 
GMX Kostenlose Spiele: Einfach online spielen und Spaß haben mit Pastry Passion!
http://games.entertainment.gmx.net/de/entertainment/games/free/puzzle/6169196



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



Bug#495924: lxpanel: no app-specific icons in taskbar

2008-08-21 Thread Julien Rabier
Package: lxpanel
Version: 0.3.8.1-2
Severity: minor


No app-specific icon is displayed in the taskbar. There is one icon for
every app running. This doesn't seem to be theme-dependant because
it doesn't appear on an other system using the same theme.
A screenshot is attached to show the icon displayed.

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

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

Versions of packages lxpanel depends on:
ii  libasound2 1.0.16-2  ALSA library
ii  libatk1.0-01.22.0-1  The ATK accessibility toolkit
ii  libc6  2.7-13GNU C Library: Shared libraries
ii  libcairo2  1.6.4-6   The Cairo 2D vector graphics libra
ii  libfontconfig1 2.6.0-1   generic font configuration library
ii  libfreetype6   2.3.7-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0   2.16.4-2  The GLib library of C routines
ii  libgtk2.0-02.12.11-3 The GTK+ graphical user interface 
ii  libpango1.0-0  1.20.5-1  Layout and rendering of internatio
ii  libpixman-1-0  0.10.0-2  pixel-manipulation library for X a
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxcb-render-util00.2+git36-1   utility libraries for X C Binding 
ii  libxcb-render0 1.1-1.1   X C Binding, render extension
ii  libxcb11.1-1.1   X C Binding
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

lxpanel recommends no packages.

Versions of packages lxpanel suggests:
ii  dillo [www-browser] 0.8.6-3  Small and fast web browser
ii  iceweasel [www-browser] 3.0.1-1  lightweight web browser based on M
ii  konqueror [www-browser] 4:3.5.9.dfsg.1-5 KDE's advanced file manager, web b
ii  links [www-browser] 2.1pre37-1.1 Web browser running in text mode
ii  links2 [www-browser]2.1pre37-1.1 Web browser running in both graphi
ii  lxpanel-netstat-plugin  0.3.8.1-2network monitor plugin for lxpanel
ii  lxsession-lite  0.3.6-1  a lightweight X11 session manager 
ii  menu2.1.40   generates programs menu for all me
ii  w3m [www-browser]   0.5.2-2+b1   WWW browsable pager with excellent

-- no debconf information


screen.png
Description: Binary data


Bug#495926: net-tools: ifconfig listing contains trailing EOL whitespace

2008-08-21 Thread root
Package: net-tools
Version: 1.60-19
Severity: minor


Please remove the trailing whitespaces from the listing.

$ ifconfig | cat -A

eth0  Link encap:Ethernet  HWaddr 00:18:f3:84:26:c0  $
 ==
eth1  Link encap:Ethernet  HWaddr 00:18:f3:84:36:c0  $
 ===
...

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

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

Versions of packages net-tools depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries

net-tools recommends no packages.

net-tools suggests no packages.

-- no debconf information



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



Bug#457075: Status of Salomé packaging

2008-08-21 Thread Adam C Powell IV
On Thu, 2008-08-21 at 13:19 +0200, Jordi Mallach wrote:
> Hi Adam & rest of list,
> 
> I've been checking the archives for progress on Salomé's ITP, which
> seemed quite promising back in March. However, after the success with
> the OpenCASCADE effort, I see no more references to Salomé.
> 
> Is the ITP stalled for some licensing reason, or do the compile problems
> still apply and have not been resolved yet?

I have resolved the compile problems, but at runtime, none of the
modules load.  (As noted in this bug, you can get the latest at
http://lyre.mit.edu/~powell/salome/ .)  I've solved this problem before,
and could solve it again.

But upstream practices are really frustrating me.  They released a new
binary 3.2.9 Salomé-MECA back in -- forgot, March? -- but with no source
code.  So any new effort I make is already obsolete.  Furthermore, they
have never released the source of the MECA extensions, even though this
is supposed to be an open source project.

To add insult to injury, they have *never* replied to ANY of my emails
or website inquiries.  (I even took the time to write to specific
developers in French, but with no reply.)  I have put a *TON* of effort
into this, on the order of 100 hours, as you can see from the nearly 50
patches, and really feel blown off and disrespected by upstream.

At some point I'll give up on upstream and go ahead and fix the 3.2.6
package, essentially maintaining a Debian fork until upstream releases
more source.  But this is a very low priority for the above reasons.

While ranting about upstream, I should thank Sylvestre Ledru for
participating in the discussion with upstream, including using some of
his contacts to try to move this along.  I hear there will be a meeting
in September to try to resolve some of these issues, and will return to
packaging work if something comes out of this process.

> PS: please CC, I'm not subscribed to this list.

[Likewise for followups.]

-Adam
-- 
GPG fingerprint: D54D 1AEE B11C CE9B A02B  C5DD 526F 01E8 564E E4B6

Engineering consulting with open source tools
http://www.opennovation.com/


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


Bug#495926: net-tools: ifconfig listing contains trailing EOL whitespace

2008-08-21 Thread Jari Aalto

There seems to be also other lines (!) with EOL whitespace

$ ifconfig | cat -A

!eth0 Link encap:Ethernet  HWaddr 00:18:f3:84:26:c0  $
  inet addr:192.168.1.7  Bcast:192.168.1.15  Mask:255.255.255.240$
  inet6 addr: fe80::218:f3ff:fe84:26c0/64 Scope:Link$
  UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1$
  RX packets:3449590 errors:0 dropped:0 overruns:0 frame:0$
  TX packets:3206431 errors:0 dropped:0 overruns:0 carrier:0$
! collisions:0 txqueuelen:1000 $
  RX bytes:1631395590 (1.5 GiB)  TX bytes:10073354069 (9.3 GiB)$
  Interrupt:253 Base address:0xa000 $
...



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



Bug#495701: Fonts are unreadable when playing music

2008-08-21 Thread Max Howell
Hi, currently we're working on client v2, which uses proper layout in  
the metadata view. So it should work much better with different fonts  
and that.


I'm hoping we can get you, John, an alpha tarball soon, so you can  
give it some proper Linux testing before we go live with it :)


Max


On Tuesday 19 August 2008 12:56:01 pm Juhapekka Tolvanen wrote:

When this software plays music, it shows inoframtion about the song
and its artist. All that information is show in way too tiny fonts
and I can not find a way to rectify situation.  I have a resolution
of 1600x1200 in my monitor.

I suggest Debian-packagers modifies source file so that fonts become
bigger. But it would be btter, if there was some setting for changing
font size.


Unfortunately, just changing the font size won't help.  If you try it,
you will just see large text that's cropped and unreadable.

To fix this, we would not only have to change how the font sizes are
calculated, but rewrite how the metadata window lays out its content.
This requires some pretty invasive changes that would be very  
difficult

to keep in sync when upstream releases a new version.  So...

Hi Max!

Do you folks plan to give MetaDataWidget, SideBarView, etc. the  
ability

to adjust their layouts relative to the user's default font size?

John Stamp








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



Bug#495856: package deviates from standard mail-transport-agent dependency.

2008-08-21 Thread Alexander Zangerl
On Thu, 21 Aug 2008 08:48:02 +0200, Andreas Henriksson writes:
>On tor, 2008-08-21 at 10:30 +1000, Alexander Zangerl wrote:
>> if you have exim installed, kuvert does not override your wish.
>
>If you have *any* mta installed (including sendmail), the kuvert
>dependency will be fullfilled through the | mail-transport-agent
>alternative.

correct, that is how it's supposed to be.

>> the same happens if you tell apt to get an mta of your choice.
>> if on the other hand you select no mta, you get my choice - which is 
>> anything BUT exim.
>
>This sucks. Please see the principle of leaste surprise. 

this *is* the principle of least surprise: if you have an mta, fine by me.
if you make a choice of which mta to install, fine by me.
if you do neither, you get my choice. which will NEVER be exim.

>> i dislike exim extremely.
>
>Then please advocate that the global default is changed rather then
>having your own little mini-rebellion.

no. (i leave the advocacy to people who have time to waste.)

>Also, choice is not hurt by having one streamlined default so that
>argument is complete crap. 

show me the policy section that says 
i can't depend on sendmail | mta.

>Just because choice is an option doesn't mean
>we have to make a complete mess out of the entire distribution.

getting sendmail if (and only if!) you make no choice whatsoever 
does not constitute "making a complete mess". 

please stop wasting people's time with your private crusade for exim 
and go fix RC bugs instead.

regards
az


-- 
+ Alexander Zangerl + DSA 42BD645D + (RSA 5B586291)
Kindermund: Wenn man kranke Kühe isst, kriegt man ISDN.


signature.asc
Description: Digital Signature


Bug#487669: Patch for the l10n upload of krb5

2008-08-21 Thread Christian Perrier

Dear maintainer of krb5,

On Thursday, August 14, 2008 I sent you a notice announcing my intent to upload 
a
NMU of your package to fix its pending l10n issues, after an initial
notice sent on Tuesday, August 12, 2008.

We finally agreed that you would do the update yourself at the end of
the l10n update round.

That time has come.

To help you out, here's the patch which I would have used for an NMU.
Please feel free to use all of it...or only the l10n part of it.

The corresponding changelog is:


Source: krb5
Version: 1.6.dfsg.4~beta1-3.1
Distribution: unstable
Urgency: low
Maintainer: Christian Perrier <[EMAIL PROTECTED]>
Date: Thu, 21 Aug 2008 07:18:50 +0200
Closes: 487669 491774 493962 495733
Changes: 
 krb5 (1.6.dfsg.4~beta1-3.1) unstable; urgency=low
 .
   * Non-maintainer upload.
   * Fix pending l10n issues
   * Debconf translations:
 - Swedish. Closes: #491774, #487669
 - Italian. Closes: #493962
 - Dutch. Closes: #495733

-- 


diff -Nru krb5-1.6.dfsg.4~beta1.old/debian/changelog krb5-1.6.dfsg.4~beta1/debian/changelog
--- krb5-1.6.dfsg.4~beta1.old/debian/changelog	2008-08-11 18:37:48.845310325 +0200
+++ krb5-1.6.dfsg.4~beta1/debian/changelog	2008-08-21 07:18:59.715501540 +0200
@@ -1,3 +1,14 @@
+krb5 (1.6.dfsg.4~beta1-3.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix pending l10n issues
+  * Debconf translations:
+- Swedish. Closes: #491774, #487669
+- Italian. Closes: #493962
+- Dutch. Closes: #495733
+
+ -- Christian Perrier <[EMAIL PROTECTED]>  Thu, 21 Aug 2008 07:18:50 +0200
+
 krb5 (1.6.dfsg.4~beta1-3) unstable; urgency=low
 
   * Set length to 0 on no-salt ldap keys so they do not crash; uupstream
@@ -13,7 +24,7 @@
 - Japanese, thanks TANAKA, Atushi.
 - Russian, thanks Sergey Alyoshin.  (Closes: #485473)
 - Brazilian Portuguese, thanks Eder L. Marques.  (Closes: #485613)
-- Romanian, thanks Eddy Petrișor.  (Closes: #484996)
+- Romanian, thanks Eddy Petri?or.  (Closes: #484996)
 
   [ Sam Hartman ]
   * Upload 1.6.4 beta 1 to unstable.  As best I can tell evaluating the
diff -Nru krb5-1.6.dfsg.4~beta1.old/debian/po/it.po krb5-1.6.dfsg.4~beta1/debian/po/it.po
--- krb5-1.6.dfsg.4~beta1.old/debian/po/it.po	1970-01-01 01:00:00.0 +0100
+++ krb5-1.6.dfsg.4~beta1/debian/po/it.po	2008-08-12 22:39:24.643461000 +0200
@@ -0,0 +1,216 @@
+# Italian (it) translation of debconf templates for krb5
+# Copyright (C) 2008 Software in the Public Interest
+# This file is distributed under the same license as the krb5 package.
+# Luca Monducci <[EMAIL PROTECTED]>, 2008.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: krb5 1.6.dfsg.3\n"
+"Report-Msgid-Bugs-To: [EMAIL PROTECTED]"
+"POT-Creation-Date: 2008-05-21 11:38-0700\n"
+"PO-Revision-Date: 2008-08-04 13:22+0200\n"
+"Last-Translator: Luca Monducci <[EMAIL PROTECTED]>\n"
+"Language-Team: Italian <[EMAIL PROTECTED]>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+
+#. Type: note
+#. Description
+#: ../krb5-admin-server.templates:2001
+msgid "Setting up a Kerberos Realm"
+msgstr "Impostazione di un Realm Kerberos"
+
+#. Type: note
+#. Description
+#: ../krb5-admin-server.templates:2001
+msgid ""
+"This package contains the administrative tools required to run the Kerberos "
+"master server."
+msgstr ""
+"Questo pacchetto contiene gli strumenti d'amministrazione necessari per "
+"l'esecuzione del server principale Kerberos."
+
+#. Type: note
+#. Description
+#: ../krb5-admin-server.templates:2001
+msgid ""
+"However, installing this package does not automatically set up a Kerberos "
+"realm.  This can be done later by running the \"krb5_newrealm\" command."
+msgstr ""
+"Comunque, l'installazione di questo pacchetto non comporta la configurazione "
+"automatica di un realm Kerberos, che può essere fatta in seguito usando il "
+"comando \"krb5_newrealm\"."
+
+#. Type: note
+#. Description
+#: ../krb5-admin-server.templates:2001
+msgid ""
+"Please also read the /usr/share/doc/krb5-kdc/README.KDC file and the "
+"administration guide found in the krb5-doc package."
+msgstr ""
+"Leggere anche il file /usr/share/doc/krb5-kdc/README.KDC e la guida per "
+"l'amministrazione contenuti nel pacchetto krb5-doc."
+
+#. Type: boolean
+#. Description
+#: ../krb5-admin-server.templates:3001
+msgid "Run the Kerberos V5 administration daemon (kadmind)?"
+msgstr "Attivare il demone di amministrazione Kerberos V5 (kadmind)?"
+
+#. Type: boolean
+#. Description
+#: ../krb5-admin-server.templates:3001
+msgid ""
+"Kadmind serves requests to add/modify/remove principals in the Kerberos "
+"database."
+msgstr ""
+"Kadmin evade le richieste di inserimento/modifica/rimozione dei principal "
+"nel database Kerberos."
+
+#. Type: boolean
+#. Description
+#: ../krb5-admin-server.templates:3001
+msgid ""
+"It is required by the kpasswd program, used to change passwords.  With "
+"standard setups, this daemon should run on the master KDC."
+msgstr ""
+"Questo servizio

Bug#495928: debian-installer: does not add line to /etc/inittab to enable logins via virtual console

2008-08-21 Thread Folkert van Heusden
Package: debian-installer
Version: debian stable: 4.0r4a
Severity: normal


Situation:
- IBM p52a
- LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
- virtual console accessed via HMC

The debian-installer does not add the following line to /etc/inittab:
co:2345:respawn:/sbin/getty hvc0 38400
Without it, one cannot login via the virtual console.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc64)

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



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



Bug#495933: ITP: samefile -- samefile reads a list of filenames from stdin and finds identical files regardless of their names.

2008-08-21 Thread Thorsten Schmale
Package: wnpp
Severity: wishlist
Owner: Thorsten Schmale <[EMAIL PROTECTED]>

* Package name: samefile
  Version : 2.12
  Upstream Author : Jens Schweikhardt ([EMAIL PROTECTED])
* URL : http://www.schweikhardt.net/samefile/
* License : GPL
  Programming Lang: C
  Description : samefile reads a list of filenames from stdin and finds 
identical files regardless of their names.

 samefile reads a list of filenames (one filename per line) from stdin.
 For each filename pair with identical contents, a line consisting of
 six fields is output:
 The size in bytes,
 two filenames,
 the character "=''
 if the two files are on the same device, "X'' otherwise,
 and the link counts of the two files.
 The output is sorted in reverse order by size as the primary key
 and the filenames as the secondary key.

-- 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.9-023stab046.2-smp
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)



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



Bug#495931: Fwd: kmousetool: fail to upgrade to 4.1.0-1 (will overwrite file of kttsd package)

2008-08-21 Thread David Martínez Martí
Package: kmousetool
Version: 4:3.5.9-2
Severity: normal

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

I'm using Debian experimental and there are two packages that I can't upgrade.
kmousetools and konq-plugins are at their newest version in SID (3.5.9-2)
and there are a newer version in experimental for both (4.1.0-1) but apt 
refuses
to upgrade with the following message:
--
Preparing to replace kmousetool 4:3.5.9-2 (using 
.../kmousetool_4%3a4.1.0-1_i386.deb) ...
Unpacking replacement kmousetool ...
dpkg: error processing /var/cache/apt/archives/kmousetool_4%3a4.1.0-1_i386.deb 
(--unpack):
 trying to overwrite `/usr/share/icons/hicolor/16x16/actions/female.png', 
which is also in package kttsd
Preparing to replace konq-plugins 4:3.5.9-2 (using .../konq-
plugins_4%3a4.1.0-1_i386.deb) ...
Unpacking replacement konq-plugins ...
dpkg: error processing /var/cache/apt/archives/konq-
plugins_4%3a4.1.0-1_i386.deb (--unpack):
 trying to overwrite `/usr/share/locale/es/LC_MESSAGES/minitoolsplugin.mo', 
which is also in package kde-i18n-es
dpkg-deb: subprocess paste killed by signal (Broken pipe)
--

** There is some info from apt-show-version:
--

kmousetool 4:3.5.9-2 install ok installed
kmousetool 4:3.5.5-2 etch ftp.de.debian.org
kmousetool 4:3.5.9-2 testing  ftp.de.debian.org
kmousetool 4:3.5.9-2 sid  ftp.de.debian.org
kmousetool 4:4.1.0-1 experimental ftp.de.debian.org
kmousetool/experimental upgradeable from 4:3.5.9-2 to 4:4.1.0-1

kttsd 4:4.1.0-1 install ok installed
kttsd 4:3.5.5-2 etch ftp.de.debian.org
kttsd 4:3.5.9-2 testing  ftp.de.debian.org
kttsd 4:3.5.9-2 sid  ftp.de.debian.org
kttsd 4:4.1.0-1 experimental ftp.de.debian.org
kttsd/experimental uptodate 4:4.1.0-1
---


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

Kernel: Linux 2.6.24.2 (PREEMPT)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kmousetool depends on:
ii  kdelibs4c2a4:3.5.9.dfsg.1-6  core libraries and binaries for 
al
ii  libc6  2.8+20080809-1GNU C Library: Shared libraries
ii  libgcc11:4.3.1-9 GCC support library
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime 
v
ii  libsm6 2:1.1.0-1 X11 Session Management library
ii  libstdc++6 4.3.1-9   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension 
librar
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

kmousetool recommends no packages.

Versions of packages kmousetool suggests:
ii  khelpcente 4:4.0.0.really.3.5.9.dfsg.1-5 help center for KDE

-- no debconf information


---



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



Bug#495930: yaboot: debian stable: 4.0r4a

2008-08-21 Thread Folkert van Heusden
Package: yaboot
Version: 1.3.13a-1
Severity: normal


Situation:
- IBM p52a
- LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
- virtual console accessed via HMC

The problem is that the yaboot configuration-file is installed in /etc. /etc 
can be in a logical volume: in that case yaboot fails to find its 
configurationfile at boottime and so fails to boot 
the Debian system. Solution would be putting that configfile in /boot like grub 
does. Current workaround is not to use LVM at all.

-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc64)

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

Versions of packages yaboot depends on:
ii  libc6 2.7-13 GNU C Library: Shared libraries

Versions of packages yaboot recommends:
pn  hfsutils   (no description available)
ii  powerpc-utils 1.1.3-22   Various utilities for Linux/PowerP

yaboot suggests no packages.

-- no debconf information



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



Bug#495934: konq-plugins: fail to upgrade to 4.1.0-1 (will overwrite file of kde-i18n-es package)

2008-08-21 Thread David Martínez Martí
Package: konq-plugins
Version: 4:3.5.9-2
Severity: normal

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

I'm using Debian experimental and there are two packages that I can't upgrade.
kmousetools and konq-plugins are at their newest version in SID (3.5.9-2)
and there are a newer version in experimental for both (4.1.0-1) but apt 
refuses
to upgrade with the following message:
--
Preparing to replace kmousetool 4:3.5.9-2 (using 
.../kmousetool_4%3a4.1.0-1_i386.deb) ...
Unpacking replacement kmousetool ...
dpkg: error processing /var/cache/apt/archives/kmousetool_4%3a4.1.0-1_i386.deb 
(--unpack):
 trying to overwrite `/usr/share/icons/hicolor/16x16/actions/female.png', 
which is also in package kttsd
Preparing to replace konq-plugins 4:3.5.9-2 (using .../konq-
plugins_4%3a4.1.0-1_i386.deb) ...
Unpacking replacement konq-plugins ...
dpkg: error processing /var/cache/apt/archives/konq-
plugins_4%3a4.1.0-1_i386.deb (--unpack):
 trying to overwrite `/usr/share/locale/es/LC_MESSAGES/minitoolsplugin.mo', 
which is also in package kde-i18n-es
dpkg-deb: subprocess paste killed by signal (Broken pipe)
--

** There is some info from apt-show-version:
--
konq-plugins 4:3.5.9-2 install ok installed
konq-plugins 4:3.5.5-1 etch ftp.de.debian.org
konq-plugins 4:3.5.9-2 testing  ftp.de.debian.org
konq-plugins 4:3.5.9-2 sid  ftp.de.debian.org
konq-plugins 4:4.1.0-1 experimental ftp.de.debian.org
konq-plugins/experimental upgradeable from 4:3.5.9-2 to 4:4.1.0-1

kde-i18n-es 4:3.5.9-2 install ok installed
kde-i18n-es 4:3.5.5-1 etchftp.de.debian.org
kde-i18n-es 4:3.5.9-2 testing ftp.de.debian.org
kde-i18n-es 4:3.5.9-2 sid ftp.de.debian.org
kde-i18n-es/testing uptodate 4:3.5.9-2
---


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

Kernel: Linux 2.6.24.2 (PREEMPT)
Locale: LANG=es_ES.UTF-8, LC_CTYPE=es_ES.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kmousetool depends on:
ii  kdelibs4c2a4:3.5.9.dfsg.1-6  core libraries and binaries for 
al
ii  libc6  2.8+20080809-1GNU C Library: Shared libraries
ii  libgcc11:4.3.1-9 GCC support library
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libqt3-mt  3:3.3.8b-5Qt GUI Library (Threaded runtime 
v
ii  libsm6 2:1.1.0-1 X11 Session Management library
ii  libstdc++6 4.3.1-9   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.4-2 X11 client-side library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension 
librar
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

kmousetool recommends no packages.

Versions of packages kmousetool suggests:
ii  khelpcente 4:4.0.0.really.3.5.9.dfsg.1-5 help center for KDE

-- no debconf information


---



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



Bug#491146: workaround

2008-08-21 Thread Erik Thiele
i modified my /etc/magic as follows to have a workaround for the problem until 
it gets fixed in debian. otherwise our custom software does not work anymore 
because it uses libmagic to determine filetypes :-)


# Magic local data for file(1) command.
# Insert here your local magic data. Format is described in magic(5).

0 string \x89PNG\x0d PNG image



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



Bug#495929: debian-installer: can not use a virtual optical drive (with VIOS 1.5) to install from

2008-08-21 Thread Folkert van Heusden
Package: debian-installer
Version: debian stable: 4.0r4a
Severity: normal


Situation:
- IBM p52a
- LPAR with diskspace served via VIOS 1.5 (an LV, not a physical disk)
- CD-ROM is a virtual optical drive served by VIOS LPAR, backed by iso-image of 
debian install
- virtual console accessed via HMC

The LPAR always succeeds in booting from the CD, e.g. the installer-screen 
appears.
In most of the cases during the CD-ROM detecting phase the installer says that 
it cannot use this CD-ROM to install from. Please note: NOT in ALL cases: in 
some cases it proceeds and starts to 
install packages but then after a few fails with read errors.


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (500, 'testing'), (500, 'stable')
Architecture: powerpc (ppc64)

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



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



Bug#495932: gpsbabel: man page formatting snag

2008-08-21 Thread Phil Endecott
Package: gpsbabel
Version: 1.3.5-1.1
Severity: normal


/usr/share/man/man1/gpsbabel.1 contains this, near the start:

br
INTYPE and OUTTYPE must be one of the file types listed below, and
br
may include options valid for that file type.  For example:
br
'gpx', 'gpx,snlen=10' and 'ozi,snlen=10,snwhite=1'
br
(without the quotes) are all valid file type specifications.
br

This comes out as:

   INTYPE and OUTTYPE must be one of the file types listed below, and
   may include options valid for that file type.  For example:
   (without the quotes) are all valid file type specifications.

Note that the line containing the examples has been lost.

I know next to nothing about roff (if that's what it is), but my guess is
that having a ' as the first character of the line has caused the problem.


Cheers,  Phil.

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

Versions of packages gpsbabel depends on:
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libexpat1  1.95.8-3.4XML parsing C library - runtime li
ii  libusb-0.1-4   2:0.1.12-2userspace USB programming library
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

gpsbabel recommends no packages.

-- no debconf information




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



Bug#495935: libgsl0-dev: contains DFSG non-free documentation

2008-08-21 Thread Sebastian Harl
Package: libgsl0-dev
Version: 1.8-2
Severity: serious
Justification: Policy 2.2.1, GR 2006-001

Hi,

The documentation shipped with libgsl [1] is licensed under the GNU Free
Documentation License with invariant sections. This is a conflict with
the DFSG [2], point 3 (Derived Works), and thus must not be shipped in
Debian main. This position has been confirmed in GR 2006-001 [3]. For
further information see Manoj's Draft Debian Position Statement about
the GNU Free Documentation License (GFDL) [4].

The documentation is a valid candidate for non-free though. For example,
see the gcc-4.3-doc-non-dfsg and gcc-4.3 packages.

Cheers,
Sebastian

[1] License of the GSL Reference Manual:

 Permission is granted to copy, distribute and/or modify this document
  under the terms of the GNU Free Documentation License, Version 1.2 or
  any later version published by the Free Software Foundation; with the
  Invariant Sections being "GNU General Public License" and "Free Software
  Needs Free Documentation", the Front-Cover text being "A GNU Manual",
  and with the Back-Cover Text being (a) (see below).  A copy of the
  license is included in the section entitled "GNU Free Documentation
  License".

 (a) The Back-Cover Text is: "You have freedom to copy and modify this
  GNU Manual, like GNU software."

[2] http://www.debian.org/social_contract

[3] http://www.debian.org/vote/2006/vote_001

[4] http://people.debian.org/~srivasta/Position_Statement.xhtml

-- 
Sebastian "tokkee" Harl +++ GnuPG-ID: 0x8501C7FC +++ http://tokkee.org/

Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety. -- Benjamin Franklin



signature.asc
Description: Digital signature


Bug#495936: collectd: Provide "minimal" collector only package

2008-08-21 Thread Marc Fargas
Package: collectd
Version: 4.4.2-1+b1
Severity: wishlist

Hi,

Installing collectd depends on librrd which then depends on libpango,
etc. I'm not sure but if you are only intereseted in collecting data
and sending it to a server, is librrd needed on the clients?

It'd be nice to have a "collectd-collector" agent which didn't depend
on "server-only" libs so Clients would have much fewer dependencies.

I don't know if that's even possible, that's why I set "wishlist" ;))


Regards,
Marc


-- System Information:
Debian Release: lenny/sid
  APT prefers testing
  APT policy: (900, 'testing'), (500, 'gutsy'), (300, 'unstable'), (150, 
'experimental'), (100, 'stable')
Architecture: i386 (i686)

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



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



Bug#495246: NMU for xosd

2008-08-21 Thread Sven Hoexter
tags 495246 patch
thanks

Hi,
attached is a proposal for a NMU which should resolve this bug and a few
more things.
The lintian error about the outdated config.guess etc. still remains but
according to the CDBS docs (or as far as I understand them) CDBS replaces
them at build time.

Beside that the maintainer seems looks MIA so I guess this package should
be orphaned and the maintainer MIA tracked.

Sven
-- 
If God passed a mic to me to speak
I'd say stay in bed, world
Sleep in peace
   [The Cardigans - 03:45: No sleep]


xosd_2.2.14-1.6.diff.gz
Description: Binary data
diff -u xosd-2.2.14/debian/changelog xosd-2.2.14/debian/changelog
--- xosd-2.2.14/debian/changelog
+++ xosd-2.2.14/debian/changelog
@@ -1,3 +1,20 @@
+xosd (2.2.14-1.6) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Replace pseudo dynamic Build-Conflict on libxosd-dev with an explicit
+one on libxosd-dev << 2.2.14 which is the current source:Version.
+Closes: #495246
+  * Replace Source-Version with binary:Version for libxosd-dev Depends.
+  * Replace the pseudo Homepage field the real one.
+  * Change the Homepage from http://www.ignavus.net/software.html to
+http://libxosd.sourceforge.net which offers a link for the current
+source download and the old website.
+  * Remove Suggests: xfonts-base-transcoded from libxosd2. Closes: #370034
+  * Updated the copyright file to reflect the website where you can obtain
+the source code and the license used.
+
+ -- Sven Hoexter <[EMAIL PROTECTED]>  Thu, 21 Aug 2008 14:06:36 +0200
+
 xosd (2.2.14-1.5) unstable; urgency=low
 
   * Non-maintainer upload.
diff -u xosd-2.2.14/debian/copyright xosd-2.2.14/debian/copyright
--- xosd-2.2.14/debian/copyright
+++ xosd-2.2.14/debian/copyright
@@ -5,8 +5,10 @@
-It was downloaded from http://www.ignavus.net/software.html
+It was downloaded from http://libxosd.sourceforge.net
 
 Upstream author: Andre Renaud <[EMAIL PROTECTED]>
 Maintainer: Tim Wright <[EMAIL PROTECTED]>
 
 Copyright:
-
-See /usr/share/common-licenses/GPL
+Copyright 2000, 2001 Andre Renaud ([EMAIL PROTECTED])
+This package is licensed under the GPL version 2 only.
+On a Debian system you can find the licence text in 
+/usr/share/common-licenses/GPL-2.
diff -u xosd-2.2.14/debian/control xosd-2.2.14/debian/control
--- xosd-2.2.14/debian/control
+++ xosd-2.2.14/debian/control
@@ -3,8 +3,10 @@
 Priority: optional
 Maintainer: Philipp Matthias Hahn <[EMAIL PROTECTED]>
 Build-Depends: libgtk1.2-dev, libtool, debhelper (>= 4.1.0), libgdk-pixbuf-dev, libx11-dev, libxext-dev, x11proto-core-dev, x11proto-xinerama-dev, x11proto-xext-dev, libxinerama-dev, cdbs
-Build-Conflicts: libxosd-dev (<< ${Source-Version})
+Build-Conflicts: libxosd-dev (<< 2.2.14)
 Standards-Version: 3.6.1.1
+Homepage: http://libxosd.sourceforge.net
+
 
 Package: libxosd2
 Section: libs
@@ -12,16 +14,13 @@
 Depends: ${shlibs:Depends}
 Conflicts: libxosd
 Replaces: libxosd, libxosd0
-Suggests: xfonts-base-transcoded
 Description: X On-Screen Display library - runtime
  A library for displaying a TV-like on-screen display in X.
- .
- Homepage: http://www.ignavus.net/software.html
 
 Package: libxosd-dev
 Section: libdevel
 Architecture: any
-Depends: libxosd2 (= ${Source-Version}), libx11-dev, libxext-dev, ${shlibs:Depends}, libxinerama-dev
+Depends: libxosd2 (= ${binary:Version}), libx11-dev, libxext-dev, ${shlibs:Depends}, libxinerama-dev
 Conflicts: libxosd
 Description: X On-Screen Display library - development
  A library for displaying a TV-like on-screen display in X.
@@ -39,3 +37,0 @@
- .
- Homepage: http://www.ignavus.net/software.html
-


Bug#480941: anjuta: locks when editing lines with accented letters

2008-08-21 Thread Bruno Schneider
I'm now using anjuta 2.4.2-1.

I've made a minimal trouble file and experimented it at a similar
anjuta instalation (Debian, 2.4.2-1). It didn't lock. My problem file
no longer has accented letters, just CR/LF line endings.

If I ask anjuta to convert the line endings to LF, the problem is
gone. But I wonder why doesn't it lock the similiar instalation. I've
verified the trouble file and has not been altered in any way during
the copy.

Since removing ".anjuta" has no effect, perhaps I should try removing
anjuta key from gconf. Not sure how to do that...

Please advise.

-- 
Bruno Schneider
http://www.dcc.ufla.br/~bruno/



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



Bug#495938: downgrade update-inetd dependency

2008-08-21 Thread Peter Eisentraut
Package: cvs
Version: 1:1.12.13-11
Severity: normal

The dependency on update-inetd is apparently only necessary for cvs server 
support, which most people probably don't use.  Therefore, the dependency can 
probably be downgraded to a Recommends or more likely even a Suggests.  The 
maintainer scripts of cvs are apparently already set up to handle the case 
where update-inetd doesn't exist.



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



Bug#495939: local host fails to sync with mongrel when CRLs are in use with apache2

2008-08-21 Thread martin f krafft
Package: puppet
Version: 0.24.5-2
Severity: normal
Tags: upstream

After switching to mongrel (and recreating the certificate for the
local puppetd), it won't sync with puppet anymore:

  err: /File[/var/lib/puppet/lib]: Failed to generate additional
  resources during transaction: Certificates were not trusted: tlsv1
  alert decrypt error

The only way to make it work again is by commenting
  SSLCARevocationFile /var/lib/puppet/ssl/ca/ca_crl.pem
in the apache2 configuration.

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

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

Versions of packages puppet depends on:
ii  adduser   3.110  add and remove users and groups
ii  facter1.5-0.1a library for retrieving facts fro
ii  libopenssl-ruby   4.2OpenSSL interface for Ruby
ii  libruby [libxmlrpc-ruby]  4.2Libraries necessary to run Ruby 1.
ii  libshadow-ruby1.8 1.4.1-8Interface of shadow password for R
ii  libxmlrpc-ruby4.2transitional dummy package
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  ruby  4.2An interpreter of object-oriented 

Versions of packages puppet recommends:
ii  rdoc  4.2Generate documentation from ruby s

puppet suggests no packages.

-- no debconf information


-- 
 .''`.   martin f. krafft <[EMAIL PROTECTED]>
: :'  :  proud Debian developer, author, administrator, and user
`. `'`   http://people.debian.org/~madduck - http://debiansystem.info
  `-  Debian - when you have better things to do than fixing systems


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


Bug#495474: [kmid] kmid doesn't play any sound

2008-08-21 Thread Valerio Passini
Alle giovedì 21 agosto 2008, Ana Guerrero ha scritto:

> There's a "midi setup" option in the menus, have you tried changing it to
> make kmid use a different output channel? It sounds like kmid is trying to
> use an external midi port instead of the software synthesizer port to play
> the music.
>
>
> Ana

Dear Ana,

I've already tried to play a little with those settings with no effective 
results, but there is something new. I've experimented that if I move the 
slider in kmid to jump in different sections of a song, I can listen to 
something, like a locked chord. 
So the complete absence of any sound seems do be due to the initial silence 
contained in some of the songs I have that is extended to the end of the song 
itself. I've tried this both using timidity and fluidsynth: kmid behaves the 
same.
I hope this helps a little in tracking down this bug. Cheers

Valerio



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



Bug#495940: ITP: feedvalidator -- advanced feed validator

2008-08-21 Thread Noah Slater
Package: wnpp
Severity: wishlist
Owner: Noah Slater <[EMAIL PROTECTED]>


* Package name: feedvalidator
  Version : 0
  Upstream Author : Sam Ruby <[EMAIL PROTECTED]>
* URL : http://feedvalidator.org/
* License : MIT
  Programming Lang: Python
  Description : advanced feed validator

An advanced syndication feed validator that works with RSS, Atom and KML.

Usable as a command line tool or web service.

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

-- 
Noah Slater, http://bytesexual.org/nslater



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



Bug#495936: collectd: Provide "minimal" collector only package

2008-08-21 Thread Sebastian Harl
Hi Marc,

On Thu, Aug 21, 2008 at 02:45:56PM +0200, Marc Fargas wrote:
> Installing collectd depends on librrd which then depends on libpango,
> etc. I'm not sure but if you are only intereseted in collecting data
> and sending it to a server, is librrd needed on the clients?

Nope, it's not needed in that case.

> It'd be nice to have a "collectd-collector" agent which didn't depend
> on "server-only" libs so Clients would have much fewer dependencies.

That sounds like a good idea to me. I'm not entirely sure how to
implement that but I will come up with something. This could be
basically the same package with a different default configuration and
thus without the dependency on librrd. I don't like to ship the same
stuff twice though ...

> I don't know if that's even possible, that's why I set "wishlist" ;))

Well, this would have been "wishlist" in any case... ;-)

Cheers,
Sebastian

-- 
Sebastian "tokkee" Harl +++ GnuPG-ID: 0x8501C7FC +++ http://tokkee.org/

Those who would give up Essential Liberty to purchase a little Temporary
Safety, deserve neither Liberty nor Safety. -- Benjamin Franklin



signature.asc
Description: Digital signature


  1   2   3   4   >