Bug#563138: when: Lisp nesting exceeds `max-lisp-eval-depth'

2009-12-31 Thread jidanni
Package: bbdb
Version: 2.35.cvs20080316-2
X-debbugs-cc: bbdb-i...@lists.sourceforge.net

When I hit : on a mail here in gnus, I get the question
  LY is not in the db; add? (y,!,n,s,q,?)
if I hit y, all works fine.
But instead if I hit ?,
I get
when: Lisp nesting exceeds `max-lisp-eval-depth'

Also distressing is that there is no way for me the user to capture the words
  LY is not in the db; add? (y,!,n,s,q,?)
without starting emacs again using -nw, or making a .jpg screen shot.
The words aren't in the view-echo-area-messages. I'll report an emacs
bug about that.

emacs-version 23.1.90.1
gnus-version Gnus v5.13



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



Bug#563135: sign problem

2009-12-31 Thread David Eccles (gringer)
whoops, there were a few '=' signs where there should have been '==' signs.
diff -ur gtetrinet-0.7.11/src/config.c gtetrinet-0.7.11-new/src/config.c
--- gtetrinet-0.7.11/src/config.c   2006-11-04 01:49:49.0 +1300
+++ gtetrinet-0.7.11-new/src/config.c   2009-12-31 18:29:29.0 +1300
@@ -62,6 +62,7 @@
 GDK_Right,
 GDK_Left,
 GDK_Up,
+GDK_x,
 GDK_Control_R,
 GDK_Down,
 GDK_space,
@@ -72,7 +73,19 @@
 GDK_3,
 GDK_4,
 GDK_5,
-GDK_6
+GDK_6,
+GDK_y,
+GDK_h,
+GDK_n,
+GDK_u,
+GDK_j,
+GDK_m,
+GDK_i,
+GDK_k,
+GDK_comma,
+GDK_o,
+GDK_l,
+GDK_period,
 };
 
 guint keys[K_NUM];
@@ -268,6 +281,15 @@
 else
   keys[K_ROTRIGHT] = defaultkeys[K_ROTRIGHT];
 
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rotate_up, NULL);
+if (p)
+{
+  keys[K_ROTUP] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_ROTUP] = defaultkeys[K_ROTUP];
+
 p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rotate_left, NULL);
 if (p)
 {
@@ -368,6 +390,114 @@
   keys[K_SPECIAL6] = defaultkeys[K_SPECIAL6];
 
 
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/leftwall0, NULL);
+if (p)
+{
+  keys[K_L0] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_L0] = defaultkeys[K_L0];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/leftwall1, NULL);
+if (p)
+{
+  keys[K_L1] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_L1] = defaultkeys[K_L1];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/leftwall2, NULL);
+if (p)
+{
+  keys[K_L2] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_L2] = defaultkeys[K_L2];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/leftwall3, NULL);
+if (p)
+{
+  keys[K_L3] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_L3] = defaultkeys[K_L3];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/leftwall4, NULL);
+if (p)
+{
+  keys[K_L4] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_L4] = defaultkeys[K_L4];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/leftwall5, NULL);
+if (p)
+{
+  keys[K_L5] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_L5] = defaultkeys[K_L5];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rightwall0, NULL);
+if (p)
+{
+  keys[K_R0] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_R0] = defaultkeys[K_R0];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rightwall1, NULL);
+if (p)
+{
+  keys[K_R1] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_R1] = defaultkeys[K_R1];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rightwall2, NULL);
+if (p)
+{
+  keys[K_R2] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_R2] = defaultkeys[K_R2];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rightwall3, NULL);
+if (p)
+{
+  keys[K_R3] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_R3] = defaultkeys[K_R3];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rightwall4, NULL);
+if (p)
+{
+  keys[K_R4] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_R4] = defaultkeys[K_R4];
+
+p = gconf_client_get_string (gconf_client, 
/apps/gtetrinet/keys/rightwall5, NULL);
+if (p)
+{
+  keys[K_R5] = gdk_keyval_to_lower (gdk_keyval_from_name (p));
+  g_free (p);
+}
+else
+  keys[K_R5] = defaultkeys[K_R5];
+
 /* Get the timestamp option. */
 timestampsenable = gconf_client_get_bool (gconf_client, 
/apps/gtetrinet/partyline/enable_timestamps, NULL);
 
@@ -517,6 +647,18 @@
 }
 
 void
+keys_rotate_up_changed (GConfClient *client,
+guint cnxn_id,
+GConfEntry *entry)
+{
+
+  client = client; /* Suppress compile warnings */
+  cnxn_id = cnxn_id;   /* Suppress compile warnings */
+
+  keys[K_ROTUP] = gdk_keyval_to_lower (gdk_keyval_from_name 
(gconf_value_get_string (gconf_entry_get_value (entry;
+}
+
+void
 keys_rotate_right_changed (GConfClient *client,
guint cnxn_id,
GConfEntry *entry)
@@ -625,6 +767,150 @@
 }
 
 void

Bug#563121: dh_installdefoma leads to buggy maintainer scripts

2009-12-31 Thread Cyril Brulebois
Keith Packard kei...@keithp.com (30/12/2009):
  I'm about to QA-upload defoma with this change in the various
  debhelper-files/* files, but I wanted to open this bugreport for
  reference.

Fortunately, I didn't do so, that wouldn't have helped (yay for
sleeping before uploading :)).

 Here's a patch which I've used to build new fontconfig packages
 which should survive the absence of defoma.

I don't think it would help.

 -  test -x `which defoma-app`  defoma-app update #PACKAGE#
 +  which defoma-app /dev/null  defoma-app update #PACKAGE#

$ which doesnotexist /dev/null  echo be happy
$ echo $?
1

So the maintainer script bits generated by dh_installdefoma would
still lead to non-0 exits.

Current/common practice within debhelper seems to be:
| if [ -x `which foo 2/dev/null` ]; then…

I think I'm going to upload with such a change once I'm up (for real,
not vaguely opening eyes).

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#559136: Bug#560252: band-aid fix

2009-12-31 Thread Cyril Brulebois
Keith Packard kei...@keithp.com (30/12/2009):
 I haven't received any mail about RC bugs today, and can't find any
 through the bugs.debian.org web interface.

I meant #559136 and #560252, opened for some weeks.

   2. optionally fix them;
 
 I'm trying, but it looks like dh_installdefoma is just plain busted
 though. It does things like:
 
   test -x `which defoma-app`  defoma-app clean fontconfig
 
 which is clearly broken when defoma-app is not installed (as test -x
 with no argument returns success)

Indeed (and for those following at home: #563121).

Still, losing Riku's band-aid wasn't nice. Anyway, now that the root
issue's being addressed, the band-aid shouldn't be necessary for too
much time.

  I've just uploaded a package re-introducing Riku's changes to prevent
  buildds to be fucked again after a couple of builds (which I repeat
  needs manual intervention, which is not nice).
 
 Thanks; I've got a defoma patch that I'm testing here; can you suggest a
 method to test the resulting fontconfig patches built with that change?

What I did to check how my fontconfig upload was going was:
 - grab my nearest chroot, possibly minimal-like;
 - make sure defoma wasn't installed;
 - copy all fontconfig binaries there;
 - dpkg -i /tmp/*.deb;
 - apt-get -f install

That's how I noticed the set +e bits, commands that weren't found, and
made sure it wasn't making the postinst script fail. I'm probably
going to do so with the (new) defoma patch I've just written a mail
about in the other bug. I'll keep you posted.

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#563127: gnutls-bin: Can no longer verify connections to my company's email server

2009-12-31 Thread Andreas Metzler
On 2009-12-31 Sam Morris s...@robots.org.uk wrote:
 Package: gnutls-bin
 Version: 2.8.5-2
 Severity: important

 Today, Evolution stopped being able to connect to my company's email
 server, claiming that the SSL certificate was bad. Thunderbird does not
 have that problem, but while debugging the issue I found that gnutls-cli
 does too.

 I've kept the actual server details out of this public bug report;
 please tell me what email address I can mail them to if you want to
 debug the issue on your end.

 $ gnutls-cli --x509cafile /etc/ssl/certs/Go_Daddy_Class_2_CA.pem --starttls 
 -p imap imap.example.com
[...]

Hello,

color me stupid, but I cannot find any reference to the certificate in
the file /etc/ssl/certs/Go_Daddy_Class_2_CA.pem (C=US,O=The Go Daddy
Group\, Inc.,OU=Go Daddy Class 2 Certification Authority valid
2004-2034) in the debugging output. I think you need to use
/etc/ssl/certs/ValiCert_Class_2_VA.pem instead.

cu andreas



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



Bug#544879: Missing libclutter-doc package

2009-12-31 Thread Cyril Brulebois
(Never heard of Cc'ing bug submitters?)

gregor herrmann gre...@debian.org (20/12/2009):
  It looks like the clutter-doc package was missing from the last
  upload (cfr. .changes files) but still exists in debian/control
  and .dsc files.
 
 Rebuilding the package brings back to missing binary
 package. binNMU?

How would a binNMU help getting back an Architecture: all package?

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#549217: Not reproducible with 0.19.3

2009-12-31 Thread Neil Muller
When using python-logilab-astng 0.19.3, I can no longer reproduce the bug.



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



Bug#563139: gamera: FTBFS (kind of) with docutils 0.6

2009-12-31 Thread Jakub Wilk

Source: gamera
Version: 3.2.3-1
Severity: serious
Justification: fails to build from source

With docutils 0.6, gamera fails to generate documentation:

| cd doc  PYTHONPATH=/tmp/buildd/gamera-3.2.3/build/lib.linux-i686-2.5 python 
gendoc.py
| Gamera documentation generator.
| Usage: gendoc.py [-d doc_directory]
|   (if doc_directory is omitted, the current directory
|will be used.)
| 
| Copying CSS file

| Copying over generic images
|   OneBit
|   GreyScale
|   Grey16
|   RGB
|   GreyScale
|   GreyScale
| Generating plugin documentation
|   Analysis
| Contour
|   Binarization
|   Classification
|   Color
|   Combine
| Arithmetic
| Logical
|   Conversion
|   Convolution
| Kernels
|   Corelation
|   Deformations
|   Displaying
|   Draw
| No protocol specified
|   Edge
|   ExternalLibraries
| Numpy
| PIL
|   Features
|   File
|   Filter
| Thinning
|   List
|   Morphology
|   PageSegmentation
|   Relational
|   Runlength
|   Segmentation
|   Shearing
|   Thresholding
|   Utility
| NestedLists
|   XML
| Generating class documentation
|gamera.core.ImageInfo
|gamera.core.ImageData
|gamera.core.RGBPixel
| Copying images
| Converting to HTML
|   Generating xml_format
| Traceback (most recent call last):
|   File /tmp/buildd/gamera-3.2.3/build/lib.linux-i686-2.5/gamera/gendoc.py, 
line 248, in convert_to_html
| writer_name=html, settings_overrides=overrides)
|   File /usr/lib/pymodules/python2.5/docutils/core.py, line 362, in 
publish_file
| enable_exit_status=enable_exit_status)
|   File /usr/lib/pymodules/python2.5/docutils/core.py, line 646, in 
publish_programmatically
| output = pub.publish(enable_exit_status=enable_exit_status)
|   File /usr/lib/pymodules/python2.5/docutils/core.py, line 203, in publish
| self.settings)
|   File /usr/lib/pymodules/python2.5/docutils/readers/__init__.py, line 69, 
in read
| self.parse()
|   File /usr/lib/pymodules/python2.5/docutils/readers/__init__.py, line 74, 
in parse
| self.document = document = self.new_document()
|   File /usr/lib/pymodules/python2.5/docutils/readers/__init__.py, line 80, 
in new_document
| document = utils.new_document(self.source.source_path, self.settings)
|   File /usr/lib/pymodules/python2.5/docutils/utils.py, line 424, in 
new_document
| source_path = decode_path(source_path)
|   File /usr/lib/pymodules/python2.5/docutils/utils.py, line 340, in 
decode_path
| path = path.decode(sys.getfilesystemencoding(), 'strict')
| AttributeError: 'NoneType' object has no attribute 'decode'

--
Jakub Wilk


signature.asc
Description: Digital signature


Bug#563132: Command line options shouldn't be translated in aptitude --help

2009-12-31 Thread Christian PERRIER
Quoting guo yixuan (culu@gmail.com):
 Package: aptitude
 Version: 0.4.11.11-1+b2
 Severity: minor
 Tags: l10n
 
 In the output of aptitude --help, there are some actions translated into
 Chinese (LANG=zh_CN.UTF-8):
  为什么   - 显示需要另一软件包的手动安装的软件包,或者
 为什么一个或多个软件包需要给定的软件包
  为什么不 - 显示导致与给定软件包包冲突的手动安装的包,或者为什么
 如果安装一个或多个软件包会导致与给定软件包冲突
 
 English conterparts (LANG=):
  why  - Show the manually installed packages that require a package, 
 or
 why one or more packages would require the given package
  why-not  - Show the manually installed packages that lead to a conflict
 with the given package, or why one or more packages would
 lead to a conflict with the given package if installed


That sounds fair.

CC'ing the currently registered translators for Simplified
Chinese. Could you guys look at Yixuan's objections?




signature.asc
Description: Digital signature


Bug#563125: mpd won't properly install untill localhost changed to 127.0.0.1 in /etc/mpd.conf

2009-12-31 Thread Alessio Treglia
On Thu, Dec 31, 2009 at 9:56 AM, Max Kellermann m...@duempel.org wrote:
 Let me cite myself:

  That is not a fix, because this breaks IPv6 support.


I agree, it's only a workaround, but what should we do to fix it finally?

-- 
Alessio Treglia quadris...@ubuntu.com
Ubuntu MOTU Developer | Homepage: http://www.alessiotreglia.com
0FEC 59A5 E18E E04F 6D40 593B 45D4 8C7C DCFC 3FD0



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



Bug#563138: message not captureable

2009-12-31 Thread jidanni
Also I thought

(y-or-n-p Ha ha, there is no way for you to capture this text here in
x-windows, short of using \emacs -nw\, or making a .jpg screenshot.
Forget about  view-echo-area-messages, you won't find these words there!)

But in fact, y-or-n-p are indeed in view-echo-area-messages.

But not this particular message case... perhaps due to the error.

By the way, report-emacs-bug shows a lot of
Load-path shadows:
/usr/share/emacs-snapshot/site-lisp/css-mode/css-mode hides 
/usr/share/emacs/site-lisp/css-mode/css-mode
/usr/share/emacs/site-lisp/bbdb/lisp/bbdb-rmail hides 
/usr/share/emacs-snapshot/site-lisp/bbdb/bbdb-rmail
/usr/share/emacs/site-lisp/bbdb/lisp/bbdb-mhe hides 
/usr/share/emacs-snapshot/site-li



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



Bug#563125: mpd won't properly install untill localhost changed to 127.0.0.1 in /etc/mpd.conf

2009-12-31 Thread Max Kellermann
On 2009/12/31 02:03, Alessio Treglia quadris...@ubuntu.com wrote:
 The fix is to edit /etc/mpd.conf and change the bind_to_address from
 localhost to 127.0.0.1 - thanks to BwackNinja for the info
 
 after the change a:
 sudo dpkg --configure -a
 fixes the installation and allows MPD to properly bind to the port.

Let me cite myself:

 That is not a fix, because this breaks IPv6 support.



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



Bug#563125: mpd won't properly install untill localhost changed to 127.0.0.1 in /etc/mpd.conf

2009-12-31 Thread Max Kellermann
On 2009/12/31 09:59, Alessio Treglia quadris...@ubuntu.com wrote:
 On Thu, Dec 31, 2009 at 9:56 AM, Max Kellermann m...@duempel.org wrote:
  Let me cite myself:
 
   That is not a fix, because this breaks IPv6 support.
 
 
 I agree, it's only a workaround, but what should we do to fix it finally?

Fix your resolver to not return two conflicting addresses for
localhost.



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



Bug#560176: xdotool: Please provide libxdo.so and header files

2009-12-31 Thread Jordan Sissel
On Sat, Dec 12, 2009 at 2:54 AM, Jordan Sissel j...@semicomplete.com wrote:
 3) have libxdo export a new function, (named perhaps xdo_symbol_map())
 that does a lookup in the static symbol_map on behalf of the caller.

 I'll look into this problem this weekend. Using a function would
 probably simplify the consumers of libxdo that need key map data. So,
 #3 probably. End result will be libxdo exporting something like
 xdo_keysym_to_char(), same for symbol_map, and not distributing
 xdo_util.h with any package as it won't be needed.

Of course, by this weekend I mean tonight. Time is such a silly thing ;)

At any rate, I moved the two xdo_util items to be available via
functions in libxdo and updated keynav to use those functions.

http://semicomplete.googlecode.com/files/keynav-20091231.01.tar.gz
http://semicomplete.googlecode.com/files/xdotool-20091231.01.tar.gz

Using these, I've manually installed xdotool and built keynav against
it and things seem peachy. A few other changes went into keynav (see
the CHANGELIST file).

Can y'all look it over and see if I missed anything related to
problems with packaging into debian? Let me know if you need any other
changes made :)

-Jordan



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



Bug#541610: docbook2odf: diff for NMU version 0.244-1.1

2009-12-31 Thread Stefano Zacchiroli
tags 541610 + patch pending
thanks

Dear maintainer,

I've prepared an NMU for docbook2odf (versioned as 0.244-1.1) and
uploaded it to DELAYED/2, according to devref §5.11.1.

Regards.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime
diff -u docbook2odf-0.244/debian/control docbook2odf-0.244/debian/control
--- docbook2odf-0.244/debian/control
+++ docbook2odf-0.244/debian/control
@@ -7,7 +7,7 @@
 
 Package: docbook2odf
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libarchive-zip-perl, libxml-sablot-perl, zip, perlmagick
+Depends: ${shlibs:Depends}, ${misc:Depends}, ${perl:Depends}, libarchive-zip-perl, libxml-libxslt-perl, zip, perlmagick
 Description: XSLT based conversions from docbook to Oasis Open Document (openoffice.org)
  toolkit that automaticaly converts DocBook to OASIS OpenDocument (ODF, the ISO
  standardized format used for texts, spreadsheets and presentations).
diff -u docbook2odf-0.244/debian/changelog docbook2odf-0.244/debian/changelog
--- docbook2odf-0.244/debian/changelog
+++ docbook2odf-0.244/debian/changelog
@@ -1,3 +1,11 @@
+docbook2odf (0.244-1.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * switch dependency from libxml-sablot-perl (now gone) to
+libxml-libxslt-perl (Closes: #541610)
+
+ -- Stefano Zacchiroli z...@debian.org  Thu, 31 Dec 2009 10:07:57 +0100
+
 docbook2odf (0.244-1) unstable; urgency=low
 
   * New upstream release


Bug#527215: limit source to tulip, tagging 527215

2009-12-31 Thread Stefano Zacchiroli
On Sat, Dec 26, 2009 at 12:56:29AM +0100, Christoph Egger wrote:
 #tulip (3.1.2-2.2) unstable; urgency=low
 #
 #  * Fix build with gcc-4.4 using patch from Martin Michlmayr (Closes:
 ##527215 )
 #
 limit source tulip
 tags 527215 + pending

Heya Christoph,
  you marked this as pending about a week ago, but I'm unable to find
any trace of -2.2 in the archive or in the DELAYED queue. Also, I can't
find the patch posted to the BTS. Has the upload been canceled?

In case you need to redo the build, notice that there are a couple
others RC bugs affecting tulip which will inhibit it from migrating to
testing, even if this one gets fixed.

TIA!
Cheers.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime


signature.asc
Description: Digital signature


Bug#563119: devicekit-disks: Automount stopped working with message Not authorized

2009-12-31 Thread Martin Pitt
Hello Jakub,

Jakub Lucký [2009-12-31  0:45 +0100]:
 When I plug in my external drive (NTFS and ext3 partitions, see
 attached dmesg output) I got message Not authorized (see attached
 screenshot gnome-automount). Even if I try to mount it with
 palimpset (from gnome-disk-utility) I got the same error (also
 attached)

DK-disks dump looks fine, the drive is recognized as
non-system-internal.

What is the output of

  pkaction --action-id org.freedesktop.devicekit.disks.filesystem-mount 
--verbose

?

Martin

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



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



Bug#563132: Command line options shouldn't be translated in aptitude --help

2009-12-31 Thread Deng, Xiyue
On 12/31/09 12:59 AM, Christian PERRIER wrote:
 Quoting guo yixuan (culu@gmail.com):
   
 Package: aptitude
 Version: 0.4.11.11-1+b2
 Severity: minor
 Tags: l10n

 In the output of aptitude --help, there are some actions translated into
 Chinese (LANG=zh_CN.UTF-8):
  为什么   - 显示需要另一软件包的手动安装的软件包,或者
 为什么一个或多个软件包需要给定的软件包
  为什么不 - 显示导致与给定软件包包冲突的手动安装的包,或者为什么
 如果安装一个或多个软件包会导致与给定软件包冲突

 English conterparts (LANG=):
  why  - Show the manually installed packages that require a package, 
 or
 why one or more packages would require the given package
  why-not  - Show the manually installed packages that lead to a conflict
 with the given package, or why one or more packages would
 lead to a conflict with the given package if installed
 

 That sounds fair.

 CC'ing the currently registered translators for Simplified
 Chinese. Could you guys look at Yixuan's objections?


   
That translation may have been done before I took over.  If the
command-line action is never translated, it is pointless to translate
them in the --help message as the translated action won't work at all
and may confuse users.  So I guess it'd better to keep them untranslated.

Thanks for the notice.

Regards,
Deng Xiyue



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



Bug#557463: closed by Ryan Niebur r...@debian.org ()

2009-12-31 Thread Oswald Buddenhagen
On Fri, Dec 25, 2009 at 04:12:03AM +, Debian Bug Tracking System wrote:
 debsums does have support for localepurge.
 
well, then i suggest re-purposing this report to mean make the docs
(incl. package description) less absolute in claiming that no such
support exists. ;-)



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



Bug#405709: closed by Sandro Tosi mo...@debian.org (Re: amule: aMule configuration screws up after unexpected poweroff)

2009-12-31 Thread Marc Coll
I'm currently using ext4, and it still happens, so it's not an XFS 
issue. Besides, I don't see any reason why aMule should be constantly 
writing to amule.conf, since it's a file that should never change. 
Perhaps the [Statistics] section should be kept in a different file. 
Also, the files which are constantly being written, like the *.part 
files, never get lost. So I guess it can be aMule's fault.


Marc Coll

This is an automatic notification regarding your Bug report
which was filed against the amule package:

#405709: amule: aMule configuration screws up after unexpected poweroff

It has been closed by Sandro Tosi mo...@debian.org.

Their explanation is attached below along with your original report.
If this explanation is unsatisfactory and you have not received a
better one in a separate message then please contact Sandro Tosi 
mo...@debian.org by
replying to this email.


  




Assumpte:
Re: amule: aMule configuration screws up after unexpected poweroff
De:
Sandro Tosi mo...@debian.org
Data:
Wed, 30 Dec 2009 23:46:49 +0100
Per a:
405709-d...@bugs.debian.org, 405709-submit...@bugs.debian.org

Per a:
405709-d...@bugs.debian.org, 405709-submit...@bugs.debian.org


Hello Marc,

On Fri, Jan 05, 2007 at 06:59:58PM +0100, marc coll wrote:
  

Package: amule
Version: 2.1.3-1
Severity: normal

Every time my computer loses power unexpectedly (it happens sometimes, since I 
don't have
an UPS) while aMule is running, aMule configuration is lost when I start it 
again. All
my categories disappear, my screen layout... basically all the things kept in 
amule.conf
get lost when aMule is not properly closed.

Since I'm using a decent journaling filesystem (XFS) and all the other programs 
seem to work
fine, I assume it's aMule's fault.

It is not quite annoying, but I have to keep a backup version of the config 
file to avoid
losing my preferences every time.



XFS applies this policy when resuming from an unexpected unmount of
the fs (such as in power loss): delete (or empty) any file in a middle
of a transition. So, since the amule files are constantly written,
they have higher probability to be removed/emptied after reboot.

That's not an amule problem, but an intrinsic XFS functionality. That
said, I'm closing this report.

Regards,
  




Assumpte:
amule: aMule configuration screws up after unexpected poweroff
De:
marc coll marc...@ya.com
Data:
Fri, 05 Jan 2007 18:59:58 +0100
Per a:
Debian Bug Tracking System sub...@bugs.debian.org

Per a:
Debian Bug Tracking System sub...@bugs.debian.org


Package: amule
Version: 2.1.3-1
Severity: normal

Every time my computer loses power unexpectedly (it happens sometimes, since I don't have 
an UPS) while aMule is running, aMule configuration is lost when I start it again. All

my categories disappear, my screen layout... basically all the things kept in 
amule.conf
get lost when aMule is not properly closed.

Since I'm using a decent journaling filesystem (XFS) and all the other programs seem to work 
fine, I assume it's aMule's fault.


It is not quite annoying, but I have to keep a backup version of the config file to avoid 
losing my preferences every time.



-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: amd64 (x86_64)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18.2
Locale: lang=ca...@euro, lc_ctype=ca...@euro (charmap=ISO-8859-15)

Versions of packages amule depends on:
ii  amule-common 2.1.3-1 common files for the rest of aMule
ii  libc62.3.6.ds1-8 GNU C Library: Shared libraries
ii  libcrypto++5.2c2a5.2.1c2a-3  General purpose cryptographic shar
ii  libgcc1  1:4.1.1-19  GCC support library
ii  libstdc++6   4.1.1-19The GNU Standard C++ Library v3
ii  libwxbase2.6-0   2.6.3.2.1.5 wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-02.6.3.2.1.5 wxWidgets Cross-platform C++ GUI t
ii  zlib1g   1:1.2.3-13  compression library - runtime

Versions of packages amule recommends:
ii  amule-utils   2.1.3-1utilities for aMule (command-line 


-- no debconf information

  





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



Bug#519265: still having problems simply printing plaintext

2009-12-31 Thread Francesco Poli
On Sat, 10 Oct 2009 00:37:07 +0200 Francesco Poli wrote:

 On Tue, 29 Sep 2009 19:36:34 +0200 Francesco Poli wrote:
 
  On Thu, 17 Sep 2009 13:29:46 -0700 Ivan Kohler wrote:
  
   Still present in 1.4.1-1.
  
  I've just experienced this bug myself (on testing, cups/1.3.11-1
  +b1).
 
 And now I can confirm that this bug is still present in cups/1.4.1-4
 (currently in Debian testing).

Still present in cups/1.4.2-4 :-(

 
 [...]
  May we have a reply from the Debian CUPS Maintainers, please?
 
 Again, please someone reply...

Any maintainer reaction, please?


-- 
 New location for my website! Update your bookmarks!
 http://www.inventati.org/frx
. Francesco Poli .
 GnuPG key fpr == C979 F34B 27CE 5CD8 DC12  31B5 78F4 279B DD6D FCF4


pgpeoFsArNBj7.pgp
Description: PGP signature


Bug#563095: Bug#550337: merging 550337 563095

2009-12-31 Thread Michael Prokop
* Michael Prokop m...@debian.org [20091231 09:28]:

 #same issue
 merge 550337 563095

JFTR:

The merge is nonsense of course because it affects two different
packages (I didn't see that before, sorry).

But it's the same issue in #550337 and #563095

As stated in #550337 already - find further information and
discussion at:

  http://thread.gmane.org/gmane.comp.boot-loaders.grub.devel/14625

regards,
-mika-


signature.asc
Description: Digital signature


Bug#563134: IDE hard drive not seen by Debian kernel packages since 2.6.31

2009-12-31 Thread Bryan Cebuliak
my lshw output
description: Computer
width: 32 bits
  *-core
   description: Motherboard
   physical id: 0
 *-memory
  description: System memory
  physical id: 0
  size: 478MiB
 *-cpu
  product: Intel(R) Pentium(R) 4 CPU 3.00GHz
  vendor: Intel Corp.
  physical id: 1
  bus info: c...@0
  version: 15.2.9
  size: 3GHz
  width: 32 bits
  capabilities: fpu fpu_exception wp vme de pse tsc msr pae
mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr
sse sse2 ss ht tm pbe pebs bts cid xtpr
  configuration: id=0
*-logicalcpu:0
 description: Logical CPU
 physical id: 0.1
 width: 32 bits
 capabilities: logical
*-logicalcpu:1
 description: Logical CPU
 physical id: 0.2
 width: 32 bits
 capabilities: logical
*-cache:0
 description: L1 cache
 physical id: 0
 size: 8KiB
*-cache:1
 description: L2 cache
 physical id: 1
 size: 512KiB
 *-pci
  description: Host bridge
  product: Radeon 9100 IGP Host Bridge
  vendor: ATI Technologies Inc
  physical id: 100
  bus info: p...@:00:00.0
  version: 02
  width: 32 bits
  clock: 66MHz
  configuration: driver=agpgart-ati latency=64
  resources: irq:0 memory:e000-e3ff(prefetchable)
memory:ec004000-ec004fff
*-pci:0
 description: PCI bridge
 product: Radeon 9100 IGP AGP Bridge
 vendor: ATI Technologies Inc
 physical id: 1
 bus info: p...@:00:01.0
 version: 00
 width: 32 bits
 clock: 66MHz
 capabilities: pci normal_decode bus_master
 resources: ioport:b000(size=4096)
memory:e800-e9ff memory:e400-e7ff(prefetchable)
   *-display UNCLAIMED
description: VGA compatible controller
product: Radeon 9100 IGP
vendor: ATI Technologies Inc
physical id: 5
bus info: p...@:01:05.0
version: 00
width: 32 bits
clock: 66MHz
capabilities: vga_controller bus_master cap_list
configuration: latency=64 mingnt=8
resources: memory:e400-e7ff(prefetchable)
ioport:b000(size=256) memory:e900-e900
memory:e800-e801(prefetchable)
*-usb:0
 description: USB Controller
 product: OHCI USB Controller #1
 vendor: ATI Technologies Inc
 physical id: 13
 bus info: p...@:00:13.0
 version: 01
 width: 32 bits
 clock: 66MHz
 capabilities: ohci bus_master
 configuration: driver=ohci_hcd latency=64
 resources: irq:19 memory:ec00-ec000fff
*-usb:1
 description: USB Controller
 product: OHCI USB Controller #2
 vendor: ATI Technologies Inc
 physical id: 13.1
 bus info: p...@:00:13.1
 version: 01
 width: 32 bits
 clock: 66MHz
 capabilities: ohci bus_master
 configuration: driver=ohci_hcd latency=64
 resources: irq:19 memory:ec001000-ec001fff
*-usb:2
 description: USB Controller
 product: EHCI USB Controller
 vendor: ATI Technologies Inc
 physical id: 13.2
 bus info: p...@:00:13.2
 version: 01
 width: 32 bits
 clock: 66MHz
 capabilities: ehci bus_master cap_list
 configuration: driver=ehci_hcd latency=64
 resources: irq:19 memory:ec002000-ec002fff
*-serial
 description: SMBus
 product: SMBus
 vendor: ATI Technologies Inc
 physical id: 14
 bus info: p...@:00:14.0
 version: 17
 width: 32 bits
 clock: 66MHz
 configuration: driver=piix4_smbus latency=0
 resources: irq:0 ioport:c000(size=16) memory:ec003000-ec0033ff
*-ide
 description: IDE interface
 product: Dual Channel Bus Master PCI IDE Controller
 vendor: ATI Technologies Inc
 physical id: 14.1
 bus info: p...@:00:14.1
 version: 00
 width: 32 bits
 clock: 33MHz
 capabilities: ide bus_master
 configuration: driver=ATIIXP_IDE latency=64
 resources: irq:16 ioport:1f0(size=8) ioport:3f6
ioport:170(size=8) ioport:376 ioport:f000(size=16)
   *-ide:0
description: IDE Channel 0

Bug#562026: [Pkg-utopia-maintainers] Bug#562026: [PATCH] Re: Bug#562026: kdm cannot open ConsoleKit session on first login attempt

2009-12-31 Thread George Kiagiadakis
On Thu, Dec 31, 2009 at 2:17 AM, Michael Biebl bi...@debian.org wrote:
 George Kiagiadakis wrote:
 So, I have modified console-kit-daemon a bit, so that it registers Manager
 before it registers the service name and it works fine. Patch attached.

 Hi,

 upstream already has a fix for this in current Git master:
 http://cgit.freedesktop.org/ConsoleKit/commit/?id=2418840248f07025ad0edc96ed17e03ce5e47f3e

 I would prefer to pull the patch from upstream Git.
 Can you confirm that the above patch also works for you?

Yes, it works. It's almost the same patch after all :)

Regards,
George



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



Bug#563140: application freezes in presentation mode if gtk.gdk.threads_init is called

2009-12-31 Thread Peter Ward
Package: python-evince
Version: 2.28.0-5

I'm trying to write an application which makes use of both gstreamer
and python-evince - in order to get gstreamer to work properly, I need
to call gtk.gdk.threads_init() when importing modules.
This unexpectedly causes problems when using a evince.View widget in
presentation mode.

I have included below a short program which demonstrates the problem -
I can reproduce this bug in both my desktop and my laptop.


import gtk
gtk.gdk.threads_init() # commenting out this line makes the problem go away.

import evince

class EvinceWindow(gtk.Window):
    def __init__(self):
    super(EvinceWindow, self).__init__()

    document = evince.factory_get_document(
    'file:///home/flowblok/test.pdf',
    )

    view = evince.View()
    view.set_document(document)
#    view.set_screen_dpi(96)
#    view.set_sizing_mode(evince.SIZING_BEST_FIT)
    view.set_presentation(True)

    scroll = gtk.ScrolledWindow()
    scroll.add(view)

    self.add(scroll)

if __name__ == '__main__':
    win = EvinceWindow()
    win.show_all()
    win.connect('destroy', gtk.main_quit)
    gtk.main()




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

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

Versions of packages python-evince depends on:
ii  libatk1.0-0 1.28.0-1 The ATK accessibility toolkit
ii  libc6   2.10.2-2 GNU C Library: Shared libraries
ii  libcairo2   1.8.8-2  The Cairo 2D vector graphics libra
ii  libevince1  2.28.2-1 Document (postscript, pdf) renderi
ii  libfontconfig1  2.8.0-1  generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  libglib2.0-02.23.0-1 The GLib library of C routines
ii  libgtk2.0-0 2.18.5-1 The GTK+ graphical user interface
ii  libpango1.0-0   1.26.2-1 Layout and rendering of internatio
ii  python  2.5.4-5  An interactive high-level object-o
ii  python-gtk2 2.16.0-1 Python bindings for the GTK+ widge
ii  python-support  1.0.6automated rebuilding support for P
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

python-evince recommends no packages.

python-evince suggests no packages.

-- no debconf information


--
Peter Ward
http://identi.ca/flowblok/
http://flowblok.selfip.net:8001/



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



Bug#563141: installation-reports: successfully install on VirtualBox

2009-12-31 Thread Csanyi Pal
Package: installation-reports
Severity: normal

I successfully install Debian Squeeze on my VirtualBox that I'm running
on my Debian GNU/Linux Lenny (32bit).

However, when I try to install it first time, at tasksel I choosed the
Graphical Desktop Environment too. Then later, at the and of the installation
of all packages, I get error that this installation step was unsuccessfully.

After that happen, I try once again the installation, but only with the 
Base System. This time I get a running Debian testing system on my VirtualBox.


-- Package-specific info:

Boot method: iso file
Image version: 
http://cdimage.debian.org/cdimage/daily-builds/daily/arch-latest/amd64/iso-cd/debian-testing-amd64-netinst.iso
 31-Dec-2009 04:22
Date: Date and time of the install

Machine: ASUS P5N-E SLI
Partitions: df -Tl will do; the raw partition table is preferred


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

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

Comments/Problems:

Description of the install, in prose, and any thoughts, comments
  and ideas you had during the initial install.


-- 

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

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

==
Installer lsb-release:
==
DISTRIB_ID=Debian
DISTRIB_DESCRIPTION=Debian GNU/Linux installer
DISTRIB_RELEASE=6.0 (squeeze) - installer build 20091229-00:00
X_INSTALLATION_MEDIUM=cdrom

==
Installer hardware-summary:
==
uname -a: Linux debian-vbx-asztal 2.6.30-2-amd64 #1 SMP Fri Sep 25 22:16:56 UTC 
2009 x86_64 GNU/Linux
lspci -knn: 00:00.0 Host bridge [0600]: Intel Corporation 440FX - 82441FX PMC 
[Natoma] [8086:1237] (rev 02)
lspci -knn: 00:01.0 ISA bridge [0601]: Intel Corporation 82371SB PIIX3 ISA 
[Natoma/Triton II] [8086:7000]
lspci -knn: 00:01.1 IDE interface [0101]: Intel Corporation 82371AB/EB/MB PIIX4 
IDE [8086:7111] (rev 01)
lspci -knn: Kernel driver in use: PIIX_IDE
lspci -knn: 00:02.0 VGA compatible controller [0300]: InnoTek Systemberatung 
GmbH VirtualBox Graphics Adapter [80ee:beef]
lspci -knn: 00:03.0 Ethernet controller [0200]: Intel Corporation 82540EM 
Gigabit Ethernet Controller [8086:100e] (rev 02)
lspci -knn: Subsystem: Intel Corporation Device [8086:001e]
lspci -knn: Kernel driver in use: e1000
lspci -knn: 00:04.0 System peripheral [0880]: InnoTek Systemberatung GmbH 
VirtualBox Guest Service [80ee:cafe]
lspci -knn: 00:05.0 Multimedia audio controller [0401]: Intel Corporation 
82801AA AC'97 Audio Controller [8086:2415] (rev 01)
lspci -knn: Subsystem: Intel Corporation Device [8086:]
lspci -knn: 00:06.0 USB Controller [0c03]: Apple Computer Inc. 
KeyLargo/Intrepid USB [106b:003f]
lspci -knn: Kernel driver in use: ohci_hcd
lspci -knn: 00:07.0 Bridge [0680]: Intel Corporation 82371AB/EB/MB PIIX4 ACPI 
[8086:7113] (rev 08)
lspci -knn: 00:0b.0 USB Controller [0c03]: Intel Corporation 
82801FB/FBM/FR/FW/FRW (ICH6 Family) USB2 EHCI Controller [8086:265c]
lspci -knn: Kernel driver in use: ehci_hcd
lsmod: Module  Size  Used by
lsmod: hfsplus71336  0 
lsmod: hfs42504  0 
lsmod: minix  25656  0 
lsmod: msdos   8112  0 
lsmod: ufs62040  0 
lsmod: qnx49512  0 
lsmod: ntfs  177344  0 
lsmod: battery 7840  0 
lsmod: dm_mod 59384  18 
lsmod: md_mod 86692  0 
lsmod: xfs   457328  0 
lsmod: exportfs4656  1 xfs
lsmod: reiserfs  209000  0 
lsmod: jfs   151936  0 
lsmod: ext4  216240  0 
lsmod: jbd2   58816  1 ext4
lsmod: crc16   2272  1 ext4
lsmod: ext3  122848  5 
lsmod: jbd48152  1 ext3
lsmod: vfat   10400  0 
lsmod: fat48072  2 msdos,vfat
lsmod: ext2   62816  1 
lsmod: mbcache 8708  3 ext4,ext3,ext2
lsmod: e1000 114132  0 
lsmod: nls_utf81904  0 
lsmod: isofs  30840  0 
lsmod: nls_base8644  8 
hfsplus,hfs,ntfs,jfs,vfat,fat,nls_utf8,isofs
lsmod: usb_storage61248  0 
lsmod: scsi_mod  158240  1 usb_storage
lsmod: 

Bug#545233: inspircd: 1.2.1 is now released

2009-12-31 Thread Marc Lehmann
Package: inspircd
Version: 1.1.22+dfsg-3
Followup-For: Bug #545233


I know this is not really voting, but 1.2.1 has been released (as well as
2.0a1), and in the meantime, 1.1 is becoming less and less usable due it's
mostly broken support for IPv6.

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

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

Versions of packages inspircd depends on:
hi  libc6 2.7-18 GNU C Library: Shared libraries
ii  libgcc1   1:4.4.1-4  GCC support library
ii  libgnutls26   2.8.3-3the GNU TLS library - runtime libr
ii  libstdc++64.4.1-4The GNU Standard C++ Library v3

inspircd recommends no packages.

inspircd suggests no packages.

-- no debconf information



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



Bug#530232: Missing visual update of mail list

2009-12-31 Thread Johann Glaser
Hi!

The problem is still there in 2.28.1-0 (Debian and Ubuntu packages). It
is perfectly reproducible.

This bug only relates to the visual update of the list of mails (top
right area of evolution). This visual update is catched up as soon as
another reason for a visual update is given (e.g. change focus, switch
virtual desktop, clicking on the mail list, ... (see my original bug
report)). So this has nothing to do with a corrupted database.

BTW: This bug was reported upstream as
https://bugzilla.gnome.org/show_bug.cgi?id=598015 on 2009-10-10.

Bye
  Hansi





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



Bug#563026: smem fails with '... chart requires matplotlib' even though matplotlib is installed

2009-12-31 Thread Michael Prokop
* Michal Čihař ni...@debian.org [20091231 08:31]:
 Dne Wed, 30 Dec 2009 23:33:43 +0100
 Michael Prokop m...@debian.org napsal(a):

  % smem --pie=name
  Traceback (most recent call last):
File /usr/bin/smem, line 636, in module
  showpids()
File /usr/bin/smem, line 246, in showpids
  showtable(pt.keys(), fields, columns.split(), options.sort or 'pss')
File /usr/bin/smem, line 455, in showtable
  showpie(l, sort)
File /usr/bin/smem, line 498, in showpie
  while values and (t + values[-1 - c]  (tm * .02) or
  IndexError: list index out of range

 It works for me. Can you please create snapshot of proc data smem uses
 by using /usr/share/doc/smem/examples/capture script and send it to me?

Available at http://grml.org/tmp/smem_kvm.tgz
sha1: cc708a3443aeb54a40781fe74d91cea0b40dd989
(It's a kvm session with 512 MB of memory.)

Please notice that /usr/share/doc/smem/examples/capture uses bashism
(brace expansion) and doesn't work out of the box when /bin/sh
doesn't point to /bin/bash:

| cp: failed to get attributes of `/proc/[0-9]*': No such file or directory

