Bug#483790: libqt4: QTreeWidgetItemIterator QT4.4 regression

2008-05-31 Thread nscott
Package: libqt4-gui
Version: 4.4.0~rc1-5
Severity: normal

Hi all,

I've seen an incorrect behaviour in my application ever since QT4.4 was
uploaded
to unstable.  I've created a minimal test case to demonstrate the problem
- I think
the root of the issue is in the QTreeWidgetItemIterator class.  The test
program
creates a QTreeWidget, sets extended selection mode, and attempts to
maintain
a bit of state about whether anything is selected at all (treeSelected
variable) and
a pointer to the treeWidgetItem if only one item is selected
(treeSingleSelection).

If you run the test program and select one item, you will see the state is
wrong
right away.  If you then select a different item, it corrects itself.  If
you unselect
the item, its incorrect again.

Hope you guys can get this fixed soon (or point out the problem in my test
case,
I'm happy to be shown its wrong!), as my app now has major problems without
this functionality.  This test case works as expected under all versions
of QT4.3
that I've used (since 4.3.1).

Thanks!

--
Nathan

16:41 [EMAIL PROTECTED] ~/treeiterators 13 ls
main.cpp  main.h  test.cpp  test.h  test.pro
16:41 [EMAIL PROTECTED] ~/treeiterators 14 cat test.pro
TEMPLATE= app
LANGUAGE= C++
HEADERS = test.h main.h
SOURCES = test.cpp main.cpp
CONFIG  += qt warn_on debug
16:41 [EMAIL PROTECTED] ~/treeiterators 15 cat test.h
#include QTreeWidget
#include QTreeWidgetItem

class TestTree : public QTreeWidget
{
Q_OBJECT
public:
TestTree(QWidget *parent = 0);
public slots:
void itemSelectionChanged();
private:
bool treeSelected;
QTreeWidgetItem *treeSingleSelection;
};
16:41 [EMAIL PROTECTED] ~/treeiterators 16 cat main.h
#include QMainWindow

class TestTree;

class MainWindow : public QMainWindow
{
Q_OBJECT
public:
MainWindow();
private:
TestTree *treeWidget;
};
16:41 [EMAIL PROTECTED] ~/treeiterators 17 cat test.cpp
#include test.h
#include QStringList

TestTree::TestTree(QWidget *parent)
: QTreeWidget(parent), treeSelected(false), treeSingleSelection(NULL)
{
setColumnCount(1);
setSelectionMode(QAbstractItemView::ExtendedSelection);
QListQTreeWidgetItem * items;
for (int i = 0; i  10; i++) {
QTreeWidgetItem *test = new QTreeWidgetItem((QTreeWidget*)0,
QStringList(QString(item: %1).arg(i)));
items.append(test);
fprintf(stderr, ctor added tree item: %p\n, test);
}
insertTopLevelItems(0, items);

connect(this, SIGNAL(itemSelectionChanged()), this,
SLOT(itemSelectionChanged()));

fprintf(stderr, ctor end: treeSingleSelection=%p treeSelected=%s\n,
treeSingleSelection, treeSelected ? true : false);
}

void TestTree::itemSelectionChanged()
{
QTreeWidgetItemIterator iterator(this,
QTreeWidgetItemIterator::Selected);

fprintf(stderr, start: treeSingleSelection=%p treeSelected=%s\n,
treeSingleSelection, treeSelected ? true : false);

treeSingleSelection = *iterator;
if ((treeSelected = (treeSingleSelection != NULL)))
if (*(++iterator) != NULL)
treeSingleSelection = NULL;  // multiple selections

fprintf(stderr, end: treeSingleSelection=%p treeSelected=%s\n,
treeSingleSelection, treeSelected ? true : false);
}
16:41 [EMAIL PROTECTED] ~/treeiterators 18 cat main.cpp
#include QApplication
#include QMainWindow
#include test.h
#include main.h

MainWindow::MainWindow() : QMainWindow()
{
treeWidget = new TestTree();
setCentralWidget(treeWidget);
setWindowTitle(tr(Tree Widget Selection Test));
resize(200, 200);
}

int main(int argc, char **argv)
{
QApplication app(argc, argv);
MainWindow mainWin;
mainWin.show();
return app.exec();
}
16:41 [EMAIL PROTECTED] ~/treeiterators 19






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



Bug#483756: insist ssh-vulnkey -a be run by the administrator upon upgrade

2008-05-31 Thread Colin Watson
On Sat, May 31, 2008 at 08:02:53AM +0800, [EMAIL PROTECTED] wrote:
 Idea: new ssh _client_ that will also block outgoing ssh contacts if bad
 keys are detected.

Yes, this is already on my to-do list.

 CW /usr/share/doc/openssh-server/README.compromised-keys.gz
 You might want to add some dates into that file, lest they read it
 months later etc.

I think the version numbers are more informative.

 I see there
 
OpenSSH keys used for user authentication must be manually regenerated,
including those which may have since been transferred to a different system
after being generated.
 
 which indeed probably covers somewhat what I'm talking about. But
 doesn't mention the danger present before one does any updating.

What to do if you are affected: 1. Install the security updates

Regards,

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#483792: Using make -j causes the package to FTBFS

2008-05-31 Thread Albin Tonnerre
Package: freetennis
Version: 0.4.8-5
Tags: patch

Hello,
when using make -j/anything 2/, freerunner FTBFS due to an issue in
debian/rules.
The attached patch fixes that.

Cheers

-- 
Albin Tonnerre [EMAIL PROTECTED]
--- rules.orig	2008-05-31 10:16:55.0 +0200
+++ rules	2008-05-31 10:21:29.0 +0200
@@ -21,9 +21,9 @@
 	dh_testdir
 	touch configure-stamp
 
-build: patch build-stamp
+build: build-stamp
 
-build-stamp: configure-stamp 
+build-stamp: patch configure-stamp 
 	dh_testdir
 	$(MAKE) freetennis.$(OCAMLBEST)
 	touch $@


signature.asc
Description: Digital signature


Bug#483793: ITP: hunspell.se -- North Sámi Hunspell dictionary

2008-05-31 Thread Petter Reinholdtsen

Package: wnpp
Severity: wishlist

* Package name: hunspell.se
  Version : 1.0beta1
* URL : http://www.divvun.no/
* License : GPL and OASIS distribution license agreement
  Description : North Sámi Hunspell dictionary

This package contains all the required files to add support for the
language North Sámi to the hunspell spell checker which is currently
used in OpenOffice.org2 and as an ispell clone.

The dictionary is part of the Divvun project to create
Sámi dictionaries.

Happy hacking,
--
Petter Reinholdtsen



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



Bug#483791: FreeSans: Pango-WARNING **: Error loading GPOS table 5503

2008-05-31 Thread Peter Moulder
Package: ttf-freefont
Version: 20080323-3
Severity: normal

I noticed that gucharmap was giving an Error loading GPOS table
message on stderr, so I googled for that error, and apparently it's when
pango believes that a font has an error.  Note that in one case in the
past, it turned out that pango needed to be modified to change its test.
You may wish to discuss this error with the harfbuzz developers.

Here's an end-user-visible way of reproducing:

  Start gedit from a terminal (so you can see its stderr).
  EditPreferencesFont  Colors
  Click the Editor Font button
  Click in the Family list
  Use down arrow until you get to FreeSans
  Note that nothing is produced on stderr until you get to the FreeSans
   item, at which point the following is produced on stderr:

  (gedit:27436): Pango-WARNING **: Error loading GPOS table 5503

  (You could then try exiting gedit, starting it again, and this time
  selecting the font family after FreeSans in the list, and use
  down-arrow key to iterate over all remaining fonts, and note that no
  other font family produces an error.  At least, no other font family
  installed on my system produces an error.)


A more useful way of reproducing is with the test program included in
pango:

  apt-get install libpango1.0-dev
  apt-get source pango1.0
  # I usually use apt-get source -d with separate dpkg-source -x -sn
  # step so that I can extract it as a non-root user.
  cd pango1.0-1.20.2/pango/opentype
  gcc -g -Wall `pkg-config --cflags pangoft2` -o harfbuzz-dump \
   harfbuzz-dump-main.c harfbuzz-dump.c harfbuzz-gpos.c harfbuzz-gsub.c \
   harfbuzz-buffer.c harfbuzz-gdef.c harfbuzz-open.c harfbuzz-stream.c \
   harfbuzz-impl.c `pkg-config --libs pangoft2`
  # `make harfbuzz-dump' after configuring with `--disable-shared' and
  # `CFLAGS=-g' would probably work too.

  # At this point one might like to check whether FreeSans.ttf is the only
  # font on the system that gives an error:
  for i in $(find /usr/share/fonts/truetype -type f); do 
./harfbuzz-dump $i 21 | grep -i 'error'  printf '%s\n\n' $i ;done

  # Or just go straight to FreeSans.ttf:
  ./harfbuzz-dump /usr/share/fonts/truetype/freefont/FreeSans.ttf /dev/null

After some search from within gdb, I get to the following point where
the error in question is produced:

  Load_Anchor (an=0x807b540, stream=0x8070398) at harfbuzz-gpos.c:566
  (gdb) n
  (gdb) 
  (gdb) 
  (gdb) p an-PosFormat
  $27 = 56
  (gdb) bt
  #0  Load_Anchor (an=0x807b540, stream=0x8070398) at harfbuzz-gpos.c:573
  #1  0x08051724 in Load_Mark2Array (m2a=0x80757a0, num_classes=2, 
  stream=0x8070398) at harfbuzz-gpos.c:2803
  #2  0x08051c94 in Load_MarkMarkPos (st=0x8075778, stream=0x8070398)
  at harfbuzz-gpos.c:2927
  #3  0x08058559 in _HB_GPOS_Load_SubTable (st=0x8075778, stream=0x8070398, 
  lookup_type=6) at harfbuzz-gpos.c:5878
  #4  0x08066112 in Load_SubTable (st=0x8075778, stream=0x8070398, 
  table_type=HB_Type_GPOS, lookup_type=6) at harfbuzz-open.c:458
  #5  0x080664de in Load_Lookup (l=0x807b3b0, stream=0x8070398, 
  type=HB_Type_GPOS) at harfbuzz-open.c:536
  #6  0x080667d9 in _HB_OPEN_Load_LookupList (ll=0x8074ba4, stream=0x8070398, 
  type=HB_Type_GPOS) at harfbuzz-open.c:618
  #7  0x0804bb98 in HB_Load_GPOS_Table (font=0x80703c8, retptr=0xbf8ef070, 
  gdef=0x0) at harfbuzz-gpos.c:141
  #8  0x08048a1a in main (argc=2, argv=0xbf8ef124) at harfbuzz-dump-main.c:211
  (gdb) 

(To get to this point, do b Load_Mark2Array, and do `n' (next) until the
second iteration of the `for n' loop, i.e. where n = 1.)

pjrm.


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

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

Versions of packages ttf-freefont depends on:
ii  defoma   0.11.10-0.2 Debian Font Manager -- automatic f

Versions of packages ttf-freefont recommends:
ii  x-ttcidfont-conf  27 TrueType and CID fonts configurati

-- no debconf information



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



Bug#483731: auctex: postinst failed with emacs-snapshot

2008-05-31 Thread Davide G. M. Salvetti
Hi,

please attach the
/usr/share/emacs-snapshot/site-lisp/auctex/CompilationLog file.

-- 
Thanks, Davide



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



Bug#483794: O: xwelltris -- 3D Tetris like popular game similar to Welltris

2008-05-31 Thread Daniel Baumann
Package: wnpp

[ CC'ed to [EMAIL PROTECTED] in case the games team wants to
adopt it. ]

Hi,

I'm orphaning xwelltris as I don't play it anymore.

This package is in good shape and is trivial, makes it
ideal for any New Maintainer. However, note that upstream for this
package is inactive. In case a non-DD maintainer wants
to take this package over, I'll offer to sponsor it.

If you want to be the new maintainer, please see
http://www.debian.org/devel/wnpp/index.html#howto-o for detailed
instructions how to adopt a package properly.

Some information about this package:

Package: xwelltris
Priority: optional
Section: games
Installed-Size: 468
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Architecture: i386
Version: 1.0.1-10
Depends: libc6 (= 2.7-1), libgcc1 (= 1:4.2.1), libsdl-image1.2 (=
1.2.5), libsdl1.2debian (= 1.2.10-1), libstdc++6 (= 4.2.1)
Filename: pool/main/x/xwelltris/xwelltris_1.0.1-10_i386.deb
Size: 299142
MD5sum: ecdc2346076bec86573b73a903d69b03
SHA1: d252c1c82b3e5a3e13fd168f1cce8d413159ee7f
SHA256: 99b150c708ada2034946de905e1d12519ebb682d0593e909484421a4c2d0696f
Description: 3D Tetris like popular game similar to Welltris
 The idea of this game was by the Russian programmer Pogitnov. It has
 the same gameplay concept as Tetris.
 .
 Imagine that you are looking into a glass from the top. You see four
 walls and the bottom. The flat 2D figures falling down from the walls
 one by one. You can move these figures from one wall to another or
 rotate the figure. If the figure leave the wall it moves on the bottom
 while another figure is pushed. You need to form full rows and/or
columns on the bottom. When you form such row it disappear and you
receive additional empty space on the bottom and scores :).
Homepage: http://xnc.dubna.su/xwelltris/
Tag: game::tetris, interface::3d, role::program, uitoolkit::sdl,
use::gameplaying, x11::application

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



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



Bug#382360: also got failed to remove messages on latest sid

2008-05-31 Thread Brice Goglin
[EMAIL PROTECTED] wrote:
 All I know is
 # apt-get dselect-upgrade 
 The following packages will be upgraded:
   deborphan initramfs-tools libilmbase6 libxcomposite1 ucf x11-common
   x11-utils xbase-clients xorg xserver-xorg xserver-xorg-input-mouse xutils
 ...
 rmdir: failed to remove `/etc/X11/rstart/commands/x11r6/': Directory not empty
 rmdir: failed to remove `/etc/X11/rstart/commands/': Directory not empty
 rmdir: failed to remove `/etc/X11/rstart/contexts/': Directory not empty
 rmdir: failed to remove `/etc/X11/rstart/': Directory not empty
 # find /etc/X11/rstart
 /etc/X11/rstart
 /etc/X11/rstart/commands
 /etc/X11/rstart/commands/ListContexts
 /etc/X11/rstart/commands/ListGenericCommands
 /etc/X11/rstart/commands/@List
 /etc/X11/rstart/commands/x11r6
 /etc/X11/rstart/commands/x11r6/LoadMonitor
 /etc/X11/rstart/commands/x11r6/Terminal
 /etc/X11/rstart/commands/x11r6/@List
 /etc/X11/rstart/config
 /etc/X11/rstart/contexts
 /etc/X11/rstart/contexts/default
 /etc/X11/rstart/contexts/x11r6
 /etc/X11/rstart/contexts/@List
 # rm -r /etc/X11/rstart
 # grep ' status installed .*x' /var/log/dpkg.log|uniq|tail
 2008-05-31 12:38:20 status installed x11-common 1:7.3+10
 2008-05-31 12:38:21 status installed x11-common 1:7.3+10
 2008-05-31 12:38:44 status installed x11-common 1:7.3+11
 2008-05-31 12:39:01 status installed xserver-xorg-input-mouse 1:1.3.0-1
 2008-05-31 12:39:04 status installed xserver-xorg 1:7.3+11
 2008-05-31 12:39:05 status installed x11-utils 7.3+2
 2008-05-31 12:39:07 status installed libxcomposite1 1:0.4.0-3
 2008-05-31 12:39:09 status installed xbase-clients 1:7.3+11
 2008-05-31 12:39:10 status installed xorg 1:7.3+11
 2008-05-31 12:39:10 status installed xutils 1:7.3+11
   


It works fine here. I get rmdir failure messages when upgrading xutils
from sarge to testing, and the rstart files are still there. Then
upgrading xutils to unstable removes all rstart file without any error
message.

Unless you provide all details from your upgrade path (i.e. full log,
versions before upgrade, ...), we can't do anything.

Brice




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



Bug#458059: [Taco Hoekwater] Re: [NTG-pdftex] Bug#458059:

