Bug#449423: glibc2.7 followup

2007-11-15 Thread Cyril Brulebois
Stuart Prescott [EMAIL PROTECTED] (06/11/2007):
 I know that you know that -- that comment wasn't for you but for the
 original reporter and […]

Next time, trying putting the submitter in the loop, so that he has a
chance to even get your message.

Cheers,

-- 
Cyril Brulebois


pgpPuC3Hb0pe5.pgp
Description: PGP signature


Bug#360554: disk LED blinks constantly

2007-11-15 Thread Philippe Cloutier
Le November 8, 2007 10:38:23 am Philippe Cloutier, vous avez écrit :
 Le November 8, 2007 06:37:42 am Michael Biebl, vous avez écrit :
  Hi,
 
  could you please try the following:
 
  hdparm -B 254 /dev/hdX
 
  and see if it helps.

 Hi Michael,
 it doesn't help.

 Thanks anyway

Shame on me for trying this with my hard drive while being perfectly aware 
that this is a ODD issue. By some chance I looked at this bug again and 
realized my error now, so I tried with hdb:

vinci:~# hdparm -B 254 /dev/hdb

/dev/hdb:
 setting Advanced Power Management level to 0xfe (254)
 HDIO_DRIVE_CMD failed: Input/output error

So it doesn't help, but maybe it reveals another problem?




Bug#451346: m4:debian/sendmail.mc:18: ERROR: end of file in string

2007-11-15 Thread [EMAIL PROTECTED]
Package: m4
Version: 1.4.10-1
Severity: normal

I get the error :
 m4:debian/sendmail.mc:18: ERROR: end of file in string

when running m4 on the default sendmail.mc file.
After anylizing the mentioned line
 #   * `sendmailconfig`
and making a few tests it appears that if I remove the antiquotes `
there is no more error 
It's strange because as the line is commented out the quotes shouldn't matter

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

Kernel: Linux 2.6.18-4-686 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages m4 depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries

m4 recommends no packages.

-- no debconf information



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



Bug#444067: coreutils: Please add a --files-from option to du

2007-11-15 Thread Bob Proulx
Géraud Meyer wrote:
 Bob Proulx wrote:
head datafile | xargs -r du

 First the command line length is limited, which in certain cases (when
 the number of files is gigantic) can make this command fail.

The xargs command is specifically design to understand the limitations
of command line length.  It will not fail even when there are a huge
number of arguments.  The limitation of ARG_MAX is almost the entire
reason that the xargs command exists.

 It is the case if someone (like me) creates lists of all the files,
 not just of some directories. N.B. The -n option of xargs cannot be
 used to overcome this limitation if one would like du to produce a
 grand total.

True.  If there are multiple invocations of du then all of them would
need to be summed up into a total.  If a total is needed then using
--files0-from would be better.

 Second by default xargs considers any blank character a separator and
 interprets certain characters, so that it must be used with still
 another option: `-d \n'.

True again.  But the --files0-from is available.

find . -type f -exec du {} +

 Thanks but the example you give has problems similar to the one above:
 1) The command line may not be arbitrarily long.

Incorrect.  Please see the documentation for {} + in the find
manual.  This handles arbitrarily large numbers of arguments.

 2) You cannot easily filter the list after find.

I do not understand why you think it cannot be filtered after this
point.  I see no problem doing so.

However if there are multiple invocations of du then grand totals
would need an additional summation step.  This is the same as the
above using xargs.  Again it is better to use --files0-from.

 And it has an additional major drawback:
 3) Each time you want to run du on the list, you have to recreate the
 list (which can take a lot of time).