Using /bin/bash for shebang line fixes this issue.

regards,
-mika-


signature.asc
Description: Digital signature


Bug#530234: Moving a read email to any mail directory is sometimes shown as unread

2009-12-31 Thread Johann Glaser
Hi!

The problem is still there in 2.28.1-0 (Debian and Ubuntu packages). It
is perfectly reproducible.

The wrong number of unread mails in the directory tree (left pane of
evolution) can be corrected by opening that directory (clicking on it)
and marking one mail as read and then mark this mail as unread. This
corrects the wrong number.

So, the problem could at most be a corruption of the in-memory database
but not the folders.db.

BTW: This bug was reported upstream as
https://bugzilla.gnome.org/show_bug.cgi?id=598014 on 2009-10-10.

Bye
  Hansi





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



Bug#548149: [gs-cjk-resource] Please move to main

2009-12-31 Thread Hideki Yamane
Hi,

 Now Adobe releases Mapping Resources for PDF files under BSD-style
 license. see http://opensource.adobe.com/wiki/display/pdfmapping/Downloads
 So we can move it to main :)

 If you would eliminate duplicate files, please consider to depends
 poppler-data package and use it. It has all CMap-style data excluding 
 special *RKSJ-H files that is not used in general way.


-- 
Regards,

 Hideki Yamane henrich @ debian.or.jp/iijmio-mail.jp
 http://wiki.debian.org/HidekiYamane



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