2008-05-31 Thread Stijn van Drongelen
Even if makebm is an internal macro, renaming the in-document
definition to, say, \differentname doesn't change a thing. I still get
the same grouping level error, with:

\differentname #1$-\bm {#1}
$
[EMAIL PROTECTED] ... {\hbox {#1$\displaystyle [EMAIL PROTECTED] #2$
  }}{\hbox {#1$\textstyle \m...

[EMAIL PROTECTED]@@p ...fmmode [EMAIL PROTECTED] #1{#2}{#2}{#2}{#2}
  \else \bfseries #1#2\fi
[EMAIL PROTECTED] ...ound \z@ [EMAIL PROTECTED]@@p \boldmath {{a}}
  }
\differentname #1$-\bm {#1}
$


On Sat, May 31, 2008 at 11:06 AM, Frank Küster [EMAIL PROTECTED] wrote:


 --
 Frank Küster
 Debian Developer (teTeX/TeXLive)


 -- Forwarded message --
 From: Taco Hoekwater [EMAIL PROTECTED]
 To: Frank Küster [EMAIL PROTECTED]
 Date: Wed, 28 May 2008 23:37:49 +0200
 Subject: Re: [NTG-pdftex] Bug#458059:
 Frank Küster wrote:

 Hm, can you give me a short hint

 - what tells you that it's a macro error, and

 That snippet was the actual error context so you have to read it
 upside down, and there is a bit of information missing. The
 general overview is:

 \makebm expands into something containing
 \bm that expands into something containing
 [EMAIL PROTECTED] that expands into something containing
 [EMAIL PROTECTED]@@p   that expands into something containing
 [EMAIL PROTECTED] that expands into something containing
 \makebm ... (full circle)

 - where the error probably is?

 It seems \makebm is an internal macro of the bm package, and the
 document-level definition of \makebm to redefines that macro.

 Perhaps this is the result of a recent update of the bm package.
 At least that would explain why the documentation may have been
 run with errors in the past.

 There is a simple solution: use a different macro name for the
 in-document definition.

 Best wishes,
 Taco






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



Bug#460119: Clearly not banning correctly

2008-05-31 Thread Lee Braiden
Hi Yaroslav,

I'm no longer running fail2ban on that machine, but the logs I sent and the 
IPTables dump (along with other config files) did clearly show that fail2ban's 
idea of what was already banned was out of sync with IPTables (which had 
nothing banned).  That's all I can offer at the moment.


Regards,

-- 
Lee Braiden




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



Bug#480047: please run noip2 -D pid

2008-05-31 Thread Avi Rozen
I was unable to confirm. My provider cuts my link too from time to
time, but noip2 survives this.

The message you get (daemon ended) is normal in case the daemon is
killed with a signal (such as when stopping it manually).

Are you using a script to reconnect to your provider? can you please
check that you're not (inadvertently) stopping the noip2 service as a
side effect?

In any case please run the following (as root) after the daemon is
started:

noip2 -D pid

(get the pid from the log) - this may provide some more info.

Cheers,
Avi.




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



Bug#483795: nslcd: Useless syslog messages when reconnecting

2008-05-31 Thread Petter Reinholdtsen

Package: libnss-ldapd
Version: 0.6.2

Every 5 minutes on my clients, nslcd report that an LDAP search failed
and that it had to reconnect.  This is not really very interesting as
it is perfectly normal for the LDAP server to disconnect unused
connections, and for nslcd to reconnect when this happen.

I am actually using the svn version backported to Etch here, but
believe it will behave the same way on Lenny.

Here is an example:

  May 31 12:45:01 test.local nslcd[11354]: [304a67] ldap_result() failed: Can't 
contact LDAP server
  May 31 12:45:01 test.local nslcd[11354]: [304a67] connected to LDAP server 
ldap://adserver.local/
  May 31 12:50:01 test.local nslcd[11354]: [b180d8] ldap_result() failed: Can't 
contact LDAP server
  May 31 12:50:01 test.local nslcd[11354]: [b180d8] connected to LDAP server 
ldap://adserver.local/
  May 31 12:55:02 test.local nslcd[11354]: [6b69ed] ldap_result() failed: Can't 
contact LDAP server
  May 31 12:55:02 test.local nslcd[11354]: [6b69ed] connected to LDAP server 
ldap://adserver.local/

Can this syslogging be changed to only report when the reconnect fail,
and not when it succeed like it does here?  It fill up the syslog and
make it harder to see real issues in the log.

Happy hacking,
-- 
Petter Reinholdtsen



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



Bug#475130: Some more info..

2008-05-31 Thread Marcin Owsiany
On Mon, May 05, 2008 at 11:56:51AM -0700, Mike Markley wrote:
 If this header is actually being eaten by the smfi_chgheader() then it
 is a bug in the Postfix Milter implementation.

Could be. I guess that one way to verify this theory is to write a very
basic milter which would just try to reproduce this bug. If that one
also causes such behavior, then it would be the ideal thing to submit to
postfix maintainers as a bug report.

Unfortunately I know very little about milter APIs.

-- 
Marcin Owsiany [EMAIL PROTECTED] http://marcin.owsiany.pl/
GnuPG: 1024D/60F41216  FE67 DA2D 0ACA FC5E 3F75  D6F6 3A0D 8AA0 60F4 1216



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



Bug#483796: texmaker: watch file

2008-05-31 Thread Riccardo Stagni
Package: texmaker
Version: 1.7.1-1
Severity: minor
Tags: patch

I've read on debian-science about your recent hijacking of texmaker, and
I gave an eye to the pts page:
seems dehs is informing about a new 1.7.1. version

Adding a dot before tar.bz2 addresses the issue.
---
-http://www.xm1math.net/texmaker/download.html texmaker-(\d\.\d\..*)tar\.bz2
+http://www.xm1math.net/texmaker/download.html texmaker-(\d\.\d\..*)\.tar\.bz2
---

ciao
Riccardo



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



Bug#483797: mime type for Microsoft ASF files

2008-05-31 Thread Harald Dunkel

Package: file
Version: 4.24-2

Seems that file -i returns application/octet-stream instead
of video/x-ms-asf on the appropriate file. Without -i it
returns Microsoft ASF, as expected.


Regards

Harri




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



Bug#483248: ITA: znc

2008-05-31 Thread Patrick Matthäi
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hello Joey,

as stated in IRC I adopt your package, thanks for your previous work!

Are in your git master any recent changes which are not uploaded? If yes
could I just get the diff against 0.054-4?
I don't need your while git repository, I'm using subversion :)

- --
Mit freundlichem Gruß / With kind regards,
Patrick Matthäi

E-Mail: [EMAIL PROTECTED]

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

iD8DBQFIQPux2XA5inpabMcRAsFqAJ46TVqnQSPln3w0OarwuVV73oynSACePQ0/
xA3qC3seMDjOG4YK9zVI9R0=
=C6w+
-END PGP SIGNATURE-



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



Bug#443645: let unicode_start honor CONSOLE_FONT from /etc/kbd/config

2008-05-31 Thread Michael Schutte
On Fri, May 30, 2008 at 11:57:41PM +0300, Anton Zinoviev wrote:
 On Fri, May 30, 2008 at 09:31:21PM +0200, Michael Schutte wrote:
  I’ve prepared another upload for kbd
 
 I uploaded it.

Thanks a lot.

  I also thought about #443645 for a while, but then definitely decided
  against doing anything on it for Lenny. 
 
 Regarding this my opinion is that by default unicode_start should not 
 change the font on the console.

It definitely shouldn’t.  I just noticed that console-tools does the
right thing: unicode_start only changes font if one is given on the
command line.  This implies that keymap.sh’s result depends on whether
kbd or console-tools is installed.  Coming to think about it, this alone
should warrant a Debian-specific divergence from upstream.

 Nobody says that UTF-8 has to be accompanied with a large font.  For
 most users even the default VGA font can be used with no problems in
 UTF-8 mode.  On the other hand the users who need non-cp437 character
 set support know that they need to load non-standard font and it is
 not the job of unicode_start to do this. It is not the job of
 unicode_start to look in /etc/kbd/config, its only job should be to
 set up the console in utf-8 mode.

Agreed.

 I suppose this needs to be discussed with upstream rathar than doing
 the changes only for Debian.

I’ll contact him today, but I doubt that he wants to break the behaviour
some people will expect.

-- 
Michael Schutte [EMAIL PROTECTED]


signature.asc
Description: Digital signature


Bug#483800: [banshee] please update to 0.99.3

2008-05-31 Thread Matthias Krüger
Package: banshee
Version: 0.13.2+dfsg-10
Severity: wishlist

--- Please enter the report below this line. ---
Please update banshee to the new version 0.99.3 .

Thank you for your fine work!Matthias Krüger
--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.24-1-amd64

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

--- Package information. ---
Depends (Version) | Installed
=-+-==
gconf2  (= 2.10.1-2) | 2.22.0-1
gstreamer0.10-gnomevfs| 0.10.19-2
gstreamer0.10-plugins-base| 0.10.19-2
gstreamer0.10-plugins-good(= 0.10.6) | 0.10.8-2
libboo2.0-cil (= 0.8.1.2865) | 0.8.1.2865-2
libc6  (= 2.7-1) | 2.7-10
libdbus-glib-1-2(= 0.74) | 0.74-4
libgconf2.0-cil   (= 2.20.0) | 2.20.1-1
libglade2.0-cil   (= 2.12.0) | 2.12.1-1
libglib2.0-0  (= 2.16.0) | 2.16.3-2
libglib2.0-cil(= 2.12.0) | 2.12.1-1
libgnome-keyring1.0-cil (= 1.0.0~svn.r87622) |
1.0.0~svn.r87622-1
libgnome-vfs2.0-cil   (= 2.20.0) | 2.20.1-1
libgnome2.0-cil   (= 2.20.0) | 2.20.1-1
libgnomevfs2-0 (= 1:2.17.90) | 1:2.22.0-2
libgstreamer-plugins-base0.10-0  (= 0.10.12) | 0.10.19-2
libgstreamer0.10-0   (= 0.10.14) | 0.10.19-3
libgtk2.0-0   (= 2.12.0) | 2.12.9-3
libgtk2.0-cil (= 2.12.0) | 2.12.1-1
libkarma0 | 0.0.6-3.1
libmono-cairo2.0-cil (= 1.0) | 1.9.1+dfsg-1
libmono-corlib2.0-cil(= 1.9) | 1.9.1+dfsg-1
libmono-security2.0-cil  (= 1.0) | 1.9.1+dfsg-1
libmono-sharpzip2.84-cil (= 1.0) | 1.9.1+dfsg-1
libmono-sqlite2.0-cil(= 1.0) | 1.9.1+dfsg-1
libmono-system-data2.0-cil   (= 1.0) | 1.9.1+dfsg-1
libmono-system-web2.0-cil(= 1.0) | 1.9.1+dfsg-1
libmono-system2.0-cil(= 1.9) | 1.9.1+dfsg-1
libmono-zeroconf1.0-cil(= 0.7.3) | 0.7.6-1
libmono2.0-cil   (= 1.9) | 1.9.1+dfsg-1
libmtp7   | 0.2.6.1-2
libmusicbrainz4c2a (= 2.1.5) | 2.1.5-2
libnautilus-burn4 | 2.20.0-1
libndesk-dbus-glib1.0-cil  (= 0.4.0) | 0.4.1-1
libndesk-dbus1.0-cil   (= 0.6.0) | 0.6.0-1
libnjb5   | 2.2.5-4.2
libnotify0.4-cil (= 0.4.0~r2998) | 0.4.0~r2998-1
libtaglib2.0-cil (= 2.0.3.0) | 2.0.3.0-2
libx11-6  | 2:1.0.3-7
mono-runtime (= 1.1.8.1) | 1.9.1+dfsg-1




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



Bug#483801: acpid upgrade makes computer crash

2008-05-31 Thread Louis-Maurice De Sousa
Package: acpid
Version: 1.0.6-9

Hello,

when I upgraded acpid to 1.0.6-9 the computer crashed and reboot. 
My computer only boots on recovery mode now. Aptitude is unusable and when I 
try a 
dpkg --configure -a to finish installation process, the computer reboots.

I'm using Debian Lenny with 2.6.22 kernel. Other kernels do not boot 
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=482964).

Here is a lspci -vvv
http://www.pi-et-ro.net/lspci.txt
***
00:00.0 Host bridge: VIA Technologies, Inc. VT8374 P4X400 Host Controller/AGP 
Bridge (rev 82)
Subsystem: ASUSTeK Computer Inc. Device 8105
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort+ SERR- PERR+ INTx-
Latency: 8
Region 0: Memory at e000 (32-bit, prefetchable) [size=64M]
Capabilities: [80] AGP version 3.5
Status: RQ=32 Iso- ArqSz=0 Cal=2 SBA+ ITACoh- GART64- HTrans- 
64bit- FW- AGP3+ Rate=x4,x8
Command: RQ=1 ArqSz=0 Cal=0 SBA- AGP- GART64- 64bit- FW- 
Rate=none
Capabilities: [c0] Power Management version 2
Flags: PMEClk- DSI- D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-
,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: agpgart-via
Kernel modules: via-agp