Yes.  But if you want to cache the list output from find then using
null terminated strings are again the best way to handle the filename
data.  And null terminated strings may be fed directly into du using
the --files0-from option.

  find . -type f -print0  cached-list
  du --files0-from=cached-list

 I never said that it is impossible to use du together with other
 programs. I said that the absence of the --files-from option makes it
 harder by bounding the user to using non default options of almost all
 the other programs, or to converting the list-file used (e.g. with ` tr
 $'\n' $'\0' ') before using it with du. See the example below.

Because it is always possible to convert from one use to the other
easily I am not convinced it is a hardship to not have the less
general purpose option added.

This:

  tr '\012' '\000' | du --files0-from=-

Is equivalent to this:
  
  du --files-from=-

Therefore I don't think this is enough to warrant an additonal option
because one is a complete superset of the other.  Also because the
newline terminated one is not general purpose I don't think we should
make it easy to use.  It would only encourage people to use it.  But
using it fails to handle general filenames.

However if patches were made available the upstream maintainer may see
things differently and incorporate the additional feature.

 What I mean is that it makes sense and a coherent coreutils package to
 also implement --files-from. Furthermore, as --files0-from is already
 implemented, it should not be much work to add the almost identical
 --files-from option.

I disagree simply because whitespace in filenames cause problems with
the non-null-terminated option.  Therefore to handle arbitrary
filenames the null-terminated option really needs to be used.  The
non-null version is only a half solution.  It would have its own set
of bug reports about it not being sufficient.  If the null terminated
one is sufficient and general purpose then it is the better one to use
all of the time.

 Example:
 $ find dir -options files.list
 # create a NL-separated list of files

  find dir -options -print0  files0.list

 $ wc -l files.list
 # wc could not be used to count NUL-separated items
 # (another more complex program would be needed)

But wc -l cannot be used to count arbitrary filenames specifically
those that include a newline.  So the above can't work in general.  If
you really don't care about newlines in files then the information may
be recovered using xargs.

  xargs -0l1  file0.list | wc -l

 $ sed -i -e expr files.list
 # sed is designed for regular lines (NL-terminated)

  xargs -r0 sed -i -e expr  files0.list

 $ emacs files.list
 # editing a NUL-separated list in emacs would be inconvenient

But of course emacs handles binary data in files fine.  But again, if
newlines in filesnames are not a problem the file can be converted
back to a newline delimited file.

  xargs -0n1  file0.list  file.list

But information may be lost in that process.

 $ tr $'\n' $'\0' files.list files0.list
 # an additional command that I would like not to type

Then I know you won't like the 

Bug#449355: llvm: should this package be removed?

2007-11-15 Thread Cyril Brulebois
Lucas Nussbaum [EMAIL PROTECTED] (05/11/2007):
 If you think that it should be orphaned instead of being removed from
 Debian, please reply to this bug and tell so.

Just to keep you posted, there are some ongoing discussions on the llvm2
ITP bug (#451106), between MadCoder, Arthur Loiret, and the maintainer.

Cheers,

-- 
Cyril Brulebois


pgpFnDAAk4ceV.pgp
Description: PGP signature


Bug#451347: etckeeper: ignore some frequently auto-generated files

2007-11-15 Thread Jeff King
Package: etckeeper
Version: 0.1
Severity: wishlist

I have had to put the following in my .gitignore, as they are
automatically generated and not of interest:

network/run
adjtime

They might be worth adding to the stock gitignore.

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

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

Versions of packages etckeeper depends on:
ii  debconf [debconf-2.0]1.5.17  Debian configuration management sy
ii  git-core 1:1.5.3.5-1 fast, scalable, distributed revisi
ii  metastore1-1 Store and restore metadata

etckeeper recommends no packages.

-- debconf information:
* etckeeper/unclean: true
  etckeeper/commit_failed:



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



Bug#451289: [INTL:nl] Updated Dutch po-debconf translation

2007-11-15 Thread Stefan Hornburg

cobaco (aka Bart Cornelis) wrote:

Package: sympa
Severity: wishlist
Tags: patch l10n

Please find attached the updated dutch po-debconf translation. Please add 
it to your next package revision, it should replace the current 
debian/po/nl.po in your package tree, TIA.


Applied, thanks.



Feel free to mail me if this file needs updating at some future date.


That is good to know.

Regards
Racke

--
LinuXia Systems = http://www.linuxia.de/
Expert Interchange Consulting and System Administration
ICDEVGROUP = http://www.icdevgroup.org/
Interchange Development Team




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



Bug#449104: [Pkg-gtkpod-devel] Bug#449104: new upstream

2007-11-15 Thread Frank Lichtenheld
On Wed, Nov 14, 2007 at 10:35:59PM -0800, Christopher J Peikert wrote:
 There seems to be a new upstream 0.6.0 release available that handles 
 the new ipods.

Yes, we're already working on it. Since it contains a SONAME change it
will need a few days to get through the NEW queue and we're waiting on
a comment from the release team whether to upload to unstable or
experimental at this point.

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#451340: replace operation used to add and remove attributes

2007-11-15 Thread Michael Spang
Package: ldapvi
Version: 1.7-2~bpo.1
Severity: normal

ldapvi uses the replace changetype to add and remove values for attributes.
This causes a race condition if the user of ldapvi changes an attribute
that was externally modified while his editor was open.

The solution is to use 'add' and 'delete' instead of replace, as
appropriate.

Thanks.
Michael Spang

-- 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.22-3-vserver-amd64
Locale: LANG=en_CA.UTF-8, LC_CTYPE=en_CA.UTF-8 (charmap=UTF-8)

Versions of packages ldapvi depends on:
ii  emacs [editor] 22.1+1-2.1csc1The GNU Emacs editor (metapackage)
ii  emacs21 [editor]   21.4a+1-3etch1The GNU Emacs editor
ii  emacs22 [editor]   22.1+1-2.1csc1The GNU Emacs editor
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libglib2.0-0   2.12.4-2  The GLib library of C routines
ii  libldap2   2.1.30-13.3   OpenLDAP libraries
ii  libncurses55.5-5 Shared libraries for terminal hand
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libreadline5   5.2-2 GNU readline and history libraries
ii  nano [editor]  2.0.2-1etch1  free Pico clone with some new feat
ii  vim [editor]   1:7.0-122+1etch3  Vi IMproved - enhanced vi editor

ldapvi recommends no packages.

-- no debconf information



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



Bug#416123: digikam doesn't need to depend on libgphoto2-2-dev

2007-11-15 Thread Mark Purcell
tags 416123 pending
thanks

Thanks to the good work of pusling, this is now fixed in Debian.

You can safely remove libgphoto2-2-dev (you need to use force) and digikam 
functions correctly now.

The next upload of digikam will not depend on libgphoto2-2-dev

Mark


kdelibs (4:3.5.8.dfsg.1-4) unstable; urgency=low

  * Add a patch to allow to dlopen .so files and not only .la files.
Now kamera, digikam and others doesn't need to depend on -dev packages.

 -- Sune Vuorela [EMAIL PROTECTED]  Mon, 12 Nov 2007 13:00:41 +0100


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


Bug#451345: ejabberd: Please add module mod_archive_odbc to package

2007-11-15 Thread Max Kosmach
Package: ejabberd
Version: 1.1.4-3
Severity: wishlist

Please add mod_archive_odbc to ejabberd package for server side message
history support (XEP-136).
URL:
http://www.ndl.kiev.ua/typo/articles/2007/11/14/mod_archive_odbc-release


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

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

Versions of packages ejabberd depends on:
ii  adduser 3.105add and remove users and groups
ii  debconf [debconf-2.0]   1.5.16   Debian configuration management sy
ii  erlang-base [erlang-abi 1:11.b.5dfsg-8   Concurrent, real-time, distributed
ii  erlang-nox  1:11.b.5dfsg-8   Concurrent, real-time, distributed
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libssl0.9.8 0.9.8g-2 SSL shared libraries
ii  openssl 0.9.8g-2 Secure Socket Layer (SSL) binary a
ii  ucf 3.003Update Configuration File: preserv
ii  zlib1g  1:1.2.3.3.dfsg-7 compression library - runtime

ejabberd recommends no packages.

-- debconf information excluded



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



Bug#405650: (no subject)

2007-11-15 Thread Thomas Soumarmon

Hi,

I had a similar problem solved setting in various files the encoding
used to utf-8.
I don't remember exactly which files had to be modified but you should
be able to find.
Anyway, the bug seems to be resolved with 4.2.0-1.

-- 

*Thomas Soumarmon*
*Cogitae* - http://cogitae.net



Bug#451348: gnash-tools: missing library or dependency

2007-11-15 Thread Lionel Elie Mamane
Package: gnash-tools
Version: 0.8.1~rc.070818-2
Severity: serious
Justification: Policy 3.5

[EMAIL PROTECTED]:~/ff$ gparser 300x250.swf 
gparser: error while loading shared libraries: libgnashserver-0.8.1.so: cannot 
open shared object file: No such file or directory
[EMAIL PROTECTED]:~/ff$ gprocessor 300x250.swf 
gprocessor: error while loading shared libraries: libgnashserver-0.8.1.so: 
cannot open shared object file: No such file or directory

It seems you are missing a dependency on ... maybe gnash-common? Or
whatever package includes the libraries.

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

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

Versions of packages gnash-tools depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libgcc1   1:4.2.2-3  GCC support library
ii  libstdc++64.2.2-3The GNU Standard C++ Library v3

gnash-tools recommends no packages.

-- no debconf information



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



Bug#445269: apt: crash on every operation

2007-11-15 Thread Frans Pop
 after i removed konqueror with apt-get remove konqueror it runned well,
 but when i then tried to use apt-get, it crashed everytime i
 tried an operation.

This RC BR is keeping apt from migrating to testing. Even though it is now 
over a month old, there is currently no follow-up from any apt developers 
to the BR.

Could someone please have a look?

We need apt 0.7.9 to migrate to testing before we can upload some changes in 
Debian Installer.

TIA,
Frans Pop


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


Bug#335994: Isn't the license issue fixed already?

2007-11-15 Thread Uwe Steinmann
Hi,

I wonder if the license issue is fixed in the mean time.
Image/Color is licensed with PHP 3.01 according to 
pear.php.net. Wouldn't that be ok for debian?

  Uwe

-- 
  MMK GmbH, Fleyer Str. 196, 58097 Hagen
  [EMAIL PROTECTED]
  Tel: 02331 840446Fax: 02331 843920


signature.asc
Description: Digital signature


Bug#451340: replace operation used to add and remove attributes

2007-11-15 Thread David Lichteblau
Quoting Michael Spang ([EMAIL PROTECTED]):
 ldapvi uses the replace changetype to add and remove values for attributes.
 This causes a race condition if the user of ldapvi changes an attribute
 that was externally modified while his editor was open.
 
 The solution is to use 'add' and 'delete' instead of replace, as
 appropriate.

That's what I thought until I got all those bug reports about ldapvi's
original behaviour of using add/delete not working as intended.

See #374962 for an example where OpenLDAP appears to be doing schema
checks between the add and delete, rather than on the combined operation
(in this example combined with an attribute type that ignores
whitespace, which ldapvi is not aware of).

I could make the old behaviour a configuration option...


d.



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



Bug#451349: ksvg: segfault in CanvasText::createGlyphs when viewing SVG file

2007-11-15 Thread Marcus Better
Package: ksvg
Version: 4:3.5.8-2
Severity: important

svgdisplay segfaults when viewing the file ecma-cloud.svg [1].

(no debugging symbols found)
Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
[Thread debugging using libthread_db enabled]
[New Thread 0xb5e83b60 (LWP 15766)]
[KCrash handler]
#6  0xb7c488f7 in KSVG::CanvasText::createGlyphs () from /usr/lib/libksvg.so.0
#7  0xb59c75be in KSVG::LibartText::init ()
   from /usr/lib/kde3/libksvgrendererlibart.so
#8  0xb59c7bee in KSVG::LibartText::init ()
   from /usr/lib/kde3/libksvgrendererlibart.so
#9  0xb59d55b8 in KSVG::LibartText::LibartText ()
   from /usr/lib/kde3/libksvgrendererlibart.so
#10 0xb59d570e in KSVG::LibartCanvas::createText ()
   from /usr/lib/kde3/libksvgrendererlibart.so
#11 0xb7b5c2f7 in KSVG::SVGTextElementImpl::createItem ()
   from /usr/lib/libksvg.so.0
#12 0xb7c42903 in KSVG::InputHandler::endElement () from /usr/lib/libksvg.so.0
#13 0xb709aa96 in QXmlSimpleReader::processElementETagBegin2 (this=0x8123d08)
at xml/qxml.cpp:3581
#14 0xb70a04c0 in QXmlSimpleReader::parseElement (this=0x8123d08)
at xml/qxml.cpp:3398
#15 0xb70a004a in QXmlSimpleReader::parseContent (this=0x8123d08)
at xml/qxml.cpp:3940
#16 0xb70a0990 in QXmlSimpleReader::parseElement (this=0x8123d08)
at xml/qxml.cpp:3468
#17 0xb70a004a in QXmlSimpleReader::parseContent (this=0x8123d08)
at xml/qxml.cpp:3940
#18 0xb70a0990 in QXmlSimpleReader::parseElement (this=0x8123d08)
at xml/qxml.cpp:3468
#19 0xb70a004a in QXmlSimpleReader::parseContent (this=0x8123d08)
at xml/qxml.cpp:3940
#20 0xb70a0990 in QXmlSimpleReader::parseElement (this=0x8123d08)
at xml/qxml.cpp:3468
#21 0xb70a004a in QXmlSimpleReader::parseContent (this=0x8123d08)
at xml/qxml.cpp:3940
#22 0xb70a0990 in QXmlSimpleReader::parseElement (this=0x8123d08)
at xml/qxml.cpp:3468
#23 0xb70a47da in QXmlSimpleReader::parseBeginOrContinue (this=0x8123d08, 
state=1, incremental=false) at xml/qxml.cpp:3014
#24 0xb70a4cd2 in QXmlSimpleReader::parse (this=0x8123d08, input=0x812abf0, 
incremental=false) at xml/qxml.cpp:2956
#25 0xb7093bb5 in QXmlSimpleReader::parse (this=0x8123d08, input=0x812abf0)
at xml/qxml.cpp:2911
#26 0xb7c4190d in KSVG::KSVGReader::parse () from /usr/lib/libksvg.so.0
#27 0xb7b14bc2 in KSVG::SVGDocumentImpl::slotSVGContent ()
   from /usr/lib/libksvg.so.0
#28 0xb7b14d77 in KSVG::SVGDocumentImpl::qt_invoke ()
   from /usr/lib/libksvg.so.0
#29 0xb6e3ab10 in QObject::activate_signal (this=0x8107d80, clist=0x8107eb8, 
o=0xbfe14194) at kernel/qobject.cpp:2356
#30 0xb7c35f9f in KSVG::KSVGLoader::gotResult () from /usr/lib/libksvg.so.0
#31 0xb7c37a96 in KSVG::KSVGLoader::slotResult () from /usr/lib/libksvg.so.0
#32 0xb7c37cf2 in KSVG::KSVGLoader::qt_invoke () from /usr/lib/libksvg.so.0
#33 0xb6e3ab10 in QObject::activate_signal (this=0x8108030, clist=0x8109830, 
o=0xbfe14324) at kernel/qobject.cpp:2356
#34 0xb62d7e1e in KIO::Job::result (this=0x8108030, t0=0x8108030)
at ./jobclasses.moc:162
#35 0xb631519d in KIO::Job::emitResult (this=0x8108030)
at /build/buildd/kdelibs-3.5.8.dfsg.1/./kio/kio/job.cpp:235
#36 0xb632185e in KIO::SimpleJob::slotFinished (this=0x8108030)
at /build/buildd/kdelibs-3.5.8.dfsg.1/./kio/kio/job.cpp:601
#37 0xb6321f48 in KIO::TransferJob::slotFinished (this=0x8108030)
at /build/buildd/kdelibs-3.5.8.dfsg.1/./kio/kio/job.cpp:971
#38 0xb6314dfd in KIO::TransferJob::qt_invoke (this=0x8108030, _id=17, 
_o=0xbfe1464c) at ./jobclasses.moc:1071
#39 0xb6e3ab10 in QObject::activate_signal (this=0x81366d8, clist=0x8134098, 
o=0xbfe1464c) at kernel/qobject.cpp:2356
#40 0xb6e3b5f5 in QObject::activate_signal (this=0x81366d8, signal=6)
at kernel/qobject.cpp:2325
#41 0xb62d2c3c in KIO::SlaveInterface::finished (this=0x81366d8)
at ./slaveinterface.moc:226
#42 0xb6338ce9 in KIO::SlaveInterface::dispatch (this=0x81366d8, _cmd=104, 
[EMAIL PROTECTED])
at /build/buildd/kdelibs-3.5.8.dfsg.1/./kio/kio/slaveinterface.cpp:243
#43 0xb632e9ba in KIO::SlaveInterface::dispatch (this=0x81366d8)
at /build/buildd/kdelibs-3.5.8.dfsg.1/./kio/kio/slaveinterface.cpp:173
#44 0xb62e7f8c in KIO::Slave::gotInput (this=0x81366d8)
at /build/buildd/kdelibs-3.5.8.dfsg.1/./kio/kio/slave.cpp:300
#45 0xb6330fd8 in KIO::Slave::qt_invoke (this=0x81366d8, _id=4, _o=0xbfe14910)
at ./slave.moc:113
#46 0xb6e3ab10 in QObject::activate_signal (this=0x812db28, clist=0x8139260, 
o=0xbfe14910) at kernel/qobject.cpp:2356
#47 0xb6e3b45d in QObject::activate_signal (this=0x812db28, signal=2, 
param=11) at kernel/qobject.cpp:2449
#48 0xb71cb40d in QSocketNotifier::activated (this=0x812db28, t0=11)
at .moc/debug-shared-mt/moc_qsocketnotifier.cpp:85
#49 0xb6e5ccda in QSocketNotifier::event (this=0x812db28, e=0xbfe14c48)
at kernel/qsocketnotifier.cpp:258
#50 0xb6dcf36a in QApplication::internalNotify (this=0xbfe14ec4, 
receiver=0x812db28, e=0xbfe14c48) at kernel/qapplication.cpp:2635
#51 0xb6dd1193 in 

Bug#451295: texlive-lang-latin: Undefined control sequence addtoextraslatin

2007-11-15 Thread Norbert Preining
Hi all!

On Do, 15 Nov 2007, Vincent Lönngren wrote:
 I searched the bug reports for this problem, and didn't find it. If it's
 already reported after all then I apologise.

No, it was on ubuntu:
https://bugs.launchpad.net/ubuntu/+source/texlive-base/+bug/157709

And it is already fixed in the repository, from the web page above:
I just now submitted the following entry into our subversion:
+texlive-base (2007-14~1) unstable; urgency=low
+
+ * fix latin.ldf with the version from CTAN (closes Ubuntu bug #157709)
+
+ -- Norbert Preining [EMAIL PROTECTED] Tue, 30 Oct 2007 21:31:25 +0100
+


Guess I have to add a closes for a Debian bug ;-)

Thanks for reporting

Best wishes

Norbert

---
Dr. Norbert Preining [EMAIL PROTECTED]Vienna University of Technology
Debian Developer [EMAIL PROTECTED] Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
Arthur yawed wildly as his skin tried to jump one way and
his skeleton the other, whilst his brain tried to work out
which of his ears it most wanted to crawl out of.
`Bet you weren't expecting to see me again,' said the
monster, which Arthur couldn't help thinking was a strange
remark for it to make, seeing as he had never met the
creature before. He could tell that he hadn't met the
creature before from the simple fact that he was able to
sleep at nights.
 --- Arthur discovering who had diverted him from going to a
 --- party.
 --- Douglas Adams, The Hitchhikers Guide to the Galaxy



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



Bug#451350: icedove-gnome-support: Package should contain minimal docs

2007-11-15 Thread Olivier Berger
Package: icedove-gnome-support
Version: 1.5.0.13+1.5.0.14b.dfsg1-0lenny1
Severity: wishlist

This package seems interesting for gnome users, but there ain't any docs 
explaining what/how it does...

For instance, I'd suppose there's some traybiff like feature well integrated 
with the gnome notification, but I can't be sure.

Please write some bits of a README in /usr/share/doc/icedove-gnome-support at 
least...

Thanks in advance.

Best regards,


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

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

Versions of packages icedove-gnome-support depends on:
ii  icedove 1.5.0.13+1.5.0.14b.dfsg1-0lenny1 free/unbranded thunderbird mail cl
ii  libart- 2.3.19-3 Library of functions for 2D graphi
ii  libatk1 1.20.0-1 The ATK accessibility toolkit
ii  libbono 2.20.1-1 Bonobo CORBA interfaces library
ii  libbono 2.20.0-1 The Bonobo UI library
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcair 1.4.10-1 The Cairo 2D vector graphics libra
ii  libfont 2.4.2-1.2generic font configuration library
ii  libgcc1 1:4.2.2-3GCC support library
ii  libgcon 2.20.0-1 GNOME configuration database syste
ii  libglib 2.14.1-5 The GLib library of C routines
ii  libgnom 0.8.1-2  GNOME keyring services library
ii  libgnom 2.20.1.1-1   The GNOME 2 library - runtime file
ii  libgnom 2.14.0-3 A powerful object-oriented display
ii  libgnom 2.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnom 1:2.20.0-3   GNOME Virtual File System (runtime
ii  libgtk2 2.12.1-1 The GTK+ graphical user interface 
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  liborbi 1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpang 1.18.3-1 Layout and rendering of internatio
ii  libpopt 1.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc 4.2.2-3  The GNU Standard C++ Library v3
ii  libx11- 2:1.0.3-7X11 client-side library
ii  libxcur 1:1.1.9-1X cursor management library
ii  libxext 1:1.0.3-2X11 miscellaneous extension librar
ii  libxfix 1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxine 1:1.0.2-1X11 Xinerama extension library
ii  libxran 2:1.2.2-1X11 RandR extension library
ii  libxren 1:0.9.4-1X Rendering Extension client libra

icedove-gnome-support recommends no packages.

-- no debconf information



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



Bug#451351: upgrading from 3.4.2-1 with several databases does not work

2007-11-15 Thread Thomas Soumarmon
Package: tinyerp-server
Version: 4.2.0-1
Severity: serious
Tags: patch

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

After upgrading package tinyerp-server from 4.0.3-1, using  --stop-after-init 
--update=all as extra parameters, 
the databases where incorrectly upgraded.
In fact, it looks like the upgrade process does only take into account the terp 
database, which is the default one 
and not other databases that may be set with --database switch.

What I've done to go further and upgrade 'mydb' was : 
copy mydb into terp (backup terp, backup mydb, delete terp, create terp 
unicode, restore terp from mydb backup )
restart tinyerp-server
copy terp into mydb

Then the db structure looks more compatible with the software.

The problem is now that views, actions, wizard that are stored in the database 
are not updated and have to be 
checked one by one !




--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22-2-486

Debian Release: lenny/sid
  500 testing security.debian.org 
  500 testing ftp.fr.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
python  | 2.4.4-6
python-support   (= 0.7.1) | 0.7.5
adduser | 3.105
python-psycopg  | 1.1.21-15
python-libxml2  | 2.6.30.dfsg-2
python-xml  | 0.8.4-8
python-libxslt1 | 1.1.22-1
python-reportlab| 2.0dfsg-1




Bug#451230: linux-image-2.6-s390 / qeth - HSI-interface doesn't come up after reboot

2007-11-15 Thread Joachim Krais

severity 451230 normal
tags 451230 moreinfo

s390 never had automatic setup of devices. Please show your
configuration. The debian installer sets up a configuration in
/etc/sysconfig/hardware which lists all hardware devices which are used
during the installation.

Bastian

---

Our HSI-NIC is integrated in the path /etc/sysconfig/hardware with
config-ccw-0.0.0800. The only content in this file is:

CCWGROUP_CHANS=(0.0.0800 0.0.0801 0.0.0802)

Is this correct that the file has only one line?

Excursion:
==
Sorry, we didn't describe our environment sufficiently.
We running our Linux servers under Z/VM in different LPARs. The NICs and 
other hardware (DASDs) are defined in Z/VM for every guest (Linux). The 
physical hardware adapters so are mapped in virtual addresses. We aren't 
running Linux natively on a LPAR. We use these Linux-servers in a 
productive environment. At maintenance work (for example by a power on 
reset) we load the Linux guests from one LPAR (which will be maintained) 
to another LPAR. So we have the need that it works well. In SLES9 the 
HSI-NIC comes up while rebooting the linux-server by IPL from the Z/VM 
an we have our network connectivity. But we aren't happy about SLES10 
and so we are looking for an alternative distribution.






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



Bug#451219: xserver-xorg-video-savage: 1:2.1.3-5 fixes the problems

2007-11-15 Thread Pascal A. Dupuis
Package: xserver-xorg-video-savage
Followup-For: Bug #451219


The new version, as installed from 
xserver-xorg-video-savage_2.1.3-5_i386.deb,
works as it should. Everything's fine.

Thank you

Pascal Dupuis

-- Package-specific info:
Contents of /var/lib/x11/X.roster:
xserver-xfree86
xserver-xorg

/etc/X11/X target does not match checksum in /var/lib/x11/X.md5sum.

X server symlink status:
lrwxrwxrwx 1 root root 13 2006-06-06 11:34 /etc/X11/X - /usr/bin/Xorg
-rwxr-xr-x 1 root root 1669976 2007-09-29 16:33 /usr/bin/Xorg

Contents of /var/lib/x11/xorg.conf.roster:
xserver-xorg

VGA-compatible devices on PCI bus:
01:00.0 VGA compatible controller: S3 Inc. VT8636A [ProSavage KN133] AGP4X VGA 
Controller (TwisterK) (rev 01)

/etc/X11/xorg.conf does not match checksum in /var/lib/x11/xorg.conf.md5sum.

Xorg X server configuration file status:
-rw-r--r-- 1 root root 3741 2007-11-13 21:28 /etc/X11/xorg.conf

Contents of /etc/X11/xorg.conf:
# /etc/X11/xorg.conf (xorg X Window System server configuration file)
#
# This file was generated by dexconf, the Debian X Configuration tool, using
# values from the debconf database.
#
# Edit this file with caution, and see the /etc/X11/xorg.conf manual page.
# (Type man /etc/X11/xorg.conf at the shell prompt.)
#
# This file is automatically updated on xserver-xorg package upgrades *only*
# if it has not been modified since the last upgrade of the xserver-xorg
# package.
#
# If you have edited this file but would like it to be automatically updated
# again, run the following command:
#   sudo dpkg-reconfigure -phigh xserver-xorg

Section Files 
FontPathunix/:7100# local font server Type 1
FontPathunix/:7101# local font server TrueType
FontPath/usr/share/fonts/X11/misc
#Xfree  FontPath/usr/X11R6/lib/X11/fonts/misc
#NotInstFontPath/usr/share/fonts/X11/cyrillic
#NotInstFontPath/usr/X11R6/lib/X11/fonts/cyrillic
FontPath/usr/share/fonts/X11/100dpi/:unscaled
#Xfree  FontPath/usr/X11R6/lib/X11/fonts/100dpi/:unscaled
FontPath/usr/share/fonts/X11/75dpi/:unscaled
#Xfree  FontPath/usr/X11R6/lib/X11/fonts/75dpi/:unscaled
FontPath/usr/share/fonts/X11/Type1
#Xfree  FontPath/usr/X11R6/lib/X11/fonts/Type1
FontPath/usr/share/fonts/X11/100dpi
#Xfree  FontPath/usr/X11R6/lib/X11/fonts/100dpi
FontPath/usr/share/fonts/X11/75dpi
#Xfree  FontPath/usr/X11R6/lib/X11/fonts/75dpi
# path to defoma fonts
FontPath/var/lib/defoma/x-ttcidfont-conf.d/dirs/TrueType
EndSection

Section Module
LoadGLcore
Loadbitmap
Loaddbe
Loadddc
Loaddri
Loadextmod
Loadfreetype
Loadglx
Loadint10
Loadrecord
Loadspeedo
Loadtype1
Loadvbe
EndSection

Section InputDevice
Identifier  Generic Keyboard
Driver  kbd
Option  CoreKeyboard
Option  XkbRules  xorg
Option  XkbModel  pc105
Option  XkbLayout be
Option   XkbOptions   compose:lwin
#   Option  XkbOptionslv3:ralt_switch
#   Option  XkbOptionsfr
#   Option  XkbCompat pc
EndSection

Section InputDevice
Identifier  Configured Mouse
Driver  mouse
Option  CorePointer
Option  Device/dev/input/mice
Option  Protocol  ExplorerPS/2
EndSection

Section InputDevice
Identifier  Synaptics Touchpad
Driver  synaptics
Option  SHMConfig on
Option  SendCoreEventstrue
Option  Device/dev/psaux
Option  Protocol  auto-dev
Option  HorizScrollDelta  0
EndSection

Section Device
Identifier  Laptop built-in
Driver  savage
#Option UseFBDev  true
#   Option  UseFBDev  false
Option  AGPMode   4
##  Option  VBERestoretrue
EndSection

Section Monitor
Identifier  Laptop screen
Option  DPMS
HorizSync   31.5-82
VertRefresh 50-100
EndSection

Section Screen
Identifier  Default Screen
Device  Laptop built-in
Monitor Laptop screen
DefaultDepth24
SubSection Display
Depth   1
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   4
Modes   1024x768 800x600 640x480
EndSubSection
SubSection Display
Depth   8

Bug#451245: gtk2-engines: Warning seen: /usr/share/themes/Mist/gtk-2.0/gtkrc:6: Invalid symbolic color 'fg_color'

2007-11-15 Thread Josselin Mouette
Hi,

Le mercredi 14 novembre 2007 à 14:48 +, Tim Booth a écrit :
 [EMAIL PROTECTED] /usr/share/themes/Mist/gtk-2.0/gtkrc
 /usr/share/themes/Mist/gtk-2.0/gtkrc:6: Invalid symbolic color 'fg_color'
 /usr/share/themes/Mist/gtk-2.0/gtkrc:6: error: invalid identifier `fg_color', 
 expected valid identifier

Please show us the output of:
gconftool-2 -R /desktop/gnome/interface

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


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


Bug#450854: Suggested patch

2007-11-15 Thread Simon Josefsson
tags 450854 patch
thanks

Hi!  GnuTLS 2.1.6 fixes the UNKNOWN_HASH_ALGORITHM part, which was a
mistake, but libvmime needs the patch below to work with the upcoming
gnutls 2.2.

--- src/net/tls/TLSSession.cpp~ 2006-02-05 11:22:59.0 +0100
+++ src/net/tls/TLSSession.cpp  2007-11-15 10:16:53.0 +0100
@@ -300,7 +300,6 @@
ERROR(GNUTLS_E_ASN1_TYPE_ANY_ERROR)
ERROR(GNUTLS_E_ASN1_SYNTAX_ERROR)
ERROR(GNUTLS_E_ASN1_DER_OVERFLOW)
-   ERROR(GNUTLS_E_OPENPGP_TRUSTDB_VERSION_UNSUPPORTED)
ERROR(GNUTLS_E_OPENPGP_UID_REVOKED)
ERROR(GNUTLS_E_CERTIFICATE_ERROR)
//ERROR(GNUTLS_E_X509_CERTIFICATE_ERROR)

/Simon



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



Bug#443382: tagging 443382

2007-11-15 Thread Jan-Pascal van Best
# Automatically generated email from bts, devscripts version 2.10.10
#The fix I thought i had does not fix the bug
tags 443382 - pending




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



Bug#451352: wmauda: Wmauda can only start audacious, no control panel, no click actions

2007-11-15 Thread Peter Rabbitson
Package: wmauda
Version: 0.3-4
Severity: grave
Justification: renders package unusable


This might be related to bug #450439. wmauda starts as usual displaying the 
A idle icon in the dock. Once double clicked it correctly starts audacious.
At this point however the A icon is not replaced by the 6 button + volume 
control panel. Also the right/middle click actions seem to have no effect on
the running audacious instance. Let me know if I can provide any additional
information.

Thanks

Peter

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

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

Versions of packages wmauda depends on:
ii  libatk1.0-0 1.20.0-1 The ATK accessibility toolkit
ii  libaudacious5   1.3.2-5  Audacious C++ shared library
ii  libc6   2.6.1-6  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.5.0-1  generic font configuration library
ii  libglib2.0-02.14.3-1 The GLib library of C routines
ii  libgtk2.0-0 2.12.1-2 The GTK+ graphical user interface 
ii  libmcs1 0.4.1-2+b1   Abstraction library to store confi
ii  libpango1.0-0   1.18.3-1 Layout and rendering of internatio
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcomposite1  1:0.3.2-1+b1 X11 Composite extension library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxdamage1 1:1.1.1-3X11 damaged region extension libra
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra

Versions of packages wmauda recommends:
ii  audacious 1.4.0-1Small and fast audio player which 

-- no debconf information



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



Bug#428779: icedove-traybiff: Maybe it would be interesting to update also testing version's dependencies ?

2007-11-15 Thread Olivier Berger
Package: icedove-traybiff
Version: 1.2.2-13
Followup-For: Bug #428779

On my system, I can't install it since icedove is 
1.5.0.13+1.5.0.14b.dfsg1-0lenny1... and that doesn't match with :
Depends: icedove (= 1.5.0.10.dfsg), icedove ( 1.5.0.10.dfsg.0), libatk1.0-0 
(= 1.12.2), libc6 (= 2.3.6-6), libcairo2 (= 1.2.4), libfontconfig1 (= 
2.4.0), libgcc1 (= 1:4.1.1-12), libglib2.0-0 (= 2.12.0), libgtk2.0-0 (= 
2.8.0), libpango1.0-0 (= 1.14.8), libstdc++6 (= 4.1.1-12), libx11-6, 
libxcursor1 ( 1.1.2), libxext6, libxfixes3 (= 1:4.0.1), libxi6, 
libxinerama1, libxrandr2, libxrender1

Hope this helps,

Best regards,

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

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



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



Bug#451353: sablevm: Missing JNI function GetBooleanArrayElements

2007-11-15 Thread Andrew Ross
Package: sablevm
Version: 1.13-1.1
Severity: normal


Regressions testing with libplplot9-java (the java bindings to the 
plplot library) fails when using sablevm.

The following error message is given

sablevm: INTERNAL ERROR (source file native_interface.c, function
GetBooleanArrayElements, line 25011): todo

Checking the source code it looks like the JNI function 
GetBooleanArrayElements is not implemented. This function is present 
in all other JVM implementations I have tried (kaffe, gij, Sun JDK).


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

Versions of packages sablevm depends on:
ii  java-common0.25  Base of all Java packages
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libpopt0   1.10-3lib for parsing cmdline parameters
ii  libsablevm11.13-1.1  Free implementation of JVM second 
ii  unzip  5.52-9De-archiver for .zip files

Versions of packages sablevm recommends:
ii  free-java-sdk 1.0-1  Complete Java SDK environment cons
ii  jikes 1:1.22-6   Fast Java compiler adhering to lan
pn  libgnujaxp-java   none (no description available)

-- no debconf information



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



Bug#400605: hald-addon-acpi-buttons-toshiba eats keystrokes for fnfxd (see #400267)

2007-11-15 Thread Sebastian Fontius
Hi Michael,

Also, sprach Michael Biebl am Donnerstag, den 15. November 2007 um 02:03:
 Sebastian Fontius schrieb:
  Package: hal
  Version: 0.5.8.1-4
  Severity: normal
  
  As the title says, please see bug #400267.
 
 I compiled hal with the --enable-acpi-toshiba option which should
 forward the ACPI events. Could you please test the packages at [1]
 and let me know if that solves your problem.

 [1] http://debs.michaelbiebl.de/hal

I have tested the packages you provided at [1], but the problem
persists.  In a very short test it took me up to five times pressing
Fn-c to make Amarok appear as configured:

,[ Excerpt from ~/.fnfxrc ]
| action(key=Fn-c;command=dcop amarok playlist togglePlaylist)
`

As soon as I divert
/usr/share/hal/fdi/policy/10osvendor/10-toshiba-buttons.fdi to
/usr/share/hal/10-toshiba-buttons.fdi, i.e. remove it from hal's reach
and restart hal fnfx works fine again.

So my conclusion is, that the problem is still there.

By the way, it appears that 10-toshiba-buttons.fdi is not in the hal
version in testing, but I did not notice that, as I had the
aforementioned diversion in place since reporting the bug, so fnfx
worked all the time.

If I can be of help in any other way, please do not hesitate to let me
know.


Greetings,


-- 
: Sebastian Fontius : www.fsfe.org : www.fsfe.org/en/fellows/smc
`+--+--+---.
[]   | They that can give up essential liberty to obtain a little |
  [][][] |  temporary safety deserve neither liberty nor safety.  |
||   :   Attributed to Benjamin Franklin, 1759 :


signature.asc
Description: Digital signature


Bug#450852: Suggested patch

2007-11-15 Thread Simon Josefsson
tags 450852 patch
thanks

Hi!  Here is an (untested) patch that would print a human readable text
string instead of XML, which may solve the problem.  What do you think?

/Simon

--- src/certinfo.c- 2007-11-15 10:31:54.0 +0100
+++ src/certinfo.c  2007-11-15 10:32:41.0 +0100
@@ -543,7 +543,7 @@
 
 static void display_certificate(int fd,gnutls_x509_crt_t crt)
 {
- gnutls_datum_t xml={NULL,0};
+ gnutls_datum_t txt={NULL,0};
  char *dn,*issuer_dn;
  time_t activation,expiration;
  char *activation_str,*expiration_str;
@@ -642,9 +642,9 @@
  else
 key_ca=Error;
 
- /* XML formatted certificate. */
+ /* Formatted certificate. */
 
- gnutls_x509_crt_to_xml(crt,xml,GNUTLS_XML_NORMAL);
+ gnutls_x509_crt_print (crt, GNUTLS_X509_CRT_FULL, txt);
 
  /* Output the information. */
 
@@ -656,7 +656,7 @@
  key_algo,key_algo,
  key_usage,key_usage,
  key_ca,key_ca,
- xml,xml.data,
+ info,txt.data,
  NULL);
 
  /* Tidy up and exit */
@@ -664,7 +664,7 @@
  free(dn);
  free(issuer_dn);
 
- free(xml.data);
+ free(txt.data);
 }
 
 



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



Bug#451245: gtk2-engines: Warning seen: /usr/share/themes/Mist/gtk-2.0/gtkrc:6: Invalid symbolic color 'fg_color'

2007-11-15 Thread Tim Booth
OK,

With the fixed /usr/share/themes/Mist/gtk-2.0/gtkrc:

[EMAIL PROTECTED] -R /desktop/gnome/interface
 toolbar_style = both
 gtk-im-status-style = callback
 document_font_name = Sans 10
 monospace_font_name = Monospace 10
 enable_animations = true
 gtk_key_theme = Default
 menus_have_tearoff = false
 cursor_blink_time = 1200
 font_name = Sans 10
 cursor_blink = true
 show_unicode_menu = true
 menus_have_icons = true
 toolbar_icon_size = (no value set)
 use_custom_font = false
 accessibility = false
 can_change_accels = false
 gtk_theme = Mist
 menubar_detachable = false
 gtk-im-preedit-style = callback
 status_bar_meter_on_right = false
 file_chooser_backend = gnome-vfs
 icon_theme = Mist
 toolbar_detachable = false
 menubar_accel = F10
 show_input_method_menu = true
 gtk_color_scheme = bg_color:#eaeaea
fg_color:#000
base_color:#fff
text_color:#000
selected_fg_color:#fff
selected_bg_color:#729fcf

And with the original gtkrc, after using the gnome-theme-manager to
reset the theme to Mist:

[EMAIL PROTECTED] -R /desktop/gnome/interface
 toolbar_style = both
 gtk-im-status-style = callback
 document_font_name = Sans 10
 monospace_font_name = Monospace 10
 enable_animations = true
 gtk_key_theme = Default
 menus_have_tearoff = false
 cursor_blink_time = 1200
 font_name = Sans 10
 cursor_blink = true
 show_unicode_menu = true
 menus_have_icons = true
 toolbar_icon_size = (no value set)
 use_custom_font = false
 accessibility = false
 can_change_accels = false
 gtk_theme = Mist
 menubar_detachable = false
 gtk-im-preedit-style = callback
 status_bar_meter_on_right = false
 file_chooser_backend = gnome-vfs
 icon_theme = Mist
 toolbar_detachable = false
 menubar_accel = F10
 show_input_method_menu = true
 gtk_color_scheme =

So the gtk_color_scheme variable is not being set.

TIM

On Thu, 2007-11-15 at 10:19 +0100, Josselin Mouette wrote:
 Hi,
 
 Le mercredi 14 novembre 2007 à 14:48 +, Tim Booth a écrit :
  [EMAIL PROTECTED] /usr/share/themes/Mist/gtk-2.0/gtkrc
  /usr/share/themes/Mist/gtk-2.0/gtkrc:6: Invalid symbolic color 'fg_color'
  /usr/share/themes/Mist/gtk-2.0/gtkrc:6: error: invalid identifier 
  `fg_color', expected valid identifier
 
 Please show us the output of:
   gconftool-2 -R /desktop/gnome/interface
 
 Thanks,


-- 
This message (and any attachments) is for the recipient only. NERC
is subject to the Freedom of Information Act 2000 and the contents
of this email and any reply you make may be disclosed by NERC unless
it is exempt from release under the Act. Any material supplied to
NERC may be stored in an electronic records management system.





Bug#412408: Is invoking exit(2) in a library the right thing to do?

2007-11-15 Thread James Andrewartha

On Mon, 5 Nov 2007, Marco d'Itri wrote:

On Nov 05, Werner Koch [EMAIL PROTECTED] wrote:

I still do not consider calling exit(2) in a library acceptable under
any condition.

So you want abort () instead?  I consider this a bad option in this case
because exit handlers would not be run.

I the function to fail with something like an error code.


Given the reluctance of many programmers to properly check error codes
and act accordingly, there is no choice in critical situation than to
terminate the process.

I still disagree.


The only way forward I can see from here is to refer the issue to the 
Technical Committee. If nobody objects or wants to do it themselves I'll 
write up a summary when I have some free time.


--
# TRS-80  trs80(a)ucc.gu.uwa.edu.au #/ Otherwise Bub here will do \
# UCC Wheel Member http://trs80.ucc.asn.au/ #|  what squirrels do best |
[ There's nobody getting rich writing  ]|  -- Collect and hide your   |
[  software that I know of -- Bill Gates, 1980 ]\  nuts. -- Acid Reflux #231 /




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



Bug#451252: problem remains after upgrade

2007-11-15 Thread mixalis georgiou
Today i upgraded to the latest iceweasel version: 2.0.0.9-1 and the problem 
with the cpu usage remains.

regards,

michalis georgiou

-- 
mixalis georgiou [EMAIL PROTECTED]



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



Bug#451275: kpowersave: Suspend to Disk/RAM only locks screen

2007-11-15 Thread Michal Sojka
On Wednesday 14 of November 2007 19:30:16 Michael Biebl wrote:
 Hi Michal,

 could you please try the hal version (0.5.10-2) from unstable?

Hi,

even with 0.5.10-2, everything is the same - behavior and messages on stdout. 

Then I've tried to add myself to the powerdev group. And it seems this helped 
a little bit. I guess, this should be mentioned in README.Debian. Maybe, a 
message box with an error message is good idea.

Now, I'm able to do Suspend to Disk successfully, but Suspend to RAM only 
switches to the text console, writes there something about my ethernet 
drivers and then returns back to the locked X screen.

If I execute /etc/acpi/sleep.sh of s2ram -f -p -m, suspend to ram works. If 
the problem is because I need to use -f with s2ram, I have already report 
this to suspend-devel 
(http://sourceforge.net/mailarchive/forum.php?thread_name=200711141959.23616.sojkam1%40fel.cvut.czforum_name=suspend-devel)

Thanks for your help,
Michal



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



Bug#451354: texlive-formats-extra: duplicate file (also in package texlive-latex-base)

2007-11-15 Thread Norbert Preining
severity 451354 normal
merge 451238 451354
thanks

Already reported. Please use
dpkg -i --force-overwrite 
/var/cache/apt/archives/texlive-formats-extra_2007.dfsg.1-1_all.deb
or wait till texlive-base from unstable hits testing.

Best wishes

Norbert

---
Dr. Norbert Preining [EMAIL PROTECTED]Vienna University of Technology
Debian Developer [EMAIL PROTECTED] Debian TeX Group
gpg DSA: 0x09C5B094  fp: 14DF 2E6C 0307 BE6D AD76  A9C0 D2BF 4AA3 09C5 B094
---
KEELE (adj.)
The horrible smell caused by washing ashtrays.
--- Douglas Adams, The Meaning of Liff



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



Bug#451355: ITP: libgfshare -- library and utilities for multi-way secret sharing

2007-11-15 Thread Simon McVittie
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: wnpp
Severity: wishlist
Owner: Simon McVittie [EMAIL PROTECTED]


* Package name: libgfshare
  Version : 1.0.2+bzr20070822
  Upstream Author : Daniel Silverstone [EMAIL PROTECTED]
* URL : http://www.digital-scurf.org/software/libgfshare
* License : MIT
  Programming Lang: C
  Description : library and utilities for multi-way secret sharing

 This library implements Shamir's method for secret sharing, which can be
 used to split a secret (like a GPG secret key) into multiple parts, so that
 at least some number of those parts are needed to recover the original file,
 but any smaller combination of parts is useless to an attacker.
 .
 For instance, you might split a GPG key using a 3-of-5 share and put one
 share on each of three computers, and two shares on a USB memory stick; then
 you can use the GPG key on any of those three computers using the memory
 stick, but if the memory stick is lost, you can recover the key by
 bringing the three computers together.

As well as a set of library packages, I intend to package the gfsplit and
gfcombine command-line utilities as a binary package gfshare-utils.
I'm in contact with the upstream author, and have asked him to release
current bzr as 1.0.3, but until then I'm going to package what's in bzr.

If anyone's interested: I have vague plans to write a FUSE filesystem that
works like a cross between gfcombine and unionfs, and the upstream author has
told me that Søren Hansen http://warma.dk/blog/ has similar plans.

Packaging in progress: http://bzr.debian.org/~smcv-guest/bzr/libgfshare
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: OpenPGP key: http://www.pseudorandom.co.uk/2003/contact/ or pgp.net

iD8DBQFHPBlFWSc8zVUw7HYRAn3OAKDi2iX/nIW7bRmgkci/J2qVP7w49ACgslX7
iYrFI4psVNiHb81bVGjBbIY=
=QFEv
-END PGP SIGNATURE-



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



Bug#375521: Not fixed

2007-11-15 Thread Francesco Paolo Lovergine
Package: sshfs
Version: 1.7-2.1
Followup-For: Bug #375521


sshfs#klecker:books  1000G 0 1000G   0% /home/frankie/books

Well, it is not truly fixed. At least reports 0 size available
but it would be more correct not reporting any valid size, i.e.

sshfs#klecker:books  0 0 0   0% /home/frankie/books



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

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

Versions of packages sshfs depends on:
ii  fuse-utils2.7.1-1Filesystem in USErspace (utilities
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libfuse2  2.7.1-1Filesystem in USErspace library
ii  libglib2.0-0  2.14.3-1   The GLib library of C routines
ii  openssh-client [ssh-client]   1:4.6p1-6  secure shell client, an rlogin/rsh

sshfs recommends no packages.

-- no debconf information



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



Bug#451356: ffcall: testsuite failure on amd64, kfreebsd-amd64

2007-11-15 Thread Petr Salinger

Package: ffcall
Version: 1.10+2.41-3
Severity: important
User: [EMAIL PROTECTED]
Usertags: kfreebsd


Hi,

ffcall failed during my test on kfreebsd-amd64, but the same applies also 
for official amd64 architecture, see


http://buildd.debian.org/fetch.cgi?pkg=ffcall;ver=1.10%2B2.41-3;arch=amd64;stamp=1164148337

Petr

touch tests.passed.x86_64-pc-linux-gnu
make[3]: Leaving directory 
`/build/buildd/ffcall-1.10+2.41/ffcall/callback/trampoline_r'

gcc -g -O2 -I. -I. -c ./minitests.c
/bin/sh ./libtool --mode=link gcc -g -O2 -x none minitests.o 
libcallback.la -o minitests
gcc -g -O2 -x none minitests.o -o .libs/minitests  ./.libs/libcallback.so 
-Wl,--rpath -Wl,/usr/lib

creating minitests
./minitests  minitests.out
/bin/sh: line 1: 28000 Segmentation fault  ./minitests minitests.out
make[2]: *** [check] Error 139
make[2]: Leaving directory 
`/build/buildd/ffcall-1.10+2.41/ffcall/callback'

make[1]: *** [check] Error 2
make[1]: Leaving directory `/build/buildd/ffcall-1.10+2.41/ffcall'
make: [build-stamp] Error 2 (ignored)
: # EXTRACHECK



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



Bug#451131: Psi does not respect LSB version information

2007-11-15 Thread Sikon
I've posted a cleaner version of the patch on the official forum (link in the 
first post).


pgp3Q2xrWkOQy.pgp
Description: PGP signature


Bug#451354: texlive-formats-extra: duplicate file (also in package texlive-latex-base)

2007-11-15 Thread Fabian Fagerholm
Package: texlive-formats-extra
Version: 2007-3
Severity: important

Upgrading my testing (lenny) box gave the following error:

Unpacking replacement texlive-formats-extra ...
dpkg: error processing 
/var/cache/apt/archives/texlive-formats-extra_2007.dfsg.1-1_all.deb (--unpack):
 trying to overwrite 
`/usr/share/texmf-texlive/tex/latex/latexconfig/mllatex.ini', which is also in 
package texlive-latex-base
dpkg-deb: subprocess paste killed by signal (Broken pipe)

I used regular apt-get to perform the upgrade.

Please tell me if you need any additional information.

Thanks,
-- 
Fabian Fagerholm [EMAIL PROTECTED]

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

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

Versions of packages texlive-formats-extra depends on:
ii  texlive-base  2007-12TeX Live: Essential programs and f
ii  texlive-common2007-12TeX Live: Base component
ii  texlive-latex-base2007-12TeX Live: Basic LaTeX packages

texlive-formats-extra recommends no packages.

Versions of packages tex-common depends on:
ii  debconf   1.5.16 Debian configuration management sy
ii  ucf   3.003  Update Configuration File: preserv

Versions of packages texlive-formats-extra is related to:
pn  tetex-basenone (no description available)
ii  tetex-bin 2007-12TeX Live: teTeX transitional packa
ii  tetex-extra   2007-12TeX Live: teTeX transitional packa

-- debconf information:
  tex-common/check_texmf_wrong:
  tex-common/check_texmf_missing:



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



Bug#451355: ITP: libgfshare -- library and utilities for multi-way secret sharing

2007-11-15 Thread Soren Hansen
On Thu, Nov 15, 2007 at 10:02:46AM +, Simon McVittie wrote:
 If anyone's interested: I have vague plans to write a FUSE filesystem
 that works like a cross between gfcombine and unionfs, and the
 upstream author has told me that Søren Hansen http://warma.dk/blog/
 has similar plans.

Right. I'd say I'm 70% done. I want to integrate it with hal, which
turned out to be a bit tricky, but I know where I'm headed. The code is
a mess right now, but I'll put it in a bzr branch somewhere when I get
it cleaned up a bit.

-- 
Soren Hansen
Ubuntu Server Team
http://www.ubuntu.com/


signature.asc
Description: Digital signature


Bug#375521: Not fixed

2007-11-15 Thread Miklos Szeredi
 sshfs#klecker:books  1000G 0 1000G   0% /home/frankie/books
 
 Well, it is not truly fixed. At least reports 0 size available
 but it would be more correct not reporting any valid size, i.e.
 
 sshfs#klecker:books  0 0 0   0% /home/frankie/books

That causes problems with some programs which refuse to write a file
if zero space is available.



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



Bug#451340: replace operation used to add and remove attributes

2007-11-15 Thread David Lichteblau
* I wrote:
 See #374962 for an example where OpenLDAP appears to be doing schema
 checks between the add and delete, rather than on the combined operation
 (in this example combined with an attribute type that ignores
 whitespace, which ldapvi is not aware of).

Okay, after discussion with Gerfried Fuchs:

  - the problem in #374962 might have been just that ldapvi was doing
an `add' followed by `delete' rather than vice versa

  - my original reason for this patch was a report that the delete/add
method caused problems with iPlanet in a multimaster configuration
(?!), but I never received more information on that

  - when offering an option for the old behaviour of using delete/add,
we will need to take care not to break the workaround for users that
depend on the order of attribute values as requested in:
http://lists.askja.de/pipermail/ldapvi/2007-May/21.html

For the scenario where multiple users change the same entry, delete/add
compared to replace could offer two distinct advantages:
  i) error instead of unintentional overwriting of the other
 simultaneous write operation
 ii) no conflict at all with simultaneous changes to values of the same
 multi-valued attribute if those values were not touched by the
 current operation

ldapvi originally tried to achieve ii) by using delete/add only for the
values that were changed.

We could instead aim for i) and still keep the old ordering by
performing a `delete' for every value seen previously, and then `add'
for each new value in the desired order.



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



Bug#302326: sendmail options at gnarwl.cfg

2007-11-15 Thread JB
After create user gnarwl and chown'ed his home, I needed change from
mta /usr/sbin/sendmail -F $recipient to mta /usr/sbin/sendmail -F
$recipient -t $sender



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



Bug#451322: tagtool: Cannot edit tags of Ogg Vorbis files

2007-11-15 Thread Kartik Mistry
On Nov 15, 2007 5:11 AM, Reuben Thomas [EMAIL PROTECTED] wrote:

 When I try to change tags in Ogg Vorbis files, I get the prompt to
 save the tags, but before and after it I get another prompt saying
 that it could not change the tags, with error code 0 (Success) and the
 tags are indeed not changed.

Hi,

Thanks for reporting bug and using package.

I tried to reproduce this bug. But, it is not producible for me. Can
you please give me sample file which is causing this issue?

And, Can you please make sure that file is not read only? If this bug
still appear, please let the bug report know.

-- 

 Cheers,
 --
 Kartik Mistry | 0xD1028C8D | IRC: kart_
 kartikm.wordpress.com | blog.ftbfs.in
 --



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



Bug#451355: ITP: libgfshare -- library and utilities for multi-way secret sharing

2007-11-15 Thread Soren Hansen
I already packaged this in Ubuntu. Feel free to adopt it for Debian.

-- 
Soren Hansen
Ubuntu Server Team
http://www.ubuntu.com/


signature.asc
Description: Digital signature


Bug#440717: review mplayer sk

2007-11-15 Thread A Mennucc
hi

sorry but while you prepared the translation, the Smith group did
rewrite all the templates (see bug 447111). I have just uploaded
mplayer 1.0~rc2-6 , with the new templates and many updated
translations. May you please review your sk translation?

thanks

a.

-- 
Andrea Mennucc

The EULA sounds like it was written by a team of lawyers who want to tell 
me what I can't do, and the GPL sounds like it was written by a human 
being who wants me to know what I can do.
Anonymous,http://www.securityfocus.com/columnists/420
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
# This file is distributed under the same license as the PACKAGE package.
# FIRST AUTHOR [EMAIL PROTECTED], YEAR.
#
#, fuzzy
msgid 
msgstr 
Project-Id-Version: PACKAGE VERSION\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-10-28 09:36+0100\n
PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n
Last-Translator: FULL NAME [EMAIL PROTECTED]\n
Language-Team: LANGUAGE [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=CHARSET\n
Content-Transfer-Encoding: 8bit\n

#. Type: note
#. Description
#: ../mplayer.templates:2001
msgid Detailed configuration needed for each user
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:2001
msgid 
The performance of MPlayer depends heavily on hardware; this means that it 
may benefit from tweaking options for every single machine it's installed on.
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:2001
msgid 
You should read the documentation provided by the 'mplayer-doc' package.
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:2001
msgid 
Now, some configuration options will be set for the entire system in /etc/
mplayer/mplayer.conf which may be adapted later. Any user can also refine 
options in ~/.mplayer/config.
msgstr 

#. Type: boolean
#. Description
#: ../mplayer.templates:3001
msgid Replace existing configuration file?
msgstr 

#. Type: boolean
#. Description
#: ../mplayer.templates:3001
msgid 
An /etc/mplayer/mplayer.conf file already exists on the system and does not 
contain an automatically-generated part. That file can be replaced by a 
generated one (the old file will be moved to /etc/mplayer/mplayer.conf.
debconf-old).
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:4001
msgid Old configuration file kept
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:4001
msgid You chose not to replace the existing /etc/mplayer/mplayer.conf file.
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:4001
msgid 
That file can be generated automatically later by running 'dpkg-reconfigure 
mplayer'.
msgstr 

#. Type: select
#. Description
#: ../mplayer.templates:5001
msgid MPlayer video output:
msgstr 

#. Type: select
#. Description
#: ../mplayer.templates:5001
msgid 
MPlayer can use a very wide range of video output drivers. The needed driver 
may be detected automatically or chosen manually.
msgstr 

#. Type: select
#. Description
#: ../mplayer.templates:5001
msgid 
If you prefer choosing the driver yourself, you first should choose an entry 
matching this system's video card. If none match and the card supports 'XV', 
choose that option (the 'xvinfo' command may help).
msgstr 

#. Type: select
#. Description
#: ../mplayer.templates:5001
msgid 
Please read the /usr/share/doc/mplayer-doc/HTML/en/video.html file from the 
'mplayer-doc' package for more details.
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:6001
msgid Binary codecs download
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:6001
msgid MPlayer supports most video formats without additional software.
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:6001
msgid 
Additional video formats, such as Real 3.0/4.0, Windows Media 9, or 
Quicktime, can be supported by using binary codecs.
msgstr 

#. Type: note
#. Description
#: ../mplayer.templates:6001
msgid 
As such codecs are not free software, they are not distributed with this 
package but can be downloaded freely. The '/usr/share/mplayer/scripts/
binary_codecs.sh' script is provided in this package to help downloading 
them from the MPlayer web site.
msgstr 

#. Type: string
#. Description
#: ../mplayer.templates:7001
msgid DVD device name:
msgstr 

#. Type: string
#. Description
#: ../mplayer.templates:7001
msgid Please enter the name of the device for your DVD player, if any.
msgstr 

#. Type: select
#. Description
#: ../mplayer.templates:8001
msgid Font for On Screen Display:
msgstr 

#. Type: error
#. Description
#: ../mplayer.templates:9001
msgid No TrueType fonts found for On Screen Display
msgstr 

#. Type: error
#. Description
#: ../mplayer.templates:9001
msgid 
MPlayer needs at least one TrueType font for its 'On Screen Display' feature.
msgstr 

#. Type: error
#. Description
#: ../mplayer.templates:9001
msgid 
You should install a package providing such fonts (such as 'ttf-freefont' or 
'ttf-bitstream-vera' or 

Bug#451357: It does not start in the combination of GTK+ 2.12.1-2

2007-11-15 Thread Jonny
Package: sylpheed
Version: 2.4.7-1
Severity: important

segmentation fault occurs in the combination of GTK+ 2.12.1-2:
 $ sylpheed --debug
 snip
 Creating main window...
 Creating folder view...
 Creating summary view...
 Creating message view...
 Creating header view...
 Creating text view...
 Creating MIME view...
 Creating text view...
 Creating image view...
 Creating log window...
 Setting widgets... done.
 prefs_summary_column_get_config(): getting normal folder setting
 zsh: segmentation fault  sylpheed --debug



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



Bug#444774: Resurrecting unaccessible strips and adding a few new...

2007-11-15 Thread Rene Weber
Hello Sebastian,

I finally had some time to look at this today (it was much more
complicated on second glance, since the source of your diff seems to have
been an old [or maybe local?] copy of strips.defs which didn't match mine),
and came across a few problems.  The following strips are defined in your
patch, but don't seem to work.

Bachelor Party
Charlie
Mr. Housewife

I think I've resolved all the other issues, but wanted to check with you
about these.  Please let me know ASAP if I'm wrong, thanks.  If I don't hear
from you, I'll upload what I have later today (which will close this bug,
but that's not really a problem, of course).

On Tue, Oct 02, 2007 at 10:20:19PM +0200, Sebastian Rasmussen wrote:
 By the way I noticed a small typo in the patch in the group entitled 
 creators I mistyped cafeconleche and instead typed cafeconlechee (note the 
 extra, trailing e).

Corrected, thanks.

Rene



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



Bug#451362: rt3.6-rtfm: database modification permission setting ignored when preconfiguring

2007-11-15 Thread Niko Tyni
Package: rt3.6-rtfm
Version: 2.2.1-1
Severity: serious
Justification: maintainer's opinion

If the config script is run for the second time without
an existing /etc/rt3.6-rtfm/debian.conf, the answer to
'rt3.6-rtfm/modify-database-permission' is unconditionally set to 'allow',
ignoring the user setting.

Unfortunately, this includes the most common case of installing the
package with apt and preconfiguration.

I could have sworn I tested this. How embarrassing. I'll prepare a new
version as soon as possible.

Cheers,
-- 
Niko Tyni   [EMAIL PROTECTED]



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



Bug#451358: postfix complains policyd-weight isn't answering (daemon mode)

2007-11-15 Thread Joerg Schuetter
Package: policyd-weight
Version: 0.1.14-beta-6
Severity: minor

On our mailservers we have a lot of these error messages (a few
hundred per day):
postfix/smtpd[5112]: warning: timeout on 127.0.0.1:12525 \
  while reading input attribute name
postfix/smtpd[5112]: warning: problem talking to server \
  127.0.0.1:12525: Connection timed out

/etc/postfix/main.cf
smtpd_recipient_restrictions =
check_recipient_access regexp:/etc/postfix/config/regexp_recipient
permit_mynetworks
reject_unauth_destination
check_client_access hash:/etc/postfix/config/policyd_weight_client_whitelist
check_recipient_access hash:/etc/postfix/config/policyd_weight_recipient_whi
telist
check_sender_access hash:/etc/postfix/config/policyd_weight_sender_whitelist
check_policy_service inet:127.0.0.1:12525
check_recipient_access hash:/etc/postfix/config/user-acl
reject_unauth_destination

It looks like installing libsys-syslog-perl (which is listed as
recomendation) calms things down dramaticaly. Now we have less
than 10 of this alerts per day.

Best regards
  Joerg




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



Bug#451363: ppp: radius plugin stops talking to radius server

2007-11-15 Thread B Thompson
Package: ppp
Version: 2.4.4rel-8
Severity: normal


I am having problems with the radius plugin supplied with ppp (I am using this
to authenticate users of my (poptop) pptp vpn. Here are the logs from a failed
login :-

Nov 14 11:26:12 nassrv3 pppd[15621]: sent [LCP ConfReq id=0x1 asyncmap 0x0 
auth chap MS-v2 magic 0xa7836037 pcomp accomp]
Nov 14 11:26:12 nassrv3 pppd[15621]: rcvd [LCP ConfAck id=0x1 asyncmap 0x0 
auth chap MS-v2 magic 0xa7836037 pcomp accomp]
Nov 14 11:26:12 nassrv3 pppd[15621]: sent [LCP EchoReq id=0x0 magic=0xa7836037]
Nov 14 11:26:12 nassrv3 pppd[15621]: sent [CHAP Challenge id=0x9 
f426157bf1a8cd0fbc8d2276a48e731a, name = pptpd]
Nov 14 11:26:12 nassrv3 pptpd[15620]: CTRL: Ignored a SET LINK INFO packet with 
real ACCMs!
Nov 14 11:26:12 nassrv3 pppd[15621]: rcvd [LCP Ident id=0x2 magic=0x76cf2fdd 
MSRASV5.10]
Nov 14 11:26:12 nassrv3 pppd[15621]: rcvd [LCP Ident id=0x3 magic=0x76cf2fdd 
MSRAS-0-ANNA]
Nov 14 11:26:12 nassrv3 pppd[15621]: rcvd [LCP EchoRep id=0x0 magic=0x76cf2fdd]
Nov 14 11:26:12 nassrv3 pppd[15621]: rcvd [CHAP Response id=0x9 
4166d4713ef8cec048e88644889a7fbcadcaef9a0709f7576bad0ce28f82ed7e5fb6e8c193a192bb00,
 name = ozw1]
Nov 14 11:26:12 nassrv3 pppd[15621]: rc_check_reply: received RADIUS server 
response with invalid length
Nov 14 11:26:12 nassrv3 pppd[15621]: rc_avpair_gen: received attribute with 
invalid length
Nov 14 11:26:12 nassrv3 pppd[15621]: Peer ozw1 failed CHAP authentication
Nov 14 11:26:12 nassrv3 pppd[15621]: sent [CHAP Failure id=0x9 ]
Nov 14 11:26:12 nassrv3 pppd[15621]: sent [LCP TermReq id=0x2 Authentication 
failed]
Nov 14 11:26:12 nassrv3 pppd[15621]: rcvd [LCP TermAck id=0x2 Authentication 
failed]
Nov 14 11:26:12 nassrv3 pppd[15621]: Connection terminated.
Nov 14 11:26:12 nassrv3 pppd[15621]: Exit.
Nov 14 11:26:12 nassrv3 pptpd[15620]: GRE: read(fd=6,buffer=5109c0,len=8196) 
from PTY failed: status = -1 error = Input/output error, usually caused by 
unexpected termination of pppd, check option syntax and pppd logs
Nov 14 11:26:12 nassrv3 pptpd[15620]: CTRL: PTY read or GRE write failed 
(pty,gre)=(6,7)
Nov 14 11:26:12 nassrv3 pptpd[15620]: CTRL: Reaping child PPP[15621]
Nov 14 11:26:12 nassrv3 pptpd[15620]: CTRL: Client 81.132.112.97 control 
connection finished


Here is a packet capture of the conversation with the RADIUS server :-

11:26:12.567346 IP vpn.york.ac.uk.33286  nasaaa2.york.ac.uk.radius: RADIUS, 
Access Request (1), id: 0xc1 length: 140
11:26:12.568107 IP nasaaa2.york.ac.uk.radius  vpn.york.ac.uk.33286: RADIUS, 
Access Accept (2), id: 0xc1 length: 179
11:26:12.568122 IP vpn.york.ac.uk  nasaaa2.york.ac.uk: ICMP vpn.york.ac.uk udp 
port 33286 unreachable, length 215


It looks like the radius client sends a packet, and then stops listening for a 
response.
There is no firewall running on the VPN server so I can't explain the port 
unreachable
response.

For me this is a serious problem so please let me know if you need any more 
info.


-- 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.18-5-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages ppp depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libpam-modules 0.79-4Pluggable Authentication Modules f
ii  libpam-runtime 0.79-4Runtime support for the PAM librar
ii  libpam0g   0.79-4Pluggable Authentication Modules l
ii  libpcap0.8 0.9.5-1   System interface for user-level pa
ii  netbase4.29  Basic TCP/IP networking system
ii  procps 1:3.2.7-3 /proc file system utilities

ppp recommends no packages.

-- no debconf information



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



Bug#451364: Uploader not shown properly for latest uploads

2007-11-15 Thread Kumar Appaiah
Package: qa.debian.org
Severity: normal
Tags: webpages

Dear QA team,

I have observed that uploads which happened after ries came back alive
aren't being shown properly on the QA page. To see what I mean, have a
look at Joey's QA page:

http://qa.debian.org/developer.php?login=joeyh

Now, as I move my mouse pointer over the unstable upload of
base-installer, debian-maintainers, debootstrap, devscripts,
etckeeper, hw-detect, ikiwiki and some more stuff which came in after
the ries downtime ended, they show (no projectb data found), rather
than the uploader.

If this isn't too much of a problem, you may wish to downgrade te
severity, but I use this information all the time (since I find it
useful on various occasions), rather than who-uploads.

Thanks!

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

Kernel: Linux 2.6.23.1 (SMP w/2 CPU cores; PREEMPT)
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



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



Bug#412408: Is invoking exit(2) in a library the right thing to do?

2007-11-15 Thread Werner Koch
On Thu, 15 Nov 2007 10:55, [EMAIL PROTECTED] said:

 The only way forward I can see from here is to refer the issue to the
 Technical Committee. If nobody objects or wants to do it themselves
 I'll write up a summary when I have some free time.

I still do not understand the problem.  Do you say that in an early boot
phase /dev/random is not yet mknod-ed or mounted?  If that is the case,
how at all does the boot process work without /dev/null - that it is
universally used before exec.  I don't understand where the difference
is.


Salam-Shalom,

   Werner


-- 
Die Gedanken sind frei.  Auschnahme regelt ein Bundeschgesetz.




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



Bug#451365: CVE-2007-5942 disclosure of sensitive information

2007-11-15 Thread Nico Golde
Package: bandersnatch
Severity: normal
Tags: security

Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for bandersnatch.

CVE-2007-5942[0]:
| Bandersnatch 0.4 allows remote attackers to obtain sensitive
| information via a malformed request for index.php with (1) a certain
| func parameter value; or (2) certain func, jid, page, and limit
| parameter values; which reveals the path in various error messages.

If you fix this vulnerability please also include the CVE id
in your changelog entry.

For further information:
[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5942

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpPB58D9Zewe.pgp
Description: PGP signature


Bug#450836: installation-reports: Does not allow ethernet over firewire

2007-11-15 Thread Frans Pop
Your report is missing some basic information. Please always attach the 
hardware-summary that is created at the end of an install (or can be 
created on demand by running the save debug logs component from the main 
menu of the installer). It can be found in /var/log/installer after 
installation or in /var/log/ during installation.

On Sunday 11 November 2007, Helge Kreutzmann wrote:
 A)No eth1394 driver for ethernet over firewire. I routinely use this
   and actually do not have a network cable arount ATM, so it is the
   only way to connect (and my main system proxies connections via
   firewire into the internet just fine).

   During installation, I do not see the network interfaces for
   firewire, nor do I find the modules, essentially breaking the
   netinst idea. I do see the device on my main system in the logs, so
   the connection is fine). After install, I see that
   # CONFIG_IEEE1394 is not set

This is probably because the Debian kernel has been switched to use the new 
firewire stack, which uses:
CONFIG_FIREWIRE
CONFIG_FIREWIRE_OHCI - module firewire-ohci
CONFIG_FIREWIRE_SBP2 - module firewire-sbp2

Those should all be set for powerpc and should also be available during 
installation. Please check:
- whether these modules are present
- whether they are loaded automatically or not
- if not, whether loading them manually gives you firewire support

If the new firewire stack does not work for powerpc, that will have to be 
discussed with the kernel team.

 B)After setting up crypto and lvm volumes, I choose by accident one of
   the crypto volumes and was told, this does not work and I could choose
   back or continue. I chose back and the installer hung. After
 Ctrl-C I was in the main menu (and in english[1]).

I cannot reproduce this. Please describe in detail the steps needed to 
reproduce this situation.

 Choosing Partitioning disks again, the progress bar with Starting up
 the partitioner hung at 52% (showing Please wait). Ctrl-C did not work
 now, so I rebootet. 

Using ctrl-c is not really supported in the installer. If you really need to 
kill processes, switch to a debug console and selectively use kill instead. 
However, it is never guaranteed that you can continue the installation 
after that.

Without additional information this is impossible to trace. If you can 
reproduce it, I can give you some instructions on how to get that info.
A start would be the output of 'ps' at the time the system is hanging.

 C)Second attempt, now all partitions properly created (still present on
 disk), but forgot to assign mount points for crypted volumes. I said
 yes to return to the partitioning, but after creating of the file
 systems, I was dropped on the main menu (I had returned earlier when I
 missed to create a New World boot partition)

This is somewhat expected after certain error situations. You can always get 
back to the default mode using the menu option change debconf priority 
and setting it to high.

Cheers,
FJP



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



Bug#451361: pax: -s option with or \1, \2... doesn't work

2007-11-15 Thread Stephane Chazelas
Package: pax
Version: 1:1.5-15
Severity: important
Tags: patch


Hi ya

$ touch foobar
$ echo foobar | pax -rwds '/.*//P' .
pax: Replacement name error foobar

This is because the resub() function that does the replacement,
upon a '', attempts to copy data from the _pattern_ string
(above: .*) instead of the input data foobar. So, above, it
tries to copy 6 bytes (as in foobar) from .* and obviously
fails.

Here is a patch:

diff -pur pax-1.5.orig/pat_rep.c pax-1.5/pat_rep.c
--- pax-1.5.orig/pat_rep.c  1998-12-03 04:35:52.0 +
+++ pax-1.5/pat_rep.c   2007-11-15 11:02:19.729489995 +
@@ -85,7 +85,7 @@ static char * range_match __P((register 
 #ifdef NET2_REGEX
 static int resub __P((regexp *, char *, char *, register char *));
 #else
-static int resub __P((regex_t *, regmatch_t *, char *, char *, char *));
+static int resub __P((regex_t *, regmatch_t *, char *, char *, char *, char 
*));
 #endif
 
 /*
@@ -1020,7 +1020,7 @@ rep_name(name, nlen, prnt)
 #  ifdef NET2_REGEX
if ((res = resub(pt-rcmp,pt-nstr,outpt,endpt))  0) {
 #  else
-   if ((res = resub((pt-rcmp),pm,pt-nstr,outpt,endpt))
+   if ((res = 
resub((pt-rcmp),pm,inpt,pt-nstr,outpt,endpt))
 0) {
 #  endif
if (prnt)
@@ -1172,7 +1172,7 @@ resub(prog, src, dest, destend)
 
 #ifdef __STDC__
 static int
-resub(regex_t *rp, register regmatch_t *pm, char *src, char *dest,
+resub(regex_t *rp, register regmatch_t *pm, char *orig, char *src, char *dest,
register char *destend)
 #else
 static int
@@ -1231,7 +1231,7 @@ resub(rp, pm, src, dest, destend)
 */
if (len  (destend - dpt))
len = destend - dpt;
-   if (l_strncpy(dpt, src + pmpt-rm_so, len) != len)
+   if (l_strncpy(dpt, orig + pmpt-rm_so, len) != len)
return(-1);
dpt += len;
}
-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)

Kernel: Linux 2.6.23.1 (SMP w/2 CPU cores)
Locale: LANG=en_GB.ISO-8859-15, LC_CTYPE=en_GB.ISO-8859-15 (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages pax depends on:
ii  libc6 2.6.1-6GNU C Library: Shared libraries

pax recommends no packages.

-- no debconf information
diff -pur pax-1.5.orig/pat_rep.c pax-1.5/pat_rep.c
--- pax-1.5.orig/pat_rep.c	1998-12-03 04:35:52.0 +
+++ pax-1.5/pat_rep.c	2007-11-15 11:02:19.729489995 +
@@ -85,7 +85,7 @@ static char * range_match __P((register 
 #ifdef NET2_REGEX
 static int resub __P((regexp *, char *, char *, register char *));
 #else
-static int resub __P((regex_t *, regmatch_t *, char *, char *, char *));
+static int resub __P((regex_t *, regmatch_t *, char *, char *, char *, char *));
 #endif
 
 /*
@@ -1020,7 +1020,7 @@ rep_name(name, nlen, prnt)
 #			ifdef NET2_REGEX
 			if ((res = resub(pt-rcmp,pt-nstr,outpt,endpt))  0) {
 #			else
-			if ((res = resub((pt-rcmp),pm,pt-nstr,outpt,endpt))
+			if ((res = resub((pt-rcmp),pm,inpt,pt-nstr,outpt,endpt))
 			 0) {
 #			endif
 if (prnt)
@@ -1172,7 +1172,7 @@ resub(prog, src, dest, destend)
 
 #ifdef __STDC__
 static int
-resub(regex_t *rp, register regmatch_t *pm, char *src, char *dest,
+resub(regex_t *rp, register regmatch_t *pm, char *orig, char *src, char *dest,
 	register char *destend)
 #else
 static int
@@ -1231,7 +1231,7 @@ resub(rp, pm, src, dest, destend)
 		 */
 		if (len  (destend - dpt))
 			len = destend - dpt;
-		if (l_strncpy(dpt, src + pmpt-rm_so, len) != len)
+		if (l_strncpy(dpt, orig + pmpt-rm_so, len) != len)
 			return(-1);
 		dpt += len;
 	}


Bug#431692: still getting a crash on amd64 with 0.2.3-1

2007-11-15 Thread Francesco Potorti`
I installed 0.2.3-1 for amd64 and I still have Nautilus crash on me as
soon as I click on any icon.

Nautilus works well after purging ext-diff.

-- 
Francesco Potortì (ricercatore)Voice: +39 050 315 3058 (op.2111)
ISTI - Area della ricerca CNR  Fax:   +39 050 315 2040
via G. Moruzzi 1, I-56124 Pisa Email: [EMAIL PROTECTED]
Web: http://fly.isti.cnr.it/   Key:   fly.isti.cnr.it/public.key





Bug#450836: installation-reports: Does not allow ethernet over firewire

2007-11-15 Thread Frans Pop
clone 450836 -1
reassign -1 linux-2.6
thanks

On Thursday 15 November 2007, Frans Pop wrote:
 Those should all be set for powerpc and should also be available during
 installation. Please check:
 - whether these modules are present
 - whether they are loaded automatically or not
 - if not, whether loading them manually gives you firewire support

 If the new firewire stack does not work for powerpc, that will have to be
 discussed with the kernel team.

It looks as if the new stack just does not have any Ethernet support (yet?).
I also no longer have a firewire Ethernet device on my x86_64 system.

This is confirmed on:
http://wiki.linux1394.org/JujuMigration

That same page lists several issues with the new stack when compared to the 
old one and also has the following recommendation:
! ! Regarding Linux 2.6.22 and 2.6.23, the best advice to Linux
! distributors (kernel packagers) as well as to regular users is: Build only
! the old IEEE 1394 drivers.

Please activate the old stack again.



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



Bug#451258: fop: footnote inside varlistentry is not rendered in PDF output

2007-11-15 Thread Michalis Kamburelis
The same problem occurs with footnotes in orderedlist, for a test just try

orderedlist
  listitemparaThird footnote from ordered list
footnoteparaThird footnote./para/footnote/para
  /listitem
/orderedlist



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



Bug#451368: srg: Cronjob does not respect 'max_age' in conffile.

2007-11-15 Thread Tim Retout
Package: srg
Version: 1.3.4-3
Severity: normal

/etc/cron.daily/srg has a hardcoded '-m 31'. This overrides whatever the
user has set as the max_age in /etc/srg/srg.conf.

-- 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.18-5-amd64
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8)

Versions of packages srg depends on:
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libgcc11:4.1.1-21GCC support library
ii  libstdc++6 4.1.1-21  The GNU Standard C++ Library v3

Versions of packages srg recommends:
pn  apache   none  (no description available)
ii  php4 6:4.4.4-8+etch4 server-side, HTML-embedded scripti
ii  squid2.6.5-6 Internet Object Cache (WWW proxy c

-- no debconf information




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



Bug#175928: It's Sooooo Cheap

2007-11-15 Thread Sandra Ashley

Major software available at 90% off
Selection from Windows Vista, Ms Office 2007, Adobe Acrobat 
and hundreds more.
Satisfaction guarantees...

http://www.getupgradednow.com





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



Bug#451203: gnome-applets: mixer-applet shows mute when not muted, after changing volume

2007-11-15 Thread Josselin Mouette
Hi,

Le mercredi 14 novembre 2007 à 11:02 -0800, Josh Triplett a écrit :
  Does it happen when you lower the volume close to zero?

 It can happen at any level of volume.  For instance, I might have the
 volume at 76%, turn it up a notch to 80%, and have it show as muted
 instead.  I have not observed any correlation with volume.  As I change
 the volume up and down, I can see the same levels of volume appearing
 sometimes as muted and sometimes as the correct level.

Could you check whether this also happens with the volume up/down
shortcut keys that you can setup in gnome-keybinding-properties ?

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


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


Bug#450836: installation-reports: Does not allow ethernet over firewire

2007-11-15 Thread maximilian attems
On Thu, Nov 15, 2007 at 12:53:31PM +0100, Frans Pop wrote:
 On Thursday 15 November 2007, Frans Pop wrote:
  Those should all be set for powerpc and should also be available during
  installation. Please check:
  - whether these modules are present
  - whether they are loaded automatically or not
  - if not, whether loading them manually gives you firewire support
 
  If the new firewire stack does not work for powerpc, that will have to be
  discussed with the kernel team.
 
 It looks as if the new stack just does not have any Ethernet support (yet?).
 I also no longer have a firewire Ethernet device on my x86_64 system.
 
 This is confirmed on:
 http://wiki.linux1394.org/JujuMigration
 
 That same page lists several issues with the new stack when compared to the 
 old one and also has the following recommendation:
 ! ! Regarding Linux 2.6.22 and 2.6.23, the best advice to Linux
 ! distributors (kernel packagers) as well as to regular users is: Build only
 ! the old IEEE 1394 drivers.
 
 Please activate the old stack again.

the new stack is very promising,
we will reconsider later if no eth1394 shows up,
for now that's just a minor regression.

see discussions on d-kernel,
nobody spoke up when the anncouncement about missing eth1394 was declared.

best regards

-- 
maks




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



Bug#451364: Uploader not shown properly for latest uploads

2007-11-15 Thread Kumar Appaiah
On Thu, Nov 15, 2007 at 05:43:35PM +0530, Y Giridhar Appaji Nag wrote:
 On 07/11/15 17:07 +0530, Kumar Appaiah said ...
  etckeeper, hw-detect, ikiwiki and some more stuff which came in after
  the ries downtime ended, they show (no projectb data found), rather
  than the uploader.
 
 I suppose this is like #404210

I agree. Thanks for reassigning the bug.

FTP masters, please take over! :-) The website in the above conetext
it Joey's QA page:

http://qa.debian.org/developer.php?login=joeyh

Thanks.

Kumar
-- 
Kumar Appaiah,
458, Jamuna Hostel,
Indian Institute of Technology Madras,
Chennai - 600 036


signature.asc
Description: Digital signature


Bug#363506: ITH: podbrowser

2007-11-15 Thread Jeffrey Ratcliffe
#363506: podbrowser: new upstream available
#363508: podbrowser: new upstream available

are nearly 2 years old, the latest version has been out for a year,
and the maintainer, Florian Ragwitz, isn't answering email. Can anyone
confirm whether he is MIA or not?

Regards,

Jeff



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



Bug#222839: Adobe Creative Suite 3 MAC/XP/Vista for 269, Retails @ 1799 (You save 1529)

2007-11-15 Thread Sabrina Romero
disculpa que interrumpa el topico del hilo.. por favor a que direccion
envio mi correo para que sea dirigido a la lista???

On Jan 15, 2002 8:51 AM, Merat Allen [EMAIL PROTECTED] wrote:
 crystal reports professional edition 11 - 69
 intuit quicken home and business 2008 - 39
 adobe acrobat 8.0 professional - 79
 adobe illustrator cs3 - 69
 symantec norton antivirus 10.1 for mac - 29
 adobe acrobat 3d - 59
 ibm lotus smartsuite millenium edition release 9.8 - 39
 google sketchup pro 6 for mac - 59

 visit  cheapoemsoft2. com  in Internet Explorer



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





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



Bug#451370: New upstream version 1.9 is out...

2007-11-15 Thread Marco Rodrigues
Package: powertop

Please update the package with the latest upstream version 1.9.

http://www.lesswatts.org/projects/powertop/download/powertop-1.9.tar.gz

Thanks!

-- 
Marco Rodrigues

http://Marco.Tondela.org



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



Bug#451316: [debian-mysql] Bug#451316: trying to overwrite `/usr/lib/mysql/libndbclient.so', which is also in package mysql-server-5.1

2007-11-15 Thread Norbert Tretkowski
tags 451316 +pending
thanks

Am Donnerstag, den 15.11.2007, 00:12 +0100 schrieb Olaf van der Spek:
 This doesn't look too good. ;)

Indeed. :-)

 Unpacking libmysqlclient15-dev (from 
 .../libmysqlclient15-dev_5.0.45-1_i386.deb) ...
 dpkg: error processing 
 /var/cache/apt/archives/libmysqlclient15-dev_5.0.45-1_i386.deb (--unpack):
  trying to overwrite `/usr/lib/mysql/libndbclient.so', which is also in 
 package mysql-server-5.1
 Errors were encountered while processing:
  /var/cache/apt/archives/libmysqlclient15-dev_5.0.45-1_i386.deb
 E: Sub-process /usr/bin/dpkg returned an error code (1)

This was fixed in 5.1.22rc-2 (not yet uploaded) already, which will have
a separate libndbclient package.

Norbert




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



Bug#170352: GNAT 4.1 issues a warning

2007-11-15 Thread Samuel Tardieu
fixed 170352 4.1.2-17
close 170352
thanks

GNAT 4.1 properly issues the warning.





Bug#445148: Similar Bug on i386

2007-11-15 Thread Gerard Mensoif


I had a
similar bug on i386 Debian 4.0 r1 and 2x2 raid1 disks



In /etc/fstab /boot was assigned as /dev/sdb1 which is part of my lvm volume
(/dev/sda2 + /dev/sdb1). But it should have been /dev/sda1 which was the real
/boot partition. 



So fsck tried to check sdb1 and failed.



After changing /dev/sdb1 into /dev/sda1 in /etc/fstab everything was working as
expected.





  
_ 
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

Bug#448504: Misrendered fonts

2007-11-15 Thread Felix Homann

One more note:

It is sufficent to revert the fontconfig package to fix the issue.

(The message you sent asking about it didn't get through to me. I just 
found it a minute ago on bugs.debian.org)


--Felix



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



Bug#451373: removal of ircii-pana (aka bitchx)

2007-11-15 Thread Stephan Hermann
Package: ircii-pana
Version 1:1.1-5

Dear Colleagues,

I discussed this on [EMAIL PROTECTED] and with other people from
the ubuntu community. 

I (or we) think it's time to get rid of this packages, just because it
has a lot of security flaws (which are not already determined) but with
3 CVEs hanging. 

Upstream seems to be (is) dead.

Regarding the alternatives for IRC clients on the console (irssi in
this case) and other alternatives on the X Window interface (xchat,
konversation etc.) it should be no deal to get rid of this package.

This removal request will be filed on Launchpad.net for Ubuntu, too.


Regards,

\sh



signature.asc
Description: PGP signature


Bug#451374: CVE-2007-5770 unauthorized disclosure of information

2007-11-15 Thread Nico Golde
Package: ruby1.8
Version: 1.8.5-4
Severity: important
Tags: security

Hi,
the following CVE (Common Vulnerabilities  Exposures) id was
published for ruby1.8.

CVE-2007-5770[0]:
| The (1) Net::ftptls, (2) Net::telnets, (3) Net::imap, (4) Net::pop,
| and (5) Net::smtp libraries in Ruby 1.8.5 and 1.8.6 do not verify that
| the commonName (CN) field in a server certificate matches the domain
| name in a request sent over SSL, which makes it easier for remote
| attackers to intercept SSL transmissions via a man-in-the-middle
| attack or spoofed web site, different components than CVE-2007-5162.

If you fix this vulnerability please also include the CVE id
in your changelog entry.

This is fixed in the unstable ruby1.9 package.

For further information:
[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-5770

Kind regards
Nico

-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpHEeJDWfT7W.pgp
Description: PGP signature


Bug#412408: Is invoking exit(2) in a library the right thing to do?

2007-11-15 Thread James Andrewartha
On Thu, 15 Nov 2007, Werner Koch wrote:

 On Thu, 15 Nov 2007 10:55, [EMAIL PROTECTED] said:

 The only way forward I can see from here is to refer the issue to the
 Technical Committee. If nobody objects or wants to do it themselves
 I'll write up a summary when I have some free time.

 I still do not understand the problem.  Do you say that in an early boot 
 phase /dev/random is not yet mknod-ed or mounted?  If that is the case, 
 how at all does the boot process work without /dev/null - that it is 
 universally used before exec.  I don't understand where the difference 
 is.

There is a file in the udev package, /etc/udev/links.conf, which is parsed 
by make_extra_nodes() in /etc/init.d/udev to create a minimal /dev for 
udev to bootstrap itself on. /etc/udev/links.conf contains a line:
M null  c   1 3
which creates /dev/null, but does not contain a line to create 
/dev/random. It also contains the comment:
# This file does not exist. Please do not ask the debian maintainer about it.


-- 
# TRS-80  trs80(a)ucc.gu.uwa.edu.au #/ Otherwise Bub here will do \
# UCC Wheel Member http://trs80.ucc.asn.au/ #|  what squirrels do best |
[ There's nobody getting rich writing  ]|  -- Collect and hide your   |
[  software that I know of -- Bill Gates, 1980 ]\  nuts. -- Acid Reflux #231 /




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



Bug#64141: Adobe Acrobat Professional 8 MAC/XP/Vista for 79, Retails @ 599 (You Save 520)

2007-11-15 Thread Knut Cooper
crystal reports professional edition 11 - 69
intuit quicken home and business 2008 - 39
adobe acrobat 8.0 professional - 79
adobe illustrator cs3 - 69
symantec norton antivirus 10.1 for mac - 29
adobe acrobat 3d - 59
ibm lotus smartsuite millenium edition release 9.8 - 39
google sketchup pro 6 for mac - 59

visit  cheapoemsoft1 .com  in Internet Explorer



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



Bug#451377: pinentry-curses: Please support ^U (C-u) to erase the whole passphrase

2007-11-15 Thread Cyril Brulebois
Package: pinentry-curses
Version: 0.7.3-1
Severity: wishlist

Hi.

Since it's quite usual to introduce a few typos while typing a
password/passphrase, it would be nice to be able to reset it to an
empty string as it is feasible for many other programs (be it ssh
password prompt, gdm login screen, etc.), using ^U.

TIA. Cheers,

-- 
Cyril Brulebois



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



Bug#448909: ghc6: package cannot be removed

2007-11-15 Thread Cyril Brulebois
Trevor Caira [EMAIL PROTECTED] (01/11/2007):
 ghc6 cannot be removed or purged:
 
 $ sudo dpkg -P ghc6
 (Reading database ... 109032 files and directories currently installed.)
 Removing ghc6 ...
 Segmentation fault
 dpkg: error processing ghc6 (--purge):
  subprocess pre-removal script returned error exit status 139
 Segmentation fault
 dpkg: error while cleaning up:
  subprocess post-installation script returned error exit status 139
 Errors were encountered while processing:
  ghc6

Hi.

If you could add a “set -x” line just after the shebang of those scripts
(located under /var/lib/dpkg/info), and send the output to this
bugreport, that would probably help people figure out what's wrong.

TIA. Cheers,

-- 
Cyril Brulebois


pgpWKAaRBCEo8.pgp
Description: PGP signature


Bug#448843: hol88: empty package on arm

2007-11-15 Thread Camm Maguire
Greetings!  Just a followup here -- the 'plenty of people on
debian-arm' with computing resources to offer have not replied to my
request three days ago.  I think we need to acknowledge the reality
that the resources are not there.

Take care,

Stephen Gran [EMAIL PROTECTED] writes:

 This one time, at band camp, Stephen Gran said:
  telling a Release Manager that you don't feel like doing your part is
  hardly an auspicious way to start on the path to becoming a developer.
 
 Sorry, had you confused with a different Cammeron.  The rest stands,
 however.
 -- 
  -
 |   ,''`.Stephen Gran |
 |  : :' :[EMAIL PROTECTED] |
 |  `. `'Debian user, admin, and developer |
 |`- http://www.debian.org |
  -

-- 
Camm Maguire[EMAIL PROTECTED]
==
The earth is but one country, and mankind its citizens.  --  Baha'u'llah



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



Bug#451376: ikiwiki: inline plugin: allow moving feedlinks below inlined content

2007-11-15 Thread Nis Martensen
Package: ikiwiki
Version: 2.9
Severity: wishlist
Tags: patch

Carl had just swapped the code snippets in inline.pm to get the
behaviour which can be seen in http://cairographics.org/news/.
Since this seems not appropriate for upstream, maybe something like
this? Unlike the last three patches, this one is actually from me.
Only tested with ikiwiki 2.9.
From c1fcaf33156dfa595c2b0e606323edcc7b4d314d Mon Sep 17 00:00:00 2001
From: Nis Martensen [EMAIL PROTECTED]
Date: Thu, 15 Nov 2007 13:51:40 +0100
Subject: [PATCH] Allow moving the feedlinks to below the inlined content

 * This adds a parameter feedlinksbelow to the inline plugin. Set this
   to yes to move the feedlinks below the inlined content. This
   change is done only when no postform is included, in which case the
   feedlinks will still be above.

 * Include feedlink template only if at least one of $rss or $atom is
   defined.
---
 IkiWiki/Plugin/inline.pm |   17 ++---
 1 files changed, 14 insertions(+), 3 deletions(-)

diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm
index ebeb231..dc9b5e3 100644
--- a/IkiWiki/Plugin/inline.pm
+++ b/IkiWiki/Plugin/inline.pm
@@ -114,6 +114,10 @@ sub preprocess_inline (@) { #{{{
$params{template} = $archive ? archivepage : inlinepage;
}
 
+   my $form = ($config{cgiurl}  (exists $params{rootpage} ||
+   (exists $params{postform}  
yesno($params{postform} ? 1 : 0;
+   my $feedlinksbelow = exists $params{feedlinksbelow} ? 
yesno($params{feedlinksbelow}) : 0;
+
my @list;
foreach my $page (keys %pagesources) {
next if $page eq $params{page};
@@ -173,8 +177,7 @@ sub preprocess_inline (@) { #{{{
my $atomurl=basename(atompage($params{destpage}).$feednum);
my $ret=;
 
-   if ($config{cgiurl}  (exists $params{rootpage} ||
-   (exists $params{postform}  
yesno($params{postform} {
+   if ($form) {
# Add a blog post form, with feed buttons.
my $formtemplate=template(blogpost.tmpl, blind_cache = 1);
$formtemplate-param(cgiurl = $config{cgiurl});
@@ -192,7 +195,7 @@ sub preprocess_inline (@) { #{{{
}
$ret.=$formtemplate-output;
}
-   elsif ($feeds) {
+   elsif ($feeds  ($rss || $atom)  ! $feedlinksbelow) {
# Add feed buttons.
my $linktemplate=template(feedlink.tmpl, blind_cache = 1);
$linktemplate-param(rssurl = $rssurl) if $rss;
@@ -266,6 +269,14 @@ sub preprocess_inline (@) { #{{{
}
}

+   if (! $form  $feeds  ($rss || $atom)  $feedlinksbelow) {
+   # Add feed buttons.
+   my $linktemplate=template(feedlink.tmpl, blind_cache = 1);
+   $linktemplate-param(rssurl = $rssurl) if $rss;
+   $linktemplate-param(atomurl = $atomurl) if $atom;
+   $ret.=$linktemplate-output;
+   }
+
if ($feeds) {
if (exists $params{feedshow}  @list  $params{feedshow}) {
@[EMAIL PROTECTED] - 1];
-- 
1.5.3.4.206.g58ba4



Bug#451375: openssl: [INTL:fr] French debconf templates translation update

2007-11-15 Thread Michel Grentzinger
Package: openssl
Version: N/A
Severity: wishlist
Tags: patch l10n

Hello,

Please find the attached fr.po file, which is an update of the french
translation of the debconf templates. This file has been reviewed by
the contributors of the debian-l10n-french mailing-list.

Could you put this file to the debian/po/ directory of this package,
in remplacement of the old fr.po file ?

Regards,

-- 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.22.1
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
#
#Translators, if you are not familiar with the PO format, gettext
#documentation is worth reading, especially sections dedicated to
#this format, e.g. by running:
# info -n '(gettext)PO Files'
# info -n '(gettext)Header Entry'
#Some information specific to po-debconf are available at
#/usr/share/doc/po-debconf/README-trans
# or http://www.debian.org/intl/l10n/po-debconf/README-trans#
#Developers do not need to manually edit POT or PO files.
#
msgid 
msgstr 
Project-Id-Version: openssl_0.9.8e-4\n
Report-Msgid-Bugs-To: [EMAIL PROTECTED]
POT-Creation-Date: 2007-11-03 12:37+0100\n
PO-Revision-Date: 2007-11-11 18:47+0100\n
Last-Translator: Michel Grentzinger [EMAIL PROTECTED]\n
Language-Team: French [EMAIL PROTECTED]\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n

#. Type: string
#. Description
#: ../libssl0.9.8.templates:1001
msgid Services to restart to make them use the new libraries:
msgstr Services à redémarrer afin d'utiliser les nouvelles bibliothèques :

#. Type: string
#. Description
#: ../libssl0.9.8.templates:1001
msgid 
This release of OpenSSL fixes some security issues. Services will not use 
these fixes until they are restarted. Please note that restarting the SSH 
server (sshd) should not affect any existing connections.
msgstr 
Cette version d'OpenSSL corrige certaines failles de sécurité. Les services 
n'utiliseront pas ces correctifs tant qu'ils n'auront pas été redémarrés. 
Veuillez noter que le redémarrage du serveur SSH (sshd) n'affectera aucune 
connexion existante.

#. Type: string
#. Description
#: ../libssl0.9.8.templates:1001
msgid 
Please check the list of detected services that need to be restarted and 
correct it, if needed. The services names must be identical to the 
initialization script names in /etc/init.d and separated by spaces. No 
services will be restarted if the list is empty.
msgstr 
Veuillez vérifier et corriger si nécessaire la liste des services devant 
être redémarrés. Les noms des services doivent être identiques aux noms des 
scripts présents dans /etc/init.d et doivent être séparés par des espaces. 
Si la liste est vide, aucun service ne sera redémarré.

#. Type: string
#. Description
#: ../libssl0.9.8.templates:1001
msgid 
Any service that later fails unexpectedly after this upgrade should be 
restarted. It is recommended to reboot this host to avoid any SSL-related 
trouble.
msgstr 
Si d'autres services ne fonctionnent plus correctement après cette mise à 
jour, ils devront être redémarrés. Il est fortement recommandé de redémarrer 
le système pour éviter les problèmes liés à SSL.

#. Type: error
#. Description
#: ../libssl0.9.8.templates:2001
msgid Failure restarting some services for OpenSSL upgrade
msgstr 
Impossible de redémarrer certains services lors de la mise à jour d'OpenSSL

#. Type: error
#. Description
#: ../libssl0.9.8.templates:2001
msgid 
The following services could not be restarted for the OpenSSL library 
upgrade:
msgstr 
Les services suivants ne peuvent pas être redémarrés lors de la mise à jour 
de la bibliothèque OpenSSL :

#. Type: error
#. Description
#: ../libssl0.9.8.templates:2001
msgid ${services}
msgstr ${services}

#. Type: error
#. Description
#: ../libssl0.9.8.templates:2001
msgid 
You will need to start these manually by running '/etc/init.d/service 
start'.
msgstr 
Vous devrez les redémarrer vous-même avec la commande « /etc/init.d/
service start ».


Bug#448843: smackdown/arm access

2007-11-15 Thread Camm Maguire
Greetings!  You were so helpful in the past with providing arm access
for Debian development.  Might I request an account again if you have
one available?  All other arm resources are apparently dry.

Take care,
-- 
Camm Maguire[EMAIL PROTECTED]
==
The earth is but one country, and mankind its citizens.  --  Baha'u'llah



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



Bug#451373: removal of ircii-pana (aka bitchx)

2007-11-15 Thread Nico Golde
Hi,
* Stephan Hermann [EMAIL PROTECTED] [2007-11-15 14:11]:
 Dear Colleagues,
 
 I discussed this on [EMAIL PROTECTED] and with other people from
 the ubuntu community. 
 
 I (or we) think it's time to get rid of this packages, just because it
 has a lot of security flaws (which are not already determined) but with
 3 CVEs hanging. 
 
 Upstream seems to be (is) dead.
 
 Regarding the alternatives for IRC clients on the console (irssi in
 this case) and other alternatives on the X Window interface (xchat,
 konversation etc.) it should be no deal to get rid of this package.
 
 This removal request will be filed on Launchpad.net for Ubuntu, too.

I strongly agree with this.
Bitchx (ircii-pana) is currently vulnerable to 3 security 
issues, namely CVE-2007-3360, CVE-2007-4584 and CVE-2007-5839.
In my opinion CVE-2007-4584 is most important and noone 
found a solution yet. Of course this alone is no reason to 
remove it. The whole source code is a mess, everyone who 
sits down to find a security issue in bitchx will find 
another one.

The ircii-pana maintainer also seems to be MIA, I mailed him 
some time ago without an answer yet. I also mailed the 
upstream quite some time ago, also no answer.

Additionally it has an FTBFS open (patch attached to the bug 
report) but even with the patch for this FTBFS you would run 
into another I didn't file a bug for since noone seems to 
care about ircii-pana.

Sadly still a lot of people use bitchx but considering that 
there are enough good alternatives in the archive I think 
removing it would be appropriate.

Kind regards
Nico
-- 
Nico Golde - http://www.ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.


pgpmXRLe9ixx3.pgp
Description: PGP signature


Bug#451275: kpowersave: Suspend to Disk/RAM only locks screen

2007-11-15 Thread Michael Biebl
Michal Sojka schrieb:
 On Wednesday 14 of November 2007 19:30:16 Michael Biebl wrote:
 Hi Michal,

 could you please try the hal version (0.5.10-2) from unstable?
 
 Hi,
 
 even with 0.5.10-2, everything is the same - behavior and messages on stdout. 
 
 Then I've tried to add myself to the powerdev group. And it seems this helped 
 a little bit. I guess, this should be mentioned in README.Debian. Maybe, a 
 message box with an error message is good idea.

kpowersave previously depended on powersaved (but not anymore as it uses
hal directly now), and powersaved contains the appropriate documentation
about adding the user to group powerdev.

 Now, I'm able to do Suspend to Disk successfully, but Suspend to RAM only 
 switches to the text console, writes there something about my ethernet 
 drivers and then returns back to the locked X screen.
 
 If I execute /etc/acpi/sleep.sh of s2ram -f -p -m, suspend to ram works. If 

/etc/acpi/sleep.sh is from acpi-support, s2ram from the uswsusp package,
or whas that a or instead of of?

I'd suggest to remove the acpi-support package, as we intend to only
support pm-utils in combination with hal in the future.
Please follow the instructions at
http://people.freedesktop.org/~hughsient/quirk/quirk-suspend-index.html
and send me the necessary quirks for your laptop. I will then add them
to the hal-info package and everyone can benefit.
As you said, that s2ram -f -p -m works for you, the quirks are probably
power_management.quirk.vbemode_restore
and
power_management.quirk.vbe_post in your fdi file.


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#451369: aptitude: Does not show installed package with other architecture

2007-11-15 Thread Hristo Hristov
Package: aptitude
Version: 0.4.7-1
Severity: normal

The package skype is now shown in aptitude. I think it might be
connected to the package architecture: i386, while my install is amd64.
In aptitude I don't have the section Obsolete and Locally Created
Packages. Here is dpkg output:

ico-laptop:/home/xpert# dpkg -s skype
Package: skype
Status: install ok installed
Priority: extra
Section: non-free/net
Installed-Size: 15907
Maintainer: Skype Technologies [EMAIL PROTECTED]
Architecture: i386
Version: 1.4.0.118-1
Depends: libasound2 ( 1.0.12), libc6 (= 2.3.6-6), libgcc1 (= 1:4.1.1-12), 
libqt4-core (= 4.2.1), libqt4-gui (= 4.2.1), libsigc++-2.0-0c2a (= 2.0.2), 
libstdc++6 (= 4.1.1-12), libx11-6
Conffiles:
 /etc/dbus-1/system.d/skype.conf d09fd2adb2487dbaaeb97c43f6cdc08d
Description: Skype - Take a deep breath
 .
 Skype is a little piece of software that lets you make free calls to anyone 
else on Skype,
 anywhere in the world. And even though the calls are free, they are really 
excellent quality.
 .
 * Make free Skype-to-Skype calls to anyone else, anywhere in the world.
 * Call ordinary phones and mobiles at pretty cheap rates per minute.
 * Group chat with up to 100 people or conference call with up to nine others.
 * Free to download.

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

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

Versions of packages aptitude depends on:
ii  apt [libapt-pkg-libc6.6-6 0.7.9  Advanced front-end for dpkg
ii  libc6 2.6.1-6GNU C Library: Shared libraries
ii  libgcc1   1:4.2.2-3  GCC support library
ii  libncursesw5  5.6+20071013-1 Shared libraries for terminal hand
ii  libsigc++-2.0-0c2a2.0.17-2   type-safe Signal Framework for C++
ii  libstdc++64.2.2-3The GNU Standard C++ Library v3

Versions of packages aptitude recommends:
pn  aptitude-doc-en | aptitude-do none (no description available)
pn  libparse-debianchangelog-perl none (no description available)

-- no debconf information



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



Bug#451186: [Pbuilder-maint] Bug#451186: Disable othermirror option from command line

2007-11-15 Thread Junichi Uekawa
 
 Please add a way to disable the othermirror option from the command
 line.
 

doesn't '--othermirror ' work?



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



Bug#451357: bug in gtk_tree_view_size_allocate_columns

2007-11-15 Thread Luca Bruno
reassign 451357 libgtk2.0-0
thanks

It's currently failing in gtk_tree_view_size_allocate_columns. Here a full 
backtrace of it:

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 0xb71e48d0 (LWP 31879)]
0xb7929107 in gtk_tree_view_size_allocate_columns (widget=0x844d2f8, 
width_changed=0x0) at /build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c:2214
2214/build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c: No such file or 
directory.
in /build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c
(gdb) bt
#0  0xb7929107 in gtk_tree_view_size_allocate_columns (widget=0x844d2f8, 
width_changed=0x0) at /build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c:2214
#1  0xb792f9b9 in IA__gtk_tree_view_move_column_after (tree_view=0x844d2f8, 
column=0x8456e58, base_column=0x0)
at /build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c:11528
#2  0x0806d481 in summary_set_column_order (summaryview=0x8468800) at 
summaryview.c:5254
#3  0x08075bca in summary_init (summaryview=0x8468800) at summaryview.c:757
#4  0x08063d83 in main_window_create (type=SEPARATE_NONE) at mainwindow.c:1156
#5  0x0805cd45 in main (argc=138726976, argv=Cannot access memory at address 0x4
) at main.c:287
(gdb) bt full
#0  0xb7929107 in gtk_tree_view_size_allocate_columns (widget=0x844d2f8, 
width_changed=0x0) at /build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c:2214
tree_view = value optimized out
list = (GList *) 0x0
first_column = (GList *) 0x847a340
last_column = (GList *) 0x847b840
column = (GtkTreeViewColumn *) 0x8456f58
allocation = {x = -1214931794, y = 0, width = 136820272, height = 20}
width = value optimized out
extra = value optimized out
extra_per_column = value optimized out
extra_for_last = value optimized out
full_requested_width = 1249
number_of_expand_columns = 0
column_changed = value optimized out
rtl = 0
update_expand = value optimized out
#1  0xb792f9b9 in IA__gtk_tree_view_move_column_after (tree_view=0x844d2f8, 
column=0x8456e58, base_column=0x0)
at /build/buildd/gtk+2.0-2.12.1/gtk/gtktreeview.c:11528
column_list_el = (GList *) 0x847a340
base_el = (GList *) 0x0
__PRETTY_FUNCTION__ = IA__gtk_tree_view_move_column_after
#2  0x0806d481 in summary_set_column_order (summaryview=0x8468800) at 
summaryview.c:5254
type = S_COL_NUMBER
column = (GtkTreeViewColumn *) 0x8456e58
last_column = (GtkTreeViewColumn *) 0x0
pos = 0
#3  0x08075bca in summary_init (summaryview=0x8468800) at summaryview.c:757
pixmap = (GtkWidget *) 0x84c4758
font_desc = value optimized out
#4  0x08063d83 in main_window_create (type=SEPARATE_NONE) at mainwindow.c:1156
mainwin = value optimized out
window = (GtkWidget *) 0x82a9800
vbox = (GtkWidget *) 0x82721b0
menubar = (GtkWidget *) 0x82b1800
toolbar = (GtkWidget *) 0x830a000
hbox_spc = value optimized out
vbox_body = (GtkWidget *) 0x8421c00
statusbar = (GtkWidget *) 0x842c720
progressbar = (GtkWidget *) 0x8430800
statuslabel = (GtkWidget *) 0x8430880
online_hbox = value optimized out
online_switch = (GtkWidget *) 0x842c818
online_pixmap = (GtkWidget *) 0x842fe40
offline_pixmap = (GtkWidget *) 0x842fea8
online_tip = (GtkTooltips *) 0x832eb50
ac_button = value optimized out
ac_label = (GtkWidget *) 0x8430980
tray_icon = (TrayIcon *) 0x81842bc
folderview = (FolderView *) 0x843fb20
summaryview = (SummaryView *) 0x8468800
messageview = (MessageView *) 0x848c590
colormap = value optimized out
color = {{pixel = 255, red = 0, green = 0, blue = 65535}, {pixel = 
8947848, red = 35000, green = 35000, blue = 35000}, {pixel = 14039610, 
red = 55000, green = 15000, blue = 15000}}
success = {1, 1, 1}
ifactory = (GtkItemFactory *) 0x82ad4c0
ac_menu = (GtkWidget *) 0x82ee330
menuitem = value optimized out
i = value optimized out
geometry = {min_width = 320, min_height = 200, max_width = 0, 
max_height = 0, base_width = 0, base_height = 0, width_inc = 0, height_inc = 0, 
  min_aspect = 0, max_aspect = 0, win_gravity = 0}
#5  0x0805cd45 in main (argc=138726976, argv=Cannot access memory at address 0x4
) at main.c:287
mainwin = value optimized out
folderview = value optimized out
icon = (GdkPixbuf *) 0x828d088






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



Bug#451131: Psi does not respect LSB version information

2007-11-15 Thread Sikon
While this bug is closed, I'll add a link to the upstream bug report for the 
sake of completeness: http://flyspray.psi-im.org/task/708

It has been open for quite a while, with an old patch for 0.10. I added a link 
to the forum thread with the current patch.


pgpdx2lLYNDrP.pgp
Description: PGP signature


Bug#451378: etckeeper: Has duplicate dependancies on debconf

2007-11-15 Thread Tom Parker
Package: etckeeper
Version: 0.2
Severity: minor

etckeeper has two dependancies on debconf, one of which is versioned.

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

Kernel: Linux 2.6.22-2-686 (SMP w/2 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#451374: CVE-2007-5770 unauthorized disclosure of information

2007-11-15 Thread akira yamada
Hi,

 Package: ruby1.8
 Version: 1.8.5-4
 Severity: important
 Tags: security
 
 Hi,
 the following CVE (Common Vulnerabilities  Exposures) id was
 published for ruby1.8.
 
 CVE-2007-5770[0]:
 | The (1) Net::ftptls, (2) Net::telnets, (3) Net::imap, (4) Net::pop,
 | and (5) Net::smtp libraries in Ruby 1.8.5 and 1.8.6 do not verify that
 | the commonName (CN) field in a server certificate matches the domain
 | name in a request sent over SSL, which makes it easier for remote
 | attackers to intercept SSL transmissions via a man-in-the-middle
 | attack or spoofed web site, different components than CVE-2007-5162.

I already fixed the bugs and sent new packages to Debian security team.

Note: Net::POP in ruby1.8 and earlier version of ruby1.9 does not support SSL.

-- 
ay



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



Bug#451372: gzip: Decompression performance improvement

2007-11-15 Thread Rodney Brown
Subject: gzip: Decompression performance improvement
Package: gzip
Version: 1.3.12-2ubuntu1
Severity: wishlist

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

I think Jean-loup Gailly's emphasis with gzip is for portability. As
such,
Mark Adler's performance changes in zlib-1.2.0 haven't been ported
across.

From the zlib-1.2.3 ChangeLog
Changes in 1.2.0 (9 March 2003)
- New and improved inflate code
- About 20% faster
- Does not allocate 32K window unless and until needed
...
- New and improved crc32()
- About 50% faster

OpenBSD 4.2 compress uses zlib, testing with the 120Mb openbsd source
archive
a quick  dirty compress port on Ubuntu 7.10 x86_64 gave ~25%
decompression
speed improvement. Assuming that the compress tests as compatible with
debian
ncompress, please consider using this as the gzip decompressor for
gunzip zcat et al, which may require patching other utilities to use
that
rather than gzip -d.
See patches at end.

$ uname -a
Linux kefk 2.6.22-14-generic #1 SMP Sun Oct 14 21:45.. 2007 x86_64
GNU/Linux
model name  : AMD Athlon(tm) 64 X2 Dual Core Processor 3800+

$ bc
scale=1
(5.267-3.714)*100/5.267
29.4 # = 29.4% reduction in Elapsed decompression time

(5.176-3.716)*100/5.176
28.2 # = 28.2% reduction in User decompression time


Script started on Thu 01 Nov 2007 22:12:53 EST
$ ls -l -color=never file-contents.db /media/cdrom/src.tar.gz 
-rw--- 1 rdb  rdb  543117312 2007-10-28 22:20 file-contents.db
-rw-r--r-- 1 root root 125071304 2007-08-30
14:25 /media/cdrom/src.tar.gz
$ md5sum file-contents.db !ls:$
md5sum file-contents.db /media/cdrom/src.tar.gz
b18c606aed1144233647c63578145182  file-contents.db
b2ae78abe02001311e4ed2bf5a37dd1e  /media/cdrom/src.tar.gz
$ gzip -dc !$ | md5sum
gzip -dc /media/cdrom/src.tar.gz | md5sum
0fa5d307fb57eb59e992a266a86175bb  -
$ ./compress -dc !:2-$
./compress -dc /media/cdrom/src.tar.gz | md5sum
0fa5d307fb57eb59e992a266a86175bb  -
$ for i in 1 2 3 4
 do
 time gzip -dc /media/cdrom/src.tar.gz  /dev/null
 time ./compress -dc  /media/cdrom/src.tar.gz  /dev/null
 done

real0m5.267s
user0m5.184s
sys 0m0.080s

real0m3.714s
user0m3.628s
sys 0m0.080s

real0m5.280s
user0m5.204s
sys 0m0.068s

real0m3.761s
user0m3.716s
sys 0m0.036s

real0m5.289s
user0m5.216s
sys 0m0.064s

real0m3.755s
user0m3.676s
sys 0m0.072s

real0m5.283s
user0m5.176s
sys 0m0.096s

real0m3.733s
user0m3.628s
sys 0m0.100s
$ time gzip -9 file-contents.db 

real0m51.545s
user0m38.362s
sys 0m3.016s
$ ls -l file-contents.db.gz
-rw--- 1 rdb rdb 478499480 2007-10-28 22:20 file-contents.db.gz
$ time ./compress -d !$
time ./compress -d file-contents.db.gz

real0m17.828s
user0m4.224s
sys 0m2.836s
$ md5sum file-contents.db 
b18c606aed1144233647c63578145182  file-contents.db
$ time ./compress -9 !$
time ./compress -9 file-contents.db

real0m51.604s
user0m37.830s
sys 0m3.180s
$ ls -l !$
ls -l file-contents.db.gz
-rw--- 1 rdb rdb 478854228 2007-10-28 22:20 file-contents.db.gz
$ !tim
time gzip -d file-contents.db.gz

real0m19.535s
user0m6.620s
sys 0m2.924s
$  md5sum file-contents.db 
b18c606aed1144233647c63578145182  file-contents.db


$ gzip --version
gzip 1.3.12
Copyright (C) 2007 Free Software Foundation, Inc.
Copyright (C) 1993 Jean-loup Gailly.
This is free software.  You may redistribute copies of it under the
terms of
the GNU General Public License http://www.gnu.org/licenses/gpl.html.
There is NO WARRANTY, to the extent permitted by law.

Written by Jean-loup Gailly.

$ ./compress -h

usage: compress [-123456789cdfghLlNnOqrtVv] [-b bits] [-o filename]
[-S suffix] [file ...]
$ ./compress -V
$OpenBSD: main.c,v 1.70 2007/04/04 13:29:45 millert Exp $
$OpenBSD: gzopen.c,v 1.24 2007/03/19 13:02:18 pedro Exp $
$OpenBSD: zopen.c,v 1.17 2005/08/25 17:07:56 millert Exp $
$OpenBSD: nullopen.c,v 1.3 2005/06/26 18:20:26 otto Exp $


Patches against current OpenBSD CVS compress sources
[EMAIL PROTECTED]:/cvs
cvs co src/usr.bin/compress

The BSD makefile, builds with pmake, but -Werror breaks the build and
main.c needs -D_GNU_SOURCE on linux, so I lazily compiled it and linked
by hand.

gcc -D_GNU_SOURCE -g -c main.c
gcc -D_GNU_SOURCE -g -o compress main.o zopen.o gzopen.o  nullopen.o -lz

--- tmp/compress/compress.h 2005-06-27 04:20:26.0 +1000
+++ compress/compress.h 2007-10-28 12:59:46.0 +1100
@@ -80,3 +80,7 @@ extern int null_close(void *, struct z_i
 extern int null_flush(void *, int);
 
 extern void setfile(const char *, int, struct stat *);   
+
+#ifndef EFTYPE  /* Inappropriate file type or format */
+#define EFTYPE  ENOTEMPTY
+#endif
--- tmp/compress/gzopen.c   2007-03-20 00:02:18.0 +1100
+++ compress/gzopen.c   2007-10-28 15:54:46.0 +1100
@@ -74,6 +74,16 @@ const char gz_rcsid[] =
 #include zlib.h
 #include compress.h
 
+#ifdef linux
+#include endian.h
+#if __BYTE_ORDER == __LITTLE_ENDIAN

Bug#449541: More info about pioneers crash

2007-11-15 Thread Bas Wijnen
forwarded 449541 
http://sourceforge.net/tracker/index.php?func=detailaid=1786686group_id=5095atid=105095
tags 449541 -patch
thanks

On Thu, Nov 15, 2007 at 01:06:49PM +0100, Nico Golde wrote:
 * Bas Wijnen [EMAIL PROTECTED] [2007-11-12 12:13]:
  A bug which caused a segmentation fault was fixed, however it is still
  possible to crash the server remotely, this time by triggering an
  assert.  Therefore I am reopening this bug.
 
 Do you have some more information? This alone is not really 
 helpful. Backtraces? Steps to reproduce this? Code?

I'm not really sure what triggers it.  Bug #1786686 on sourceforge has
some more info, but none of it is really certain.

 For security reasons, all text in this mail is double-rot13 encrypted.

:-)

Thanks,
Bas

-- 
I encourage people to send encrypted e-mail (see http://www.gnupg.org).
If you have problems reading my e-mail, use a better reader.
Please send the central message of e-mails as plain text
   in the message body, not as HTML and definitely not as MS Word.
Please do not use the MS Word format for attachments either.
For more information, see http://pcbcn10.phys.rug.nl/e-mail.html


signature.asc
Description: Digital signature


Bug#451374: CVE-2007-5770 unauthorized disclosure of information

2007-11-15 Thread akira yamada
Hi,

 At least the telnets code in ruby1.8 (unstable) is not 
 fixed. Do I miss anything?

The fix is in net/telnets.rb.

   137  if @options['VerifyMode'] != OpenSSL::SSL::VERIFY_NONE
   138@sock.post_connection_check(@options['Host'])
   139  end

Thank you.
-- 
ay



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



Bug#445579: libpam-krb5-migrate-heimdal: Fails with recent heimdal packages (sid)

2007-11-15 Thread Jelmer Vernooij
Am Freitag, den 09.11.2007, 12:53 -0800 schrieb Richard A Nelson:
 On Wed, 10 Oct 2007, Jelmer Vernooij wrote:
 
  Severity: grave
  Justification: renders package unusable
 
  /var/log/syslog is full of these:
  dovecot-auth: PAM unable to dlopen(/lib/security/pam_krb5_migrate.so)
  dovecot-auth: PAM [error: /lib/security/pam_krb5_migrate.so: undefined 
  symbol: kadm5_get_policy]
  dovecot-auth: PAM adding faulty module: /lib/security/pam_krb5_migrate.so
  Thanks for the bugreport - I can reproduce this. Will hopefully upload a
  fixed version in the next ocuple of weeks.
 
 Any updates on this ?  I know ftp-master is dead at the moment, but
 if you've built packages, I'd be happy to test them...  I can test
 amd64 or i386 (my ppc box is not functional at the moment)
Sorry, I haven't had time to look into this yet.

Cheers,

Jelmer



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



Bug#451379: kernel-package: logic error around calling po-debconf

2007-11-15 Thread Kenshi Muto
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Package: kernel-package
Version: 11.001
Severity: normal
Tags: l10n patch

Hi,

I'd like to translate the debconf messages of linux-image packages,
because these error messages seem very important and should be translated
for those who don't use English as their mother tongue.

I happily know kernel-package package has a power to provide it.
But unfortunately it won't work at this time by some small errors.

1. Please run debconf-gettextize against templates.in.
   (Because debconf-gettextize refuses filename extension, you have to
   rename it temporary.)
   After doing it, templates file is ready to translate.
   Master file is made as po/templates.pot also.

2. po2debconf must be called before replacing variables such as =V in
   image.mk. Translations will have variable name, not value.

3. debconf.mk seems have a logic error. This file-existence-check will
   return true if file does NOT exist.

Here is a proposed patch as debdiff style I made. Could you review this?

Thanks,
- -- 
Kenshi Muto
[EMAIL PROTECTED]
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.6 (GNU/Linux)
Comment: Processed by Mailcrypt 3.5.8+ http://mailcrypt.sourceforge.net/

iEYEARECAAYFAkc8VNQACgkQQKW+7XLQPLFC4ACfT3dxI5AcuqIc/PFhV6e3tpiX
hlYAn3zDMZSJ3iTjkI2CO/y2QZ8wOBSe
=WNHR
-END PGP SIGNATURE-


kernel-package_l10n.patch.gz
Description: Binary data


Bug#451364: Uploader not shown properly for latest uploads

2007-11-15 Thread Y Giridhar Appaji Nag
retitle 451364 projectb on merkel not updated since the ries/ftp-master breakage
severity 451364 important
reassign 451364 ftp.debian.org
thanks

On 07/11/15 17:07 +0530, Kumar Appaiah said ...
 etckeeper, hw-detect, ikiwiki and some more stuff which came in after
 the ries downtime ended, they show (no projectb data found), rather
 than the uploader.

I suppose this is like #404210

Giridhar

-- 
Y Giridhar Appaji Nag | http://www.appaji.net/


signature.asc
Description: Digital signature


Bug#412408: Is invoking exit(2) in a library the right thing to do?

2007-11-15 Thread Werner Koch
On Thu, 15 Nov 2007 13:19, [EMAIL PROTECTED] said:

 M null  c   1 3
 which creates /dev/null, but does not contain a line to create 
 /dev/random. It also contains the comment:

So the fix should be pretty easy:

M random   c  1 8
M urandom  c  1 9


Shalom-Salam,

   Werner


p.s.
Does the volume level wheel of that old box's tape deck still work? ;-)

-- 
Die Gedanken sind frei.  Auschnahme regelt ein Bundeschgesetz.




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



Bug#451377: pinentry-curses: Please support ^U (C-u) to erase the whole passphrase

2007-11-15 Thread Cyril Brulebois
Cyril Brulebois [EMAIL PROTECTED] (15/11/2007):
 Since it's quite usual to introduce a few typos while typing a
 password/passphrase, it would be nice to be able to reset it to
 an empty string as it is feasible for many other programs (be it
 ssh password prompt, gdm login screen, etc.), using ^U.

Looks actually like a term-related problem in the application I'm
using. I'll close this bug if that is confirmed.

Cheers,

-- 
Cyril Brulebois


pgpIP6bJeFAqh.pgp
Description: PGP signature


Bug#451382: i18n is NOT so easy!

2007-11-15 Thread Dr. Markus Waldeck

Package: zsh
Version: 4.3.4-26
Severity: normal

I noticed following problems with _cut:

1. The encondig ISO-8859 mangles UTF-8 encoded Umlaute (gew\M-dhlten)
2. The descriptions are not displayes correctly if ISO-8859 is used. 
   There is no problem if UTF-8 is used.

% echo $LANG
de_DE.UTF-8

% file /usr/share/zsh/4.3.4/functions/Completion/Unix/_cut
/usr/share/zsh/4.3.4/functions/Completion/Unix/_cut: ISO-8859
English text

% cut -
--bytes 
--characters
--complement-s
--delimiter 
--fields
--help  -- nur diese Bytes ausgeben 
  
-n  -- nur diese Zeichen ausgeben   
  
--only-delimited-- das Komplement der Menge der gew\M-dhlten Bytes,
Zeichen oder Felder bilden   
--output-delimiter  -- Delimiter anstelle von Tabulator als Trenner
benutzen  
--version   -- nur diese Felder und alle Zeilen OHNE
Trennzeichen ausgeben
-b  -- diese Hilfe anzeigen und beenden 
  
-c  -- (ignoriert)  
  
-- keine Zeilen ausgeben, die keinen Trenner
enthalten
-d  -- Zeichenkette als
Ausgabetrennzeichen benutzen
  
-f  -- Versionsinformation anzeigen
und beenden 
  


% file /usr/share/zsh/4.3.4/functions/Completion/Unix/_cut
/usr/share/zsh/4.3.4/functions/Completion/Unix/_cut: UTF-8 Unicode
English text

% cut -
--bytes -b  -- nur diese Bytes ausgeben
--characters-c  -- nur diese Zeichen ausgeben
--complement-- das Komplement der Menge der gewählten Bytes,
Zeichen oder Felder bilden   
--delimiter -d  -- Delimiter anstelle von Tabulator als Trenner
benutzen  
--fields-f  -- nur diese Felder und alle Zeilen OHNE
Trennzeichen ausgeben
--help  -- diese Hilfe anzeigen und beenden 
  
-n  -- (ignoriert)  
  
--only-delimited-s  -- keine Zeilen ausgeben, die keinen Trenner
enthalten
--output-delimiter  -- Zeichenkette als Ausgabetrennzeichen benutzen
  
--version   -- Versionsinformation anzeigen und beenden   

-- 
Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten 
Browser-Versionen downloaden: http://www.gmx.net/de/go/browser



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



Bug#451371: cal: Mark today even when a year is given

2007-11-15 Thread Jan-Benedict Glaw
Package: bsdutils
Version: 1:2.13-10

Hi!

`cal', calles with no arguments, will mark today in its output if
stdout isatty(). When called eg. as cal 2007, this doesn't happen.
It would be nice that in any case where today is in the output, it
would be marked, as does `ncal' of the bsdmainutils package.

Thanks a lot, JBG

-- 
  Jan-Benedict Glaw  [EMAIL PROTECTED]  +49-172-7608481
 Signature of:If it doesn't work, force it.
 the second  :   If it breaks, it needed replacing anyway.


signature.asc
Description: Digital signature


  1   2   3   >