Bug#563142: lxpanel: adapting to change of resolution (resizing) takes over 20 seconds

2009-12-31 Thread Paul Menzel
Subject: lxpanel: adapting to change of resolution (resizing) takes over 20 
seconds
Package: lxpanel
Version: 0.5.4.1-1
Severity: normal

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

Dear Debian hackers,


resizing or changing the resolution of the screen with

xrandr --output LVDS1 --off --output VGA1 --auto

(for example from 600x480 to 1200x1024) makes the (then too small/short)
panel staying on the top left and it is only drawn at the bottom after
over 20 seconds.


|  |
|  |
|--| ← This is where the panel stays for 20 seconds.
|  |
|  |


Please ask if I need to do better in describing for others to
understand. Please also tell me, if I can provide more information.


Thanks,

Paul

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

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

Versions of packages lxpanel depends on:
ii  libasound21.0.21a-1  shared library for ALSA applicatio
ii  libatk1.0-0   1.28.0-1   The ATK accessibility toolkit
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libcairo2 1.8.8-2The Cairo 2D vector graphics libra
ii  libfontconfig12.8.0-1.1  generic font configuration library
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libglib2.0-0  2.22.3-2   The GLib library of C routines
ii  libgtk2.0-0   2.18.5-1   The GTK+ graphical user interface 
ii  libmenu-cache00.2.6-1an implementation of the freedeskt
ii  libpango1.0-0 1.26.2-1   Layout and rendering of internatio
ii  libx11-6  2:1.3.2-1  X11 client-side library
ii  lxmenu-data   0.1.1-1freedesktop.org menu specification

Versions of packages lxpanel recommends:
ii  manpages-dev  3.23-1 Manual pages about using GNU/Linux

Versions of packages lxpanel suggests:
ii  dillo [www-browser]   0.8.6-3Small and fast web browser
ii  epiphany-browser [www-browser 2.29.3-1   Intuitive GNOME web browser
ii  lxsession [lxsession-lite]0.4.1-1a lightweight X11 session manager
ii  menu  2.1.42 generates programs menu for all me
ii  w3m [www-browser] 0.5.2-2.1  WWW browsable pager with excellent

-- no debconf information


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#554336: Bug #557074: svk scheduled for removal

2009-12-31 Thread Torsten Werner
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

the maintainer of svk, libsvn-mirror-perl, and libsvn-simple-perl has
requested the removal of these packages which affects your package
etcinsvk. Please take over maintainership of the packages and close the
removal requests throught changelog entries if you want to keep them in
the archive.

Thanks,
Torsten
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.10 (GNU/Linux)
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org

iEYEARECAAYFAks8df4ACgkQfY3dicTPjsOYqgCfck0aT3C9t1Na7CnSownDouew
uuIAn05nlJKhKHauSJ4zz2WDfu/bmmRZ
=94BJ
-END PGP SIGNATURE-



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



Bug#563040: [texlive-base] SIunits and ams* do not work together - misleading help?

2009-12-31 Thread Hilmar Preusse
On 30.12.09 Frederik Schwarzer (schwarz...@gmail.com) wrote:

Hi,

 If I try to use amsfonts together with SIunits, pdflatex gives me an
 error, that these cannot be used together
 ! Package SIunits Error: The command \square was already defined.
 (SIunits)Possibly due to the amssymb package.
 
I can reproduce the problem using the following minimal example:

\documentclass{article}
\usepackage{amsfonts}
\usepackage{SIunits}
\begin{document}
\end{document}

 It then says
 Hint: use option `amssymb' or `squaren' with SIunits package.
 See SIunits.dvi or readme.txt section: Known problems and limitations.
 
 Note, that it already thinks, that I am using amssymb in the error message
 above.
 
No. I just says that the command \square is already defined probably
due to the amssymb package.  This is a wild guess by the SIunits
package and wrong in this case: the symbol is defined in amsfonts.sty
you're loading.

 Using the amssymb package does not change anything and squaren.sty
 is not available in Debian.
 
Please read the help better. It says:

 Hint: use option `amssymb' or `squaren' with SIunits package. See
 SIunits.dvi or readme.txt section: Known problems and limitations.

i.e. these `amssymb' and `squaren' are options for the SIunits
package.  After replacing \usepackage{SIunits} by
\usepackage[amssymb]{SIunits} my minimal example at least compiles
fine.

H.
-- 
sigmentation fault



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



Bug#563143: libgpod: Homepage of upstream has changed

2009-12-31 Thread Olivier Berger
Package: libgpod
Severity: minor

FYI, http://packages.qa.debian.org/libg/libgpod.html points to 
http://www.gtkpod.org/libgpod.html. 
However, it's now at http://www.gtkpod.org/libgpod/.

Hope this helps.

Best regards,
-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: i386 (i686)

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



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



Bug#563069: RM: gtk+extra2 -- RoQA; FTBFS, dead upstream, orphaned

2009-12-31 Thread Torsten Werner
Hi,

Neil Williams schrieb:
 gpsim is the only other dependency but is already abandoned and has
 two RC bugs. I've already enquired about removing gpsim. Should a second
 bug be filed for that removal (or this one cloned for gpsim)?

yes, please

thanks,
Torsten



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



Bug#563109: ITP: e17-modules-svn -- Misc plugins for the e17 window manager

2009-12-31 Thread Albin Tonnerre
On Wed, 30 Dec 2009 23:51 +0100, Mike Hommey wrote :
 On Wed, Dec 30, 2009 at 11:28:37PM +0100, Albin Tonnerre wrote:
  Package: wnpp
  Severity: wishlist
  Owner: Albin Tonnerre lu...@debian.org


  * Package name: e17-modules-svn
Version : 0.16.999.063
Upstream Author : e17 development team 
  enlightenment-de...@lists.sourceforge.net
  * URL : http://www.enlightenment.org/
  * License : various (GPL2, BSD, LGPL2.1)
Programming Lang: C
Description : Misc plugins for the e17 window manager

  This package provides a collection of non-core modules for e17, from the
  enlightenment.org SVN repository. They provide various functionnality, such 
  as :
   - Tiling capability
   - Network status applet
   - cpu/mem/disks status applet
   - digital clock applet
   - experimental composite extension

 Could the package name *not* include -svn in its name, and use -extras
 or something similar if e17-modules only is not possible ?

Sure, I'll go for e17-modules-extras then.

Regards,
-- 
Albin Tonnerre


signature.asc
Description: Digital signature


Bug#561693: sun-java6-plugin: solved with temporary workaround

2009-12-31 Thread Giorgos Pallas
Package: sun-java6-plugin
Version: 6-16-1
Severity: normal


http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=560044) solved the problem
for me also, but as this is just a workaround, I guess the bug should not be
closed until the source of the problem is solved.

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