00:01.0 PCI bridge: VIA Technologies, Inc. VT8237 PCI Bridge
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B- ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 0
Bus: primary=00, secondary=01, subordinate=01, sec-latency=0
I/O behind bridge: d000-dfff
Memory behind bridge: df10-df6f
Prefetchable memory behind bridge: bf00-deff
Secondary status: 66MHz+ FastB2B- ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort+ SERR- PERR-
BridgeCtl: Parity+ SERR+ NoISA- VGA+ MAbort- Reset- FastB2B-
PriDiscTmr- SecDiscTmr- DiscTmrStat- DiscTmrSERREn-
Capabilities: [80] Power Management version 2
Flags: PMEClk- DSI- D1+ D2- AuxCurrent=0mA PME(D0-,D1-,D2-
,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel modules: shpchp

00:0a.0 SCSI storage controller: Adaptec AHA-7850 (rev 03)
Subsystem: Adaptec Device 7850
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 64 (1000ns min, 1000ns max), Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 18
Region 0: I/O ports at ee00 [disabled] [size=256]
Region 1: Memory at dfc0 (32-bit, non-prefetchable) [size=4K]
Capabilities: [dc] Power Management version 1
Flags: PMEClk- DSI+ D1- D2- AuxCurrent=0mA PME(D0-,D1-,D2-
,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-
Kernel driver in use: aic7xxx
Kernel modules: aic7xxx

00:0c.0 FireWire (IEEE 1394): NEC Corporation uPD72874 IEEE1394 OHCI 1.1 3-port 
PHY-Link Ctrlr (rev 01) (prog-if 10)
Subsystem: NEC Corporation uPD72874 IEEE1394 OHCI 1.1 3-port PHY-Link 
Ctrlr
Control: I/O- Mem+ BusMaster+ SpecCycle- MemWINV+ VGASnoop- ParErr- 
Stepping- SERR+ FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 64 (5000ns min, 11000ns max), Cache Line Size: 64 bytes
Interrupt: pin A routed to IRQ 17
Region 0: Memory at dfd0 (32-bit, non-prefetchable) [size=4K]
Capabilities: [60] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA 
PME(D0+,D1+,D2+,D3hot+,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME+
Kernel driver in use: firewire_ohci
Kernel modules: firewire-ohci

00:0f.0 RAID bus controller: VIA Technologies, Inc. VIA VT6420 SATA RAID 
Controller 
(rev 80)
Subsystem: ASUSTeK Computer Inc. Device 80ed
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz- UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 64
Interrupt: pin B routed to IRQ 16
Region 0: I/O ports at efe0 [size=8]
Region 1: I/O ports at efac [size=4]
Region 2: I/O ports at efa0 [size=8]
Region 3: I/O ports at efa8 [size=4]
Region 4: I/O ports at ef90 [size=16]
Region 5: I/O ports at e800 [size=256]
Capabilities: [c0] Power Management version 2
Flags: PMEClk- DSI- 

Bug#479027: Homepage no longer exists

2008-05-31 Thread Salvatore Bonaccorso
Package: xmms2tray
Followup-For: Bug #479027


The homepage seems to be now on
http://zombiehq.jollybox.de/zhq/projects/xmms2tray

Best regards,
Salvatore

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

Kernel: Linux 2.6.25.4-1-t42 (PREEMPT)
Locale: LANG=C, LC_CTYPE=de_CH.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages xmms2tray depends on:
ii  python  2.5.2-1  An interactive high-level object-o
ii  python-gtk2 2.12.1-4 Python bindings for the GTK+ widge
ii  python-imaging  1.1.6-2  Python Imaging Library
ii  python-notify   0.1.1-2+b1   Python bindings for libnotify
ii  python-support  0.8.1automated rebuilding support for P
ii  python-xmmsclient   0.4DrKosmos-4+b1 XMMS2 - Python bindings

xmms2tray recommends no packages.

-- no debconf information



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



Bug#483799: gnome-control-center: fails to start gnome settings deamon

2008-05-31 Thread Mario Frasca
Package: gnome-control-center
Version: 1:2.20.3-3
Severity: important

Ciao Marco,
a few days ago I rebooted the system and I got the error screen:


There was an error starting the GNOME Settings Daemon.

Some things, such as themes, sounds, or background settings may not
work correctly.

The Settings Daemon restarted too many times.

GNOME will still try to restart the Settings Daemon next time you log in.


I do more or less daily a safe-upgrade but I usually stay logged in
for days, so I don't know how many days or weeks ago this error was
introduced.

grazie,
ciao,
Mario

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

Kernel: Linux 2.6.25-2-powerpc
Locale: LANG=en_DK.UTF-8, LC_CTYPE=en_DK.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages gnome-control-center depends on:
ii  capplets-data 1:2.20.3-3 configuration applets for GNOME 2 
ii  desktop-file-util 0.15-1 Utilities for .desktop files
ii  gnome-desktop-dat 2.22.2-1   Common files for GNOME 2 desktop a
ii  gnome-icon-theme  2.22.0-1   GNOME Desktop icon theme
ii  gnome-menus   2.22.2-1   an implementation of the freedeskt
ii  libart-2.0-2  2.3.20-2   Library of functions for 2D graphi
ii  libatk1.0-0   1.22.0-1   The ATK accessibility toolkit
ii  libbonobo2-0  2.22.0-1   Bonobo CORBA interfaces library
ii  libbonoboui2-02.22.0-1   The Bonobo UI library
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libcairo2 1.6.4-3The Cairo 2D vector graphics libra
ii  libdbus-1-3   1.2.1-2simple interprocess messaging syst
ii  libdbus-glib-1-2  0.74-4 simple interprocess messaging syst
ii  libebook1.2-9 2.22.2-1   Client library for evolution addre
ii  libesd-alsa0 [lib 0.2.36-3   Enlightened Sound Daemon (ALSA) - 
ii  libfontconfig12.5.93-1   generic font configuration library
ii  libfreetype6  2.3.5-1FreeType 2 font engine, shared lib
ii  libgconf2-4   2.22.0-1   GNOME configuration database syste
ii  libglade2-0   1:2.6.2-1  library to load .glade files at ru
ii  libglib2.0-0  2.16.3-2   The GLib library of C routines
ii  libgnome-desktop- 2.22.2-1   Utility library for loading .deskt
ii  libgnome-menu22.22.2-1   an implementation of the freedeskt
ii  libgnome-window-s 1:2.20.3-3 Utility library for getting window
ii  libgnome2-0   2.20.1.1-1 The GNOME 2 library - runtime file
ii  libgnomecanvas2-0 2.20.1.1-1 A powerful object-oriented display
ii  libgnomekbd1  2.20.0-3   GNOME library to manage keyboard c
ii  libgnomekbdui12.20.0-3   User interface library for libgnom
ii  libgnomeui-0  2.20.1.1-1 The GNOME 2 libraries (User Interf
ii  libgnomevfs2-01:2.22.0-3 GNOME Virtual File System (runtime
ii  libgstreamer-plug 0.10.19-2  GStreamer libraries from the base
ii  libgstreamer0.10- 0.10.19-3  Core GStreamer libraries and eleme
ii  libgtk2.0-0   2.12.9-4   The GTK+ graphical user interface 
ii  libhal1   0.5.11-1   Hardware Abstraction Layer - share
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libmetacity0  1:2.22.0-1 library of lightweight GTK2 based 
ii  libnautilus-exten 2.20.0-4   libraries for nautilus components 
ii  liborbit2 1:2.14.12-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpanel-applet2- 2.20.3-4   library for GNOME Panel applets
ii  libpango1.0-0 1.20.2-2   Layout and rendering of internatio
ii  libpng12-01.2.27-1   PNG library - runtime
ii  libpopt0  1.10-3 lib for parsing cmdline parameters
ii  libslab0  0.9.8.svn.20070430-1.1 beautification app library file
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libstartup-notifi 0.9-1  library for program launch feedbac
ii  libx11-6  2:1.1.1-1ubuntu3   X11 client-side library
ii  libxcursor1   1:1.1.9-1  X cursor management library
ii  libxft2   2.1.12-2   FreeType-based font drawing librar
ii  libxi62:1.1.3-1  X11 Input extension library
ii  libxklavier12 3.5-1  X Keyboard Extension high-level AP
ii  libxml2   2.6.32.dfsg-2  GNOME XML library
ii  libxrandr22:1.2.2-2

Bug#483798: doc/certtool.cfg missing

2008-05-31 Thread martin f krafft
Package: gnutls-bin
Version: 2.2.5-1
Severity: minor

From the certtool manpage:

  --template
Use a template file to read input. See the  doc/certtool.cfg  in
the distribution, for an example.

Unfortunately, this file is not included in the package.

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

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

Versions of packages gnutls-bin depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libgcrypt11   1.4.1-1LGPL Crypto library - runtime libr
ii  libgnutls26   2.2.5-1the GNU TLS library - runtime libr
ii  libgpg-error0 1.4-2  library for common error values an
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libtasn1-31.4-1  Manage ASN.1 structures (runtime)

gnutls-bin recommends no packages.

-- no debconf information


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


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


Bug#483665: sgt-puzzles: Please facilitate for i18n

2008-05-31 Thread Helge Kreutzmann
Hello Ben,
On Sat, May 31, 2008 at 12:04:17AM +0100, Ben Hutchings wrote:
 I asked Simon Tatham about adding support for i18n some time ago, but he
 wasn't very enthusiastic about it, partly because it runs on many
 platforms with different i18n APIs.  This doesn't apply to the

Should I ask on debian-18n about this? Other projects, i.e.
OpenOffice, Firefox, KDE, are multiplatform as well, and at least the
first two I've used in German on W*, MacOSX and of course Unix, so
this is a solvable (read: already solved) issue, even in different
toolkits.

 documentation, of course.  Is there anything special I would have to do
 to support translation of documents, other than installing the
 translated documents in appropriate directories?

The workflow essentially is (during build):

Upstream english documents - po4a-magick - translated document (build 
phase)

And then after installing the english docs you also install the German
ones, including registration if that should be necessary (I haven't
looked, but simply the same as for the english ones).

If the upstream document is changed, then some parts of the translated
document become fuzzy and will be not be shown translated. It would
be kind, if you could check for this once in a while (its very easy,
like grep fuzzy *.po and then ask the translators to update their
file. Simliarly if upstream adds new content, a simple call will show
you that (or you'll see the information during build in the logs) and
then it would be kind if you call for updates. The entire process is
very well suported by tools in Debian, and I can give you all the
details if you want, or simply look at po-debconf (which is more
generic than the name suggests) and po4a. The po4a maintainer is
currently looking into supporting halibut.

Greetings

Helge


-- 
  Dr. Helge Kreutzmann [EMAIL PROTECTED]
   Dipl.-Phys.   http://www.helgefjell.de/debian.php
64bit GNU powered gpg signed mail preferred
   Help keep free software libre: http://www.ffii.de/


signature.asc
Description: Digital signature


Bug#483803: kdelibs4c2a: kio_trash hangs in D state after attempting to delete on read-only filesystems

2008-05-31 Thread supaplex
Package: kdelibs4c2a
Version: 4:3.5.5a.dfsg.1-8etch1
Severity: normal

[EMAIL PROTECTED]:~$ ps auxww | grep D
USER   PID %CPU %MEMVSZ   RSS TTY  STAT START   TIME COMMAND
supaplex 28496  0.0  0.2  81268 10472 ?DMay29   0:00
kio_trash [kdeinit] trash
/tmp/ksocket-supaplex/klauncherrwFYTa.slave-socket
/tmp/ksocket-supaplex/konquerorYZY7Eb.slave-socket
supaplex 28505  0.0  0.2  81268 10472 ?DMay29   0:00
kio_trash [kdeinit] trash
/tmp/ksocket-supaplex/klauncherrwFYTa.slave-socket
/tmp/ksocket-supaplex/konqueror7XUojc.slave-socket
supaplex 28577  0.0  0.2  81268 10476 ?DMay29   0:00
kio_trash [kdeinit] trash
/tmp/ksocket-supaplex/klauncherrwFYTa.slave-socket
/tmp/ksocket-supaplex/konquerorTJm2gb.slave-socket
supaplex  3828  0.0  0.0   4392   732 pts/2R+   01:41   0:00 grep D

[EMAIL PROTECTED]:~$ echo head /proc/\{$(pidof kio_trash|tr ' ' ',')\}/wchan |
sh ; echo
== /proc/28577/wchan ==
_stext
== /proc/28505/wchan ==
_stext
== /proc/28496/wchan ==
_stext

yes, my one off the top of my head one-liners are crazy sometimes. :)

This all started while using knoqureor to preview images on an SD card I
inadvertenly set read-only (the tab slipped to r/o just before it was
inserted into the card reader).  Assuming it was suppose to be r/w, I
tried deleting a few blurry photos.  the trash dialog with progress bar
was stuck at 0% and didn't move.  I eventually unmounted the filesystem
with umount -l because I didn't know this was holding it open. (I'm sure
I tried lsof to see, but this was a few days ago...)

Hope that helps, and thanks.


Scott Edwards
-- Daxal Communications - http://daxal.com/?from=debian+bts 


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

Versions of packages kdelibs4c2a depends on:
ii  kde 4:3.5.5a.dfsg.1-8etch1   core shared data for all KDE appli
ii  lib 2.2.41-1 Access control list shared library
ii  lib 2.3.17-1 Library of functions for 2D graphi
ii  lib 1.5.5-1  aRts sound system core components
ii  lib 1.0.13-2 ALSA library
ii  lib 0.60.4-4 GNU Aspell spell-checker runtime l
ii  lib 2.4.32-1 Extended attribute shared library
ii  lib 1.8-4The Network Audio System (NAS). (s
ii  lib 0.6.16-3etch1Avahi client library
ii  lib 0.6.16-3etch1Avahi common library
ii  lib 0.6.16-3etch1Avahi Qt3 integration library
ii  lib 1.0.3-6  high-quality block-sorting file co
ii  lib 2.3.6.ds1-13etch5GNU C Library: Shared libraries
ii  lib 1.39+1.40-WIP-2006.11.14+dfsg-2etch1 common error description library
ii  lib 1.2.7-4etch3 Common UNIX Printing System(tm) - 
ii  lib 2.7.0-12 Client library to control the FAM 
ii  lib 2.4.2-1.2generic font configuration library
ii  lib 2.2.1-5+etch2FreeType 2 font engine, shared lib
ii  lib 1:4.1.1-21   GCC support library
ii  lib 1.4.4-3  the GNU TLS library - runtime libr
ii  lib 1:1.0.1-2X11 Inter-Client Exchange library
ii  lib 0.6.5-1  GNU libidn library, implementation
ii  lib 1.701.0-2The JasPer JPEG-2000 runtime libra
ii  lib 6b-13The Independent JPEG Group's JPEG 
ii  lib 1.4.4-7etch5 MIT Kerberos runtime libraries
ii  lib 5.0.3-2  Main interpreter library for the L
ii  lib 5.0.3-2  Extension library for the Lua 5.0 
ii  lib 1.2.2-4.3runtime files for the OpenEXR imag
ii  lib 6.7+7.4-3Perl 5 Compatible Regular Expressi
ii  lib 1.2.15~beta5-1   PNG library - runtime
ii  lib 3:3.3.7-4etch1   Qt GUI Library (Threaded runtime v
ii  lib 1:1.0.1-3X11 Session Management library
ii  lib 4.1.1-21 The GNU Standard C++ Library v3
ii  lib 3.8.2-7  Tag Image File Format (TIFF) libra
ii  lib 2:1.0.3-7X11 client-side library
ii  lib 1.1.7-4  X cursor management library
ii  lib 1:1.0.1-2X11 miscellaneous extension librar
ii  lib 2.1.8.2-8FreeType-based font drawing librar
ii  lib 1:1.0.1-4X11 Input extension library
ii  lib 1:1.0.1-4.1 

Bug#483756: insist ssh-vulnkey -a be run by the administrator upon upgrade

2008-05-31 Thread Colin Watson
On Sat, May 31, 2008 at 08:18:46AM +0800, [EMAIL PROTECTED] wrote:
 Another question arises: what are all the remote machines where I have
 established a ~/.ssh/ directory (that needs to be cleaned up to plug
 the hole there if root there is not up to date)?

You have to figure this out for yourself. Sorry.

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#483756: insist ssh-vulnkey -a be run by the administrator upon upgrade

2008-05-31 Thread Colin Watson
On Fri, May 30, 2008 at 05:56:19PM -0700, Suresh Ramasubramanian wrote:
 Colin Watson [31/05/08 00:31 +0100]:
 Sure, but that's a problem with *their* machine (i.e. it allows access
 from unauthorised persons) rather than a problem with your machine. The
 sshd blacklisting will prevent this problem on their side - you might
 send them an updated key but you won't be able to log in with it.
 
 Not allowed access as much as found a compromised key in ~/.ssh and warned
 him.

Having a compromised key in ~/.ssh/authorized_keys (if that's what it
was) is effectively equivalent to allowing access to that account from
the entire Internet.

Cheers,

-- 
Colin Watson   [EMAIL PROTECTED]



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



Bug#483425: use dlocate technology

2008-05-31 Thread Stefan Fritsch
On Friday 30 May 2008, [EMAIL PROTECTED] wrote:
 All I know is locate and dlocate do not make my CPU meter peg 100%
 and also start spitting out results right away. Very noticible on
 my old slow Duron CPU, with 256 MB memory.

Sure. But apt-file serves a different purpose than dlocate and needs 
to search more data (about 10 times more in your case, I guess). You 
cannot compare them in this way.



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



Bug#483802: swapd: wrong description regarding swap file/partition differences

2008-05-31 Thread Wolf Wiegand
Package: swapd
Version: 0.2-10.1
Severity: normal

Hi,

the package's long description says at the end:

/
|
| [...] since swap partitions provide much faster access than swap files.
|
\

This is not true anymore with kernel version 2.6, the sentence mentioned
above should thus be removed from the description (or changed to say
that this used to be the case, but is not anymore).


Cheers,

Wolf

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

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



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



Bug#482718: xosview: CPU load bar reset each time CPU frequency changes

2008-05-31 Thread Kartik Mistry
On Saturday 24 May 2008 9:26:04 pm Raphael Manfredi wrote:
 Package: xosview

 I use CPU frequency scaling and whenver the CPU speed changes, xosview
 resets the sliding bar showing the CPU load and restarts displaying on
 the right.  This is annoying, especially when the CPU speed changes
 frequently.

Hi Raphael,

Thanks for reporting bug. I will discuss with upstream and let report know 
about progress.

-- 
 Cheers,
 Kartik Mistry | GPG: 0xD1028C8D | IRC: kart_
 Blogs: {ftbfs,kartikm}.wordpress.com

What's the MATTER Sid? ... Is your BEVERAGE unsatisfactory?




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



Bug#483756: insist ssh-vulnkey -a be run by the administrator upon upgrade

2008-05-31 Thread Suresh Ramasubramanian
 Having a compromised key in ~/.ssh/authorized_keys (if that's what it
 was) is effectively equivalent to allowing access to that account from
 the entire Internet.

Obviously. Which is why I found it. Removed it. Told him to reupload it.
He seems to have uploaded a new compromised key. Told him about it.

srs




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



Bug#410457: mount ntfs via uuid fails

2008-05-31 Thread Martin Ketzer
It is working correctly with the current version 2.13.1.1-1.



signature.asc
Description: OpenPGP digital signature


Bug#483804: Wish for git-gc cron job

2008-05-31 Thread Trent W. Buck
Package: etckeeper
Version: 0.15
Severity: wishlist

After running etckeeper for a few months, I noticed that /etc/.git
constituted four fifths of my /etc tree.  Running git-gc significantly
improved this ratio.  I wish etckeeper did this automatically via a
cron.monthly or cron.weekly script.

[EMAIL PROTECTED] sudo du -sh . .git
45M .
40M .git
[EMAIL PROTECTED] sudo git gc
Counting objects: 5722, done.
Compressing objects: 100% (4928/4928), done.
Writing objects: 100% (5722/5722), done.
Total 5722 (delta 2681), reused 0 (delta 0)
[EMAIL PROTECTED] sudo du -sh . .git
13M .
7.4M.git

Pieter de Bie on Freenode's #git also suggested this.
I have no idea if it's a good idea to automate.

[EMAIL PROTECTED] sudo git repack -adf --window=200
Counting objects: 5722, done.
Compressing objects: 100% (4928/4928), done.
Writing objects: 100% (5722/5722), done.
Total 5722 (delta 2795), reused 0 (delta 0)
[EMAIL PROTECTED] sudo du -sh . .git
13M .
6.9M.git

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

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

Versions of packages etckeeper depends on:
ii  debconf [debconf-2.0]1.5.22  Debian configuration management sy
ii  git-core 1:1.5.5.1-1 fast, scalable, distributed revisi
ii  mercurial1.0-4   Scalable distributed version contr

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#483806: myspell-nb: Typo in /usr/share/myspell/infos/ooo/myspell-nb ?

2008-05-31 Thread Petter Reinholdtsen

Package: myspell-nb
Version: 2.0.10-1
Severity: important

I just discovered something strange in the generated
/usr/share/myspell/dicts/dictionary.lst after the myspell-nb package
was installed.  It included these two lines:q

  DICT nb NO nb
  HYPH nn NO hyph_nb_NO

Note how the HYPH entry uses 'nn', not 'nb'.  The source of this
information is /usr/share/myspell/infos/ooo/myspell-nb.  Should it be
changed to use 'nb' instead?  Setting severity to important because I
believe this make the nb hyphenation support fail completely.
Checking the myspell-nn package, I see a similar error there:

  DICT nn NO nn
  HYPH nb NO hyph_nn_NO

I guess both need to be fixed.

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

Kernel: Linux 2.6.24-1-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 myspell-nb depends on:
ii  dictionaries-common [openoffi 0.98.6 Common utilities for spelling dict

myspell-nb recommends no packages.

-- no debconf information



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



Bug#482964: boot freezes with kernel 2.6.24-1-686

2008-05-31 Thread Louis-Maurice De Sousa
 On Mon, 26 May 2008, Louis-Maurice De Sousa wrote:
 
[...]
 
 no fun that via box, please report upstream in bugzilla.kernel.org and
 let us know the bug number.
 

Here it is :
Bug 10839 has been added to the database
Email sent to: [EMAIL PROTECTED], acpi_power-
[EMAIL PROTECTED], [EMAIL PROTECTED], bugme-
[EMAIL PROTECTED], [EMAIL PROTECTED]
Excluding: [EMAIL PROTECTED]
If you wish to tweak the kinds of mail Kernel Bug Tracker sends you, you 
can change your preferences. 

--
Cordialement.

Louis-Maurice De Sousa




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



Bug#482875: geany: Save Icon is grey

2008-05-31 Thread Enrico Tröger
On Sun, 25 May 2008 19:00:28 +0200, Stefan Arnold
[EMAIL PROTECTED] wrote:

Hi,

 If you change from an usaved file to an saved on, try to close but
 then click cancel, the unsaved file comes in the foreground. Now the
 text in the Tab is red but the Save Icon is grey and you can't save
 with it.

I tried different ways of closing files while having an unsaved
file open and I can't reproduce this. The Save button (in the toolbar)
always gets active as expected.
Could you provide a detailed step by step way to reproduce this?


Regards,
Enrico

-- 
Get my GPG key from http://www.uvena.de/pub.asc


pgpzlh3bJ09ze.pgp
Description: PGP signature


Bug#483654: [Buildd-tools-devel] Bug#483654: Bug#483654: Wrong reference in sbuild-setup(7)

2008-05-31 Thread Roger Leigh
tags 483654 + fixed-upstream pending
thanks

Roger Leigh [EMAIL PROTECTED] writes:

 Marc Fargas [EMAIL PROTECTED] writes:

 There's a wrong reference in sbuild documentation, in the manpage
 for sbuild-setup it reads:

 BUILDD.CHROOT
 This script, located in...

 According to sbuild-createchroot(8), it says:

 sbuild-createchroot  was  previously known as buildd.chroot.

 So, sbuild-setup(7) should reference sbuild-createchroot?

Now fixed in upstream git:

http://git.debian.org/?p=buildd-tools/sbuild.git;a=commitdiff;h=db3534a5d362622f411e299e5a52aa14f3e7e3f4

http://git.debian.org/?p=buildd-tools/sbuild.git;a=commitdiff;h=cf5d3f2ef4e8bd8c40f297e4d141b87f53ad9339


Regards,
Roger

-- 
  .''`.  Roger Leigh
 : :' :  Debian GNU/Linux http://people.debian.org/~rleigh/
 `. `'   Printing on GNU/Linux?   http://gutenprint.sourceforge.net/
   `-GPG Public Key: 0x25BFB848   Please GPG sign your mail.


pgpLKuirwwPWk.pgp
Description: PGP signature


Bug#483731: auctex: postinst failed with emacs-snapshot

2008-05-31 Thread Frank Küster
severity 483731 normal
thanks

Sebastian P. Luque [EMAIL PROTECTED] wrote:

 Package: auctex
 Version: 11.83-7.1
 Severity: serious

 Installation failed with the following message, after apt-get install
 auctex:

 --cut here---start-
 A package failed to install.  Trying to recover:
 Setting up auctex (11.83-7.1) ...
 install/auctex: Setting up for emacs-snapshot 

emacs-snapshot is not in Debian, so this cannot be a serious bug
IMHO. Whether Davide wants to try to continue supporting emacs-snapshot
(which he might not even have in his sources list) or just drop the
respective Depends, that he must decide.

Regards, Frank
-- 
Frank Küster
Debian Developer (teTeX/TeXLive)



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



Bug#475852: synaptics touchpad not working

2008-05-31 Thread David Paleino
On Fri, 30 May 2008 19:03:17 +0800, Ying-Chun Liu (PaulLiu) wrote:

 Dear David,
 
 Could you please try using i8042.noloop=1 to see if it works?

Nothing, still not working.

$ cat /proc/cmdline 
BOOT_IMAGE=(hd0,1)/boot/vmlinuz-2.6.25-2-686 root=/dev/sda1 ro bootkbd=it 
vga=771 irqpoll i8042.noloop=1
$ grep -i synaptics /var/log/Xorg.0.log
(**) |--Input Device Synaptics Touchpad
(II) LoadModule: synaptics
(II) Loading /usr/lib/xorg/modules/input//synaptics_drv.so
(II) Module synaptics: vendor=X.Org Foundation
(II) Synaptics touchpad driver version 0.14.6 (1406)
Synaptics Touchpad no synaptics event device found
Query no Synaptics: 6003C8
(EE) Synaptics Touchpad no synaptics touchpad detected and no repeater device
(EE) Synaptics Touchpad Unable to query/initialize Synaptics hardware.
(EE) PreInit failed for input device Synaptics Touchpad
(II) UnloadModule: synaptics
$

Kindly,
David

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


signature.asc
Description: PGP signature


Bug#483666: allow selecting outgoing network interface for accessing mirrors

2008-05-31 Thread Mark Hindley
package apt-cacher
tags 483666 pending
thanks

On Fri, May 30, 2008 at 12:19:11PM +0100, Stanislaw Sawa wrote:
 Package: apt-cacher
 Version: 1.6.3

 Currently apt-cacher doesn't have option for selecting outgoing interface 
 for accessing mirrors. This option is useful in case of multi-interface 
 machines with complex routing policies where default route is not always 
 correct one

Thanks for this. I have queued it for the next upload.

Mark



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



Bug#482286: qt4-designer: segfault when loading Kde extensions

2008-05-31 Thread Fathi Boudra
Hi,

I couldn't reproduce the bug under i386/amd64.

Mark or Zhengpeng, could you try to reproduce with KDE4 packages (4.0.80) from 
experimental please ?

cheers,

Fathi



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



Bug#310984: Patch available

2008-05-31 Thread Guido Günther
There's a patch at:
 https://bugs.launchpad.net/debian/+source/s3switch/+bug/41355
that fixes the problem.
 -- Guido



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



Bug#406335: Pinging the ITP and updating news

2008-05-31 Thread Robin Cornelius

Ok so this is still very much being worked on so pinging the ITP to keep
alive.

Firstly on my test repository apt.byteme.org.uk we have stable release
version 1.19.1 and release candidate 1.20.8 available and i have been
tracking releases pretty closely.

Due to Linden Research Inc's current trademark policy the viewer has
been renamed from slviewer or secondlife-client etc to Open Metaverse
viewer This could be changed again in the future as we are not in
debian yet anyway. I am actively talking to some Lindens about how to
proceed with the use of their trademarks for this kind of packaging of
their viewer and we are finding examples already in debian of this kind
of situation. Its just taking a while as it has to go through their
legal team. But untill this situation is resolved I must obey the
trademark policy to protect myself and Debian.

The VCS for the source code is on the move too. It is being/has been
moved to a git repository under the pkg-games on Alioth so if you want
to get the latest sources for the debian package it can be found at

http://git.debian.org/git/pkg-games/slviewer.git
http://git.debian.org/git/pkg-games/slviewer-artwork.git

but note these git repository's build Open Metaverse viewer or
omvviewer packages due to the rename.

Also i am putting some details on the debian wiki at

http://wiki.debian.org/Games/OpenMetaverseViewer

Regards

Robin



signature.asc
Description: OpenPGP digital signature


Bug#483763: [Pkg-alsa-devel] Bug#483763: [alsa-driver] [l10n] swedish

2008-05-31 Thread Elimar Riesebieter
tags 483763 pending
thanks


On Fri, 30 May 2008 the mental interface of
Martin Bagge told:

 Package: alsa-driver
 Severity: wishlist
 Tags: l10n patch
 
 --- Please enter the report below this line. ---
 
 swedish strings

Thanks
Elimar

-- 
  You cannot propel yourself forward by
  patting yourself on the back.



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



Bug#483807: gphoto2: new version 2.4.1 upstream

2008-05-31 Thread Eamonn Hamilton
Package: gphoto2
Version: 2.4.0-1
Severity: wishlist


Hi,

I noiticed there is a new version upstream which includes support for the ixus 
860is. Any chance of packaging it?

Many thanks,
Eamonn


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

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

Versions of packages gphoto2 depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libcdk5   5.0.20060507-1 C-based curses widget library
ii  libexif12 0.6.16-2.1 library to parse EXIF files
ii  libgphoto2-2  2.4.0-9gphoto2 digital camera library
ii  libgphoto2-port0  2.4.0-9gphoto2 digital camera port librar
ii  libjpeg62 6b-14  The Independent JPEG Group's JPEG 
ii  libncurses5   5.6+20080503-1 Shared libraries for terminal hand
ii  libpopt0  1.10-3 lib for parsing cmdline parameters
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libusb-0.1-4  2:0.1.12-11userspace USB programming library

gphoto2 recommends no packages.

-- no debconf information



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



Bug#458059: [Taco Hoekwater] Re: [NTG-pdftex] Bug#458059:

2008-05-31 Thread Frank Küster
---BeginMessage---
Frank Küster wrote:
 
 Hm, can you give me a short hint 
 
 - what tells you that it's a macro error, and

That snippet was the actual error context so you have to read it
upside down, and there is a bit of information missing. The
general overview is:

\makebm expands into something containing
\bm that expands into something containing
[EMAIL PROTECTED] that expands into something containing
[EMAIL PROTECTED]@@p   that expands into something containing
[EMAIL PROTECTED] that expands into something containing
\makebm ... (full circle)

 - where the error probably is?

It seems \makebm is an internal macro of the bm package, and the
document-level definition of \makebm to redefines that macro.

Perhaps this is the result of a recent update of the bm package.
At least that would explain why the documentation may have been
run with errors in the past.

There is a simple solution: use a different macro name for the
in-document definition.

Best wishes,
Taco

---End Message---


-- 
Frank Küster
Debian Developer (teTeX/TeXLive)


Bug#461123: tilda 0.9.5 was released, please package it

2008-05-31 Thread Laurent Bigonville
retitle 461123 tilda 0.9.6 was released, please package it
thanks


tilda 0.9.6 has been release, please consider packaging it.


Laurent Bigonville



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



Bug#481985: libqt4-gui: mouseDoubleClickEvent not working

2008-05-31 Thread Fathi Boudra
tags 481985 + moreinfo unreproducible

thanks

Hi,

I'm able to reproduce your bug using Qt 4.4.0-2 packages.
To try to reproduce, I use diagram scene demo in qt4-demos package.
This demo uses class and method needed (See Text item).

cheers,

Fathi



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



Bug#483805: acpid 1.0.6 only works in debug mode, same configuration for 1.0.4 works perfectly

2008-05-31 Thread Darkhorse Winterwolf
Package: acpid
Version: 1.0.6-9
Severity: important


Hello,

I've just upgraded from acpid 1.0.4-5 to 1.0.6-9 on my media centre
computer, and have run into a bit of a problem. I use acpid to restart
GDM on pressing the power button (a bit odd, I know, but this actually
makes a lot of sense for me on this particular computer). I have only a
single file in /etc/acpi/events - a file called power, which I have
attached for your perusal.

I've had a look through the documentation, and as far as I can tell
there is no reason why this should not work with 1.0.6. I've removed the
/etc/acpi/events/powerbtn file and re-started acpid, as I did for the
1.0.4-5 package.

However, when I pressed the power button, nothing happened. The action
specified in /etc/acpi/events/power didn't get executed, and nothing got
printed to the syslog. Here's the relevant section from the syslog from
re-starting acpid to pressing the power button (it's actually been
pressed several times, just to check that a few events weren't somehow
going missing), as the acpid manpage implies that useful information may
be printed here


May 31 09:37:25 crush acpid: exiting 
May 31 09:37:27 crush acpid: client connected from 14190[0:0] 
May 31 09:37:30 crush acpid: client connected from 14190[0:0] 


However, if I now stop acpid using the init script, then run
/usr/sbin/acpid -d, everything works fine. The action is executed, and
the following is observed on the console:


crush:/etc/acpi/events$ sudo /usr/sbin/acpid -d
acpid: starting up
acpid: parsing conf file /etc/acpi/events/power
acpid: 1 rule loaded
acpid: client connected from 14190[0:0]
acpid: 1 client rule loaded
acpid: client connected from 14190[0:0]
acpid: 1 client rule loaded
acpid: received event button/power PWRF 0080 003d
acpid: rule from 14190[0:0] matched
acpid: notifying client 14190[0:0]
acpid: rule from 14190[0:0] matched
acpid: notifying client 14190[0:0]
acpid: rule from /etc/acpi/events/power matched
acpid: executing action /etc/init.d/gdm restart
BEGIN HANDLER MESSAGES
Stopping GNOME Display Manager: gdm.
Starting GNOME Display Manager: gdm.
END HANDLER MESSAGES
acpid: action exited with status 0
acpid: 3 total rules matched
acpid: completed event button/power PWRF 0080 003d
acpid: client connected from 15592[0:0]
acpid: 1 client rule loaded
acpid: client connected from 15592[0:0]
acpid: 1 client rule loaded


However, clearly this is not really a way to be running acpid regularly.
Also, switching back to acpid 1.0.4-5. This is the option I've taken for
the moment.

If you'd like any further information from me, just let me know and
I'll update the bug report as soon as I can.

All the best,
-Dave.

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

Kernel: Linux 2.6.22.3
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages acpid depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  lsb-base  3.2-11 Linux Standard Base 3.2 init scrip
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

acpid recommends no packages.

-- no debconf information
event=button/power.*
action=/etc/init.d/gdm restart


Bug#483588: Further information and patch

2008-05-31 Thread Peter Hicks

Hello

On further investigation, I've found that debian/patches/48-CVE-2008-2292.patch 
is bogus and is the cause of the problem.


This patch differs from the SVN revision documented on SourceForge[1].  I 
backed out the Debian-supplied patch and replace it with NetSNMP's patch[2] 
from Subversion, recompiled and fixed the bug.


Could you consider revising the patch?


Peter

[1] 
http://sourceforge.net/tracker/index.php?func=detailaid=1826174group_id=12694atid=112694


[2] 
http://net-snmp.svn.sourceforge.net/viewvc/net-snmp/trunk/net-snmp/perl/SNMP/SNMP.xs?r1=16765r2=16770view=patchpathrev=16770


--
Peter Hicks | e: [EMAIL PROTECTED] | g: 0xE7C839F4 | w: www.poggs.com

  A: Because it destroys the flow of the conversation
  Q: Why is top-posting bad?



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



Bug#483808: O: wav2cdr -- Converts wav files into CD-ROM audio file format

2008-05-31 Thread Daniel Baumann
Package: wnpp

Hi,

I'm orphaning xwelltris as I don't use it anymore.

This package is in good shape and is trivial, makes it
ideal for any New Maintainer. However, note that upstream for this
package is dead. In case a non-DD maintainer wants
to take this package over, I'll offer to sponsor it.

If you want to be the new maintainer, please see
http://www.debian.org/devel/wnpp/index.html#howto-o for detailed
instructions how to adopt a package properly.

Some information about this package:

Package: wav2cdr
Priority: extra
Section: sound
Installed-Size: 112
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Architecture: i386
Version: 2.3.3-8
Depends: libc6 (= 2.7-1)
Filename: pool/main/w/wav2cdr/wav2cdr_2.3.3-8_i386.deb
Size: 33206
MD5sum: c99abcf9a6cd66fb18ae433862038332
SHA1: dc0266afb37b53abc8196ef45aa500645ea5ccea
SHA256: 41a45d149a39d6691fa42eb773134ea9ebcdfcb91a2d9288a203365e1c8007e6
Description: Converts wav files into CD-ROM audio file format
 This program converts wav sound files into a format suitable for
CD-ROMs, and
 can perform some editing functions like cutting or volume change. It is
rather
 rudimentary, the wav file must have the same sampling parameters as CD
audio.
 Runs both on big and little endian machines.
Tag: interface::commandline, role::program, scope::utility,
use::converting, works-with::archive, works-with::audio,
works-with-format::iso9660, works-with-format::wav

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




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



Bug#483809: Build-Dependency incorrect in xorg-server source package

2008-05-31 Thread Nicolas Couchoud
Source: xorg-server
Version: 2:1.4.1~git20080517-1

  The last testing version of xorg-server will not compile with stable's
mesa-common-dev (6.5.1-0.6). It does compile with testing's mesa-common-dev
(7.0.3-1). The problem seems to be with /usr/include/GL/gl.h .
  A solution is that a proper minimum version be added for the
Build-Dependency of xorg-server on libgl1-mesa-dev (because libgl1-mesa-dev
and mesa-common-dev must be the same version according to libgl1-mesa-dev's
Dependencies).

  Regards.



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



Bug#481515: [Pkg-alsa-devel] Bug#481515: alsa-utils: 'alsactl restore' fails on ICE1724 soundcards

2008-05-31 Thread Elimar Riesebieter
On Thu, 29 May 2008 the mental interface of
Martin Roll told:

 This is my asound.state
 
 Martin


control.1 {
comment.access read
comment.type BYTES
comment.count 52
iface CARD
name 'ICE1724 EEPROM'
value 
'1153153b13020b80fcc35f005f00'
}


control.56 {
comment.access read
comment.type BYTES
comment.count 10
iface PCM
device 1
name 'IEC958 Q-subcode Capture Default'
value ''
}

These are both useless, aren't they? Do you have a customized
asoundrc flowing around? You could try the following:

# alsactl -P restore

or delete the above mentioned controls and do

# alsactl restore

See alsactl(1)

Elimar

-- 
  Learned men are the cisterns of knowledge, 
  not the fountainheads ;-)


signature.asc
Description: Digital signature


Bug#483811: [fam] fam segfaults

2008-05-31 Thread Jürgen Richtsfeld
Package: fam
Version: 2.7.0-13.2
Severity: normal

--- Please enter the report below this line. ---
no idea why, but i found this in my /var/log/messages:

kernel: famd[3044]: segfault at e08 rip 414f45 rsp 7fffedd01c80 error 4

sorry, I don't have anything more.

jürgen


--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.24-5-1

Debian Release: lenny/sid
  500 unstablewww.debian-multimedia.org 
  500 unstablemi.mirror.garr.it 
  500 unstableftp.tuke.sk 
  500 unstableftp.de.debian.org 
  500 unstableftp.at.debian.org 
  500 unstabledebian.inode.at 
1 experimentaldebian.inode.at 

--- Package information. ---
Depends(Version) | Installed
-+-
libc6 (= 2.7-1) | 2.7-11
libgcc1  (= 1:4.1.1-21) | 1:4.3.0-5
libstdc++6 (= 4.1.1-21) | 4.3.0-5
lsb-base  (= 3.0-6) | 3.2-12
portmap  | 6.0-5.1
update-inetd | 4.30




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



Bug#483810: O: osdclock -- Clock using the XOSD library

2008-05-31 Thread Daniel Baumann
Package: wnpp

Hi,

I'm orphaning osdclock as I don't use it anymore.

This package is in good shape and is trivial, makes it
ideal for any New Maintainer. However, note that upstream for this
package is dead. In case a non-DD maintainer wants
to take this package over, I'll offer to sponsor it.

If you want to be the new maintainer, please see
http://www.debian.org/devel/wnpp/index.html#howto-o for detailed
instructions how to adopt a package properly.

Some information about this package:

Package: osdclock
Priority: optional
Section: utils
Installed-Size: 60
Maintainer: Daniel Baumann [EMAIL PROTECTED]
Architecture: i386
Version: 0.5-20
Depends: libc6 (= 2.7-1), libx11-6, libxext6, libxinerama1, libxosd2
(= 2.2.13), libxt6
Filename: pool/main/o/osdclock/osdclock_0.5-20_i386.deb
Size: 7962
MD5sum: f9f200f1894a1311d8b5a8a9d021e0c3
SHA1: 63fe4865ac5e7024467c873ee058dee209ee0a3c
SHA256: 51121874031208ec10520390df6b080d452853ea7a164342351e6fa53d5940d5
Description: Clock using the XOSD library
 A clock which uses the X On-Screen Display library to display itself.
 .
 It supports a strftime(3)-style format parameter and can be configured
 to show up only at specific intervals.
Tag: interface::x11, role::program, scope::utility, use::timekeeping,
x11::application

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





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



Bug#468322:

2008-05-31 Thread Martin Guy
That may be because it is doing more these days.
In particular, there is an option in /etc/gkrellmd.conf that disables
a particularly slow and little-used feature:

# The Internet monitor defaults to reading tcp connections once per second.
# However, for Linux SMP kernels where reading /proc/net/tcp causes high
# cpu usage, the inet-interval may be set to 1-20 seconds to slow down
# /proc/net/tcp reads.  Or set it to 0 to totally disable the Inet monitor.
inet-interval 0



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



Bug#477069: grub-common: grub-probe Cannot find a GRUB drive for /dev/loop/0

2008-05-31 Thread Robert Millan
On Sun, Apr 20, 2008 at 02:59:14PM -0400, Federico Grau wrote:
 Package: grub-common
 Version: 1.96+20080413-1
 Severity: normal
 
 I am using loop-aes (via loop-aes-modules-2.6.24-1-686 and
 loop-aes-utils) for an encrypted root filesystem.
 
 However, I can not update to a new kernel (automatically) because grub
 cannot figure out which drive my encrypted partition is on.
 
 donfede
 
 ##
 #
 # relevant command output
 #
 bwing:~# df -h
 FilesystemSize  Used Avail Use% Mounted on
 /dev/sda2  73G  2.6G   67G   4% /
 tmpfs 494M 0  494M   0% /lib/init/rw
 udev   10M  108K  9.9M   2% /dev
 tmpfs 494M 0  494M   0% /dev/shm
 bwing:~# mount
 /dev/sda2 on / type ext3
 (rw,loop=/dev/loop0,gpgkey=/boot/kf_root_bwing_2008-04-20.gpg,encryption=AES256)

If your /boot is encrypted, how is GRUB supposed to access it?

-- 
Robert Millan

GPLv2 I know my rights; I want my phone call!
DRM What good is a phone call… if you are unable to speak?
(as seen on /.)



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



Bug#483812: Stable's xserver-xorg cannot be installed with testing's xserver-xorg-core due to Dependencies problems

2008-05-31 Thread Nicolas Couchoud
Package: xserver-xorg
Version: 1:7.1.0-19

  Stable's xserver-xorg depends on
xserver-xorg-video-all | xserver-xorg-video-1.0 and
xserver-xorg-input-all | xserver-xorg-input. Testing's xserver-xorg-core
Conflicts with xserver-xorg-video-1.0 and xserver-xorg-input, so the
package system will not allow installing them together, unless one installs
all video and input drivers (from testing, because stable's drivers Provide
xserver-xorg-video-1.0 or xserver-xorg-input).
  This can be circumvented by creating a fake package that Provides
xserver-xorg-video-all and xserver-xorg-input-all. I have not experienced
any problems with that, but this is obviously an ugly hack.
  I suggest two solutions:
1) Replace the aforementioned Dependencies of stable's xserver-xorg by
xserver-xorg-video-all | xserver-xorg-video-1.0 | xserver-xorg-video-2 and
xserver-xorg-input-all | xserver-xorg-input | xserver-xorg-input-2.
2) Suppress those Dependencies, and make xserver-xorg-core Depend on
xserver-xorg-input-all | xserver-xorg-input for older versions, and
xserver-xorg-input-all | xserver-xorg-input-2 for newer versions, and the
same for video drivers.

  Regards.



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



Bug#480361: ario: mpd autodetection fails to find 127.0.0.1:6600

2008-05-31 Thread Marc Pavot
Hi,

It is fixed in Ario svn revision 320. The fix will be included in next
release.

Marc


Bug#483813: hedgewars: freezes mouse on crash

2008-05-31 Thread Alexander Heinlein
Package: hedgewars
Version: 0.9.3-3
Severity: normal


Hi.

Hedgewars doesn't seem to be very stable at the moment. Sometimes when
playing against the AI the game crashes, leaving the game menu still open.
If this happens I can't move my mouse pointer at all. Killing the game
doesn't help, switching to console and back doesn't help. I have to open a
new game (with the help of my keyboard) and close it to control the mouse
again.


Regards,
Alex



-- System Information:
Debian Release: lenny/sid
  APT prefers unstable
  APT policy: (950, 'unstable'), (850, 'testing'), (750, 'stable'), (600, 
'experimental')
Architecture: i386 (i686)

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

Versions of packages hedgewars depends on:
ii  hedgewars-data 0.9.3-3   Data files for hedgewars
ii  libc6  2.7-11GNU C Library: Shared libraries
ii  libfontconfig1 2.5.93-1  generic font configuration library
ii  libfreetype6   2.3.5-1+b1FreeType 2 font engine, shared lib
ii  libgcc11:4.3.0-5 GCC support library
ii  libglib2.0-0   2.16.3-2  The GLib library of C routines
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libpng12-0 1.2.27-1  PNG library - runtime
ii  libqt4-gui 4.4.0-2   transitional package for Qt 4 GUI 
ii  libqt4-network 4.4.0-2   Qt 4 network module
ii  libqt4-svg 4.4.0-2   Qt 4 SVG module
ii  libqt4-xml 4.4.0-2   Qt 4 XML module
ii  libqtcore4 4.4.0-2   Qt 4 core module
ii  libsdl-image1.21.2.6-3   image loading library for Simple D
ii  libsdl-mixer1.21.2.8-4   mixer library for Simple DirectMed
ii  libsdl-net1.2  1.2.7-2   network library for Simple DirectM
ii  libsdl-ttf2.0-02.0.9-1   ttf library for Simple DirectMedia
ii  libsdl1.2debian1.2.13-2  Simple DirectMedia Layer
ii  libsm6 2:1.0.3-1+b1  X11 Session Management library
ii  libstdc++6 4.3.0-5   The GNU Standard C++ Library v3
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxrandr2 2:1.2.2-2 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  ttf-dejavu 2.25-1Metapackage to pull in ttf-dejavu-
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

hedgewars recommends no packages.

-- debconf-show failed



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



Bug#481223: maildrop: Can you add an option to the command line to manage the over quota?

2008-05-31 Thread Josip Rodin
On Mon, May 19, 2008 at 04:56:06PM +0200, Frédéric Massot wrote:
 Josip Rodin a écrit :
 On Wed, May 14, 2008 at 07:15:23PM +0200, Frederic MASSOT wrote:
 When mailbox quotas are reached, the behaviour of maildrop is normally
 return a permanent error (EX_NOPERM).
 
 Your patch 004-maildrop-permanent-err.patch change this behavior and
 maildrop returns a temporary error (EX_TEMPFAIL), without allowing the
 administrator to choose.
 
 Can you add an option to the command line to allow the administrator to
 choose between a permanent or temporary error?
 
 Well, if you read the patch more closely, you'll see that our behaviour
 matches the behaviour of the upstream maildrop when used with Courier.
 We simply avoided giving the Permission denied error in the standalone
 case as well.
 
 The reasoning for that is described at http://bugs.debian.org/265399
 
 I wouldn't be opposed to making this configurable offhand, but I would
 appreciate it if you could explain why you prefer the other behaviour.
 
 Hi,
 
 On another server we also use Postfix without Maildrop and with 
 filesystem quotas, when a sender sending an mail he knows immediately if 
 the recipient's mailbox is full.
 
 With Postfix, Maildrop and quotas managed by the Maildrop, the mail rest 
 for 5 days in the queue before the sender is notified. Finally, one 
 people called the other on the phone to find out if he received his 
 mail. One is sure to have sent his mail, the other is sure to have 
 neither received nor have deleted. They call me on the phone and I 
 explain that this mailbox is full and he needs do the household in his 
 mailbox.
 
 Secondly, the queue exceed several hundred of MB, it load the system for 
 nothing.
 
 I think it is better to leave the choice of behaviour of Maildrop to the 
 administrator.

I conferred with the author, and he proposed a workaround: you can wrap
the delivery to the quota-bound maildir in the relevant .mailfilter file
like this:

exception {
  to ./Maildir
}

EXITCODE=77
exit

How does that work for you?

-- 
 2. That which causes joy or happiness.



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



Bug#471487: gnuift: FTBFS: requires an existant home directory to build

2008-05-31 Thread peter green

tags 471487 +patch
thanks

In my tests the package seems to build fine with a nonexistant home 
directory but FTBFS if the home directory exists but is inaccessible.


A quick fix is to add the following to debian/rules between the 
hash-bang and the cdbs includes


HOME := $(shell pwd)/nonexistant
export HOME



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



Bug#414346: gdImageStringFT: Could not find/open font

2008-05-31 Thread Thomas Weber
On 11/03/07 01:34 -0500, Kamaraju Kusumanchi wrote:
 To reproduce the problem
 $cat square.gpi
 set terminal jpeg enhanced

That's your problem, together with 

 set ylabel 'Ux/U_J'
  ^^

An 'enhanced' terminal will try to plot U_J as 'U' with a subscript 'J'.
If you can live without the subscript, drop the 'enhanced' part; if not,
you'll need a font that support subscripts _and_ tell the gdlib where to
find the font (either by setting the environmental variable GDFONTPATH
or specifying the font directly):

set terminal jpeg enhanced font 
/usr/share/fonts/truetype/freefont/FreeSans.ttf

should do the trick (the font is from ttf-freefont package).

Thomas



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



Bug#483405: reverse dependencies

2008-05-31 Thread Thomas Viehmann
Hi Martin

I'm afraid that there are still a few bugs to file. Could you please look into 
these?

Kind regards

T.


Working... done.
Will remove the following packages from unstable:

postgresql-8.2 |8.2.4-2 | hurd-i386
postgresql-8.2 |8.2.6-2 | m68k
postgresql-8.2 |8.2.7-2 | source
postgresql-8.2 | 8.2.7-2+b1 | alpha, amd64, arm, armel, hppa, i386, ia64, mips, 
mipsel, powerpc, s390, sparc
postgresql-contrib-8.2 |8.2.4-2 | hurd-i386
postgresql-contrib-8.2 |8.2.6-2 | m68k
postgresql-contrib-8.2 | 8.2.7-2+b1 | alpha, amd64, arm, armel, hppa, i386, 
ia64, mips, mipsel, powerpc, s390, sparc
postgresql-doc-8.2 |8.2.7-2 | all
postgresql-plperl-8.2 |8.2.4-2 | hurd-i386
postgresql-plperl-8.2 |8.2.6-2 | m68k
postgresql-plperl-8.2 | 8.2.7-2+b1 | alpha, amd64, arm, armel, hppa, i386, 
ia64, mips, mipsel, powerpc, s390, sparc
postgresql-plpython-8.2 |8.2.4-2 | hurd-i386
postgresql-plpython-8.2 |8.2.6-2 | m68k
postgresql-plpython-8.2 | 8.2.7-2+b1 | alpha, amd64, arm, armel, hppa, i386, 
ia64, mips, mipsel, powerpc, s390, sparc
postgresql-pltcl-8.2 |8.2.4-2 | hurd-i386
postgresql-pltcl-8.2 |8.2.6-2 | m68k
postgresql-pltcl-8.2 | 8.2.7-2+b1 | alpha, amd64, arm, armel, hppa, i386, ia64, 
mips, mipsel, powerpc, s390, sparc
postgresql-server-dev-8.2 |8.2.4-2 | hurd-i386
postgresql-server-dev-8.2 |8.2.6-2 | m68k
postgresql-server-dev-8.2 | 8.2.7-2+b1 | alpha, amd64, arm, armel, hppa, i386, 
ia64, mips, mipsel, powerpc, s390, sparc

Maintainer: Martin Pitt [EMAIL PROTECTED]
Will also close bugs: 483405
Will also send CCs to: [EMAIL PROTECTED], [EMAIL PROTECTED]

--- Reason ---
RoM, superseded by postgresql-8.3
--

Checking reverse dependencies...
pgbouncer/contrib has an unsatisfied dependency on alpha: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on alpha: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on amd64: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on amd64: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on arm: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on arm: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on armel: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on armel: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on hppa: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on hppa: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on i386: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on i386: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on ia64: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on ia64: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on m68k: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on m68k: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on mips: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on mips: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on mipsel: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on mipsel: 
postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on powerpc: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on powerpc: 
postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on s390: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on s390: postgresql-8.2
pgbouncer/contrib has an unsatisfied dependency on sparc: postgresql-8.2
** postgresql-8.2-postgis has an unsatisfied dependency on sparc: postgresql-8.2
** postgis has an unsatisfied build-dependency: postgresql-server-dev-8.2
** postgresql-filedump-8.2 has an unsatisfied build-dependency: 
postgresql-server-dev-8.2
Dependency problem found.




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



Bug#483071: reverse dependencies

2008-05-31 Thread Thomas Viehmann
Hi Ludovic

I'm afraid that there are still a few bugs to file and fix. Could you please 
look into these?

Kind regards

T.


Working... done.
Will remove the following packages from unstable:

libxmlada2 |  2.2-7 | source, alpha, amd64, hppa, i386, ia64, powerpc, 
s390, sparc
libxmlada2-dev |  2.2-7 | alpha, amd64, hppa, i386, ia64, powerpc, s390, 
sparc

Maintainer: Ludovic Brenta [EMAIL PROTECTED]
Will also close bugs: 483071
Will also send CCs to: [EMAIL PROTECTED], [EMAIL PROTECTED]

--- Reason ---
RoM, superseded by libxmlada
--

Checking reverse dependencies...
** libaws-dev has an unsatisfied dependency on alpha: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on alpha: libxmlada2
** libaws-bin has an unsatisfied dependency on alpha: libxmlada2
** libaws-dev has an unsatisfied dependency on amd64: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on amd64: libxmlada2
** libaws-bin has an unsatisfied dependency on amd64: libxmlada2
** libaws-dev has an unsatisfied dependency on hppa: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on hppa: libxmlada2
** libaws-bin has an unsatisfied dependency on hppa: libxmlada2
** libaws-dev has an unsatisfied dependency on i386: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on i386: libxmlada2
** libaws-bin has an unsatisfied dependency on i386: libxmlada2
** libaws-dev has an unsatisfied dependency on ia64: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on ia64: libxmlada2
** libaws-bin has an unsatisfied dependency on ia64: libxmlada2
** libaws-dev has an unsatisfied dependency on powerpc: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on powerpc: libxmlada2
** libaws-bin has an unsatisfied dependency on powerpc: libxmlada2
** libaws-dev has an unsatisfied dependency on sparc: libxmlada2-dev
** libaws2.2 has an unsatisfied dependency on sparc: libxmlada2
** libaws-bin has an unsatisfied dependency on sparc: libxmlada2
** libaws has an unsatisfied build-dependency: libxmlada2-dev
Dependency problem found.




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



Bug#483698: nted: Please upgrade to newer upstream :-)

2008-05-31 Thread Pierre Morin
Hello Gilles,

 Thanks for using nted, and for the french translation
 you've made.
 I'll upload nted = 0.24.1 soon.

Thank you !

 I'm not a debian developer nor maintainer so I have to
 ask my sponsor 
 for each upload. NtEd is a software under heavy development
 with 
 frequent releases and I don't want to bother my sponsor
 too much.

OK, I understand. Thank you for these explainations.
NtEd is GREAT and very active, true.
Thanks to your sponsor too for leting NtEd be in Lenny.

 Between two official debian nted releases you may keep in
 sync with NtEd 
 releases using my repository : http://pini.free.fr/debian/

I prefer to stick with Debian official repositories.
Unless I need a new feature you have packaged ;)

A wish to your sponsor :
An almost current upload before Lenny freezes ?

Have fun all with NtEd and Debian !

Pierre

__
Do You Yahoo!?
En finir avec le spam? Yahoo! Mail vous offre la meilleure protection possible 
contre les messages non sollicités 
http://mail.yahoo.fr Yahoo! Mail



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



Bug#483639: reverse dependencies

2008-05-31 Thread Thomas Viehmann
Hi Manoj,

do you happen to know something about these three?

** emboss-explorer has an unsatisfied dependency on amd64: libcgi-perl
** mumble-server-web has an unsatisfied dependency on amd64: libcgi-perl
** mipe has an unsatisfied dependency on amd64: libcgi-perl

Kind regards

T.



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



Bug#483607: wrong fix?

2008-05-31 Thread Michael Biebl

Hi


 kbd (1.14.1-3) unstable; urgency=low
 .
   * Change the LSB header of /etc/init.d/console-screen.kbd.sh to provide the
 unique name console-screen.kbd, closes: #483607.  This avoids collisions
 when replacing console-tools with kbd (and vice versa).


Is that really the correct fix?
Now other services, like e.g. console-setup are broken, because they 
expect the facility to be named console-screen.

E.g. /etc/init.c/console-setup has:

# Should-Start:  console-screen

There are a couple of other packages, which share the same problem, e.g. 
 all the syslog daemons provide the syslog facility.


Wouldn't it be better, if update-rc.d.insserv allowed to insert two 
services with the same Provides? IIRC insserv actually allows that and 
does it correctly.


CCed Peter for his opininon.

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#468858: status of this bug

2008-05-31 Thread Robert Millan

To summarize what the current status of this bug is:

  - Users who install etch get bash completion as part of the default install
(as part of bash package).

  - Users who install lenny get bash completion as part of the default install
(via bash-completion package which is installed by tasksel).

  - Users who install etch and upgrade to lenny would preserve bash-completion
functionality because of the Recommends in bash, _but_ apt in etch doesn't
follow Recommends yet, so this only applies if they update apt first.

I think this shows clearly there's an unresolved transition here.  I understand
bash-completion shouldn't be Essential, but the process for moving it out isn't
being done properly.  It's not acceptable that end users get this functionality
silently disabled without any obvious explanation (they might not even know
which package provides it, or how).

My proposal is that in lenny, bash Depends on bash-completion, and for lenny+1
it moves it back to Recommends.

Matthias, if you still have an objection to this approach, please bring it up.

-- 
Robert Millan

GPLv2 I know my rights; I want my phone call!
DRM What good is a phone call… if you are unable to speak?
(as seen on /.)



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



Bug#483815: xosview crashes if interrupt numbers exceed 1024

2008-05-31 Thread Michael Karcher
Package: xosview
Version: 1.8.3+debian-6
Severity: normal
Tags: patch

xosview has a fixed-size array mapping numbers from /proc/interrupts
to interrupt indicator positions. The size of this map is 1024. On some
x86-64 system (and probably modern i386 systems too) with PCI express,
the interrupt numbers the kernel uses for the Message Signalled Interrupt
might well exceed 1024.

The appended patch makes xosview use a dynamic map instead of an static
array.

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

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

Versions of packages xosview depends on:
ii  libc6 2.7-10 GNU C Library: Shared libraries
ii  libgcc1   1:4.3.0-3  GCC support library
ii  libstdc++64.3.0-3The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-7  X11 client-side library

xosview recommends no packages.

-- no debconf information

#! /bin/sh /usr/share/dpatch/dpatch-run
## handle_high_irq_numbers.dpatch by  [EMAIL PROTECTED]
##
## Uses a dynamic map instead of a fixed-size array for interrupt mapping,
## as some x86-64 systems have the MSI interrupts way beyond 1024.

@DPATCH@
diff -urNad xosview-1.8.3+debian~/linux/intmeter.cc 
xosview-1.8.3+debian/linux/intmeter.cc
--- xosview-1.8.3+debian~/linux/intmeter.cc 2008-05-31 12:25:04.656454148 
+0200
+++ xosview-1.8.3+debian/linux/intmeter.cc  2008-05-31 12:27:10.861106922 
+0200
@@ -11,13 +11,14 @@
 #include cpumeter.h
 #include fstream
 #include sstream
+#include map
 #include stdlib.h
 
 
 static const char *INTFILE = /proc/interrupts;
 static const char *VERSIONFILE = /proc/version;
 
-static int realintnum[1024];
+std::mapint,int realintnum;
 
 IntMeter::IntMeter( XOSView *parent, int cpu)
   : BitMeter( parent, INTS, , 1,
@@ -114,10 +115,11 @@
setNumBits(n+1);
std::ostringstream os;
 
-   os  INTs (0-16 ;
-   for (int i=16; i1024; i++) {
-   if (realintnum[i])
-  os  ,   (i) ;
+   os  INTs (0-15 ;
+   for (std::mapint,int::const_iterator it = realintnum.upper_bound(15),
+  end = realintnum.end(); 
+  it != end; ++it) {
+ os  ,   it-first ;
}
os  )  std::ends;
 
@@ -161,11 +163,8 @@
   }
 
   if (!_old) {
-  for (i=0; i1024; i++)   // init index into int array
-   if (i  16) // first 16 map directly
-   realintnum[i] = i;
-   else
-   realintnum[i] = 0;
+  for (i=0; i16; i++) // Map first 16 interrupts directly
+realintnum[i] = i;
   intfile.ignore(1024, '\n');
   }
 



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



Bug#465365: grub-ieee1275: grub-mkdevicemap writes a device.map with No aliases found

2008-05-31 Thread Robert Millan
On Mon, Feb 11, 2008 at 11:32:28PM -0400, Zoho Vignochi wrote:
 Package: grub-ieee1275
 Version: 1.96+20080210-1
 Severity: important
 
 grub-mkdevicemap ends without a failure notice but the file writes a 
 device.map with No aliases found
 [...]
 
 *** BEGIN /boot/grub/device.map
 (No aliases found.)   /dev/hda
 (No aliases found.)   /dev/sda
 *** END /boot/grub/device.map

Please could you try the attached patch in combination with latest
grub-ieee1275?

This patch will make grub-mkdevicemap generate dummy entries (but this time,
unique ones).  Even if they are meaningless to OFW (they're BIOS-style,
hd0, hd1, etc), they should allow grub-probe to handle these drives internally.

Starting with 1.96+20080531-1 (now in sid), it shouldn't be a problem that
these drives don't exist in OFW, as long as you use a filesystem where UUIDs
are supported (which you do).

-- 
Robert Millan

GPLv2 I know my rights; I want my phone call!
DRM What good is a phone call… if you are unable to speak?
(as seen on /.)
diff -x configure -x config.h.in -x CVS -x '*~' -x '*.mk' -urp ../grub2/conf/powerpc-ieee1275.rmk ./conf/powerpc-ieee1275.rmk
--- ../grub2/conf/powerpc-ieee1275.rmk	2008-05-30 12:41:54.0 +0200
+++ ./conf/powerpc-ieee1275.rmk	2008-05-31 13:45:26.0 +0200
@@ -40,7 +40,7 @@ grub_mkimage_SOURCES = util/elf/grub-mki
 
 # For grub-mkdevicemap.
 grub_mkdevicemap_SOURCES = util/grub-mkdevicemap.c util/misc.c		\
-	util/ieee1275/get_disk_name.c
+	util/i386/get_disk_name.c
 
 # For grub-emu
 util/grub-emu.c_DEPENDENCIES = grub_emu_init.h


Bug#483816: imlib2: CVE-2008-2426 buffer overflows in xpm and pnm loader

2008-05-31 Thread Nico Golde
Package: libimlib2
Severity: grave
Tags: security patch

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


CVE-2008-2426[0]:
| Secunia Research has discovered two vulnerabilities in imlib2, which
| can be exploited by malicious people to cause a DoS (Denial of
| Service) or compromise an application using the library.
| 
| 1) A boundary error exists within the load() function in
| src/modules/loaders/loader_pnm.c when processing the header of a
| PNM image file. This can be exploited to cause a stack-based buffer
| overflow by e.g. tricking a user into opening a specially crafted
| PNM image in an application using the imlib2 library.
| 
| Successful exploitation allows execution of arbitrary code.
| 
| 2) A boundary error exists within the load() function in
| src/modules/loader_xpm.c when processing an XPM image file. This can
| be exploited to cause a stack-based buffer overflow by e.g. tricking
| a user into opening a specially crafted XPM image with an application
| using the imlib2 library.

Patches:
https://bugzilla.redhat.com/attachment.cgi?id=307178
https://bugzilla.redhat.com/attachment.cgi?id=307177

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-2426
http://security-tracker.debian.net/tracker/CVE-2008-2426

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


pgpOkWITgMMMk.pgp
Description: PGP signature


Bug#480589: severity of 480589 is serious

2008-05-31 Thread Adeodato Simó
# Automatically generated email from bts, devscripts version 2.10.28
# soname bump without package rename
severity 480589 serious




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



Bug#483817: w3m: Please comply with Menu transition

2008-05-31 Thread Hideki Yamane (Debian-JP)
Package: w3m
Version: 0.5.1-5.1+b1
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear w3m maintainer,

 Due to menu transition, Apps/Net is splitted, so w3m has
 to deal with this change. Here's a patch, please apply it.


- --
Regards,

 Hideki Yamane henrich @ debian.or.jp


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

iD8DBQFIQUWpIu0hy8THJksRAt55AJ4+7JpgNV2S/sLcxzb5qIIXhYEEDACfYg1a
PNyCe2mrJfxBXGOyfYJMlH0=
=T0KN
-END PGP SIGNATURE-
--- menu.orig   2008-05-31 21:23:35.0 +0900
+++ menu2008-05-31 21:25:33.0 +0900
@@ -1,2 +1,5 @@
-?package(w3m):needs=text section=Apps/Net\
-  title=w3m command=/usr/bin/w3m /usr/share/doc/w3m/MANUAL.html hints=Web 
browsers
+?package(w3m):needs=text \
+  section=Applications/Network/Web Browsing \
+  title=w3m \
+  command=/usr/bin/w3m /usr/share/doc/w3m/MANUAL.html \
+  hints=Web browsers


Bug#483820: System hangs up with bad caching on address in dmesg

2008-05-31 Thread Artur R. Czechowski
Package: nvidia-kernel-2.6.25-2-amd64
Version: 169.12-4
Severity: important

When running X with nvidia drivers built from nvidia-kernel-source 169.12-4
system just hangs up with following lines in kernel output:

May 31 14:37:27 szczaw kernel: [  660.419497] nvidia: module license 'NVIDIA' 
taints kernel.
May 31 14:37:27 szczaw kernel: [  660.679464] ACPI: PCI Interrupt Link [APC3] 
enabled at IRQ 18
May 31 14:37:27 szczaw kernel: [  660.679475] ACPI: PCI Interrupt 
:01:00.0[A] - Link [APC3] - GSI 18 (level, low) - IRQ 18
May 31 14:37:27 szczaw kernel: [  660.679659] NVRM: loading NVIDIA UNIX x86_64 
Kernel Module  169.12  Thu Feb 14 17:51:09 PST 2008
May 31 14:37:28 szczaw kernel: [  661.224646] NVRM: bad caching on address 
0x81006cced000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.224654] NVRM: please see the README 
section on Cache Aliasing for more information
May 31 14:37:28 szczaw kernel: [  661.225144] NVRM: bad caching on address 
0x81006ccef000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225153] NVRM: bad caching on address 
0x81006ccf: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225160] NVRM: bad caching on address 
0x81006ccf1000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225167] NVRM: bad caching on address 
0x81006ccf2000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225173] NVRM: bad caching on address 
0x81006ccf3000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225180] NVRM: bad caching on address 
0x81006ccf4000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225187] NVRM: bad caching on address 
0x81006ccf5000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225203] NVRM: bad caching on address 
0x81006ddae000: actual 0x173 != expected 0x17b
May 31 14:37:28 szczaw kernel: [  661.225209] NVRM: bad caching on address 
0x81006ddf4000: actual 0x173 != expected 0x17b

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

Kernel: Linux 2.6.25-2-amd64 (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 nvidia-kernel-2.6.25-2-amd64 depends on:
ii  nvidia-kernel-common  20051028+1-0.1 NVIDIA binary kernel module common

Versions of packages nvidia-kernel-2.6.25-2-amd64 recommends:
ii  linux-image-2.6.25-2-amd642.6.25-4   Linux 2.6.25 image on AMD64

-- no debconf information

-- 
Cywilizacja powstała w momencie, kiedy pierwszy człowiek dał drugiemu 
 banana za zamiecenie jaskini. Jestem o tym przekonana.
/siwa/



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



Bug#481737: FTBFS on arm

2008-05-31 Thread Stefan Fritsch
FYI, I tried to build php5 5.2.6-1 on arm without the mysql_r patch, 
and it did not make any difference. It still gives an error at the 
same location (but no core dump).

Cheers,
Stefan



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



Bug#483818: imlib2: CVE-2008-2426 buffer overflows in xpm and pnm loader

2008-05-31 Thread Nico Golde
Package: libimlib2
Severity: grave
Tags: security patch

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


CVE-2008-2426[0]:
| Secunia Research has discovered two vulnerabilities in imlib2, which
| can be exploited by malicious people to cause a DoS (Denial of
| Service) or compromise an application using the library.
|
| 1) A boundary error exists within the load() function in
| src/modules/loaders/loader_pnm.c when processing the header of a
| PNM image file. This can be exploited to cause a stack-based buffer
| overflow by e.g. tricking a user into opening a specially crafted
| PNM image in an application using the imlib2 library.
|
| Successful exploitation allows execution of arbitrary code.
|
| 2) A boundary error exists within the load() function in
| src/modules/loader_xpm.c when processing an XPM image file. This can
| be exploited to cause a stack-based buffer overflow by e.g. tricking
| a user into opening a specially crafted XPM image with an application
| using the imlib2 library.