Kernel: Linux 2.6.30-2-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 sun-java6-plugin depends on:
ii  iceweasel 3.5.6-1lightweight web browser based on M
ii  libasound21.0.21a-1  shared library for ALSA applicatio
ii  libx11-6  2:1.3.2-1  X11 client-side library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxi62:1.2.1-2  X11 Input extension library
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 
ii  sun-java6-bin 6-16-1 Sun Java(TM) Runtime Environment (

sun-java6-plugin recommends no packages.

sun-java6-plugin suggests no packages.

-- no debconf information



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



Bug#544113: tiger: diff for NMU version 1:3.2.2-11.1

2009-12-31 Thread Stefano Zacchiroli
tags 544113 + patch pending
thanks

Dear maintainer,

I've prepared an NMU for tiger (versioned as 1:3.2.2-11.1) and uploaded
it to DELAYED/2, according to devref §5.11.1. I've simply removed the
dep on diff, as it is useless now. I've also fixed some debhelper / deps
issues here and there.

Regards.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime
diff -u tiger-3.2.2/debian/changelog tiger-3.2.2/debian/changelog
--- tiger-3.2.2/debian/changelog
+++ tiger-3.2.2/debian/changelog
@@ -1,3 +1,15 @@
+tiger (1:3.2.2-11.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Remove dependency on diff (= 2.0), rationale: deps on essential
+package should not be declared, the package is now called diffutils,
+version 2.0 is part of all Debian suites currently. (Closes: #544113)
+  * Bump debhelper build-dep to = 5, since debhelper compatibility is
+already at level 5.
+  * Add missing deps on ${misc:Depends}
+
+ -- Stefano Zacchiroli z...@debian.org  Thu, 31 Dec 2009 11:00:58 +0100
+
 tiger (1:3.2.2-11) unstable; urgency=low
 
   * Sort the system/Linux/2/inetd file since 'join' complains about it not being
diff -u tiger-3.2.2/debian/control tiger-3.2.2/debian/control
--- tiger-3.2.2/debian/control
+++ tiger-3.2.2/debian/control
@@ -2,13 +2,13 @@
 Section: admin
 Priority: optional
 Maintainer: Javier Fernandez-Sanguino Pen~a j...@debian.org
-Build-Depends: debhelper (= 4.1.13), autoconf, po-debconf (= 0.5.0)
+Build-Depends: debhelper (= 5), autoconf, po-debconf (= 0.5.0)
 Standards-Version: 3.8.0
 Homepage: http://savannah.nongnu.org/projects/tiger/
 
 Package: tiger
 Architecture: any
-Depends: diff (=2.0), net-tools, binutils, bsdmainutils, debconf | debconf-2.0, ucf, ${shlibs:Depends}
+Depends: net-tools, binutils, bsdmainutils, debconf | debconf-2.0, ucf, ${shlibs:Depends}, ${misc:Depends}
 Recommends: sendmail | mail-transport-agent, john, chkrootkit
 Suggests: lsof
 Description: Report system security vulnerabilities
@@ -24,7 +24,7 @@
 
 Package: tiger-otheros
 Architecture: any
-Depends: tiger
+Depends: tiger, ${misc:Depends}
 Description: Scripts to run Tiger in other operating systems
  TIGER, or the 'tiger' scripts, is a set of Bourne shell 
  scripts, C programs and data files which are used to perform


Bug#563144: RM: linux-atm -- ROM; package is now built by linux-atm

2009-12-31 Thread Marco d'Itri
Package: ftp.debian.org
Severity: normal

linux-atm version 1:2.5.1-1.1 now creates a br2684ctl binary package.

-- 
ciao,
Marco


signature.asc
Description: Digital signature


Bug#313406: tetex-bin: Drop the compatibility font paths

2009-12-31 Thread Hilmar Preusse
reassign 313406 tex-common
found 313406 2.05
stop

On 30.12.09 Frank Küster (fr...@kuesterei.ch) wrote:
 Hilmar Preusse hill...@web.de wrote:

Hi,

  http://bugs.debian.org/313406
 
 This means the paths with dvips directly under texmf are still there.
 I'm not sure, however, whether must be dropped is correct - maybe it's
 just are useless. 
 
Reassigning to tex-common for now.

H.
-- 
sigmentation fault



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



Bug#561466: ttf-beteckna: diff for NMU version 0.4-2.1

2009-12-31 Thread Stefano Zacchiroli
tags 561466 + pending
thanks

Dear maintainer,

I've prepared an NMU for ttf-beteckna (versioned as 0.4-2.1) and
uploaded it to DELAYED/5. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
Stefano Zacchiroli -o- PhD in Computer Science \ PostDoc @ Univ. Paris 7
z...@{upsilon.cc,pps.jussieu.fr,debian.org} -- http://upsilon.cc/zack/
Dietro un grande uomo c'è ..|  .  |. Et ne m'en veux pas si je te tutoie
sempre uno zaino ...| ..: | Je dis tu à tous ceux que j'aime
diff -u ttf-beteckna-0.4/debian/changelog ttf-beteckna-0.4/debian/changelog
--- ttf-beteckna-0.4/debian/changelog
+++ ttf-beteckna-0.4/debian/changelog
@@ -1,3 +1,11 @@
+ttf-beteckna (0.4-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Add defoma to package dependencies, thanks to peter green for the
+triaging. (Closes: #561466)
+
+ -- Stefano Zacchiroli z...@debian.org  Thu, 31 Dec 2009 11:12:56 +0100
+
 ttf-beteckna (0.4-2) unstable; urgency=low
 
   * Apply patches of Gregor Herrmann, thanks. (Closes: #551506)
diff -u ttf-beteckna-0.4/debian/control ttf-beteckna-0.4/debian/control
--- ttf-beteckna-0.4/debian/control
+++ ttf-beteckna-0.4/debian/control
@@ -10,5 +10,5 @@
 Package: ttf-beteckna
 Architecture: all
-Depends: ${shlibs:Depends}, ${misc:Depends}
+Depends: ${shlibs:Depends}, ${misc:Depends}, defoma
 Description: TrueType font called Beteckna
  This is a geometric sans-serif font, similar to the popular Futura one.


Bug#500750: change of tags / fixed-upstream

2009-12-31 Thread Jari Aalto
tags 500750 + fixed-upstream
thanks

From: Marc Lehmann schm...@schmorp.de
Subject: Re: fcrackzip: Debian bugs
To: Jari Aalto jari.aa...@cante.net
Date: 2009-12-29 15:36 EET

Having a quick look at the bugreports, there are a lot of invalid or
incomplete ones (e.g. 345206, 528219), and the pw-too long is fixed in cvs
(but not in any release).




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



Bug#563145: fontconfig: upgrade to 2.8.0 and fixed got changed to something strange again

2009-12-31 Thread Norbert Preining
Package: fontconfig
Version: 2.8.0-1.1
Severity: normal

Hi everyone,

there we go again, after upgrade of fontconfig to 2.8.0 Fixed is again
hosed. I am not sure if it is the japanese font, but
$ fc-match Fixed
12x13ja.pcf.gz: Fixed ja
that seems to be the problem. No idea why it uses that font now ...
the head of my fc-match -s Fixed is:
12x13ja.pcf.gz: Fixed ja
6x12-ISO8859-1.pcf.gz: Fixed SemiCondensed
6x12.pcf.gz: Fixed SemiCondensed
6x13.pcf.gz: Fixed SemiCondensed
7x13.pcf.gz: Fixed Regular
8x13.pcf.gz: Fixed Regular
9x15.pcf.gz: Fixed Regular
18x18ja.pcf.gz: Fixed ja
9x18.pcf.gz: Fixed Regular
...

Any suggestion how to go back to what was selected before (I did not
change anything else font related in the mean time).

Best

Norbert


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

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

Versions of packages fontconfig depends on:
ii  fontconfig-config   2.8.0-1.1generic font configuration library
ii  libc6   2.10.2-2 GNU C Library: Shared libraries
ii  libexpat1   2.0.1-7  XML parsing C library - runtime li
ii  libfontconfig1  2.8.0-1.1generic font configuration library
ii  libfreetype62.3.11-1 FreeType 2 font engine, shared lib
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

fontconfig recommends no packages.

Versions of packages fontconfig suggests:
ii  defoma0.11.10-3  Debian Font Manager -- automatic f

-- no debconf information



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



Bug#561466: ttf-beteckna: diff for NMU version 0.4-2.1

2009-12-31 Thread Julien Cristau
Hey Zack,

On Thu, Dec 31, 2009 at 11:25:41 +0100, Stefano Zacchiroli wrote:

 diff -u ttf-beteckna-0.4/debian/changelog ttf-beteckna-0.4/debian/changelog
 --- ttf-beteckna-0.4/debian/changelog
 +++ ttf-beteckna-0.4/debian/changelog
 @@ -1,3 +1,11 @@
 +ttf-beteckna (0.4-2.1) unstable; urgency=low
 +
 +  * Non-maintainer upload.
 +  * Add defoma to package dependencies, thanks to peter green for the
 +triaging. (Closes: #561466)
 +
 + -- Stefano Zacchiroli z...@debian.org  Thu, 31 Dec 2009 11:12:56 +0100
 +
  
I'm not sure that's the right fix, this is possibly yet another victim
of defoma's #563121.

Cheers,
Julien



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



Bug#563132: Command line options shouldn't be translated in aptitude --help

2009-12-31 Thread Ji ZhengYu
 On 12/31/09 12:59 AM, Christian PERRIER wrote:
 Quoting guo yixuan (culu@gmail.com):

 Package: aptitude
 Version: 0.4.11.11-1+b2
 Severity: minor
 Tags: l10n

 In the output of aptitude --help, there are some actions translated into
 Chinese (LANG=zh_CN.UTF-8):
  为什么       - 显示需要另一软件包的手动安装的软件包,或者
                 为什么一个或多个软件包需要给定的软件包
  为什么不     - 显示导致与给定软件包包冲突的手动安装的包,或者为什么
                 如果安装一个或多个软件包会导致与给定软件包冲突

 English conterparts (LANG=):
  why          - Show the manually installed packages that require a 
 package, or
                 why one or more packages would require the given package
  why-not      - Show the manually installed packages that lead to a conflict
                 with the given package, or why one or more packages would
                 lead to a conflict with the given package if installed

 Could you guys look at Yixuan's objections?

Yes, Yixuan is right, the two switcher shoud NOT be translated,
he had sent this message to debian-chinese lists, we talked about
this, and I think many chinese people will agree this view.


-- 
Regards,

G


Bug#563141: more information

2009-12-31 Thread Paul Chany
Hi,

sorry for that that I wasn't fill out other informations, as follows
bellow.

Date: 31-Dec-2009 10:00

Machine: ASUS P5N-E SLI
Partitions: df -Tl will do; the raw partition table is preferred

Filesystem   Type  1K-blocksUsed Available UseX Mounted on
/dev/mapper/debian--vbx--asztal-root
ext3329233   117217   195O18  38X /
tmpfs tmpfs4987OO  O   4987OO  OX /lib/init/rw
udev  tmpfs 1O24O 22O   1OO2O  3X /dev
tmpfs tmpfs4987OO  O   4987OO  OX /dev/shm
/dev/hda1   ext225   13334   2O7553  7X /boot
/dev/mapper/debian--vbx--asztal-home
ext3   2789856   7O168  2577968  3X /home
/dev/mapper/debian--vbx--asztal-tmp
ext3238OO3618O   219535  3X /tmp
/dev/mapper/debian--vbx--asztal-usr
ext3   2822O96  1242O4O  1436696  47X /usr
/dev/mapper/debian--vbx--asztal-var
ext3   135O552   616964   66498O  49X /var


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

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

Comments/Problems:

However, when I try to install it first time, at tasksel I choosed the
Graphical Desktop Environment too. Then later, at the and of the installation
of all packages, I get error that this installation step was unsuccessfully.

After that happen, I try once again the installation, but only with the 
Base System. This time I get a running Debian testing system on my VirtualBox.

--
Regards,
Paul chany




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



Bug#563146: ftbfs on sparc with ICE in gcc

2009-12-31 Thread Matthias Klose

Package: libcap-ng
Version: 0.6.2-3
Severity: serious
Tags: patch
User: debian-sp...@lists.debian.org
Usertags: sparc64

The package fails to build on sparc and sparc64 due to a compiler bug. A 
workaround is to build with -O0 on these architectures.

Upstream bug files at http://gcc.gnu.org/PR42564.
diff -u libcap-ng-0.6.2/debian/rules libcap-ng-0.6.2/debian/rules
--- libcap-ng-0.6.2/debian/rules
+++ libcap-ng-0.6.2/debian/rules
@@ -27,6 +27,12 @@
 ifeq ($(shell dpkg-architecture -qDEB_HOST_ARCH),armel)
 CFLAGS += -O0
 endif
+ifeq ($(shell dpkg-architecture -qDEB_HOST_ARCH),sparc)
+CFLAGS += -O0
+endif
+ifeq ($(shell dpkg-architecture -qDEB_HOST_ARCH),sparc64)
+CFLAGS += -O0
+endif
 
 # shared library versions, option 1
 version=2.0.5
diff -u libcap-ng-0.6.2/debian/changelog libcap-ng-0.6.2/debian/changelog
--- libcap-ng-0.6.2/debian/changelog
+++ libcap-ng-0.6.2/debian/changelog
@@ -1,3 +1,10 @@
+libcap-ng (0.6.2-3.1) unstable; urgency=low
+
+  * NMU
+  * Build with -O0 on sparc/sparc64 to work around GCC ICE.
+
+ -- Matthias Klose d...@debian.org  Thu, 31 Dec 2009 11:30:56 +0100
+
 libcap-ng (0.6.2-3) unstable; urgency=low
 
   * Apply patch from Simon McVittie:


Bug#403105: lomount is not in xen-utils any more

2009-12-31 Thread Richard Hartmann
lomount has been removed from xen-utils, but the same issue
is still true for the rest of the packages binaries.


Richard

ric...@adamantium:~$ apt-file search lomount
ric...@adamantium:~$



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



Bug#563119: devicekit-disks: Automount stopped working with message Not authorized

2009-12-31 Thread Jakub Lucký
output attached


2009/12/31 Martin Pitt mp...@debian.org

 Hello Jakub,

 Jakub Lucký [2009-12-31  0:45 +0100]:
  When I plug in my external drive (NTFS and ext3 partitions, see
  attached dmesg output) I got message Not authorized (see attached
  screenshot gnome-automount). Even if I try to mount it with
  palimpset (from gnome-disk-utility) I got the same error (also
  attached)

 DK-disks dump looks fine, the drive is recognized as
 non-system-internal.

 What is the output of

  pkaction --action-id org.freedesktop.devicekit.disks.filesystem-mount
 --verbose

 ?

 Martin

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



pkaction
Description: Binary data


Bug#563128: ca-certificates: curl and wget fail on https://twitter.com/ (but not iceweasel)

2009-12-31 Thread Philipp Kern
On Thu, Dec 31, 2009 at 03:25:20AM +0100, Vincent Lefevre wrote:
 A strace shows that curl tries to access /etc/ssl/certs/74c26bd0.0
 and that wget tries to access /usr/lib/ssl/certs/74c26bd0.0, but
 this file doesn't exist. It seems to correspond to the has for
 Equifax_Secure_Global_eBusiness_CA-1.pem, which is not installed:

dpkg-reconfigure ca-certificates and selecting it?  *rough guess*

Do you have the do not trust new certificates by default activated?

Kind regards,
Philipp Kern
-- 
 .''`.  Philipp KernDebian Developer
: :' :  http://philkern.de Stable Release Manager
`. `'   xmpp:p...@0x539.de Wanna-Build Admin
  `-finger pkern/k...@db.debian.org


signature.asc
Description: Digital signature


Bug#563148: python-gpod: Please include upstream README instructions

2009-12-31 Thread Olivier Berger
Package: python-gpod
Version: 0.7.2-2
Severity: minor

The upstream bindings/python includes a README explaining how to program using 
the python bindings.

Please do include this README in /usr/share/doc/python-gpod/

Thanks in advance.

Best regards,


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

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

Versions of packages python-gpod depends on:
ii  libc6   2.10.2-2 GNU C Library: Shared libraries
ii  libglib2.0-02.22.3-1 The GLib library of C routines
ii  libgpod40.7.2-2  library to read and write songs an
ii  libgtk2.0-0 2.18.3-1 The GTK+ graphical user interface 
ii  libxml2 2.7.6.dfsg-1 GNOME XML library
ii  python  2.5.4-4  An interactive high-level object-o
ii  python-central  0.6.14+nmu2  register and build utility for Pyt
ii  python-gobject  2.20.0-1 Python bindings for the GObject li
ii  python-mutagen  1.15-2   audio metadata editing library

python-gpod recommends no packages.

python-gpod suggests no packages.

-- no debconf information



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



Bug#514415: Kernel: mtr352 hangs with log: mt352_read_register: readreg error

2009-12-31 Thread Sven Anders

Moritz Muehlenhoff schrieb:

On Sun, Oct 25, 2009 at 04:04:16PM +, Ben Hutchings wrote:

On Sat, 2009-02-07 at 12:34 +0100, Sven Anders wrote:

Package: linux-modules-2.6.26-1-xen-amd64
Version: 2.6.26-13
Package: linux-modules-2.6.26-1-xen-amd64
Version: 2.6.26-13
Severity: grave
Justification: causes non-serious data loss

Sorry for the delay in answering this bug report.

I just installed lenny on xen as dom0. When I wath TV with vdr everything is 
okay. But after a time (4hours or so) I got an kernel error 
and wathcing tv don`t work.

[...]

Was any earlier kernel version (e.g. 2.6.18 in etch) more reliable?
How about a non-Xen kernel?

Unfortunately this driver seems to be unmaintained so I do not expect
this bug to be fixed soon.  However, if you can reproduce the bug in a
current kernel (2.6.31 in the experimental suite) then it may be
possible to get some help from upstream.


Sven, did you test this with a more recent kernel?


Sorry, it is a produktion System with Xen. I can not boot an other 
kernel and wait for an error, because the Xen instances had to boot.


But I have installed the
2.6.26-2-xen-amd64 and have no problems.


Best Regards

Sven



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



Bug#527215: limit source to tulip, tagging 527215

2009-12-31 Thread Christoph Egger
tag 527215 - pending
thanks

On Thu, Dec 31, 2009 at 10:21:54AM +0100, Stefano Zacchiroli wrote:
 On Sat, Dec 26, 2009 at 12:56:29AM +0100, Christoph Egger wrote:
  #tulip (3.1.2-2.2) unstable; urgency=low
  #
  #  * Fix build with gcc-4.4 using patch from Martin Michlmayr (Closes:
  ##527215 )
  #
  limit source tulip
  tags 527215 + pending
 
 Heya Christoph,
   you marked this as pending about a week ago, but I'm unable to find
 any trace of -2.2 in the archive or in the DELAYED queue. Also, I can't
 find the patch posted to the BTS. Has the upload been canceled?
 
 In case you need to redo the build, notice that there are a couple
 others RC bugs affecting tulip which will inhibit it from migrating to
 testing, even if this one gets fixed.
 
 TIA!
 Cheers.

Hi

I somewhat got lost on that package (and can't find the version I
was working on right now) so unfortunately nothing to take  use
here. Might see for the started NMU tomorrow but not sure I can make
it.

Regards

Christoph

-- 
/\  ASCII Ribbon : GPG-Key ID: 0xD49AE731
\ /Campaign   : CaCert Assurer
 X   against HTML : Debian Maintainer
/ \   in eMails   : http://www.debian.org/

http://www.christoph-egger.org/


signature.asc
Description: Digital signature


Bug#534746: Downgrade fixes

2009-12-31 Thread Julien BLACHE
Chris Chiappa ch...@chiappa.net wrote:

Hi Chris,

 Have you tried a build of the epson2 backend from the HEAD? If that
 doesn't work either, I'll forward the report to the epson2 maintainer.

 Hrmm, I assume if I do a fresh git clone that gets me HEAD?  (I have

Yes, HEAD of the master branch.

 no previous git experience and it's not entirely obvious from some
 quick googling) Building from a fresh git clone does indeed seem to
 work with the epson2 backend (and the scanner is not detected by

OK, that's great news. I'll be uploading a new revision of the package
with epson2 from HEAD in a couple of days.

 'epson') but I'm a bit confused because that seems to be producing so
 version 1.0.21 and something I was doing previous was producing 1.1.0
 so I'm wondering if I'm not really at the latest code level.

There's been a bit of back-and-forth with versioning upstream, don't
worry about it.

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - jbla...@debian.org 
 
 Public key available on http://www.jblache.org - KeyID: F5D6 5169 
 GPG Fingerprint : 935A 79F1 C8B3 3521 FD62 7CC7 CD61 4FD7 F5D6 5169 



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



Bug#560069: wesnoth-httt needs files from wesnoth-sof; error in unit description

2009-12-31 Thread Andreas Tille
On Wed, Dec 30, 2009 at 10:45:20PM +0100, Mark de Wever wrote:
 
 I tried the savegame and can't load it due to a missing 'Dwarvish
 Runesmith'. I had a look at the savegame itself and it contains
 references to Invasion from the Unknown. So it might be some data from
 the Invasion from the Unknown addon got picked up in httt. That addon
 also has rune smith and rune master unit.

This sounds like a reasonable explanation.  Yes, I have the add-on
Invasion from the Unknown downloaded on my machine.

 Do you remember whether you also played that addon during while playing
 httt?

I did not played IftU but it is just in my ${HOME}/.wesnoth/data/add-ons
dir.  So I wonder how it might happen that units from this dir are
prefered over the units from main wesnoth which is installed in
/usr/share/games/wesnoth/data under Debian.  Sounds like a bug to me -
but I have no idea whether it is a httt bug or a general problem.

 If so, do you maybe have any hints on how to reproduce the problem
 from scratch?

I will not find the time to replay the campaign but will ask my son
whether he might try without IftU installed.  In any case the Campaign
should work independently whether any add-ons are installed or not.

Kind regards

  Andreas. 

-- 
http://fam-tille.de



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



Bug#563128: ca-certificates: curl and wget fail on https://twitter.com/ (but not iceweasel)

2009-12-31 Thread Vincent Lefevre
On 2009-12-31 11:53:58 +0100, Philipp Kern wrote:
 On Thu, Dec 31, 2009 at 03:25:20AM +0100, Vincent Lefevre wrote:
  A strace shows that curl tries to access /etc/ssl/certs/74c26bd0.0
  and that wget tries to access /usr/lib/ssl/certs/74c26bd0.0, but
  this file doesn't exist. It seems to correspond to the has for
  Equifax_Secure_Global_eBusiness_CA-1.pem, which is not installed:
 
 dpkg-reconfigure ca-certificates and selecting it?  *rough guess*

I wonder why it was the only one that wasn't selected. From the
config.dat backups, I can see that it was selected in the past,
then it disappeared, but it wasn't selected when it reappeared
in the list.

 Do you have the do not trust new certificates by default activated?

I trust new certificates by default. I've had

Name: ca-certificates/trust_new_crts
Template: ca-certificates/trust_new_crts
Value: yes
Owners: ca-certificates

in the config.dat since I installed the machine.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



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



Bug#561088: A (bad) solution

2009-12-31 Thread storm66
Hello,

As the connection was working with root I create a new user and the
connection is OK for that new user.

For my standard user I had to :
- move the home directory
- create a new one
- connect to the system (all was OK)
- copy all my data back to the new directory, but it was painful to
get all back to work : iceweasel and my bookmarks, Evlution and all my
mails. My documents were easier to copy back to the right directory.

I think that a configuration file was corrupt (or not
version-compatible), so creating a clear new home directory get dbus
working again.

Regards

JP Pozz







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



Bug#559428: Additional info

2009-12-31 Thread David Weinehall
According to the GNOME bugzilla, this issue has been fixed in trunk[1].
There was no new version released of epiphany for GNOME 2.29.4 though,
so there doesn't seem to be a tagged version containing the fix.  Maybe
you could break out the fix or alternatively package trunk?

Also, I note that the version graph for this bug looks totally messed
up; is this a bug in the BTS?


Regards: David Weinehall

[1]: https://bugzilla.gnome.org/show_bug.cgi?id=603450
-- 
 /) David Weinehall t...@debian.org /) Rime on my window   (\
//  ~   //  Diamond-white roses of fire //
\)  http://www.acc.umu.se/~tao/(/   Beautiful hoar-frost   (/



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



Bug#563119: devicekit-disks: Automount stopped working with message Not authorized

2009-12-31 Thread Martin Pitt
Hello Jakub,

Jakub Lucký [2009-12-31 11:59 +0100]:
 output attached

OK, nothing surprising here. Does

  devkit-disks --mount /dev/sdb1

work? If not, does it give any output? If so, please send the output.

If it does not work, please try this:

  sudo /usr/lib/devicekit-disks/devkit-disks-daemon --replace /tmp/dkd.log 21
  devkit-disks --mount /dev/sdb1
  fg

then press control-C. Please attach /tmp/dkd.log.

Thanks,

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



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



Bug#457486: No adoption after 2 years

2009-12-31 Thread Neil Williams
retitle 457486 O: gpsim -- Simulator for Microchip's PIC microcontrollers
thanks

After 2 years, there's still no sign of this package being adopted. So,
to make things clearer with regard to the pending removal of this
package, retitling the ITA back to O.

-- 


Neil Williams
=
http://www.data-freedom.org/
http://www.linux.codehelp.co.uk/
http://e-mail.is-not-s.ms/



pgpd10dTLW1QK.pgp
Description: PGP signature


Bug#563153: bind9-host: host -T fails if first dns is IPv6 and not accepting tcp requests

2009-12-31 Thread Joerg Schuetter
Package: bind9-host
Version: 1:9.6.1.dfsg.P2-1
Severity: normal

If the first dns server in /etc/resolv.conf is IPv6 and this server doesn't
accept tcp requests and I start a tcp request the following error happens:
host -T www.debian.de
socket.c:2486: REQUIREsock) != ((void *)0))  (((const isc__magic_t 
*)(sock))-magic == ((('I')  24 | ('O')  16 | ('i')  8 | ('o')) 
failed.
Aborted

If the first dns server in /etc/resolv.conf is IPv4 and this server doesn't
accept tcp requests and I start a tcp request the following happens:
host -T www.debian.de
;; Connection to 192.168.66.66#53(192.168.66.66) for www.debian.de failed: 
connection refused.
www.debian.de is an alias for www.de.debian.org.
www.de.debian.org has address 141.76.2.5
;; Connection to 192.168.66.66#53(192.168.66.66) for www.de.debian.org failed: 
connection refused.
;; Connection to 192.168.66.66#53(192.168.66.66) for www.de.debian.org failed: 
connection refused.

-- result is served from the next dns server in list

Looks like falling back to next server doesn't work with IPv6/tcp.
The bug 534851 sounds similar, but nobody mentioned IPv6 there.

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

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

Versions of packages bind9-host depends on:
ii  libbind9-501:9.6.1.dfsg.P2-1 BIND9 Shared Library used by BIND
ii  libc6  2.10.2-2  GNU C Library: Shared libraries
ii  libcap21:2.17-2  support for getting/setting POSIX.
ii  libdns53   1:9.6.1.dfsg.P2-1 DNS Shared Library used by BIND
ii  libgssapi-krb5-2   1.7+dfsg-4MIT Kerberos runtime libraries - k
ii  libisc50   1:9.6.1.dfsg.P2-1 ISC Shared Library used by BIND
ii  libisccfg501:9.6.1.dfsg.P2-1 Config File Handling Library used 
ii  liblwres50 1:9.6.1.dfsg.P2-1 Lightweight Resolver Library used 
ii  libssl0.9.80.9.8k-7  SSL shared libraries
ii  libxml22.7.6.dfsg-1  GNOME XML library

bind9-host recommends no packages.

bind9-host suggests no packages.

-- no debconf information

regards
  Joerg



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



Bug#563119: devicekit-disks: Automount stopped working with message Not authorized

2009-12-31 Thread Jakub Lucký
2009/12/31 Martin Pitt mp...@debian.org

 Hello Jakub,


 Jakub Lucký [2009-12-31 11:59 +0100]:
  output attached

 OK, nothing surprising here. Does

  devkit-disks --mount /dev/sdb1


 ja...@gondolin:~$  devkit-disks --mount /dev/sdc1
Mount failed: Not Authorized


 work? If not, does it give any output? If so, please send the output.

 If it does not work, please try this:

  sudo /usr/lib/devicekit-disks/devkit-disks-daemon --replace /tmp/dkd.log
 21
  devkit-disks --mount /dev/sdb1
  fg

 then press control-C. Please attach /tmp/dkd.log.


Attached, now its sdc (after few unplugging-plugging kernel named this disk
/dev/sdc instead sdb)


 Thanks,

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



dkd.log
Description: Binary data


Bug#563128: ca-certificates: curl and wget fail on https://twitter.com/ (but not iceweasel)

2009-12-31 Thread Vincent Lefevre
On 2009-12-31 12:36:17 +0100, Vincent Lefevre wrote:
 I wonder why it was the only one that wasn't selected. From the
 config.dat backups, I can see that it was selected in the past,
 then it disappeared, but it wasn't selected when it reappeared
 in the list.

I've noticed the same problem on a different machine, where
new certificates are also trusted by default.

-- 
Vincent Lefèvre vinc...@vinc17.net - Web: http://www.vinc17.net/
100% accessible validated (X)HTML - Blog: http://www.vinc17.net/blog/
Work: CR INRIA - computer arithmetic / Arénaire project (LIP, ENS-Lyon)



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



Bug#534416: Just add 'umount /proc/fs/nfsd' to /etc/init.d/nfs-kernel-server 'stop' part

2009-12-31 Thread Jeroen Massar
Can somebody please just add a 'umount /proc/fs/nfsd' for the 'stop'
part in /etc/init.d/nfs-kernel-server? That fixes it perfectly fine and
then you can close this bug. Thanks!

Greets,
 Jeroen



signature.asc
Description: OpenPGP digital signature


Bug#563154: f-spot: crash at startup

2009-12-31 Thread Laurent Fousse
Package: f-spot
Version: 0.6.1.5-1
Severity: grave
Justification: renders package unusable

Hello,

Here is what I get when I try to run f-spot:

% f-spot
Stacktrace:

zsh: segmentation fault (core dumped)  f-spot

Regards,

Laurent.

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

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

Versions of packages f-spot depends on:
ii  dbus   1.2.16-2  simple interprocess messaging syst
ii  gvfs-bin   1.4.3-1   userspace virtual filesystem - bin
ii  libc6  2.10.2-2  GNU C Library: Shared libraries
ii  libcairo2  1.8.8-2   The Cairo 2D vector graphics libra
ii  libexif12  0.6.19-1  library to parse EXIF files
ii  libflickrnet2.2-cil1:2.2.0-3 Flickr.Net API Library
ii  libgconf2.0-cil2.24.1-4  CLI binding for GConf 2.24
ii  libgl1-mesa-glx [libgl1]   7.6.1-1   A free implementation of the OpenG
ii  libglade2.0-cil2.12.9-1  CLI binding for the Glade librarie
ii  libglib2.0-0   2.22.3-2  The GLib library of C routines
ii  libglib2.0-cil 2.12.9-1  CLI binding for the GLib utility l
ii  libglitz-glx1  0.5.6-1   Glitz OpenGL library GLX backend
ii  libglitz1  0.5.6-1   Glitz OpenGL image compositing lib
ii  libgnome-keyring1.0-cil1.0.0-1   CLI library to access the GNOME Ke
ii  libgnome-vfs2.0-cil2.24.1-4  CLI binding for GnomeVFS 2.24
ii  libgnome2.24-cil   2.24.1-4  CLI binding for GNOME 2.24
ii  libgnomeui-0   2.24.2-1  The GNOME libraries (User Interfac
ii  libgphoto2-2   2.4.6-1   gphoto2 digital camera library
ii  libgphoto2-port0   2.4.6-1   gphoto2 digital camera port librar
ii  libgtk2.0-02.18.5-1  The GTK+ graphical user interface 
ii  libgtk2.0-cil  2.12.9-1  CLI binding for the GTK+ toolkit 2
ii  libjpeg62  6b-15 The Independent JPEG Group's JPEG 
ii  liblcms1   1.18.dfsg-1.1 Color management library
ii  libmono-addins-gui0.2-cil  0.4-5 GTK# frontend library for Mono.Add
ii  libmono-addins0.2-cil  0.4-5 addin framework for extensible CLI
ii  libmono-cairo2.0-cil   2.4.3+dfsg-1  Mono Cairo library (for CLI 2.0)
ii  libmono-corlib2.0-cil  2.4.3+dfsg-1  Mono core library (for CLI 2.0)
ii  libmono-posix2.0-cil   2.4.3+dfsg-1  Mono.Posix library (for CLI 2.0)
ii  libmono-sharpzip2.84-cil   2.4.3+dfsg-1  Mono SharpZipLib library (for CLI 
ii  libmono-sqlite2.0-cil  2.4.3+dfsg-1  Mono Sqlite library (for CLI 2.0)
ii  libmono-system-data2.0-cil 2.4.3+dfsg-1  Mono System.Data Library (for CLI 
ii  libmono-system-web2.0-cil  2.4.3+dfsg-1  Mono System.Web Library (for CLI 2
ii  libmono-system2.0-cil  2.4.3+dfsg-1  Mono System libraries (for CLI 2.0
ii  libndesk-dbus-glib1.0-cil  0.4.1-2   CLI implementation of D-Bus (GLib 
ii  libndesk-dbus1.0-cil   0.6.0-3   CLI implementation of D-Bus
ii  libx11-6   2:1.3.2-1 X11 client-side library
ii  libxcomposite1 1:0.4.1-1 X11 Composite extension library
ii  mono-runtime   2.4.3+dfsg-1  Mono runtime

Versions of packages f-spot recommends:
ii  dbus-x11  1.2.16-2   simple interprocess messaging syst
ii  dcraw 8.86-1 decode raw digital camera images

f-spot suggests no packages.

-- no debconf information



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



Bug#563155: partitionmanager: does not start, and several zombie processes appear

2009-12-31 Thread Jan Kusanagi
Package: partitionmanager
Version: 1.0.0-1
Severity: grave
Justification: renders package unusable


Upon starting partitionmanager, it asks for root password, but then the window 
doesn't appear, and you can see in System Activity how several zombie 
partitionmanager processes appear. There is one which is not zombie, if you 
kill it, all of them disappear.
It seems like the program starts OK if you execute partitionmanager-bin, and it 
offers the option of not using root privileges, and therefore hard drives do 
not appear listed, etc.

Maybe it's a bug in kdesu or something, not really partitionmanager fault...

I have my own debian-liveCD made with live-helper, and same thing happens, but 
there's no root password there, of course.
If I set one up, same problems occur.s



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

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

Versions of packages partitionmanager depends on:
ii  kdebase-runtime   4:4.3.2-1  runtime components from the offici
ii  kdelibs5  4:4.3.2-2  core libraries for all KDE 4 appli
ii  libblkid1 2.16.2-0   block device id library
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libgcc1   1:4.4.2-3  GCC support library
ii  libparted1.8-12   1.8.8.git.2009.07.19-5 The GNU Parted disk partitioning s
ii  libqtcore44:4.5.3-4  Qt 4 core module
ii  libqtgui4 4:4.5.3-4  Qt 4 GUI module
ii  libstdc++64.4.2-3The GNU Standard C++ Library v3
ii  libuuid1  2.16.2-0   Universally Unique ID library

partitionmanager recommends no packages.

Versions of packages partitionmanager suggests:
ii  dosfstools3.0.6-1utilities for making and checking 
pn  hfsplus   none (no description available)
pn  hfsutils  none (no description available)
pn  jfsutils  none (no description available)
ii  ntfsprogs 2.0.0-1+b1 tools for doing neat things in NTF
pn  reiser4progs  none (no description available)
pn  reiserfsprogs none (no description available)
ii  udev  149-1  /dev/ and hotplug management daemo
pn  xfsprogs  none (no description available)

-- no debconf information



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



Bug#89962: eneko 2.0b

2009-12-31 Thread Ricardo Mones
Package: oneko
Severity: normal

Hi,

As today seems the original page [0] for that version is gone.
After a small research seems it's now located at:

http://www.3bit.co.jp/~sasaki/oneko/

I'm not able to read Japanese so I cannot comfirm for sure, but the
tarball seems the same.

regards,
  
[0] http://www02.so-net.ne.jp/~nsasaki/oneko/


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

Kernel: Linux 2.6.31-1-amd64 (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/dash



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



Bug#563156: sslh: Please add inetd support

2009-12-31 Thread Dima Barsky
Package: sslh
Version: 1.6i-4
Severity: wishlist

Starting from the next version, it will be possible to start sslh from
inetd. It would be nice to have a debconf option to choose between inetd
and a standalone script at the install time.


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

Kernel: Linux 2.6.30-1-686 (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=ru_RU.KOI8-R (charmap=KOI8-R)
Shell: /bin/sh linked to /bin/bash

Versions of packages sslh depends on:
ii  adduser   3.112  add and remove users and groups
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libwrap0  7.6.q-18   Wietse Venema's TCP wrappers libra

Versions of packages sslh recommends:
ii  apache2   2.2.14-4   Apache HTTP Server metapackage
ii  apache2-mpm-prefork [httpd]   2.2.14-4   Apache HTTP Server - traditional n
ii  openssh-server [ssh-server]   1:5.1p1-8  secure shell server, an rshd repla

sslh suggests no packages.

-- no debconf information



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



Bug#560061: ITP: cope -- colour wrapper for text level programs

2009-12-31 Thread Salvatore Bonaccorso
Hi

FYI: I'm in progress finishing the package. But however it currently
still FTBFS when building in a chroot environment, which has to be
solved first. I contacted too upstream author.

Bests
Salvatore


signature.asc
Description: Digital signature


Bug#563157: bzip2: library version suffix mismatch

2009-12-31 Thread Jerome BENOIT
Package: bzip2
Version: 1.0.5-3
Severity: minor


Hello,

I have just noticed that the version suffix of the bzip2 library (1.0.4) in /lib
is not the version of the library (1.0.5).

hth,
Jerome


-- System Information:
Debian Release: Squeeze*
  APT prefers testing
  APT policy: (990, 'testing')
Architecture: amd64 (x86_64)

Kernel: Linux 2.6.32.2-amb (SMP w/2 CPU cores)
Locale: LANG=en_GB, LC_CTYPE=en_GB (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/dash

Versions of packages bzip2 depends on:
ii  libbz2-1.01.0.5-3high-quality block-sorting file co
ii  libc6 2.10.2-2   GNU C Library: Shared libraries

bzip2 recommends no packages.

Versions of packages bzip2 suggests:
ii  bzip2-doc 1.0.5-3high-quality block-sorting file co

-- no debconf information



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



Bug#563118: du cannot sort its output without help from other programs

2009-12-31 Thread Eric Blake
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

According to Juhapekka Tolvanen on 12/30/2009 4:35 PM:
 I wanted to do this: Give sizes of each files and directories located
 in $PWD in human-readable-format AND sort output according to sizes of
 those files and directories.

What's wrong with:

du -sh0 * | sort -hz | tr '\0' '\n'

besides needing coreutils 7.5 or newer?

 But it would be much easier, if du had some sorting functionalities.

Rather, it IS much easier by using du's nul-termination functionality,
coupled with sort's nul-termination and human-size sorting.  Use each tool
for what it is good at.

- --
Don't work too hard, make some time for fun as well!

Eric Blake e...@byu.net
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.9 (Cygwin)
Comment: Public key at home.comcast.net/~ericblake/eblake.gpg
Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/

iEYEARECAAYFAks8nbcACgkQ84KuGfSFAYDlgACgw0pEnqORZyCR51Lnk13bCrGm
VxEAn2eK5wZ/etcchnghx6OqCgH98UWt
=w2Bj
-END PGP SIGNATURE-



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



Bug#563158: pam_tally.so opens the faillog file but never closes it

2009-12-31 Thread Baruch_Leehod
Package: libpam-modules

Version: 1.0.1-5+lenny1

 

The bug is in the function tally_check in pam_tally.c 

This function calls get_tally in order to open the faillog file but this
file is never closed until the invoking process is killed.

 

When pam_tally.so module is in the auth stack, every authentication that
a process is performing adds an additional open descriptor to the
process for the faillog file. 

When the maximum number of open descriptors is reached for the process
the next authentication attempts for this process will fail with
PAM_MODULE_UNKNOWN.

 

I suggest that fclose(TALLY) will be called before tally_check returns
(given that the fopen was successful).

 

I am using Debian 5.0, kernel 2.6.32 and libc6 2.7-18

 



Bug#560893: [Bug 220236] Re: digikam still unuseable for me

2009-12-31 Thread Dietz Pröpper
Me:
 As far as I can tell from a short test, downgrading libmarble does not
 affect digikam's marble integration.

To clarify, it does not affect digikam apart from resolving the 
cpu/shutdown issue ;-).



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



Bug#560893: [Bug 220236] Re: digikam still unuseable for me

2009-12-31 Thread Dietz Pröpper
Hi Mark,

Mark Purcell:
 Could I ask you to start the marble application, without digikam, and
  see if you get the same result.

Yeah, exactly the same. Eats up lots of CPU and locks up on exit. I can 
supply strace or gdb output if needed.

 I suspect this issue is being caused by the marble plugin widget in
  digikam.

I second that. Downgrading marble to the version from kde 4.3.2 resolves
the hang during digikam shutting down and also the cpu issue seems to have 
gone. (I tested against the digikam from unstable, not the one compiled by 
me. Needs a --force-depends during install due to a dependency on 
libmarble4 from 4.3.4.)

As far as I can tell from a short test, downgrading libmarble does not 
affect digikam's marble integration.

regards,
Dietz



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



Bug#563128: ca-certificates: curl and wget fail on https://twitter.com/ (but not iceweasel)

2009-12-31 Thread Philipp Kern
On Thu, Dec 31, 2009 at 12:36:17PM +0100, Vincent Lefevre wrote:
 On 2009-12-31 11:53:58 +0100, Philipp Kern wrote:
  On Thu, Dec 31, 2009 at 03:25:20AM +0100, Vincent Lefevre wrote:
   A strace shows that curl tries to access /etc/ssl/certs/74c26bd0.0
   and that wget tries to access /usr/lib/ssl/certs/74c26bd0.0, but
   this file doesn't exist. It seems to correspond to the has for
   Equifax_Secure_Global_eBusiness_CA-1.pem, which is not installed:
  dpkg-reconfigure ca-certificates and selecting it?  *rough guess*
 I wonder why it was the only one that wasn't selected. From the
 config.dat backups, I can see that it was selected in the past,
 then it disappeared, but it wasn't selected when it reappeared
 in the list.

I think because we had to remove it temporarily, there's probably a bug
in the config script when a certificate is removed and comes back later.

Kind regards,
Philipp Kern
-- 
 .''`.  Philipp KernDebian Developer
: :' :  http://philkern.de Stable Release Manager
`. `'   xmpp:p...@0x539.de Wanna-Build Admin
  `-finger pkern/k...@db.debian.org


signature.asc
Description: Digital signature


Bug#562714: enigmail: Enigmail does not work with icedove 3.0

2009-12-31 Thread Alexander Sack
On Sun, Dec 27, 2009 at 11:42:18AM +0100, Patrick Matthäi wrote:
 Package: enigmail
 Version: 2:0.95.7-1
 Severity: important
 
 It is not loaded at all etc...
 Also enigmail should be updated to version 1.0.
 
 I bumped the severity not to grave, because icedove 3.0 is only in
 experimental, yet.

blocker here is that tbird 3 doesnt install the headers and stuff in
make install target ... that needs to be resolved first.

 - Alexander




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



Bug#563159: apt-dater only puts out Usage message

2009-12-31 Thread Gerfried Fuchs
Package: apt-dater
Version: 0.8.1-1
Severity: important

Hi!

 I don't really get it how apt-dater is meant to work. Shouldn't it
present the ncurses interface right ahead? On first start it created the
configurations file but also gave the usage message:

#v+
rho...@edna:~$ LC_ALL=C apt-dater 
** Message: Creating file /home/rhonda/.config/apt-dater/hosts.conf
** Message: Creating file /home/rhonda/.config/apt-dater/screenrc
** Message: Creating file /home/rhonda/.config/apt-dater/apt-dater.conf
Usage: apt-dater [-(c config|v|[n]r)]
rho...@edna:~$ 
#v-

 I took a look into the configuration files but they don't seem like
they need any special tweaking before it would start, and neither does
the manual page/README file convince me that I'm expecting anything
strange here.

 Actually, I would even set the severity to grave because it doesn't
seem to work at all -- but I'm not sure wether I'm still doing something
wrong. If this isn't the way it should work pretty please raise the
severity yourself.

 Have a nice year change!
Rhonda

-- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: powerpc (ppc)

Kernel: Linux 2.6.30-2-powerpc
Locale: LANG=de_AT.UTF-8, LC_CTYPE=de_AT.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages apt-dater depends on:
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libglib2.0-0  2.22.3-1   The GLib library of C routines
ii  libncursesw5  5.7+20090803-2 shared libraries for terminal hand
ii  libpopt0  1.15-1 lib for parsing cmdline parameters
ii  libxml2   2.7.6.dfsg-1   GNOME XML library
ii  openssh-client1:5.1p1-8  secure shell client, an rlogin/rsh
ii  screen4.0.3-14   terminal multiplexor with VT100/AN
ii  tcl8.58.5.8-2Tcl (the Tool Command Language) v8

apt-dater recommends no packages.

Versions of packages apt-dater suggests:
pn  apt-dater-hostnone (no description available)
ii  xsltproc  1.1.26-1   XSLT command line processor

-- no debconf information



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



Bug#544879: Missing libclutter-doc package

2009-12-31 Thread gregor herrmann
On Thu, 31 Dec 2009 09:21:25 +0100, Cyril Brulebois wrote:

  Rebuilding the package brings back to missing binary
  package. binNMU?
 How would a binNMU help getting back an Architecture: all package?

Oops, right.
Thanks for correcting my mistake.

Cheers,
gregor

-- 
 .''`.   http://info.comodo.priv.at/ -- GPG Key IDs: 0x00F3CFE4, 0x8649AA06
 : :' :  Debian GNU/Linux user, admin,  developer - http://www.debian.org/
 `. `'   Member of VIBE!AT, SPI Inc., fellow of FSFE | http://got.to/quote/
   `-NP: Peter Ratzenbeck: Bonnie Bessie Logan


signature.asc
Description: Digital signature


Bug#563121: Returning a status of non-zero might not be safe

2009-12-31 Thread Cyril Brulebois
YOSHINO Yoshihito yy.y.ja...@gmail.com (31/12/2009):
 Hello,

Hi,

 test -x `which foo`  foo bar baz
 
 returns status 1, which comes to an error if a script executed this
 as the last command. E.g. like #563121, prerm will exit with status
 1 if defoma not found unless explicitly writing the last line exit
 0 in the prerm template.
 
 So I think changing defoma templates like
 
 if test -x `which foo`; then
foo bar baz
 fi

that's what I stated in a later reply to this bug.

 would be good, since the script should simply ignore the block when
 defoma is not found.

That's indeed what I implemented.

Please, Cc the bug submitter in the future. I would have totally
missed your mail if I wouldn't have used “bts -m show $bug” to make
sure not to break the threading…

Mraw,
KiBi.


signature.asc
Description: Digital signature


Bug#562716: iceowl-extension: iceowl does not work with icedove 3.0

2009-12-31 Thread Alexander Sack
On Sun, Dec 27, 2009 at 11:44:56AM +0100, Patrick Matthäi wrote:
 Package: iceowl-extension
 Version: 0.9-1
 Severity: important
 
 Hi,
 
 0.9 does not work with icedove 3.0, which is in experimental.
 
 Could you please upload a nightly build?

A bit problem is that afaiui the standalone app isnt supported there
anymore ... do you know more?

 - Alexander




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



Bug#563127: gnutls-bin: Can no longer verify connections to my company's email server

2009-12-31 Thread Andreas Metzler
On 2009-12-31 Sam Morris s...@robots.org.uk wrote:
 On Thu, 2009-12-31 at 09:22 +0100, Andreas Metzler wrote:
[...]
 color me stupid, but I cannot find any reference to the certificate in
 the file /etc/ssl/certs/Go_Daddy_Class_2_CA.pem (C=US,O=The Go Daddy
 Group\, Inc.,OU=Go Daddy Class 2 Certification Authority valid
 2004-2034) in the debugging output. I think you need to use
 /etc/ssl/certs/ValiCert_Class_2_VA.pem instead.

 *blinks* hm, indeed! However I get the same 'Peer's certificate issuer
 is not a CA' message with that certificate as well.

 I would be grateful if you could try to confirm this yourself -- the
 server is XXX. Sorry to be a bother, but I'm rather
 stumped as to why this has ceased to work recently.
[...]

Hello,
Taking this back to the BTS, to keep the other maintainers in the
boat.

The toplevel certificate


Subject: L=ValiCert Validation Network,O=ValiCert\, Inc.,OU=ValiCertClass 2 
Policy Validation Authority,CN=http://www.valicert.com/,email=i...@valicert.com
SHA-1 fingerprint: 317a2ad07f2b335ef5a1c34e4b57e8b7d8f1fca6


is a V1 CA. GnuTLS does not accept V1 CAs by default. (The version of
GnuTLS in lenny is patched to behave differently.)

Possible workarounds:
* --priority NORMAL:%VERIFY_ALLOW_X509_V1_CA_CRT
* Make one of the two intermediary certificates or the server
  certificate itself trusted.

Was this certificate really issued April 2009? Is Godaddy still using
their V1 CA?

cu andreas

-- 
`What a good friend you are to him, Dr. Maturin. His other friends are
so grateful to you.'
`I sew his ears on from time to time, sure'



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



Bug#558222: PROPUESTA CONSIDERABLE

2009-12-31 Thread Sr. Gu Shu

Estimado amigo,

Esta es una ubicación de gestión en nombre de un cliente el Sr. Kim  
Woo Choong.
Nuestro cliente necesita con urgencia trasladar sus fondos debido a la  
crisis económica y que busca una persona con experiencia empresarial o  
empresa que puede recibir y rentable de invertir los fondos en exceso  
de treinta y nueve millones de dólares EE.UU. fuera de Asia. La suma  
será pagada de nuestro banco;


visite nuestro sitio web en el sitio web del banco: http://www.icbc-ltd.com

Para más información contactar:
Sr. Gu Shu [Secretario de la Junta].
Banco Industrial y Comercial de China (Asia) Limited
ICBC Tower 3 Garden Road, Central Hong Kong

Más importante aún, se requiere:

[1]. Actuar como el beneficiario inicial de los fondos.
[2]. Recibir los fondos en un negocio o cuenta bancaria privada.
[3]. Invest / Administrar los fondos de forma rentable.

El cliente está dispuesto a pagar el 5% de su papel como socio  
beneficiario de los fondos cuando el dinero se confirme su cuenta  
bancaria designada. Además, un 10% posteriores como gestión de la  
Comisión será pagado por sus servicios de inversión aconsejado.
Si usted prefiere que se vuelva a contactar para obtener información  
más urgente, por favor envíenos su:


[1] Nombre completo:
[2] Dirección de contacto:
[3] de la célula Teléfono:

Esperamos su correspondencia y nuestra respuesta será rápida.

Saludos cordiales,

Sr. Gu Shu [Secretario]
Banco Industrial y Comercial de China (Asia) Limited.







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



Bug#561724: crashes in HalPower::brightness at startup

2009-12-31 Thread JJ Luza
Package: kdebase-workspace-bin
Version: 4:4.3.4-3
Severity: normal

I still get this bug with last version.

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

Kernel: Linux 2.6.31-1-amd64 (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/dash

Versions of packages kdebase-workspace-bin depends on:
ii  kaboom1.1.2  The Debian KDE settings migration 
ii  kdebase-runtime   4:4.3.4-2  runtime components from the offici
ii  kdebase-workspace-data4:4.3.4-3  shared data files for the KDE 4 ba
ii  kdebase-workspace-kgreet- 4:4.3.4-3  KDE greet libraries for authentica
ii  kdelibs5  4:4.3.4-1  core libraries for all KDE 4 appli
ii  libc6 2.10.2-2   GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.16-2   simple interprocess messaging syst
ii  libfontconfig12.8.0-1.1  generic font configuration library
ii  libfreetype6  2.3.11-1   FreeType 2 font engine, shared lib
ii  libgl1-mesa-glx [libgl1]  7.6.1-1A free implementation of the OpenG
ii  libglib2.0-0  2.22.3-2   The GLib library of C routines
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libkephal44:4.3.4-3  API for easier handling of multihe
ii  libkfontinst4 4:4.3.4-3  Libraries for font installation in
ii  libknotificationitem-1-1  4:4.3.4-1  library for new way of handling sy
ii  libkscreensaver5  4:4.3.4-3  Library of the KDE Screensaver sys
ii  libkworkspace44:4.3.4-3  Library for the kdebase workspace
ii  libnepomukquery4  4:4.3.4-3  Library for the nepomuk search
ii  libnepomukqueryclient44:4.3.4-3  Library for the nepomuk client sea
ii  libpam0g  1.1.0-4Pluggable Authentication Modules l
ii  libphonon44:4.5.3-4  Qt 4 Phonon module
ii  libplasma34:4.3.4-1  library for the KDE 4 Plasma deskt
ii  libpng12-01.2.41-1   PNG library - runtime
ii  libpolkit-dbus2   0.9-4  library for accessing PolicyKit vi
ii  libpolkit-grant2  0.9-4  library for obtaining privileges v
ii  libpolkit-qt0 0.9.2-2PolicyKit-qt library
ii  libpolkit20.9-4  library for accessing PolicyKit
ii  libprocessui4 4:4.3.4-3  Library for ksysguard process user
ii  libqimageblitz4   1:0.0.4-4  QImageBlitz image effects library
ii  libqt4-dbus   4:4.5.3-4  Qt 4 D-Bus module
ii  libqt4-qt3support 4:4.5.3-4  Qt 3 compatibility library for Qt 
ii  libqt4-script 4:4.5.3-4  Qt 4 script module
ii  libqt4-xml4:4.5.3-4  Qt 4 XML module
ii  libqtcore44:4.5.3-4  Qt 4 core module
ii  libqtgui4 4:4.5.3-4  Qt 4 GUI module
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libsolidcontrol4  4:4.3.4-3  Library for solid based network ma
ii  libsolidcontrolifaces44:4.3.4-3  Library for solid based network in
ii  libsoprano4   2.3.1+dfsg.1-1 libraries for the Soprano RDF fram
ii  libstdc++64.4.2-8The GNU Standard C++ Library v3
ii  libstreamanalyzer00.7.0-1+b2 streamanalyzer library for Strigi 
ii  libusb-0.1-4  2:0.1.12-13userspace USB programming library
ii  libx11-6  2:1.3.2-1  X11 client-side library
ii  libxau6   1:1.0.5-1  X11 authorisation library
ii  libxcursor1   1:1.1.10-1 X cursor management library
ii  libxext6  2:1.0.4-1  X11 miscellaneous extension librar
ii  libxfixes31:4.0.4-1  X11 miscellaneous 'fixes' extensio
ii  libxi62:1.2.1-2  X11 Input extension library
ii  libxinerama1  2:1.0.3-2  X11 Xinerama extension library
ii  libxklavier15 4.0-2  X Keyboard Extension high-level AP
ii  libxrandr22:1.3.0-2  X11 RandR extension library
ii  libxrender1   1:0.9.5-1  X Rendering Extension client libra
ii  libxss1   1:1.1.3-1  X11 Screen Saver extension library
ii  libxtst6  2:1.0.3-1  X11 Testing -- Resource extension 
ii  libxxf86misc1 1:1.0.2-1  X11 XFree86 miscellaneous extensio
ii  phonon4:4.5.3-4  Qt 4 Phonon module metapackage
ii  plasma-widgets-workspace  4:4.3.4-3  KDE 4 base workspace Plasma widget
ii  x11-utils 7.5+1  X11 utilities
ii  x11-xserver-utils 7.5+1  X server utilities

Versions of packages kdebase-workspace-bin 

Bug#556110: Wrong Italian translation file in irqbalance 0.55+20091017-3

2009-12-31 Thread Christian PERRIER
reopen 556110
found 556110 0.55+20091017-3
thanks

I'm afraid that the file you used as it.po is the text of the bug
report and not the attachment.

I suggest re-picking the right file in #556110.

-- 




signature.asc
Description: Digital signature


Bug#563121: dh_installdefoma leads to buggy maintainer scripts

2009-12-31 Thread Cyril Brulebois
Cyril Brulebois k...@debian.org (31/12/2009):
 Current/common practice within debhelper seems to be:
 | if [ -x `which foo 2/dev/null` ]; then…
 
 I think I'm going to upload with such a change once I'm up (for
 real, not vaguely opening eyes).

Hi again,

I've just checked that fontconfig 2.8.0-1 built against the new defoma
was installable and removable with and without defoma installed. It
seems to be OK. So I guess you should be able to e.g. bump the
versioned BD on defoma to = 0.11.10-4 and reupload without the
bandaid; or wait until new defoma is installed on all architectures.

I hope I didn't miss anything.

I'm attaching the patches I used for further reference:
 - dh_installdefoma fixes.
 - lintian warning about ${misc:Depends} (trivial fix).
 - changelog.

Some trivial lintian warnings/errors could have been fixed, but I feel
like I already spent too much time on defoma.

Mraw,
KiBi.
From f20657a059d3414427d9c08dec15da25c974a0df Mon Sep 17 00:00:00 2001
From: Cyril Brulebois k...@debian.org
Date: Thu, 31 Dec 2009 12:52:42 +0100
Subject: [PATCH 1/3] Switch to if [ -x `which foo 2/dev/null` ].

---
 debhelper-files/postinst-defoma   |6 +++---
 debhelper-files/postinst-defoma-hints |4 +++-
 debhelper-files/prerm-defoma  |7 ---
 debhelper-files/prerm-defoma-hints|4 +++-
 4 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/debhelper-files/postinst-defoma b/debhelper-files/postinst-defoma
index 8819ce4..eeed4c7 100644
--- a/debhelper-files/postinst-defoma
+++ b/debhelper-files/postinst-defoma
@@ -1,5 +1,5 @@
 if [ $1 = configure ]; then
-
-  test -x `which defoma-app`  defoma-app update #PACKAGE#
-
+	if [ -x `which defoma-app 2/dev/null` ]; then
+		defoma-app update #PACKAGE#
+	fi
 fi
diff --git a/debhelper-files/postinst-defoma-hints b/debhelper-files/postinst-defoma-hints
index 83e1e8b..ae69812 100644
--- a/debhelper-files/postinst-defoma-hints
+++ b/debhelper-files/postinst-defoma-hints
@@ -1,4 +1,6 @@
 FILE='/etc/defoma/hints/#PACKAGE#.hints'
 if [ $1 = configure ]; then
-	test -x `which defoma-font`  defoma-font reregister-all $FILE
+	if [ -x `which defoma-font 2/dev/null` ]; then
+		defoma-font reregister-all $FILE
+	fi
 fi
diff --git a/debhelper-files/prerm-defoma b/debhelper-files/prerm-defoma
index fc05dcc..d4a41e9 100644
--- a/debhelper-files/prerm-defoma
+++ b/debhelper-files/prerm-defoma
@@ -1,10 +1,11 @@
 case $1 in
 	upgrade)
-		test -x `which defoma-app`  \
+		if [ -x `which defoma-app 2/dev/null` ]; then
 			defoma-app clean #PACKAGE#
+		fi
 		;;
 	remove)
-		test -x `which defoma-app`  \
+		if [ -x `which defoma-app 2/dev/null` ]; then
 			defoma-app purge #PACKAGE#
-		;;
+		fi
 esac
diff --git a/debhelper-files/prerm-defoma-hints b/debhelper-files/prerm-defoma-hints
index 1fdef0f..df40f96 100644
--- a/debhelper-files/prerm-defoma-hints
+++ b/debhelper-files/prerm-defoma-hints
@@ -1,4 +1,6 @@
 FILE='/etc/defoma/hints/#PACKAGE#.hints'
 if [ $1 = remove ]; then
-	test -x `which defoma-font`  defoma-font purge-all $FILE
+	if [ -x `which defoma-font 2/dev/null` ]; then
+		defoma-font purge-all $FILE
+	fi
 fi
-- 
1.6.5.7

From 9ce8c31833f91bd24128339810f8d60fbdeafebc Mon Sep 17 00:00:00 2001
From: Cyril Brulebois k...@debian.org
Date: Thu, 31 Dec 2009 13:19:32 +0100
Subject: [PATCH 2/3] Add ${misc:Depends} to all binaries.

---
 debian/control |5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/debian/control b/debian/control
index 5a73bd1..af57269 100644
--- a/debian/control
+++ b/debian/control
@@ -8,7 +8,7 @@ Standards-Version: 3.6.2.0
 
 Package: defoma
 Architecture: all
-Depends: whiptail | dialog, file, ${perl:Depends}
+Depends: whiptail | dialog, file, ${perl:Depends}, ${misc:Depends}
 Enhances: debhelper
 Suggests: defoma-doc, psfontmgr, x-ttcidfont-conf, dfontmgr
 Recommends: libfont-freetype-perl
@@ -26,6 +26,7 @@ Description: Debian Font Manager -- automatic font configuration framework
 
 Package: defoma-doc
 Architecture: all
+Depends: ${misc:Depends}
 Section: doc
 Description: Debian Font Manager documentation
  Defoma, which stands for DEbian FOnt MAnager, provides a framework
@@ -36,7 +37,7 @@ Description: Debian Font Manager documentation
 
 Package: psfontmgr
 Architecture: all
-Depends: defoma (= 0.9.1), whiptail | dialog, ${perl:Depends}
+Depends: defoma (= 0.9.1), whiptail | dialog, ${perl:Depends}, ${misc:Depends}
 Conflicts: defoma-ps, scigraphica-common (= 0.7.1-3)
 Description: PostScript font manager -- part of Defoma, Debian Font Manager
  psfontmgr manages PostScript fonts through the Defoma framework. It
-- 
1.6.5.7

From 28019d205ce672ebd2849bb504c228ebede8ff6f Mon Sep 17 00:00:00 2001
From: Cyril Brulebois k...@debian.org
Date: Thu, 31 Dec 2009 13:19:43 +0100
Subject: [PATCH 3/3] Start changelog.

---
 debian/changelog |   12 
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/debian/changelog b/debian/changelog
index 1758b4b..183fee3 100644
--- 

Bug#563160: Add the tcp plugin to track TCP connection states to munin-plugins-extra

2009-12-31 Thread Tim Small
Package: munin-plugins-extra
Version: 1.2.6-17
Severity: wishlist

It'd be handy if the tcp plugin which I wrote could be added to
munin-plugins-extra 

http://muninexchange.projects.linpro.no/?viewphid=773

... it seems to be broadly in line with the contents of this package,
and would be applicable to pretty-much all Linux hosts which run
munin.

Thanks,

Tim.

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

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

Versions of packages munin-plugins-extra depends on:
ii  munin-node1.2.6-17   network-wide graphing framework (n
ii  perl  5.10.1-8   Larry Wall's Practical Extraction 

munin-plugins-extra recommends no packages.

Versions of packages munin-plugins-extra suggests:
pn  libnet-netmask-perl   none (no description available)
pn  libnet-telnet-perlnone (no description available)
ii  logtail   1.3.4  Print log file lines that have not
ii  python2.5.4-4An interactive high-level object-o

-- no debconf information



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



Bug#563161: Provide way to distinguish remove and purge in postrm hooks

2009-12-31 Thread Harald Braumann
Package: linux-2.6
Version: 2.6.30-2
Severity: wishlist

Hi,

if a kernel package is purged, the scripts in /etc/kernel/postrm.d are
run twice. Once for `remove' and once for `purge'. There is no way,
however, to find out the current phase and to prevent running the
script twice.

A kernel built with kernel-package sets the variable `DEB_MAINT_PARAMS'
to `remove' and `purge', respectively. Something similar should also be
supported by official kernel builds (preferably kernel-package and
official builds should agree on the way to do this).

Cheers,
harry


signature.asc
Description: PGP signature


Bug#563122: RM: gcl [kfreebsd-amd64 kfreebsd-i386] -- NBS; needs porting

2009-12-31 Thread Aurelien Jarno
On Thu, Dec 31, 2009 at 01:11:35AM +0100, Luk Claes wrote:
 Package: ftp.debian.org
 Severity: normal
 
 Hi
 
 Please remove gcl for kfreebsd-* as they FTBFS and seem to need porting 
 (buildsys-related?).
 

Please note that it has been built successfully on kfreebsd-amd64, and that the
build failure should have been fixed in 2.6.7-49, though it does not
seems to be the case.

-- 
Aurelien Jarno  GPG: 1024D/F1BCDB73
aurel...@aurel32.net http://www.aurel32.net



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



Bug#563088: qbittorrent: minor corrections of package description

2009-12-31 Thread Chris
I suggest the following updated description:

BitTorrent client written in C++ and based on libtorrent-rasterbar with a
Qt4 user interface. qBittorrent is a feature rich but lightweight client
that is very similar to uTorrent. Its main features are:

  * Polished uTorrent-like user interface
  * Well integrated and extensible search engine
  * Remote control through a Web user interface
  * Vuze-compatible protocol encryption
  * uTorrent-compatible Peer eXchange (PeX)
  * DHT (trackerless) support
  * UPnP / NAT-PMP port forwarding
  * RSS support with advanced download filters
  * Advanced control over torrent content and trackers
  * IP Filtering (eMule / Peer Guardian filters)
  * Torrents queueing and prioritizing
  * Good localization (~25 languages supported)
  * Unicode support

On Wed, Dec 30, 2009 at 6:53 PM, helix84 heli...@centrum.sk wrote:

 Package: qbittorrent
 Severity: minor
 Tags: patch
 Version: 2.0.3-1

 See patch below.

 Also, I don't understand the last bullet about Sharemonkey because I
 don't know what it is. Description should be understandable by a
 person not familiar with the package. Please rephrase it.

 ~~helix84



 --- debian/control  2009-12-30 18:47:54.0 +0100
 +++ debian/control2 2009-12-30 18:49:43.0 +0100
 @@ -28,9 +28,9 @@
   * DHT (trackerless) support
   * uTorrent Peer eXchange support (PeX)
   * Directory scanning with automated download of torrents inside
 -  * Good internationalization (~25 languages supported)
 +  * Good localization (~25 languages supported)
   * Media File previewing while downloading
 -  * Torrent trackers edition and prioritizing
 +  * Torrent trackers editing and prioritizing
   * Styles support
   * Files prioritizing in a torrent
   * Tracker authentication support






Bug#563088: qbittorrent: minor corrections of package description

2009-12-31 Thread helix84
On Thu, Dec 31, 2009 at 14:32, Chris ch...@qbittorrent.org wrote:
 I suggest the following updated description:

It's OK if you ask me.

Regards,
~~helix84



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



Bug#483590: The dbf bug is still present

2009-12-31 Thread Margarita Manterola
found 483590 1:2.4.1+dfsg-1+lenny3
thanks

I'm sorry to report that the bug that prevents openoffice from saving dbf
files is still present in the current Lenny version. :(.

I've just needed to edit a dbf file, and I got the same problem as usual: I
opened the file normally with oocalc, modified the values I needed, and
when I press save (or save as and choose a dbf), I get the same error
as I used to get with the 2.4.0 version:

  Error saving the document name:
  Connection to the file could not be established.

Somehow it seems the fix didn't make it into the Lenny version. :(

-- System Information:
Debian Release: 5.0.3
  APT prefers proposed-updates
  APT policy: (500, 'proposed-updates'), (500,
'oldstable-proposed-updates'), (500, 'oldstable'), (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages openoffice.org-calc depends on:
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libstlport4.6ldbl  4.6.2-3.2 STLport C++ class library
ii  libsuitesparse-3.1 3.1.0-3   collection of libraries for comput
ii  lp-solve   5.5.0.10-10   Solve (mixed integer) linear progr
ii  openoffice.org-bas 1:2.4.1+dfsg-1+lenny3 OpenOffice.org office suite -- lib
ii  openoffice.org-cor 1:2.4.1+dfsg-1+lenny3 OpenOffice.org office suite archit

openoffice.org-calc recommends no packages.

openoffice.org-calc suggests no packages.

Versions of packages openoffice.org-core depends on:
ii  fontconfig 2.6.0-3   generic font configuration library
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libcairo2  1.6.4-7   The Cairo 2D vector graphics libra
ii  libcurl3   7.18.2-8lenny3Multi-protocol file transfer libra
ii  libdb4.6   4.6.21-11 Berkeley v4.6 Database Libraries [
ii  libexpat1  2.0.1-4+lenny2XML parsing C library - runtime li
ii  libfreetype6   2.3.7-2+lenny1FreeType 2 font engine, shared lib
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libglib2.0-0   2.16.6-2  The GLib library of C routines
ii  libgstreamer-plugi 0.10.19-2 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.19-3 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.12-1~lenny1  The GTK+ graphical user interface 
ii  libhunspell-1.2-0  1.2.6-1   spell checker and morphological an
ii  libhyphen0 2.4-4 ALTLinux hyphenation library - sha
ii  libice62:1.0.4-1 X11 Inter-Client Exchange library
ii  libicu38   3.8.1-3+lenny2International Components for Unico
ii  libjpeg62  6b-14 The Independent JPEG Group's JPEG 
ii  libldap-2.4-2  2.4.11-1+lenny1   OpenLDAP libraries
ii  libneon27  0.28.2-6.1An HTTP and WebDAV client library
ii  libnspr4-0d4.7.1-5   NetScape Portable Runtime Library
ii  libnss3-1d 3.12.3.1-0lenny1  Network Security Service libraries
ii  libpam0g   1.0.1-5+lenny1Pluggable Authentication Modules l
ii  libpango1.0-0  1.20.5-5  Layout and rendering of internatio
ii  libsm6 2:1.0.3-2 X11 Session Management library
ii  libssl0.9.80.9.8g-15+lenny5  SSL shared libraries
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3
ii  libstlport4.6ldbl  4.6.2-3.2 STLport C++ class library
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxaw72:1.0.4-2 X11 Athena Widget library
ii  libxext6   2:1.0.4-1 X11 miscellaneous extension librar
ii  libxinerama1   2:1.0.3-2 X11 Xinerama extension library
ii  libxml22.6.32.dfsg-5+lenny1  GNOME XML library
ii  libxrender11:0.9.4-2 X Rendering Extension client libra
ii  libxslt1.1 1.1.24-2  XSLT processing library - runtime 
ii  libxt6 1:1.0.5-3 X11 toolkit intrinsics library
ii  libxtst6   2:1.0.3-1 X11 Testing -- Resource extension 
ii  openoffice.org-com 1:2.4.1+dfsg-1+lenny3 OpenOffice.org office suite archit
ii  ttf-opensymbol 1:2.4.1+dfsg-1+lenny3 The OpenSymbol TrueType font
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

-- no debconf information

-- 
Love,
Marga



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



Bug#563162: ownership problems give bogus error message

2009-12-31 Thread Ulrich Eckhardt
Package: cryptsetup
Version: 2:1.1.0~rc2-1

I tried activating an encrypted partition as normal user, and it gave
me this:

 u...@fruitbox:~$ cryptdisks_start hda5
 Starting crypto disk...hda5 (skipped, device /dev/hda5 does not 
 exist)...failed.
 u...@fruitbox:~$ ls /dev/hda
 hda   hda1  hda2  hda3  hda4  hda5  

As you see, the partition exists:

 u...@fruitbox:~$ cat /etc/crypttab 
 # target name source device key file  options
 hda5/dev/hda5   noneluks,noauto

And it works as root:

 r...@fruitbox:/home/uli# cryptdisks_start hda5
 Starting crypto disk...hda5 (starting)...
 Unlocking the disk /dev/hda5 (hda5)
 Enter passphrase: 
 Key slot 0 unlocked.
 hda5 (started)...done.

I guess the code is simply assuming ENOENT when open fails, but it
should also handle EACCESS and similar errors.

Cheers!

Uli



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



Bug#563163: CanoScan Lide 50 doesn't work in Squeeze, works in Lenny

2009-12-31 Thread bugreport
Package: libsane
Version: 1.0.20-11

Hi there,

I have a CanoScan Lide 50 USB 2.0 scanner. It is detected fine both in stable 
and testing distributions of Debian. But when I press scan in Squeeze Xsane 
stalls for about 10 sec and then says there is an I/O error.

I deleted .sane in my home directory. Nothing changes.

Thx,

Malte


-- 
GRATIS für alle GMX-Mitglieder: Die maxdome Movie-FLAT!
Jetzt freischalten unter http://portal.gmx.net/de/go/maxdome01



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



Bug#563164: iceweasel: debian/changelog incomplete

2009-12-31 Thread Daniel Baumann

Package: iceweasel
Severity: minor

Hi,

your debian/changelog is incomplete, a couple of 3.0.* uploads got 
dropped when you uploaded 3.5.3-2 to unstable, please add them back.


Regards,
Daniel

--
Address:Daniel Baumann, Burgunderstrasse 3, CH-4562 Biberist
Email:  daniel.baum...@panthera-systems.net
Internet:   http://people.panthera-systems.net/~daniel-baumann/



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



Bug#563166: gstreamer0.10-fluendo-mpegdemux and gstreamer0.10-fluendo-mpegmux installabled with gstreamer0.10-plugins-bad

2009-12-31 Thread Patrick Ammann

Package: gstreamer0.10-fluendo-mpegdemux and gstreamer0.10-fluendo-mpegmux
Version: testing

Both packages are not installable together with gstreamer0.10-plugins-bad,
but for in my case i do NOT want to uninstall gstreamer0.10-plugins-bad, 
as this

package is needed by e.g. pidgin, etc...

Thanks,
Patrick




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



Bug#563165: interchange: [INTL:pt] Updated Portuguese translation for debconf messages

2009-12-31 Thread Traduz - Portuguese Translation Team

Package: interchange
Version: 5.7.4-1
Tags: l10n, patch
Severity: wishlist

Updated Portuguese translation for interchange's debconf messages.
Translator: Américo Monteiro a_monte...@netcabo.pt
Feel free to use it.

For translation updates please contact 'Last Translator' or the
Portuguese Translation Team traduz _at_ debianpt.org.


--
Best regards,

Miguel Figueiredo
Traduz - Portuguese Translation Team
http://www.DebianPT.org


# translation of interchange debconf to Portuguese
# Copyright (C) 2007 the interchange's copyright holder
# This file is distributed under the same license as the interchange package.
#
# Ricardo Silva ardo...@gmail.com, 2007-2008.
# Américo Monteiro a_monte...@netcabo.pt, 2009.
msgid 
msgstr 
Project-Id-Version: interchange 5.7.4-1\n
Report-Msgid-Bugs-To: intercha...@packages.debian.org\n
POT-Creation-Date: 2009-12-10 08:08+\n
PO-Revision-Date: 2009-12-28 00:32+\n
Last-Translator: Américo Monteiro a_monte...@netcabo.pt\n
Language-Team: Portuguese tra...@debianpt.org\n
MIME-Version: 1.0\n
Content-Type: text/plain; charset=UTF-8\n
Content-Transfer-Encoding: 8bit\n
X-Generator: Lokalize 1.0\n
Plural-Forms: nplurals=2; plural=(n != 1);\n

#. Type: boolean
#. Description
#: ../interchange-cat-standard.templates:1001
msgid Create the Interchange demo catalog?
msgstr Criar o catálogo de demonstração do Interchange?

#. Type: boolean
#. Description
#: ../interchange-cat-standard.templates:1001
msgid 
Whether to install the demo catalog from the standard template or let you 
manually install it with makecat.
msgstr 
Instalar o catálogo de demonstração do template pré-definido ou deixar que o 
instale manualmente usando o makecat.

#. Type: boolean
#. Description
#: ../interchange-cat-standard.templates:2001
msgid Remove demo catalog on package purge?
msgstr Remover o catálogo de demonstração quando se eliminar o pacote?

#. Type: boolean
#. Description
#: ../interchange-cat-standard.templates:2001
#| msgid 
#| Whether to remove all files belonging to the Interchange demo catalog 
#| when you purge this package, e.g. with dpkg --purge or apt-get remove --
#| purge.
msgid 
Should all files belonging to the Interchange demo catalog removed when you 
purge this package, e.g. with dpkg --purge or apt-get remove --purge ?
msgstr 
Devem ser removidos todos os ficheiros do catálogo de demonstração do 
Interchange quando purgar este pacote, ex. com dpkg --purge ou apt-get 
remove --purge ?

#. Type: select
#. Choices
#: ../interchange-cat-standard.templates:3001
msgid always, ask, never
msgstr sempre, perguntar, nunca

#. Type: select
#. Description
#: ../interchange-cat-standard.templates:3002
msgid Policy for replacing existing demo catalogs:
msgstr Política para substituir catálogos de demonstração existentes:

#. Type: select
#. Description
#: ../interchange-cat-standard.templates:3002
msgid 
Whether to silently replace an existing demo catalog installation, ask for a 
confirmation or never touch an existing installation.
msgstr 
Substituir silenciosamente uma instalação existente de catálogo, pedir por 
confirmação ou nunca tocar numa instalação existente.

#. Type: boolean
#. Description
#: ../interchange-cat-standard.templates:4001
msgid Replace the Interchange demo catalog?
msgstr Substituir o catálogo de demonstração do Interchange?

#. Type: boolean
#. Description
#: ../interchange-cat-standard.templates:4001
msgid There seems to already exist an Interchange demo catalog.
msgstr Parece já existir um catálogo de demonstração do Interchange.

#. Type: string
#. Description
#: ../interchange-cat-standard.templates:5001
msgid Virtual host for the demo catalog:
msgstr 'Host' virtual para o catálogo de demonstração:

#. Type: string
#. Description
#: ../interchange-cat-standard.templates:5001
msgid 
You are running Interchange with \FullURL\ enabled. Please specify the 
virtual host for the demo catalog.
msgstr 
Está a correr o Interchange com \FullURL\ activado. Por favor especifique 
o 'host' virtual para o catálogo de demonstração.

#. Type: string
#. Description
#: ../interchange-cat-standard.templates:6001
msgid Username for this catalog's administration:
msgstr Nome de utilizador para a administração deste catálogo:

#. Type: string
#. Description
#: ../interchange-cat-standard.templates:6001
msgid 
Please provide an username for administering the demo catalog. The username 
must be at least 2 characters long and only contain letters, digits, 
underscore, @ or the dot as characters.
msgstr 
Por favor dê um nome de utilizador para a administração do catálogo de 
demonstração. O nome de utilizador deve ter pelo menos dois caracteres e 
apenas ter letras, digitos, underscore, @ ou ponto.

#. Type: password
#. Description
#: ../interchange-cat-standard.templates:7001
msgid Password for this catalog's administration:
msgstr Palavra-passe para a administração deste catálogo:

#. Type: password
#. Description
#: ../interchange-cat-standard.templates:7001
msgid 
Please provide a 

Bug#563136: linux-image-2.6.32-trunk-amd64: module ath5k not working

2009-12-31 Thread Keith Baker
I can confirm this bug.

My wireless card is a AR2413 802.11bg NIC (rev 01) and I'm using Ubuntu
9.04 with vanilla kernel 2.6.32.2.

When activating the card and loading the ath5k-module, dmesg says:

 ath5k :06:02.0: PCI INT A - GSI 22 (level, low) - IRQ 22
 ath5k :06:02.0: registered as 'phy0'
 ath5k phy0: Invalid EEPROM checksum 0xb0e2
 ath5k phy0: unable to init EEPROM
 ath5k :06:02.0: PCI INT A disabled
 ath5k: probe of :06:02.0 failed with error -5




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



Bug#563168: RM: droidbattles -- ROM; mostly usused

2009-12-31 Thread Gonéri Le Bouder
Package: ftp.debian.org
Severity: normal

Please see 544921



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



Bug#451932: xattr support in Debian tar

2009-12-31 Thread Schäfer-Hutter
Any progress on this issue?

I've noted some patches were already available but were not applied up to
now.
(see
http://old.nabble.com/patches-for-acl%2C-xattrs%2C-and-selinux-support-ts21075155.html
)

Missing xattr support in Debian's tar gets more and more annoying now that
ext4 supports
xattrs out of the box. I just fell into this trap since i tried to recover
a samba server - which
stored Windows group information in xattrs - which is gone now :( ...

Regards,
  Peter


  1   2   3   >