Patches:
https://bugzilla.redhat.com/attachment.cgi?id=307178
https://bugzilla.redhat.com/attachment.cgi?id=307177

If you fix the vulnerability please also make sure to include the
CVE id in your changelog entry.

For further information see:

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2008-2426
http://security-tracker.debian.net/tracker/CVE-2008-2426   




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



Bug#483819: libcompizconfig0: Couldn't load plugin 'ccp'

2008-05-31 Thread Sheridan Hutchinson
Package: libcompizconfig0
Version: 0.7.4-2
Severity: grave
Justification: renders package unusable

I've had compiz working for several months in testing until a few 
packages just filtered in to testing today (31/05/08).

After intense googling I think it's this library that is at fault.

I get the following :(
[EMAIL PROTECTED]:~$ compiz --replace
Checking for Xgl: not present.
Detected PCI ID for VGA:
Checking for texture_from_pixmap: not present.
Trying again with indirect rendering:
Checking for texture_from_pixmap: present.
Checking for non power of two support: present.
Checking for Composite extension: present.
Comparing resolution (1024x768) to maximum 3D texture size (2048): 
Passed.
Checking for nVidia: not present.
Checking for FBConfig: present.
Checking for Xgl: not present.
Starting kde-window-decorator
/usr/bin/compiz.real (core) - Error: Couldn't load plugin 'ccp'

I've tried removing compiz entirely and reinstalling to no avail.

I'm gutted as it was working perfectly prior to these recent updates.

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

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

Versions of packages libcompizconfig0 depends on:
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libxml22.6.32.dfsg-2 GNOME XML library

libcompizconfig0 recommends no packages.

-- no debconf information



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



Bug#483797: mime type for Microsoft ASF files

2008-05-31 Thread Daniel Baumann
tags 483797 +pending
thanks

Note that there are a lot of other magics which do not have the
corresponding mime entries yet. However, I've added the missing mime for
asf in git.

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



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



Bug#483822: molly-guard: Molly-guard does not ask for hostname when rebooting from ssh-shell

2008-05-31 Thread Markus
Package: molly-guard
Version: 0.2.1-1
Severity: grave
Justification: renders package unusable

Hi

I have a scenario where I ssh as root via vpn-pipe to the server in
customers lan (double encryption, server can be only reached via vpn-pipe,
that's why I dare to allow root-login cause I need it).

I upgraded to newest kernel and typed rebootenter. System restarted
without any intervention by molly-guard. The bug is reproducible.

M

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)

Versions of packages molly-guard depends on:
ii  sysvinit 2.86.ds1-38 System-V-like init utilities

molly-guard recommends no packages.

-- no debconf information



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



Bug#483562: add patch tag

2008-05-31 Thread Steffen Joeris
tags 483562 patch
thanks

Hi

Please also mention the CVE id in your changelog, when you fix this issue and 
upload with a high urgency for migration to testing.
Thanks for your work.

Cheers
Steffen


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


Bug#482140: [xml/sgml-pkgs] Bug#482140: Bug#482140: must be /etc/sgml

2008-05-31 Thread Daniel Leidert
Am Freitag, den 30.05.2008, 22:19 -0400 schrieb Andres Salomon:
 On Sat, 31 May 2008 02:10:22 +0200
 Daniel Leidert [EMAIL PROTECTED] wrote:

[·.]
 Here's the output from a dist-upgrade.  I added multiple DEBUG lines; one
 after the line you suggested, and an additional two after each already
 registered error line.
 
 
 
 
 Reading package lists...
 Building dependency tree...
 0 upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
 26 not fully installed or removed.
 After this operation, 0B of additional disk space will be used.
 Setting up docbook-xml (4.5-5) ...
 update-xmlcatalog: reading catalog data /var/lib/xml-core/docbook-xml
 update-xmlcatalog: notice: entity already registered
 ^
 DEBUG(notice already registered): 
 entry=catalog=file:///usr/share/xml/docbook/schema/dtd/catalog.xml, 
 key=delegateSystem 
 systemIdStartString=http://www.oasis-open.org/docbook/xml/4.1/docbookx.dtd;, 
 catalog=/etc/xml/docbook-xml.xml
 update-xmlcatalog: removing backup /etc/xml/docbook-xml.xml.old
 update-xmlcatalog: moving catalog /etc/xml/docbook-xml.xml to backup 
 /etc/xml/docbook-xml.xml.old
 update-xmlcatalog: writing catalog data /var/lib/xml-core/docbook-xml
 update-xmlcatalog: writing catalog /etc/xml/docbook-xml.xml
 update-xmlcatalog: reading catalog data /var/lib/xml-core/docbook-xml
 update-xmlcatalog: notice: entity already registered
 ^
 DEBUG(notice already registered): 
 entry=catalog=file:///usr/share/xml/docbook/schema/dtd/catalog.xml, 
 key=delegateSystem 
 systemIdStartString=http://docbook.org/xml/4.1/docbookx.dtd;, 
 catalog=/etc/xml/docbook-xml.xml
 update-xmlcatalog: removing backup /etc/xml/docbook-xml.xml.old
 update-xmlcatalog: moving catalog /etc/xml/docbook-xml.xml to backup 
 /etc/xml/docbook-xml.xml.old
 update-xmlcatalog: writing catalog data /var/lib/xml-core/docbook-xml
 update-xmlcatalog: writing catalog /etc/xml/docbook-xml.xml
 update-xmlcatalog: reading catalog data /var/lib/xml-core/docbook-xml
 update-xmlcatalog: error: entity already registered
 
 DEBUG(error already registered): 
 entry=catalog=file:///usr/share/xml/docbook/schema/dtd/catalog.xml, 
 key=delegatePublic publicIdStartString=-//OASIS//DTD DocBook XML V4.1//EN, 
 catalog=/etc/xml/docbook-xml.xml
 dpkg: error processing docbook-xml (--configure):
  subprocess post-installation script returned error exit status 1

Thanks for this information. Now this result is some kind of surprising.
The prerm script of the docbook-xml Etch package should remove those
entries. Indeed it says:

 update-xmlcatalog --del --type system --id 
 http://www.oasis-open.org/docbook/xml/4.1; --package docbook-xml || true
 update-xmlcatalog --del --type system --id http://docbook.org/xml/4.1; 
 --package docbook-xml || true
 update-xmlcatalog --del --type public --id -//OASIS//DTD DocBook XML 
 V4.1//EN --package docbook-xml || true

Now all I can imagine is, that the removal fails. But in this case, the
script will not error out, because of the '|| true' expression. So if
you have the time, you could do me a favour and edit the prerm script of
the Etch package of docbook-xml and remove the '|| true' expressions and
run the script or try to upgrade the packages. Alternatively you may
also do this for the package installed and simply try to remove/purge
it. Maybe this will throw some error (if I'm right with my guess) and
maybe there is just a problem with Perl 5.10 and update-xmlcatalog
trying to remove the entities.

Unfortunately I'm not able to reproduce the problem on my i386 system (I
even checked one of my productive systems). They all run an upgrade
without any problems. So I can just ask you to edit the files and send
me the results. I'm really sorry.

Regards, Daniel




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



Bug#483823: client tries to connect to wrong port

2008-05-31 Thread martin f krafft
Package: puppet
Version: 0.24.4-7
Severity: important
File: /usr/sbin/puppetd

The client seems to try to connect to port 8140, while the server is
listening on port 18140. The documentation seem to suggest that
18140 is the puppetmaster port, so the client is likely falsely
configured/compiled.

iptables -t nat -A PREROUTING -p tcp --dport 8140 -j REDIRECT --to-ports 18140

on the puppetmaster is a workaround for now.

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

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

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

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

-- no debconf information


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


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


Bug#483824: pidgin: pidigin hangs frequently, nothing then helps to revive it but restarting it

2008-05-31 Thread Folkert van Heusden
Package: pidgin
Version: 2.4.1-1+b1
Severity: normal


pidigin hangs frequently, nothing then helps to revive it but restarting it

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

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

Versions of packages pidgin depends on:
ii  gconf2  2.22.0-1 GNOME configuration database syste
ii  libatk1.0-0 1.22.0-1 The ATK accessibility toolkit
ii  libc6   2.7-10   GNU C Library: Shared libraries
ii  libcairo2   1.6.4-1+b1   The Cairo 2D vector graphics libra
ii  libdbus-1-3 1.2.1-2  simple interprocess messaging syst
ii  libdbus-glib-1-20.74-2   simple interprocess messaging syst
ii  libglib2.0-02.16.3-2 The GLib library of C routines
ii  libgstreamer0.10-0  0.10.19-3Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.9-3 The GTK+ graphical user interface 
ii  libgtkspell02.0.10-4 a spell-checking addon for GTK's T
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libpango1.0-0   1.20.2-2 Layout and rendering of internatio
ii  libpurple0  2.4.1-1+b1   multi-protocol instant messaging l
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstartup-notification00.9-1library for program launch feedbac
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxss1 1:1.1.3-1X11 Screen Saver extension library
ii  perl5.8.8-12 Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8.8]   5.8.8-12 The Pathologically Eclectic Rubbis
ii  pidgin-data 2.4.1-1  multi-protocol instant messaging c

Versions of packages pidgin recommends:
ii  gstreamer0.10-plugins-base0.10.19-1  GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good0.10.8-2   GStreamer plugins from the good 

-- no debconf information



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



Bug#483825: Options settings at bottom of page do not work

2008-05-31 Thread Frans Pop
Package: bugs.debian.org

Starting with:
http://bugs.debian.org/installation-reports

Choose Categorize bugs by bug number only.
Reload page.

Results in:
http://bugs.debian.org/cgi-bin/pkgreport.cgi?archive=0;repeatmerged=1
An error occurred. Dammit. Error was: You have to choose something to 
select by.



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


Bug#483794: xwelltris

2008-05-31 Thread Christoph Egger
retitle 483794 ITA: xwelltris -- 3D Tetris like popular game similar to Welltris
owner 483794 !
thanks

I am intenting to take this one over.
-- 
GPG-Key ID: 0x0372275D

/\  ASCII Ribbon
\ /Campaign
 X   against HTML
/ \   in eMails



signature.asc
Description: OpenPGP digital signature


Bug#483151: sidebar forgets the number of NEW messages, and only shows null entries

2008-05-31 Thread Simon Paillard
Hello,

Some additional feedback about this problem.

On Tue, May 27, 2008 at 04:16:49PM +0200, Stefano Zacchiroli wrote:
 Package: mutt-patched
 Version: 1.5.18-1
 Severity: important
 
 After the last update of mutt-patched the sidebar is basically useless,
 as all mailbox names have been replaced by the string null. Here is
 a cut and paste from the terminal.
 
   null  4006[19]|2485   L May 15 Peter Samuelson (0,8K) │   │ │ 
 ├─Re: ssl security 
[..]

I don't have this problem, but the same mutt-patched version, and use
local maildir.

 Well, the number for NEW is now updated for a lot of mailboxes only
 when I enter them and is forgotten when I exit them.

Exactly the same problem.

Is this new bug related to the close of #470657 ?

-- 
Simon Paillard



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



Bug#483826: plplot: bad findstring-fu in rules prevents libplplot9-java from building on i386

2008-05-31 Thread Adeodato Simó
Package: plplot
Version: 5.9.0-7
Severity: serious
Tags: patch

Hello. From plplot's debian/rules:

  ifneq (,$(findstring $(DEB_BUILD_ARCH):,alpha:arm:hppa:hurd-i386:))
BUILD_JAVA = no
  else
BUILD_JAVA = yes
  fi

Which makes java not be built on i386:. A possible patch would be
adding a colon before the arch name:

  ifneq (,$(findstring :$(DEB_BUILD_ARCH):,:alpha:arm:hppa:hurd-i386:))
   ^   ^

Another way is to use $(filter) instead, like this:

  ifneq (,$(filter $(DEB_BUILD_ARCH),alpha arm hppa hurd-i386))
BUILD_JAVA = no
  else
BUILD_JAVA = yes
  fi


If you could make a quick upload fixing this issue I'd be grateful; I
need this fixed to get the gcc-defaults transition ready...

Thanks,

-- 
Adeodato Simó dato at net.com.org.es
Debian Developer  adeodato at debian.org
 
   Listening to: Chavela Vargas - He perdido contigo




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



Bug#483829: netkit-telnet: Please comply with Menu transition

2008-05-31 Thread Hideki Yamane (Debian-JP)
Package: netkit-telnet
Severity: normal
Tags: patch

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Dear netkit-telnet maintainer,

 Due to menu transition, Apps/Net is splitted, so netkit-telnet
 has to deal with this change. Here's a patch, please apply it.


- --
Regards,

 Hideki Yamane henrich @ debian.or.jp


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

iD8DBQFIQUiFIu0hy8THJksRAvUdAJ4id+2ty2spar1F9Nj74YSWI207YACbBZ9R
eHEbTee6R3AAtY83FwEKpFU=
=zXzq
-END PGP SIGNATURE-
--- debian/menu.orig2008-05-31 21:37:25.0 +0900
+++ debian/menu 2008-05-31 21:42:24.0 +0900
@@ -1,3 +1,6 @@
 ?package(telnet): \
-   needs=text section=Apps/Net title=Telnet \
-   command=/usr/bin/telnet hints=Terminal
+   needs=text \
+   section=Applications/Network/Communication \
+   title=Telnet \
+   command=/usr/bin/telnet \
+   hints=Terminal


Bug#483828: gtk-qt-engine-kde4 cause gtk apps to crash

2008-05-31 Thread Camille GALLET
Package: gtk-qt-engine-kde4
Version: 1.1-1
Severity: grave

When I use the Qt4 theme for the GTK Applications with KDE 4.0.80 it make them 
crash (for example when the file/directory selector dialog is opened): 
The backtrace is  : 
#0  0xb56170f8 in ?? () from /usr/lib/kde4/plugins/styles/oxygen.so  
No symbol table info available.  
#1  0xb75fa160 in ?? () from /lib/i686/cmov/libc.so.6
No symbol table info available.  
#2  0x0085 in ?? ()  
No symbol table info available.  
#3  0xbf99e588 in ?? ()
No symbol table info available.
#4  0xb6a24619 in ?? () from /usr/lib/libcairo.so.2
No symbol table info available.
#5  0x086923ec in ?? ()
No symbol table info available.
#6  0x000c in ?? ()
No symbol table info available.
#7  0xbf99e5a8 in ?? ()
No symbol table info available.
#8  0xb6a24631 in ?? () from /usr/lib/libcairo.so.2
No symbol table info available.
#9  0x086923ec in ?? ()
No symbol table info available.
#10 0xbf99ef20 in ?? ()
No symbol table info available.
#11 0x0084 in ?? ()
No symbol table info available.
#12 0xb6a7a5b0 in ?? () from /usr/lib/libcairo.so.2
No symbol table info available.
#13 0xb6a7a5b0 in ?? () from /usr/lib/libcairo.so.2
No symbol table info available.
#14 0x086923e0 in ?? ()
No symbol table info available.
#15 0xb7604531 in pthread_mutex_lock () from /lib/i686/cmov/libpthread.so.0
No symbol table info available.
#16 0xb522acd6 in KStyle::drawPrimitive () from /usr/lib/libkdeui.so.5
No symbol table info available.
#17 0xb67320a1 in ?? () from /usr/lib/gtk-2.0/2.10.0/engines/libqt4engine.so
No symbol table info available.
#18 0x081dcc70 in ?? ()
No symbol table info available.
#19 0x0005 in ?? ()
No symbol table info available.
#20 0xbf99fcc8 in ?? ()
No symbol table info available.
#21 0xbf99fd38 in ?? ()
No symbol table info available.
#22 0x in ?? ()
No symbol table info available.

I'm using an debian unstable/experimental up-to-date 




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



Bug#478864: curl can find hosts under strace, but not alone

2008-05-31 Thread Joshua Gilbert
Package: curl
Version: 7.18.1-1
Followup-For: Bug #478864

curl always fails when trying to resolve a host name. Interestingly, if I run 
curl under strace, it succeeds. I have 
no idea as to why this might be the case. So
$ curl http://yahoo.com
curl: (6) Resolving host timed out: yahoo.com
$ strace curl http://yahoo.com 2 /dev/null
The document has moved A HREF=http://www.yahoo.com/;here/A.P
!-- p3.rc.re4.yahoo.com uncompressed/chunked Sat May 31 05:17:34 PDT 2008 --

Strange, but true. Does this make any sense to you?


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

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

Versions of packages curl depends on:
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcurl3   7.18.1-1  Multi-protocol file transfer 
libra
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

curl recommends no packages.

-- no debconf information



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



Bug#482657: kernel-patch-openvz causes a kernel panic

2008-05-31 Thread Konstantin Khlebnikov
Hi Patrick,

Also it possible is a kernel stack overflow.
Disable CONFIG_4KSTACKS option in your kernel config.

-- 
signature



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



Bug#483827: ltrace: option -f is broken

2008-05-31 Thread Stefan Fritsch
Package: ltrace
Version: 0.5-3.1
Severity: normal

The -f option does not work:

# ltrace -f -o /tmp/lll sh -c /bin/echo blah
blah
Cannot attach to pid 12396: Operation not permitted

/tmp/lll then only contains the ltrace of sh, not of /bin/ech
Since it works fine with strace, it seems like a bug in ltrace.



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

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

Versions of packages ltrace depends on:
ii  libc6 2.7-11 GNU C Library: Shared libraries
ii  libelfg0  0.8.10-2   an ELF object file access library

ltrace recommends no packages.

-- no debconf information



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



Bug#483830: Writing to a filesystem mounted with 'loop' don't work

2008-05-31 Thread David TAILLANDIER

Package: linux-image-2.6.18-5-486
Version: 2.6.18.dfsg.1-13etch5
Severity: important


When writing into a filesystem mounted using the 'loop' module, the 
system have unexpected behaviours.



Tested with:
2 different Debian Etch running servers, up to date (one Core2Duo and 
one AMD 4200+).

Linux Mint 4.0 personnal computer, up to date (AMD 4000+).
Debian Etch i386 fresh install, no updates. Then up to date (AMD 4200+).
Debian Etch AMD64 fresh install, no updates. Then up to date (AMD 4200+).
Debian Lenny i386 frsh install, no updates. Then up to date (AMD 4200+).

Fedora 9 Live: don't have the bug.
Thus the bug seems to be related to Debian only.


How to reproduce the problem:

WARNING: don't do it on a remote computer because the system could 
completly stop responding.


as root:

# modprobe loop
# cd ~
# mkdir test
# cd test

# dd if=/dev/zero of=virtualdisk bs=1M count=2000
-- 53 Mb/s

# losetup /dev/loop0 virtualdisk

# mkfs.ext2 /dev/loop0
-- one system was frozen here once
# mount /dev/loop0 /mnt

# dd if=/dev/zero of=/mnt/bigfile bs=1M
-- the file start growing then nothing happens
-- this process never ends
-- ctrl+C works after 5 to 15 seconds
-- on some systems the computer stop responding
-- on some systems some bytes are written to the file every 20 to 40 
seconds



From another console we can see a strange iowait:

# iostat -m 1

avg-cpu:  %user   %nice %system %iowait  %steal   %idle
   0,500,000,00   50,000,00   49,50

Device:tpsMB_read/sMB_wrtn/sMB_readMB_wrtn
sda   0,00 0,00 0,00  0  0


The size of /mnt/bigfile is between 50 Mb and 400 Mb. The size seems to 
always be the same on one computer, but vary from computer to computer. 
i.e. on computer 'A' the file is between 50 Mb and 55 Mb, on computer 
'B' the file is between 300 Mb and 310 Mb.



Even a simple write without mounting anyfilesystem is affected on some 
systems:

# dd if=/dev/zero of=/dev/loop0 bs=1M
-- 14 Mb/s  (4 times slower than bare metal speed)




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



Bug#441151: CGI options not working

2008-05-31 Thread Simon Paillard
Hello Don,

On Mon, Oct 29, 2007 at 11:45:27AM -0700, Don Armstrong wrote:
 On Mon, 29 Oct 2007, Simon Paillard wrote:
  Did you plan something about this bug/patch ?
 
 It's already fixed in my tree and will be fixed in the BTS the next
 time that I sync things up.

The patch is ready since more than 7 months now, is that possible to fix the
problem in the real life BTS ?

Thanks !

-- 
Simon Paillard



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



Bug#483797: mime type for Microsoft ASF files

2008-05-31 Thread Harald Dunkel

PS: AFAICS there are 3 different mime types for ASF files,
depending upon the file name extension. See

http://support.microsoft.com/kb/284094

I don't prefer any of these. Your choice.


Regards

Harri



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



Bug#480935: This problem was already solved post-Etch

2008-05-31 Thread Frans Pop
reassign 480935 syslinux 2:3.63+dfsg-1
tag 480935 d-i
severity 480935 important
thanks

On Friday 16 May 2008, Holger Wansing wrote:
 Just found out, that this problem was already existing in Etch,
 and was assumed to be solved for Lenny (see #415992).

 But with actual syslinux in testing (2:3.63+dfsg-1), the problem is
 there, again.

Problem here is that with current D-I we don't have working floppies due 
to a kernel size problem. That should be fixed when we switch to 2.6.25.

I'm going to reassign this to syslinux. Hopefully the maintainer can 
suggest alternative ways to test different syslinux versions to track 
down where the regression is.

Version 3.50 was confirmed to be working; see:
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=415992#112

Please keep trying with D-I after floppy images become available again and 
remind us (d-boot list) of this issue if it does not get solved!

Cheers,
FJP



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



Bug#483833: samba: libwbclient or libtalloc badly built?

2008-05-31 Thread Patrice DUROUX
Package: samba
Version: 1:3.2.0~rc1-1
Severity: important


Hello!

this version has a library problem. One of them seems badly built.


[EMAIL PROTECTED]:/usr/lib# /etc/init.d/samba restart
Stopping Samba daemons: nmbd smbd.
Starting Samba daemons: nmbd smbd/usr/sbin/smbd: /usr/lib/libtalloc.so.1: no 
version information available (required by /usr/lib/libwbclient.so.0)
.

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

Kernel: Linux 2.6.18-6-mckinley (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 samba depends on:
ii  adduser  3.107   add and remove users and groups
ii  debconf [debconf-2.0 1.5.22  Debian configuration management sy
ii  libacl1  2.2.47-2Access control list shared library
ii  libattr1 1:2.4.41-1  Extended attribute shared library
ii  libc6.1  2.7-11  GNU C Library: Shared libraries
ii  libcomerr2   1.40.8-2common error description library
ii  libcupsys2   1.3.7-5 Common UNIX Printing System(tm) - 
ii  libgnutls26  2.2.5-1 the GNU TLS library - runtime libr
ii  libkrb53 1.6.dfsg.3-2MIT Kerberos runtime libraries
ii  libldap-2.4-22.4.9-1 OpenLDAP libraries
ii  libpam-modules   0.99.7.1-6  Pluggable Authentication Modules f
ii  libpam-runtime   0.99.7.1-6  Runtime support for the PAM librar
ii  libpam0g 0.99.7.1-6  Pluggable Authentication Modules l
ii  libpopt0 1.10-3  lib for parsing cmdline parameters
ii  libtalloc1   1.2.0~git20080520-1 hierarchical pool based memory all
ii  libunwind7   0.98.5-8A library to determine the call-ch
ii  libwbclient0 1:3.2.0~rc1-1   client library for interfacing wit
ii  logrotate3.7.1-3 Log rotation utility
ii  lsb-base 3.2-12  Linux Standard Base 3.2 init scrip
ii  procps   1:3.2.7-8   /proc file system utilities
ii  samba-common 1:3.2.0~rc1-1   Samba common files used by both th
ii  update-inetd 4.30inetd configuration file updater
ii  zlib1g   1:1.2.3.3.dfsg-12   compression library - runtime

samba recommends no packages.

-- debconf information:
  samba/run_mode: daemons
  samba/generate_smbpasswd: true



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



Bug#483645: Bug with UID=4294967296 on Alpha-Arch. (lenny/sid)

2008-05-31 Thread Nicolas François
reassign 483645 glibc
thanks

On Fri, May 30, 2008 at 06:43:07PM +0400, [EMAIL PROTECTED] wrote:
 Hello,
 
 30.05.08, 13:28, Nicolas François [EMAIL PROTECTED]:
  On Fri, May 30, 2008 at 09:10:29AM +0200, [EMAIL PROTECTED] wrote:
   Creating an user-account and changing the UID via vipw to 4294967296
   (Which is 2^32) results in an overflow and the user gets the UID=0,
   an UID of 4294967297 leads to an UID=1 and so on.
 
 Maybe this is a platform limit (passwd.pw_uid is of uid_t type).
 For example, on 64-bit HP Tru64 I see the next:

It looks like a glibc bug to me.

At least, INT_FIELD should check for ERANGE after calling strtoul
(in nss/nss_files/files-parse.c)

On i386, all UIDs = 4294967296 are silently converted to 4294967295.
(when IMHO, an error should be returned by getpwnam)

Also, the glibc should check if the UID returned by strtoul fits in the
range of allowed UIDs.

What might happen on Alpha is that 4294967296 is successfully converted
to the unsigned long 4294967296, but it is then converted to a unsigned
int, and thus becomes zero.
(I've no Alpha, and could not check this; but on i386, uid_t is an
__UID_T_TYPE, defined to __U32_TYPE in /usr/include/bits/typesizes.h (and
this seems to be the same on alpha)


I did not check which parts of the glibc call INT_FIELD, and thus I don't
know if the fix can simply be applied to INT_FIELD.

Best Regards,
-- 
Nekral



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



Bug#483731: auctex: postinst failed with emacs-snapshot

2008-05-31 Thread Sebastian P. Luque
On Sat, 31 May 2008 07:15:49 -0500,
Sebastian P. Luque [EMAIL PROTECTED] wrote:

 On Sat, 31 May 2008 11:04:24 +0200,
 Davide G. M. Salvetti [EMAIL PROTECTED] wrote:

 Hi, please attach the
 /usr/share/emacs-snapshot/site-lisp/auctex/CompilationLog file.

 Sure, I'm attaching it here.  Thanks.

I did a `check-parens' on tthe offending file
(/usr/share/emacs/site-lisp/auctex/tex-jp.el), which indicated that
there is at least one unmatched parenthesis.


-- 
Seb



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



Bug#483838: openssh-server: odd RSA key sizes fail cross-architecture

2008-05-31 Thread Jon Dowland
Package: openssh-server
Version: 1:4.7p1-12
Severity: normal

A 4697-bit RSA key from 32bit x86 connecting to an armel machine fails
with the following message:

May 31 14:52:08 yatima sshd[16517]: error: RSA_public_decrypt failed: 
error:0407006A:lib(4):func(112):reason(106)

A 4696-bit RSA key from the armel machine to a 64 bit x86 also fails, with
the remote server uttering the same message.

14:55:44$ openssl errstr 0407006A
error:0407006A:rsa routines:RSA_padding_check_PKCS1_type_1:block type is not 01

(no idea what that means)

I've just generated one using a default keysize on the 32bit x86 machine
and had no complaints connecting to the armel box.

I'll do a bit more investigation later.




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

Kernel: Linux 2.6.24-1-iop32x
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages openssh-server depends on:
ii  adduser3.107 add and remove users and groups
ii  debconf [debconf-2.0]  1.5.21Debian configuration management sy
ii  dpkg   1.14.19   package maintenance system for Deb
ii  libc6  2.7-10GNU C Library: Shared libraries
ii  libcomerr2 1.40.8-2  common error description library
ii  libgcc11:4.3.0-4 GCC support library
ii  libkrb53   1.6.dfsg.3-2  MIT Kerberos runtime libraries
ii  libpam-modules 0.99.7.1-6Pluggable Authentication Modules f
ii  libpam-runtime 0.99.7.1-6Runtime support for the PAM librar
ii  libpam0g   0.99.7.1-6Pluggable Authentication Modules l
ii  libselinux12.0.59-1  SELinux shared libraries
ii  libssl0.9.80.9.8g-10 SSL shared libraries
ii  libwrap0   7.6.q-15  Wietse Venema's TCP wrappers libra
ii  lsb-base   3.2-12Linux Standard Base 3.2 init scrip
ii  openssh-blacklist  0.4.1 list of default blacklisted OpenSS
ii  openssh-client 1:4.7p1-12secure shell client, an rlogin/rsh
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime




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



  1   2   3   4   >