Bug#443485: eclipse: fails to build

2007-09-22 Thread Michael Koch
tag 443485 pending
thanks


On Fri, Sep 21, 2007 at 07:46:12PM +0200, Albert Dengg wrote:
 -BEGIN PGP SIGNED MESSAGE-
 Hash: SHA1
 
 Package: eclipse
 Version: 3.2.2-2
 Severity: serious
 Justification: no longer builds from source
 
 hi
 
 eclipse fails to build in pbuilder with the following errors
 (that i can find in the output):
 
 [javac] 2. ERROR in 
 /tmp/buildd/eclipse-3.2.2/source-tree/plugins/org.eclipse.team.cvs.ssh2/src/org/eclipse/team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java
 [javac]  (at line 840)
 [javac] setErrorMessage(ee.message);
 [javac] ^^
 [javac] ee.message cannot be resolved or is not a field
 [javac] --
 [javac] 3. ERROR in 
 /tmp/buildd/eclipse-3.2.2/source-tree/plugins/org.eclipse.team.cvs.ssh2/src/org/eclipse/
 [javac] team/internal/ccvs/ssh2/CVSSSH2PreferencePage.java (at line 891)
 [javac] setErrorMessage(ee.message);
 [javac] ^^
 [javac] ee.message cannot be resolved or is not a field
 [javac] --

This was caused by the jsch update which was API incompatible (this was
the only issue). I added a patch for this to SVN.

Thanks for reporting.


Cheers,
Michael



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



Bug#443530: Compliment debsums/apt-autogen for missing md5sums

2007-09-22 Thread Osamu Aoki
Package: debsums
Version: 2.0.33
Severity: normal
Tags: patch

I did not realize debsums_gen existed since it was not mentioned in the
manpage of debsums nor in the README file. This concept is important
since many packages are still shipped without md5sums and you may not
have installed debsums earlier with auto-gen option to enable local
generation of md5sums.

The existing debsums_gen is not optimal since it does not generate
md5sum from the package files but uses the already installed files which
may have been modified since the initial install.  (I agree with its
manpage stating deprecated.)

I think if one decide to automate md5sums generation with
/etc/apt/apt.conf.d/90debsums, one should initialize md5sums list for
the packages previously installed with the same method of using md5sums
of binary packages.  There should be a command to compliment debsums
with this which is better than debsums_gen.

Please consider to include attached patch to address this issue.

Document update and additional script included.

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

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

Versions of packages debsums depends on:
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  perl  5.8.8-11   Larry Wall's Practical Extraction 

debsums recommends no packages.

-- debconf information:
  debsums/apt-autogen: true
diff -Nru debsums-2.0.33/debian/changelog debsums-2.0.34/debian/changelog
--- debsums-2.0.33/debian/changelog	2007-09-17 08:47:53.0 +0900
+++ debsums-2.0.34/debian/changelog	2007-09-22 12:41:00.0 +0900
@@ -1,3 +1,10 @@
+debsums (2.0.34) unstable; urgency=low
+
+  * Provided debsum_init to initialize missing md5sums files from the 
+binary packages.
+
+ -- Osamu Aoki [EMAIL PROTECTED]  Sat, 22 Sep 2007 12:39:55 +0900
+
 debsums (2.0.33) unstable; urgency=low
 
   * Apply patch from Nicolas François to generate Swedish manual pages
diff -Nru debsums-2.0.33/debian/rules debsums-2.0.34/debian/rules
--- debsums-2.0.33/debian/rules	2005-11-19 15:14:49.0 +0900
+++ debsums-2.0.34/debian/rules	2007-09-22 14:55:41.0 +0900
@@ -25,13 +25,16 @@
 
 	mkdir -p $(tmp)/usr/bin $(tmp)/usr/sbin
 	sed 's/#VERSION#/$(version)/' debsums.in $(tmp)/usr/bin/debsums
-	cp debsums_gen $(tmp)/usr/sbin
-	chmod 755 $(tmp)/usr/bin/debsums $(tmp)/usr/sbin/debsums_gen
+	cp debsums_gen  $(tmp)/usr/sbin
+	cp debsums_init $(tmp)/usr/sbin
+	chmod 755 $(tmp)/usr/bin/debsums
+	chmod 755 $(tmp)/usr/sbin/debsums_gen
+	chmod 755 $(tmp)/usr/sbin/debsums_init
 
 	dh_installdocs README
 	cd man; po4a -q po4a.cfg
 	dh_installman man/debsums*.1 man/debsums_gen*.8 man/*/debsums*.1 \
-	man/*/debsums_gen*.8
+	man/*/debsums_gen*.8 man/debsums_init*.8
 
 	dh_installchangelogs
 	dh_installdebconf
diff -Nru debsums-2.0.33/debsums_init debsums-2.0.34/debsums_init
--- debsums-2.0.33/debsums_init	1970-01-01 09:00:00.0 +0900
+++ debsums-2.0.34/debsums_init	2007-09-22 12:38:45.0 +0900
@@ -0,0 +1,15 @@
+#!/bin/sh -e
+# Copyright (C) 2007 Osamu Aoki [EMAIL PROTECTED], Public Domain
+# Find out missing *.md5sum and add it to the list
+cd /var/lib/dpkg/info
+for package in $(debsums --list-missing); do
+  echo checking $package
+  if [ ! -e $package.md5sums ]; then
+echo *** $package.md5sums missing ***
+apt-get --download-only --reinstall --yes install $package || true
+debsums --generate=nocheck -p /var/cache/apt/archives $package || true
+  fi
+done
+echo Finished generating md5sums!
+echo Checking still missing md5files...
+debsums --list-missing
diff -Nru debsums-2.0.33/man/debsums.1 debsums-2.0.34/man/debsums.1
--- debsums-2.0.33/man/debsums.1	2006-08-27 17:37:33.0 +0900
+++ debsums-2.0.34/man/debsums.1	2007-09-22 14:51:00.0 +0900
@@ -151,21 +151,43 @@
 .TP
 debsums \-cagp /var/cache/apt/archives
 As above, using sums from cached debs where available.
-.LP
-.PD 0
-.nf
+
+.SH SEE ALSO
+.BR md5sum (1),
+.BR debsums_init (8), and
+.BR debsums_gen (8).
+
+.SH NOTES
+.PP
+The default installation of
+.B debsums
+package sets the debconf boolean value debsums/apt-autogen to be true.
+.PP
+This will create 
+.B /etc/apt/apt.conf.d/90debsums 
+as:
+.PP
 DPkg::Post\-Invoke {
 .br
 debsums \-\-generate=nocheck \-sp /var/cache/apt/archives;
 .br
 };
-.IP
-.fi
-.PD
-/etc/apt/apt.conf fragment to generate missing checksums after
-upgrade/install.
+.PP
+by the postinst script (=2.0.7).  Every APT controlled package installation
+processes will execute this code fragment to generate the missing 
+.B md5sums
+files from the binary packages.
+.PP
+In order to create 
+.B md5sums
+files for the already installed packages, you must run
+.B debsums_init
+once after the installation of
+.B debsums
+package.
+.PP
 

Bug#443531: ftp.debian.org: Please change priority of libws-commons-util to optional

2007-09-22 Thread Michael Koch
Package: ftp.debian.org
Severity: normal


libws-commons-util currently has an override to make it extra. It should
be optional. libxmlrpc3-java, which is optional, depends on it.


Cheers,
Michael

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

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



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



Bug#443018: libvte9: Displays garbage

2007-09-22 Thread Mike Hommey
On Fri, Sep 21, 2007 at 08:25:13AM +0200, Mike Hommey [EMAIL PROTECTED] wrote:
 On Tue, Sep 18, 2007 at 10:13:50AM +0200, Mike Hommey [EMAIL PROTECTED] 
 wrote:
  Package: libvte9
  Version: 1:0.16.8-1
  Severity: important
  
  It happens mostly when using man, but it also happens in various
  other occasions.
  
  The attached image will speak better than myself. You can see the
  negative of a random bitmap (not so random, since it's the menu
  displayed a few moments ago), and some characters mixing in the manpage
  itself.
 
 It /seems/ to not happen anymore. In the meanwhile, there has been a lot
 of upgrades, and I restarted gdm (so, X). One thing for sure, is that
 there also has been a gnome-term and libvte upgrade a few days ago, but
 that changed nothing after a gnome-term restart. I'll try to take a look
 at my dpkg.log and find which package upgrade is responsible of the fix.
 I'll then suggest you to add a conflict or properly versioned dependency
 on whatever the cause was...

Well, after a while, it did happen again :-/

Mike



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



Bug#443473: modifying [Caps Lock] via xmodmap is broken

2007-09-22 Thread Harald Dunkel

Brice Goglin wrote:


We have another bug report (#443044) about xmodmap not working at all,
we don't know what's going wrong yet. There's also
https://bugs.freedesktop.org/show_bug.cgi?id=12500 which looks strange
to me (are you running a 2.6.23-rcX kernel?).


Kernel is 2.6.22.6.

Looking at #443044: This looks pretty much the same. If I comment out
the xmodmap and run it manually within an xterm, then there is no
problem, as for #443044.

I would suggest to merge these two bug reports.


Regards

Harri




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



Bug#443533: RFP: ptpd -- Implements the Precision Time protocol (PTP) as defined by the IEEE 1588 standard.

2007-09-22 Thread Andrew Straw

Package: wnpp
Severity: wishlist


* Package name: ptpd
  Version : 1rc1
  Upstream Author : Kendall Correll [EMAIL PROTECTED]
* URL : http://ptpd.sourceforge.net/
* License : BSD
  Programming Lang: C
  Description : Implements the Precision Time protocol (PTP) as 
defined by the IEEE 1588 standard.


PTP was developed to provide very precise time coordination of LAN
connected computers.

PTPd is a complete implementation of the IEEE 1588 specification for a
standard (non-boundary) clock. PTPd has been tested with and is known to
work properly with other IEEE 1588 implementations. The source code for
PTPd is freely available under a BSD-style license. Thanks to
contributions from users, PTPd is becoming an increasingly portable,
interoperable, and stable IEEE 1588 implementation.

PTPd can run on most 32-bit little- or big-endian processors. It does
not require an FPU, so it is great for embedded processors. PTPd
currently runs on Linux, uClinux, FreeBSD, and NetBSD. It should also be
easy to port to other platforms.

PTPd is free. Everyone is invited to use and contribute to PTPd.

PTPd was written by using only information contained within 'IEEE Std
1588-2002'. IEEE 1588 may contain patented technology, the use of
which is not under the control of the authors of PTPd. Users of IEEE
1588 may need to obtain a license for the patented technology in the
protocol. Contact the IEEE for licensing information.



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



Bug#443532: heimdal: [debconf_rewrite] Debconf templates and debian/control review

2007-09-22 Thread Christian Perrier
Package: heimdal
Version: N/A
Severity: normal
Tags: patch

Dear Debian maintainer,

On Friday, September 07, 2007, I notified you of the beginning of a review 
process
concerning debconf templates for heimdal.

The debian-l10n-english contributors have now reviewed these templates,
and the proposed changes are attached to this bug report.

Please review the suggested changes are suggested, and if you have any
objections, let me know in the next 3 days.

Please try to avoid uploading heimdal with these changes right now.

The second phase of this process will begin on Tuesday, September 25, 2007, 
when I will
coordinate updates to translations of debconf templates.

The existing translators will be notified of the changes: they will
receive an updated PO file for their language.

Simultaneously, a general call for new translations will be sent to
the debian-i18n mailing list.

Both these calls for translations will request updates to be sent as
individual bug reports. That will probably trigger a lot of bug
reports against your package, but these should be easier to deal with.

The call for translation updates and new translations will run until
about Tuesday, October 16, 2007. Please avoid uploading a package with fixed or 
changed
debconf templates and/or translation updates in the meantime. Of
course, other changes are safe.

Please note that this is an approximative delay, which depends on my
own availability to process this work and is influenced by the fact
that I simultaneously work on many packages.

Around DAY25, I will contact you again and will send a final patch
summarizing all the updates (changes to debconf templates,
updates to debconf translations and new debconf translations).

Again, thanks for your attention and cooperation.


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

Kernel: Linux 2.6.22-2-686 (SMP w/1 CPU core)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/dash
--- heimdal.old/debian/heimdal-kdc.templates2007-09-07 06:07:40.346657944 
+0200
+++ heimdal/debian/heimdal-kdc.templates2007-09-22 09:00:33.417310943 
+0200
@@ -1,12 +1,24 @@
+# These templates have been reviewed by the debian-l10n-english
+# team
+#
+# If modifications/additions/rewording are needed, please ask
+# [EMAIL PROTECTED] for advice.
+#
+# Even minor modifications require translation updates and such
+# changes should be coordinated with translators and reviewers.
+
 Template: heimdal/realm
 Type: string
 _Description: Local realm name:
- Heimdal requires the name of your local realm. This is typically your
- domain name in uppercase. eg if your hostname is host.org.com, then your
- realm will become ORG.COM. The default for your host is ${default_realm}.
+ Please enter the name of the local Kerberos realm. 
+ .
+ Using the uppercase domain name is common. For instance, if the host
+ name is host.example.org, then the realm will become EXAMPLE.ORG. The
+ default for this host is ${default_realm}.
 
 Template: heimdal-kdc/password
 Type: password
-_Description: Password for KDC:
- Heimdal can encrypt the KDC data with a password. A hashed representation
- will be stored in /var/lib/heimdal-kdc/m-key.
+_Description: KDC password:
+ Heimdal can encrypt the key distribution center (KDC) data with
+ a password. A hashed representation of this password will be stored
+ in /var/lib/heimdal-kdc/m-key.
--- heimdal.old/debian/control  2007-09-07 06:07:41.346604916 +0200
+++ heimdal/debian/control  2007-09-19 07:03:18.563084854 +0200
@@ -14,8 +14,8 @@
 Replaces: heimdal-lib ( 0.3c-5), libkrb5-15-heimdal, heimdal-servers ( 
0.6.3-3)
 Conflicts: heimdal-lib ( 0.3c-5)
 Suggests: heimdal-clients, heimdal-clients-x, heimdal-servers, 
heimdal-servers-x
-Description: Documentation for Heimdal Kerberos
- Heimdal is a free implementation of Kerberos 5, that aims to be
+Description: Heimdal Kerberos - documentation
+ Heimdal is a free implementation of Kerberos 5 that aims to be
  compatible with MIT Kerberos.
  .
  This package includes documentation (in info format) on how to
@@ -28,14 +28,14 @@
 Depends: ${shlibs:Depends}, heimdal-clients, logrotate, debconf (= 0.5.00) | 
debconf-2.0, krb5-config, netbase
 Replaces: heimdal-clients ( 0.7.2-1), heimdal-servers ( 0.4e-3)
 Suggests: heimdal-docs
-Description: KDC for Heimdal Kerberos
- Heimdal is a free implementation of Kerberos 5, that aims to be
+Description: Heimdal Kerberos - key distribution center (KDC)
+ Heimdal is a free implementation of Kerberos 5 that aims to be
  compatible with MIT Kerberos.
  .
- This package includes the KDC (key distribution centre) server,
+ This package includes the KDC (key distribution center) server,
  which is designed to run on a secure computer and keeps track
- of users passwords. This is done using the Kerberos protocol in
- such a way that the server computers do not need to know 

Bug#442137: websvn: Broken fix in 1.61-22.2

2007-09-22 Thread Nico Golde
Hi,
I will 0-day NMU this issue to fix the previous upload by 
Steffen. Attached is a fix for the issue.

It will be also archived on:
http://people.debian.org/~nion/nmu-diff/websvn-1.61-22.2_1.61-22.3.patch

Kind regards
Nico

-- 
Nico Golde - http://ngolde.de - [EMAIL PROTECTED] - GPG: 0x73647CFF
For security reasons, all text in this mail is double-rot13 encrypted.
diff -u websvn-1.61/debian/changelog websvn-1.61/debian/changelog
--- websvn-1.61/debian/changelog
+++ websvn-1.61/debian/changelog
@@ -1,3 +1,11 @@
+websvn (1.61-22.3) unstable; urgency=high
+
+  * Non-maintainer upload by testing security team.
+  * Altered CVE-2007-3056.diff from previous NMU to fix
+usage of functions from future upstream release (Closes: #442137).
+
+ -- Nico Golde [EMAIL PROTECTED]  Sat, 22 Sep 2007 08:57:34 +0200
+
 websvn (1.61-22.2) unstable; urgency=high
 
   * Non-maintainer upload by the testing-security team
diff -u websvn-1.61/debian/patches/CVE-2007-3056.diff websvn-1.61/debian/patches/CVE-2007-3056.diff
--- websvn-1.61/debian/patches/CVE-2007-3056.diff
+++ websvn-1.61/debian/patches/CVE-2007-3056.diff
@@ -1,4 +1,6 @@
 filedetails.php.orig	2007-09-03 13:44:37.0 +
+Index: websvn-1.61/filedetails.php
+===
+--- websvn-1.61.orig/filedetails.php	2007-09-03 13:44:37.0 +
 +++ websvn-1.61/filedetails.php	2007-09-03 13:45:29.0 +
 @@ -127,9 +127,9 @@
 $vars[goyoungestlink] = ;
@@ -7,7 +9,7 @@
 -$vars[repname] = $rep-name;
 -$vars[rev] = $rev;
 -$vars[path] = $ppath;
-+$vars[repname] = htmlentities($rep-getDisplayName(), ENT_QUOTES, 'UTF-8');
++$vars[repname] = htmlentities($rep-name, ENT_QUOTES, 'UTF-8');
 +$vars[rev] = htmlentities($rev, ENT_QUOTES, 'UTF-8');
 +$vars[path] = htmlentities($ppath, ENT_QUOTES, 'UTF-8');
  


pgpXBAAtyb4K2.pgp
Description: PGP signature


Bug#176746: acclaimable

2007-09-22 Thread ewald

   acclaimed acclaimer
constant symptom and is especially annoying at night, the patient being
unable to get into a comfortable position. Tenderness may be elicited over
the anatomical limits of the bursa, and is usually most marked over the
   

Get  G-en.uine Pill;s  sa;fe  and fa;st  as dir;ec,t=ly fro*m Pf,i-zer  but wi,th  l=ower  pri*ce
  
 


 http://abbeylanegfts.com
  
   
All  pi,lls are w;itho-ut VAT/T=A,X
   

  
great tuberosity, just external to the inter-tubercular (bicipital)

groove. When adhesions are present, abduction beyond 10 degrees is
impossible. Demonstrable effusion is not uncommon, but is disguised by the
overlying tissues. If left to himself, the patient tends to maintain the
limb in the sling position, and resists movements in the direction of
abduction and rotation. In the treatment of this affection the arm should



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



Bug#443473: modifying [Caps Lock] via xmodmap is broken

2007-09-22 Thread Brice Goglin
reassign 443473 x11-xserver-utils
forcemerge 443044 443473
thank you



Harald Dunkel wrote:
 Brice Goglin wrote:

 We have another bug report (#443044) about xmodmap not working at all,
 we don't know what's going wrong yet. There's also
 https://bugs.freedesktop.org/show_bug.cgi?id=12500 which looks strange
 to me (are you running a 2.6.23-rcX kernel?).

 Kernel is 2.6.22.6.

 Looking at #443044: This looks pretty much the same. If I comment out
 the xmodmap and run it manually within an xterm, then there is no
 problem, as for #443044.

 I would suggest to merge these two bug reports.

Done.

Brice




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



Bug#422414: Translation updated

2007-09-22 Thread Luca Monducci
Hello,
please use this translation instead that old one.

Luca

xorg-server_it.po.gz
Description: GNU Zip compressed data


Bug#443535: start-stop-daemon: should offer an option for ionice

2007-09-22 Thread Dominique Dumont
Package: dpkg
Version: 1.14.6
Severity: wishlist

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

Hello

I use start-stop-daemon to launch hellanzb which can sometimes be very
io intensive (with par2 and unrar)

It would be great if I could launch hellanzb with ionice -c idle
through start-stop-daemon. Could you add an option --ioniceclass or
--ionicelevel ?

Thanks 

--- System information. ---
Architecture: amd64
Kernel:   Linux 2.6.22.6dd

Debian Release: lenny/sid
  990 unstablewww.debian-multimedia.org 
  990 unstableftp.fr.debian.org 
  990 unstableftp.de.debian.org 
  500 testing ftp.fr.debian.org 
  500 testing ftp.de.debian.org 
  500 sid zap.tartarus.org 
1 experimentalftp.fr.debian.org 

--- Package information. ---
Depends   (Version) | Installed
===-+-===
| 




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



Bug#435823: Progress of the volpack Debian packaging?

2007-09-22 Thread Michael Hanke
Hi,

are there any news about the progress of the volpack packaging? The last
entry of the bugreport tells me that the license is BSD now. The
upstream website seems to reflect that, but the tarball still has the
old license. So basically volpack is still non-free :(

I plan to do some more work on #409849 and volpack is a necessary
dependency. Is there anything I can do to facilitate the process?


Thanks,

Michael

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


signature.asc
Description: Digital signature


Bug#435823: Progress of the volpack Debian packaging?

2007-09-22 Thread Michael Hanke

I forgot one thing,

On Sat, Sep 22, 2007 at 09:35:10AM +0200, Michael Hanke wrote:
snip
 I plan to do some more work on #409849 and volpack is a necessary
 dependency. Is there anything I can do to facilitate the process?
I understand that there have been some improvements to my initial
packaging attempt (e.g. shared lib support). I just checked the
debian-med SVN and it only has my old version. Is it possible to push
the updates to the repository?


Thanks,

Michael


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


signature.asc
Description: Digital signature


Bug#443230: [Pkg-samba-maint] Bug#443230: Bug#443230: Bug#443230: Enable net usershare

2007-09-22 Thread Christian Perrier
  That'd needs some discussion on -devel first, then.
  
 
 AFAIC, this sounds as a reasonable default, as far as it stays 
 customizable on a per file service basis


Hmmm, that would mean that the group name would be customizable.

How do you see us to make it customizable?




signature.asc
Description: Digital signature


Bug#443536: multipath-tools-initramfs: Proposed patch for local-top script

2007-09-22 Thread Vincent Bernat
Package: multipath-tools-initramfs
Version: 1.0.1
Severity: wishlist
Tags: patch

Hi !

Here is a small patch for initramfs local-top script.
 1. We do not load the multipath daemon in initrd
 2. It seems safer to launch kpartx only on multipath devices

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

Kernel: Linux 2.6.22.1-zoro.16
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash
--- scripts/local-top/multipath_script~ 2007-06-08 22:42:16.0 +0200
+++ scripts/local-top/multipath_script  2007-09-21 14:52:51.0 +0200
@@ -21,11 +21,10 @@
 
 modprobe dm-multipath
 
-echo Loading multipath daemon
+echo Detecting multipath disks
 
 /sbin/multipath -v 0
-
-for ASDF in /dev/mapper/*; do kpartx -a $ASDF; done
+/sbin/dmsetup ls --target multipath --exec 'kpartx -a'
 
 exit 0
 


Bug#443537: xbase-clients: xrdb: an apostrophe in a comment causes error

2007-09-22 Thread Ryo Furue
Package: xbase-clients
Version: 1:7.2.ds2-2
Severity: normal

If a comment in .Xdefaults contains an apostrophe, xrdb
issues an error.  For example,

   $ cat tmp.txt
   ! This is a comment line.  Let's ignore it.
   $ xrdb tmp.txt
   stdin:1:31: warning: missing terminating ' character
   $

(I first recognized this problem with a real .Xdefault file,
 and I created this stupid example for this bug submission.)

Thanks,
Ryo

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

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

Versions of packages xbase-clients depends on:
ii  cpp 4:4.2.1-6The GNU C preprocessor (cpp)
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libfs6  2:1.0.0-4X11 Font Services library
ii  libgl1-mesa-glx [libgl1 7.0.1-2  A free implementation of the OpenG
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxau6 1:1.0.3-2X11 authorisation library
ii  libxaw7 2:1.0.4-1X11 Athena Widget library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxkbfile1 1:1.0.4-1X11 keyboard file manipulation lib
ii  libxmu6 1:1.0.3-1X11 miscellaneous utility library
ii  libxmuu11:1.0.3-1X11 miscellaneous micro-utility li
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.3-1X Rendering Extension client libra
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  libxtrap6   1:1.0.0-4X11 event trapping extension libra
ii  libxtst62:1.0.3-1X11 Testing -- Resource extension 
ii  libxv1  1:1.0.3-1X11 Video extension library
ii  libxxf86dga12:1.0.2-1X11 Direct Graphics Access extensi
ii  libxxf86vm1 1:1.0.1-2X11 XFree86 video mode extension l
ii  x11-common  1:7.2-5  X Window System (X.Org) infrastruc
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

xbase-clients recommends no packages.

-- no debconf information



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



Bug#440552: Found this bug in more or less fresh lenny installation

2007-09-22 Thread Michael Hanke
Hi,

I just stumbled about this bug in a recently installed lenny. I
installed virtualbox-ose and compiled the module with module-assistant.
I added myself to the vboxusers group and did a fresh login. Now I have
this:

[EMAIL PROTECTED]:~$ ll /dev/vboxdrv
crw-rw 1 root root 10, 62 2007-09-22 10:03 /dev/vboxdrv

[EMAIL PROTECTED]:~$ dpkg -L virtualbox-ose | grep udev
/etc/udev
/etc/udev/rules.d
/etc/udev/rules.d/z60_virtualbox-ose.rules

[EMAIL PROTECTED]:~$ cat /etc/udev/rules.d/z60_virtualbox-ose.rules
KERNEL==vboxdrv, NAME=vboxdrv, OWNER=root, GROUP=vboxusers, MODE=0660

[EMAIL PROTECTED]:~$ groups
users disk cdrom audio video plugdev vboxusers

[EMAIL PROTECTED]:~$ apt-show-versions |grep virtualbox
virtualbox-ose/unknown uptodate 1.5.0-dfsg2-1
virtualbox-ose-source/unknown uptodate 1.5.0-dfsg2-1
virtualbox-ose-modules-2.6.21-2-686 1.5.0-dfsg2-1+2.6.21-6 installed: No 
available version in archive


and of course virtualbox tells me:


[EMAIL PROTECTED]:~$ virtualbox
WARNING: /dev/vboxdrv not writable for some reason. If you recently added the
 current user to the vboxusers group then you have to logout and
 re-login to take the change effect.

 You will not be able to start VMs until this problem is fixed.


So at least I can reproduce this bug. :(



Cheers,

Michael

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


signature.asc
Description: Digital signature


Bug#443528: ITP: xmms-pulse -- Pulseaudio Output plugin for xmms

2007-09-22 Thread Thomas Viehmann
Hi,

Thomas GOIRAND wrote:
   Description : Pulseaudio output plugin for xmms

Last I heard the xmms maintainers asked for input on removing xmms and
how to deal with the plugins already in the archive...

Kind regards

T.
-- 
Thomas Viehmann, http://thomas.viehmann.net/



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



Bug#440552: Found this bug in more or less fresh lenny installation

2007-09-22 Thread Michael Hanke
Update:

On Sat, Sep 22, 2007 at 10:15:45AM +0200, Michael Hanke wrote:
 Hi,
 
 I just stumbled about this bug in a recently installed lenny. I
 installed virtualbox-ose and compiled the module with module-assistant.
 I added myself to the vboxusers group and did a fresh login. Now I have
 this:
 
 [EMAIL PROTECTED]:~$ ll /dev/vboxdrv
 crw-rw 1 root root 10, 62 2007-09-22 10:03 /dev/vboxdrv

After a reboot this looks like it should be:

[EMAIL PROTECTED]:~$ ll /dev/vb*
crw-rw 1 root vboxusers 10, 62 2007-09-22 10:19 /dev/vboxdrv


Cheers,

Michael


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


signature.asc
Description: Digital signature


Bug#443264: [Pkg-shadow-devel] Bug#443264: closed by Nicolas Fran??ois [EMAIL PROTECTED] (Re: Bug#443264: passwd: useradd ignores default group and creates usergroups instead)

2007-09-22 Thread Christian Perrier
Quoting CaT ([EMAIL PROTECTED]):

 Would it be possible to modify this slightly to say that if a GROUP=
 line is given in the configuration file then -n is implied and that is
 used, otherwise make a new one? It seems to me to be slightly better
 behaviour as it, at least to me, easily follows from the actual act of
 setting a single, solid group.


I have mitigated feelings about a setting in the configuration file
to change the default setting of the program switches.

As such, your proposal is an interesting compromise, yes. However, I
wouldn't like to introduce confusion in the use of the software.






signature.asc
Description: Digital signature


Bug#443528: ITP: xmms-pulse -- Pulseaudio Output plugin for xmms

2007-09-22 Thread Thomas Goirand
Thomas Viehmann wrote:
 Hi,
 
 Thomas GOIRAND wrote:
   Description : Pulseaudio output plugin for xmms
 
 Last I heard the xmms maintainers asked for input on removing xmms and
 how to deal with the plugins already in the archive...
 
 Kind regards
 
 T.

Does it mean that I should try and make it work with xmms2 instead,
which means open an ITP for xmms2-pulse?

Thomas




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



Bug#443528: ITP: xmms-pulse -- Pulseaudio Output plugin for xmms

2007-09-22 Thread Sjoerd Simons
On Sat, Sep 22, 2007 at 10:13:17AM +0200, Thomas Viehmann wrote:
 Hi,
 
 Thomas GOIRAND wrote:
Description : Pulseaudio output plugin for xmms
 
 Last I heard the xmms maintainers asked for input on removing xmms and
 how to deal with the plugins already in the archive...

We already packaged xmms-pulse as part of pkg-pulseaudio. But never uploaded it
for exactly this reason. It doesn't seem very usefull to upload it just so it
can be removed a few months later.

You can find our packaging at
  http://svn.debian.org/wsvn/pkg-pulseaudio/xmms-pulse/

Ofcourse always feel free to join pkg-pulseaudio if you want to
package/maintain pulse related things :)..

  Sjoerd
-- 
Freedom is what you do with what's been done to you.
-- Jean-Paul Sartre



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



Bug#443538: You want to continue [Y/n/?] - ? - segfault

2007-09-22 Thread Don Armstrong
Package: aptitude
Severity: important
Version: 0.4.6.1-1

$ sudo aptitude install
Reading package lists... Done
Building dependency tree   
Reading state information... Done
Reading extended state information  
Initializing package states... Done
Reading task descriptions... Done  
Building tag database... Done
The following packages have been automatically kept back:
  gnome-media-common libbonoboui2-common libglib2.0-data 
The following packages have been kept back:
  gimp gimp-data gimp-python r-base-dev r-recommended 
The following NEW packages will be installed:
  libsafe-hole-perl 
0 packages upgraded, 1 newly installed, 0 to remove and 8 not upgraded.
Need to get 17.1kB of archives. After unpacking 111kB will be used.
Do you want to continue? [Y/n/?] ?
Commands:
Segmentation fault

[Will try to get a useful backtrace shortly.]


Don Armstrong

-- 
There are two major products that come out of Berkeley: LSD and UNIX.
We don't believe this to be a coincidence.
 -- Jeremy S. Anderson

http://www.donarmstrong.com  http://rzlab.ucr.edu



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



Bug#443539: uswsusp: resume complains at boot and fails with missing libpcre.so.3 resuming after s2disk

2007-09-22 Thread chryjs
Package: uswsusp
Version: 0.7-1
Severity: normal


resume fails loading image on RESUME device, complaining missing
libpcre.so.3 at boot. The boot continues as if there was no uswsusp
image stored (and then goes on fsck's...).

After the system is back to normal op's :

$ ldd /usr/lib/uswsusp/resume
[...]
libpcre.so.3 = /usr/lib/libpcre.so.3 (0x2aab5c41d000)
[...]
NB: not any missing lib between brackets.

All packages were installed with apt-get. No local modifications or conf
edits (as far as I remember).

uswsusp used to work fine on this system before (some recents apt-get
dist-upgrade)

Regards.
Chryjs

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

Kernel: Linux 2.6.22-2-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/bash

Versions of packages uswsusp depends on:
ii  debconf [debconf-2.0]   1.5.14   Debian configuration management sy
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-5GCC support library
ii  libgcrypt11 1.2.4-2  LGPL Crypto library - runtime libr
ii  liblzo2-2   2.02-3   data compression library
ii  libsplashy1 0.3.5Library to draw splash screen on b
ii  libx86-10.99-1.2 x86 real-mode library
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages uswsusp recommends:
ii  initramfs-tools   0.91a  tools for generating an initramfs
ii  mount 2.13-5 Tools for mounting and manipulatin

-- debconf information:
  uswsusp/RSA_passphrase: (password omitted)
  uswsusp/RSA_passphrase_v: (password omitted)
  uswsusp/compute_checksum: false
  uswsusp/no_snapshot:
  uswsusp/suspend_loglevel:
  uswsusp/no_swap:
  uswsusp/resume_offset:
  uswsusp/early_writeout: true
  uswsusp/image_size: 726822256
  uswsusp/compress: true
  uswsusp/create_RSA_key: false
  uswsusp/snapshot_device:
  uswsusp/RSA_key_file: /etc/uswsusp.key
  uswsusp/max_loglevel:
  uswsusp/resume_device: /dev/sda3
  uswsusp/shutdown_method: platform
  uswsusp/encrypt: false
  uswsusp/splash: false
  uswsusp/RSA_key_bits: 1024
  uswsusp/continue_without_swap: true



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



Bug#197938: did

2007-09-22 Thread backblocks

   didactic diddy
applied above the wound, which the nurse is instructed to tighten up in
   

O+r.igi+nal ph;a;rma Pill;s fr.om  P*f,izer
  
 


 http://asemmall.com
  
   
All  pill.s  are wit-hou;t VAT;/;TAX
   

  
the event of bleeding taking place.  _Ligation of the Artery._If the

haemorrhage recurs in spite of packing the wound, or if it is serious from
the outset and likely to be critical if repeated, ligation of the artery
itself or of the trunk from which it springs, at a selected spot higher
up, should be considered. This is most often indicated in wounds of the
extremities.  As examples of proximal ligation for secondary haemorrhage



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



Bug#443540: evolution: Smiley incorrectly inserted in mails

2007-09-22 Thread Pierre GAUFILLET
Package: evolution
Version: 2.10.3-1
Severity: normal


When inserting a smiley from the insert/smiley (insert/frimousse in french) 
menu, the result is not correct :
* :-) and 8-) are inverted
* :-D and :-( are inverted

Moreover, automatic replacement during edition does not work at all.
e.g. Typing ;-), :-D or :-( insert a broken image. 

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

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=ISO-8859-1) (ignored: 
LC_ALL set to fr_FR)
Shell: /bin/sh linked to /bin/bash

Versions of packages evolution depends on:
ii  dbus1.1.1-3  simple interprocess messaging syst
ii  evoluti 2.10.3-1 architecture independent files for
ii  evoluti 1.10.3-1 evolution database backend server
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  gnome-i 2.18.0-3 GNOME Desktop icon theme
ii  gtkhtml 3.14.3-1 HTML rendering/editing library - b
ii  libart- 2.3.19-3 Library of functions for 2D graphi
ii  libatk1 1.18.0-2 The ATK accessibility toolkit
ii  libbono 2.18.0-2 Bonobo CORBA interfaces library
ii  libbono 2.18.0-5 The Bonobo UI library
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcair 1.4.10-1 The Cairo 2D vector graphics libra
ii  libcame 1.10.3-1 The Evolution MIME message handlin
ii  libdbus 1.1.1-3  simple interprocess messaging syst
ii  libdbus 0.74-1   simple interprocess messaging syst
ii  libeboo 1.10.3-1 Client library for evolution addre
ii  libecal 1.10.3-1 Client library for evolution calen
ii  libedat 1.10.3-1 Utility library for evolution data
ii  libedat 1.10.3-1 GUI utility library for evolution 
ii  libegro 1.10.3-1 Client library for accessing group
ii  libexch 1.10.3-1 Backend library for evolution cale
ii  libfont 2.4.2-1.2generic font configuration library
ii  libfree 2.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcon 2.18.0.1-3   GNOME configuration database syste
ii  libglad 1:2.6.2-1library to load .glade files at ru
ii  libglib 2.14.0-2 The GLib library of C routines
ii  libgnom 0.8.1-2  GNOME keyring services library
ii  libgnom 2.0.15-2 Support libraries for gnome-pilot
ii  libgnom 2.18.0-4 The GNOME 2 library - runtime file
ii  libgnom 2.14.0-3 A powerful object-oriented display
ii  libgnom 2.18.0-2 The GNOME 2.2 print architecture -
ii  libgnom 2.18.0-2 GNOME 2.2 print architecture User 
ii  libgnom 2.18.1-2 The GNOME 2 libraries (User Interf
ii  libgnom 1:2.18.1-2   GNOME Virtual File System (runtime
ii  libgnut 1.7.19-1 the GNU TLS library - runtime libr
ii  libgtk2 2.10.13-1The GTK+ graphical user interface 
ii  libgtkh 3.14.3-1 HTML rendering/editing library - r
ii  libhal1 0.5.9.1-4Hardware Abstraction Layer - share
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libldap 2.1.30.dfsg-13.5 OpenLDAP libraries
ii  libnm-g 0.6.5-1  network management framework (GLib
ii  libnoti 0.4.4-3  sends desktop notifications to a n
ii  libnspr 1.8.0.13~pre070720-0etch3+lenny1 NetScape Portable Runtime Library
ii  libnss3 3.11.7-1 Network Security Service libraries
ii  liborbi 1:2.14.7-0.1 libraries for ORBit2 - a CORBA ORB
ii  libpang 1.18.1-1 Layout and rendering of internatio
ii  libpiso 0.12.2-10library for communicating with a P
ii  libpisy 0.12.2-10synchronization library for PalmOS
ii  libpng1 1.2.15~beta5-2   PNG library - runtime
ii  libpopt 1.10-3   lib for parsing cmdline parameters
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsoup 2.2.100-1an HTTP library implementation in 
ii  libx11- 2:1.0.3-7X11 client-side library
ii  libxcur 1:1.1.9-1X cursor management library
ii  libxext 1:1.0.3-2 

Bug#443543: stalonetray: Program committed suicide

2007-09-22 Thread Yair Mahalalel
Package: stalonetray
Version: 0.7-1
Severity: important
File: /usr/bin/stalonetray

*** Please describe what you were doing when the application crashed ***

I added the line 'background #3f3c6d' to the config file without
quoting the '#' sign. (Without it at all it just exited with an error
message).

Kudos for a lovely little app, BTW, it's a clean and well behaved
addition to an XMonad desktop. I don't think it'd be necessary, but if
you want me to replicate this with any -dbg packages installed, please
send me a note.

(no debugging symbols found)
Using host libthread_db library /lib/i686/cmov/libthread_db.so.1.
(no debugging symbols found)
0xe410 in __kernel_vsyscall ()
#0  0xe410 in __kernel_vsyscall ()
#1  0xb7d32633 in __waitpid_nocancel () from /lib/i686/cmov/libc.so.6
#2  0xb7efb9dd in ?? () from /usr/lib/debreaper/libviaticum.so
#3  0x0926 in ?? ()
#4  0xbfc58828 in ?? ()
#5  0x in ?? ()

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

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

Versions of packages stalonetray depends on:
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  libx11-6  2:1.0.3-7  X11 client-side library

stalonetray recommends no packages.



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



Bug#443541: wine: new upstream 0.9.45 released

2007-09-22 Thread Silvestre Zabala
Package: wine
Version: 0.9.44-1
Severity: wishlist

Hello,

September 14, 2007: Wine 0.9.45 Released

Wine 0.9.45 was released today, with the following main changes:

* Many improvements to the crypto dlls (should make iTunes work).
* The usual assortment of Direct3D improvements.
* A number of fixes to sound support.
* Many more WordPad features.
* Lots of bug fixes.

thanks for packaging, keep up the good work! :-)

Best regards,
  Silvestre Zabala

-- 
http://silvestre.zabala.name/


signature.asc
Description: Digital signature


Bug#443542: pwsafe: ncurses interface not available ?

2007-09-22 Thread Vincent Bernat
Package: pwsafe
Version: 0.2.0-3
Severity: normal

Hi !

pwsafe manpage says that there is an interactive mode that can be
accessed when running pwsafe without any command. However, pwsafe just
exits in this case.

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

Kernel: Linux 2.6.22-1-amd64 (SMP w/2 CPU cores)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
Shell: /bin/sh linked to /bin/bash

Versions of packages pwsafe depends on:
ii  libc6 2.6.1-4GNU C Library: Shared libraries
ii  libgcc1   1:4.2.1-5  GCC support library
ii  libice6   2:1.0.4-1  X11 Inter-Client Exchange library
ii  libncurses5   5.6+20070908-1 Shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  libsm62:1.0.3-1+b1   X11 Session Management library
ii  libssl0.9.8   0.9.8e-8   SSL shared libraries
ii  libstdc++64.2.1-5The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxmu6   1:1.0.3-1  X11 miscellaneous utility library

pwsafe recommends no packages.

-- no debconf information



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



Bug#443544: CVE-2007-4584 stack based buffer overflow via long MODE command

2007-09-22 Thread Nico Golde
Package: ircii-pana
Severity: grave
Tags: security

Hi,
the following CVE was published for ircii-pana.
CVE-2007-4584[0]:
Stack-based buffer overflow in BitchX 1.1 Final allows 
remote IRC servers to execute arbitrary code via a long 
string in a MODE command, related to the p_mode variable.

If you fix it please include the CVE id in your changelog.

http://www.milw0rm.com/exploits/4321
can be used to test this vulnerability.

[0] http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2007-4584

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


pgp6kS6RfPgsz.pgp
Description: PGP signature


Bug#443545: grep: case-sensitivity failure in UTF-8 locale

2007-09-22 Thread Drake Wilson
Package: grep
Version: 2.5.3~dfsg-2
Severity: important

  $ echo Capitalized | grep -qE '^[a-z]+$'  echo uh-oh
  uh-oh
  $ echo Capitalized | LANG=en_US grep -E '^[a-z]+$'  echo uh-oh
  $ echo Capitalized | LANG=C grep -E '^[a-z]+$'  echo uh-oh
  $

This is the same for the pattern '^[a-z]\+$' without -E, and of course
without -q.  Seems like it's the presence of UTF-8 that does this.
Whee.

   --- Drake Wilson

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

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

Versions of packages grep depends on:
ii  libc6 2.6.1-3GNU C Library: Shared libraries

grep recommends no packages.

-- no debconf information



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



Bug#443546: please provide more helpful errormsg on import-failures

2007-09-22 Thread Holger Levsen
package: lwat
version: 0.15
severity: wishlist
x-debbugs-cc: [EMAIL PROTECTED]

Hi,

On Thursday 13 September 2007 16:21, Frank Weißer wrote:
 Our secretary has a familyname (other name) for one student in her
 database and lwat doesn't like () :-( And as there are about 500 entries
 in the file, i didn't see it.

 Some hint of lwat (bad character) would be helpful.

This wishlist bug is a wish for more meaningful/helpful error messages when 
importing user lists, something like can't import this file, it contains bad 
characters. Allowed characters are: [a-z][A-Z]-_+ or such.


regards,
Holger


pgpYHU5n8iFSr.pgp
Description: PGP signature


Bug#443547: libpoppler1: Problems rendering Porirua City overview map

2007-09-22 Thread Andrew McMillan
Package: libpoppler1
Version: 0.5.4-6.1
Severity: normal

The overview map for Porirua City Council takes over 90 seconds to
render in Evince on my Core 2 Duo 2GHz laptop with 2G RAM, which is not
swapping at the time.  This seems beyond excessive for a single page
PDF.  The timing was taken on the third run, so almost all disk access
should have been in cache.

In addition to the rendering performance, the overlay of URL positions
for the sub-maps linked from this map is rotated 90 degrees
anti-clockwise, so as you mouseover random places in the map you will
see links to things that should be 90 degrees clockwise from the
position where they are being presented.

The overall.pdf map is available from this URL:
http://gis.pcc.govt.nz/encounter/street_maps/overall.pdf

For comparison, on the same computer, Acrobat Reader takes less than 5
seconds, on the first run after a clean install.  Including the time it
took me to notice and click 'Accept' on the license agreement dialog.

The various sub-map links are also overlaid in the correct positions.

Thanks,
Andrew McMillan.

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

Kernel: Linux 2.6.23-rc7-hippy (SMP w/2 CPU cores)
Locale: LANG=en_NZ.UTF-8, LC_CTYPE=POSIX (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages libpoppler1 depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.1-5GCC support library
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

libpoppler1 recommends no packages.

-- no debconf information



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



Bug#403208: any news

2007-09-22 Thread martin f krafft
also sprach John Jetmore [EMAIL PROTECTED] [2007.09.21.2151 +0100]:
 Take a look at http://www.jetmore.org/john/code/swaks.20070921.0-dev

This looks real good, I am also putting it into ~/.bin on all
machines. Thanks for your consideration and time!

I guess at the point, the only comment I have is that I am not sure
about the format of the config file. I know a bunch of other tools
that have similar files, and all they ever need is the ability to
specify command-line flags, so having ARGS seems like overkill.
What did you have in mind when you thought you'd better make it
extensible?

Also, you might just want to limit the arguments in there to long
options and *not* require the leading two dashes. Or assume them, if
a line starts out without a dash. So then the following would all be
the same:

  -f [EMAIL PROTECTED]
  --from [EMAIL PROTECTED]
  from [EMAIL PROTECTED]

I'll write back if I encounter any other issues.

Thanks again,

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


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


Bug#443548: ITP: paperkey -- extract just the secret information out ouf OpenPGP secret keys

2007-09-22 Thread Peter Palfrader
Package: wnpp
Owner: Peter Palfrader [EMAIL PROTECTED]
Severity: wishlist

* Package name: paperkey
  Version : 0.5
  Upstream Author : David Shaw
* URL : http://www.jabberwocky.com/software/paperkey/
* License : GPL
  Programming Lang: C
  Description : extract just the secret information out ouf OpenPGP secret 
keys

A reasonable way to achieve a long term backup of OpenPGP (GnuPG, PGP,
etc) keys is to print them out on paper.  The reasoning behind this is
that paper and ink has amazingly long retention qualities - far longer
than the magnetic or optical means that are generally used to back up
computer data.

Due to metadata and redundancy, OpenPGP secret keys are significantly
larger than just the secret bits.  In fact, the secret key contains
a complete copy of the public key.  Since the public key generally
doesn't need to be escrowed (most people have many copies of it on
various keyservers, web pages, etc), only extracting the secret parts
can be a real advantage.

Paperkey extracts just those secret bytes and prints them.  To
reconstruct, you re-enter those bytes (whether by hand or via OCR) and
paperkey can use them to transform your existing public key into a
secret key.




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



Bug#443549: tomboy: Passing command-line arguments in .server files is deprecated

2007-09-22 Thread Jö Fahlke
Package: tomboy
Version: 0.6.3-1
Severity: normal

I get the following warning in my syslog:
Sep 22 10:12:31 jupiter bonobo-activation-server (joe-5862): Passing 
command-line arguments in .server files is deprecated: /usr/bin/tomboy 
--panel-applet

Thanks,
Jö.

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

Kernel: Linux 2.6.21-2-k7 (SMP w/1 CPU core)
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages tomboy depends on:
ii  gconf2  2.18.0.1-3   GNOME configuration database syste
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libatk1.0-0 1.18.0-2 The ATK accessibility toolkit
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1 The Cairo 2D vector graphics libra
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libgconf2.0-cil 2.16.0-7 CLI binding for GConf 2.16
ii  libglib2.0-02.14.0-2 The GLib library of C routines
ii  libglib2.0-cil  2.10.2-1 CLI binding for the GLib utility l
ii  libgmime2.2-cil 2.2.10-1 CLI binding for the MIME library, 
ii  libgnome2.0-cil 2.16.0-7 CLI binding for Gnome 2.16
ii  libgnomecanvas2-0   2.14.0-3 A powerful object-oriented display
ii  libgnomeprint2.2-0  2.18.0-2 The GNOME 2.2 print architecture -
ii  libgnomeprintui2.2-02.18.0-2 GNOME 2.2 print architecture User 
ii  libgtk2.0-0 2.10.13-1The GTK+ graphical user interface 
ii  libgtk2.0-cil   2.10.2-1 CLI binding for the GTK+ toolkit 2
ii  libgtkspell02.0.10-3+b1  a spell-checking addon for GTK's T
ii  libmono-corlib2.0-cil   1.2.5-3  Mono core library (2.0)
ii  libmono-system2.0-cil   1.2.5-3  Mono System libraries (2.0)
ii  libmono2.0-cil  1.2.5-3  Mono libraries (2.0)
ii  libndesk-dbus-glib1.0-c 0.3-2CLI implementation of D-Bus (GLib 
ii  libndesk-dbus1.0-cil0.4.2-1  CLI implementation of D-Bus
ii  libpanel-applet2-0  2.18.3-2 library for GNOME Panel applets
ii  libpango1.0-0   1.18.1-1 Layout and rendering of internatio
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 'fixes' extensio
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.3-1X Rendering Extension client libra
ii  mono-runtime1.2.5-3  Mono runtime
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

tomboy recommends no packages.

-- no debconf information

-- 
P.S: P.S. in Emails ist ziemlich überflüssing.


signature.asc
Description: Digital signature


Bug#443550: openoffice.org-writer: Setting properties of tables, paragraphs... makes ooo-writer crash

2007-09-22 Thread chryjs
Package: openoffice.org-writer
Version: 2.2.1-9
Severity: important


This is a brand new beahviour, that appeared since the latest update.
Previous release 2.2.1-8 didn't produce this bug. OOO-writer is always
crashing when I use right-clic on paragraphes or tables, also when
trying the same via main menus. The documents are nearly properly
restored on ooo return but you still unable to modify these properties.
Making OOO-writer useless.

NB : I don't know if other OOO tools do have the same problem because I
only use Writer. And note that I am using a 64bits release.

PS : please apologize form my terrible english.

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

Kernel: Linux 2.6.22-2-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/bash

Versions of packages openoffice.org-writer depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libgcc1 1:4.2.1-5GCC support library
ii  libicu363.6-6International Components for Unico
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libstlport4.6c2 4.6.2-3  STLport C++ class library
ii  libwpd8c2a  0.8.11-2 Library for handling WordPerfect d
ii  libwps-0.1-10.1.0-7  Works text file format import filt
ii  libxml2 2.6.30.dfsg-2GNOME XML library
ii  openoffice.org-core 2.2.1-9  OpenOffice.org office suite archit
ii  python-uno  2.2.1-9  Python interface for OpenOffice.or
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

Versions of packages openoffice.org-writer recommends:
ii  gij [java2-runtime]   4:4.2.1-6  The GNU Java bytecode interpreter
ii  gij-4.1 [java2-runtime]   4.1.2-16   The GNU Java bytecode interpreter
ii  gij-4.2 [java2-runtime]   4.2.1-5The GNU Java bytecode interpreter
ii  java-gcj-compat   1.0.76-5   Java runtime environment using GIJ
ii  openoffice.org-filter-binfilt 2.2.1-9Legacy filters (e.g. StarOffice 5.
ii  openoffice.org-java-common2.2.1-9OpenOffice.org office suite Java s

Versions of packages openoffice.org-core depends on:
ii  debconf [debconf-2.0]   1.5.14   Debian configuration management sy
ii  fontconfig  2.4.2-1.2generic font configuration library
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libcairo2   1.4.10-1+b2  The Cairo 2D vector graphics libra
ii  libdb4.54.5.20-7 Berkeley v4.5 Database Libraries [
ii  libexpat1   1.95.8-4 XML parsing C library - runtime li
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.1-5GCC support library
ii  libglib2.0-02.14.1-3 The GLib library of C routines
ii  libgstreamer-plugins-ba 0.10.14-4GStreamer libraries from the base
ii  libgstreamer0.10-0  0.10.14-2Core GStreamer libraries and eleme
ii  libgtk2.0-0 2.12.0-2 The GTK+ graphical user interface 
ii  libhunspell-1.1-0   1.1.9-1  spell checker and morphological an
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libicu363.6-6International Components for Unico
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libldap22.1.30.dfsg-13.5 OpenLDAP libraries
ii  libneon25   0.25.5.dfsg-6An HTTP and WebDAV client library
ii  libnspr4-0d 4.6.7-1  NetScape Portable Runtime Library
ii  libnss3-0d  3.11.7-1 Network Security Service libraries
ii  libpam0g0.99.7.1-4   Pluggable Authentication Modules l
ii  libpango1.0-0   1.18.2-1 Layout and rendering of internatio
ii  libportaudio2   19+svn20070125-1 Portable audio I/O - shared librar
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsndfile1 1.0.17-3 Library for reading/writing audio 
ii  libstartup-notification 0.9-1library for program launch feedbac
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libstlport4.6c2 4.6.2-3  STLport C++ class library
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxaw7 2:1.0.4-1X11 Athena Widget library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxfixes3  1:4.0.3-2X11 miscellaneous 

Bug#443274: dual-card setup doesn't work with X 1.4

2007-09-22 Thread Aldemir Akpinar
Hello,

With the lines you have specified removed, I can confirmed that the driver in 
experimental works in a single-head configuration.
Thanks,
--
aldemir

- Original Message 
From: Brice Goglin [EMAIL PROTECTED]
To: Aldemir Akpinar [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Friday, 21 September, 2007 11:57:55 AM
Subject: Re: Bug#443274: dual-card setup doesn't work with X 1.4

Aldemir Akpinar wrote:
 Attaching the xorg.conf file that i used.

You should comment this out:

Section ServerFlags
Option  Xinerama  true
EndSection

And maybe change the following line
Screen  0   Screen 1 0 0
into
Screen Screen 1


 I can't remove the mga card today ( would be too much disruption for my 
 work.). 
 But I think I can try that tomorrow.
   

Let's see what happens with the above changes in xorg.conf first.

Thanks a lot Aldemir, you're being great.

Brice






  ___ 
Want ideas for reducing your carbon footprint? Visit Yahoo! For Good  
http://uk.promotions.yahoo.com/forgood/environment.html




Bug#202923: bacitracin

2007-09-22 Thread studsail

back backache
dressing. When from neglect and want of cleanliness the ulcer becomes
  
 


Ge=n*uine  phar.m+a P-ills  f=rom  Pf-iz*er
 
  
   http://businesscentralmass.com
   

  
All  pi;lls  are wi.tho-ut V.AT/-TAX and  S=ame day ex.pr+ess ship-p,in=g
 


inflamed, there is considerable pain, and the discharge is purulent and
often offensive.  The prolonged hyperaemia of the tissues in relation to a
callous ulcer of the leg often leads to changes in the underlying bones.
The periosteum is abnormally thick and vascular, the superficial layers of
the bone become injected and porous, and the bones, as a whole, are
thickened. In the macerated bone the surface is covered with irregular,
stalactite-like processes or foliaceous masses, which, to a certain



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



Bug#443551: gstreamer0.10-tools: Error initializing: Error re-scanning registry , child terminated by signal

2007-09-22 Thread Geert Stappers
Package: gstreamer0.10-tools
Version: 0.10.14-1
Severity: important


running gst-launch-0.10 gives
Error initializing: Error re-scanning registry , child terminated by signal


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

Kernel: Linux 2.6.22-2-powerpc
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages gstreamer0.10-tools depends on:
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  libglib2.0-0  2.14.1-2   The GLib library of C routines
ii  libgstreamer0.10-00.10.14-2  Core GStreamer libraries and eleme
ii  pkg-config0.22-1 manage compile and link flags for 

gstreamer0.10-tools recommends no packages.

-- debconf-show failed


more information in a follow-up message


Cheers
Geert Stappers




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



Bug#443503: Mouse double clicks always

2007-09-22 Thread Jorge González González
El vie, 21-09-2007 a las 22:35 +0200, Brice Goglin escribió:
 You probably have two input devices in your xorg.conf, one listening on
 /dev/input/mice and another one on /dev/psaux. But the /dev/psaux is
 actually included in /dev/input/mice, so all events are reported twice
 duplicated. If fixing xorg.conf does not help, please send your config
 and log.
Yes, that was the problem, I wonder how one of those got there.
However leaving /dev/input/mice dind't solve completely the problem, I
had to
leave /dev/psaux to get everything working.

Thanks. Cheers.
-- 
Jorge González González [EMAIL PROTECTED]
Weblog: http://aloriel.no-ip.org
Fotolog: http://www.flickr.com/photos/aloriel




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



Bug#443551: gstreamer0.10-tools: Error initializing: Error re-scanning registry , child terminated by signal

2007-09-22 Thread Sebastian Dröge

Am Samstag, den 22.09.2007, 12:43 +0200 schrieb Geert Stappers:
 Package: gstreamer0.10-tools
 Version: 0.10.14-1
 Severity: important
 
 
 running gst-launch-0.10 gives
 Error initializing: Error re-scanning registry , child terminated by signal

Please run
GST_DEBUG=5 GST_DEBUG_NO_COLOR=1 gst-launch-0.10 $parameters  log
and then attach the created log (bziped or gzipped) to this bugreport.

Also, please give the compelte gst-launch-0.10 commandline you use.

Bye


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#443553: kdesktop: kscreensaver spawns multiple processes on dual head set-up

2007-09-22 Thread Marc Haber
Package: kdesktop
Version: 4:3.5.7-3
Severity: normal

[This is probably an important or even more severe bug, as it can
cripple the running system if left alone for long enough]

When the screen is locked from the secondary display, KDE starts
another screensaver process after the time set in start screensaver
automatically after. And another one. And another one. And another one.

This is already in upstream's bugzilla since 2004, #89985. Noone cared
to fix it in the mean time.

Greetings
Marc

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

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

Versions of packages kdesktop depends on:
ii  eject   2.1.5-5  ejects CDs and operates CD-Changer
ii  kdebase-bin 4:3.5.7-3core binaries for the KDE base mod
ii  kdelibs4c2a 4:3.5.7.dfsg.1-7 core libraries and binaries for al
ii  libart-2.0-22.3.19-3 Library of functions for 2D graphi
ii  libaudio2   1.9-2+b1 The Network Audio System (NAS). (s
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.1-5GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.1-2  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  7.0.1-2  The OpenGL utility library (GLU)
ii  libice6 2:1.0.4-1X11 Inter-Client Exchange library
ii  libidn111.1-1GNU libidn library, implementation
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libkonq44:3.5.7-3core libraries for Konqueror
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libqt3-mt   3:3.3.7-8Qt GUI Library (Threaded runtime v
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libstdc++6  4.2.1-5  The GNU Standard C++ Library v3
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxau6 1:1.0.3-2X11 authorisation library
ii  libxcursor1 1:1.1.9-1X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2 FreeType-based font drawing librar
ii  libxi6  2:1.1.3-1X11 Input extension library
ii  libxinerama11:1.0.2-1X11 Xinerama extension library
ii  libxrandr2  2:1.2.2-1X11 RandR extension library
ii  libxrender1 1:0.9.4-1X Rendering Extension client libra
ii  libxss1 1:1.1.2-1X11 Screen Saver extension library
ii  libxt6  1:1.0.5-3X11 toolkit intrinsics library
ii  libxxf86misc1   1:1.0.1-2X11 XFree86 miscellaneous extensio
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

kdesktop recommends no packages.

-- no debconf information



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



Bug#443044: is this an xmodmap problem?

2007-09-22 Thread Harald Dunkel

Hi folks,

I doubt that this is a problem of xmodmap. If I roll
x11-xserver-utils back to version 7.2+3 (which worked
fine for Xorg 7.2), then I still get this problem.
Rolling back xinit to version 1.0.4-2 didn't help,
either.

Shouldn't this be assigned to xserver-xorg-input-kbd?


Regards

Harri





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



Bug#443553: kdesktop: kscreensaver spawns multiple processes on dual head set-up

2007-09-22 Thread Sune Vuorela
On Saturday 22 September 2007, Marc Haber wrote:
 Package: kdesktop
 Version: 4:3.5.7-3
 Severity: normal

 [This is probably an important or even more severe bug, as it can
 cripple the running system if left alone for long enough]

 When the screen is locked from the secondary display, KDE starts
 another screensaver process after the time set in start screensaver
 automatically after. And another one. And another one. And another one.

 This is already in upstream's bugzilla since 2004, #89985. Noone cared
 to fix it in the mean time.

Hi!

Thank you for your report. Have you tested the  fix and does it work?

/Sune


-- 
Man, do you know how can I cancel the LCD device?

You need to delete the BIOS.


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


Bug#443552: In a dual-head setup mouse pointer can't change from one monitor to other

2007-09-22 Thread Brice Goglin
Aldemir Akpinar wrote:
 Package: xserver-xorg-core
 Version: 2:1.3.0.0.dfsg-12
 Severity: grave
   

xserver-xorg-core 1.3 (in testing) ? I thought it was only 1.4 (the one
in unstable) ?

 With the xorg 7.3+2 packages, I can't use my dual head setup properly.
 The trouble is when I move mouse pointer to the secondary screen, I can
 not take it back to the primary one. The second one acts as if it is
 separate. I am attaching the Xorg.0.log file because I had to revert back to 
 testing (for xorg) to make my
 desktop work. 
   

I'll make sure this bug is reported upstream.

Brice




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



Bug#443274: dual-card setup doesn't work with X 1.4

2007-09-22 Thread Brice Goglin
reassign 443274 xserver-xorg-core
found 443274 2:1.4-2
retitle 443274 Xserver 1.4 + RandR 1.2 driver crash in xf86CrtcScreenInit if a 
second board/driver is added
thank you



Aldemir Akpinar wrote:
 Hello,

 With the lines you have specified removed, I can confirmed that the driver in 
 experimental works in a single-head configuration.
   

Ok, thanks for testing. So, to summarize:
* The ATI driver 6.6.193 is broken in this board but 6.7.193 is fine.
* Xserver 1.4 + ATI RandR 1.2 does not accept another board/driver in
the config, and it might take time to get this fixed... I am
retitling/reassigning back to the Xserver now that ATI driver issues are
clarified.

Brice




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



Bug#443551: details #443551

2007-09-22 Thread Geert Stappers

Hello,

Attached a typescript of gst-launch with GST_DEBUG=3.

I think the important line is:

0:00:03.483794000 15312 0x10017050 ERROR GST_INIT 
gst.c:866:ensure_current_registry_forking: child did not exit normally, 
terminated by signal


Cheers
Geert Stappers

Script started on Sat 22 Sep 2007 12:54:59 PM CEST
[EMAIL PROTECTED]:~
$ GST_DEBUG=*:3 gst-launch-0.10 --gst-debug-no-color
0:00:00.000822000 15312 0x10017050 INFO   GST_INIT gst.c:594:init_pre: 
Initializing GStreamer Core Library version 0.10.14
0:00:00.002296000 15312 0x10017050 INFO   GST_INIT gst.c:595:init_pre: Using 
library installed in /usr/lib
0:00:00.002705000 15312 0x10017050 INFO   GST_INIT gst.c:605:init_pre: Linux 
bahrain 2.6.22-2-powerpc #1 Thu Aug 30 20:52:24 CEST 2007 ppc
0:00:00.003466000 15312 0x10017050 INFO   GST_INIT 
gstquery.c:100:_gst_query_initialize: init queries
0:00:00.004993000 15312 0x10017050 INFO   GST_INIT 
gstmessage.c:72:_gst_message_initialize: init messages
0:00:00.061761000 15312 0x10017050 INFO   GST_PLUGIN_LOADING 
gstplugin.c:182:_gst_plugin_register_static: loaded static plugin 
staticelements
0:00:00.065531000 15312 0x10017050 INFOGST_INIT 
gst.c:797:ensure_current_registry_forking: reading registry cache: 
/home/stappers/.gstreamer-0.10/registry.powerpc.xml
0:00:00.160179000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstffmpegcolorspace.so loaded
0:00:00.169229000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstcoreelements.so loaded
0:00:00.177328000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstcoreindexers.so loaded
0:00:00.180833000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstadder.so loaded
0:00:00.264202000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstaudioconvert.so loaded
0:00:00.267718000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstaudiorate.so loaded
0:00:00.476084000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstaudioresample.so loaded
0:00:00.479795000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstaudiotestsrc.so loaded
0:00:00.486236000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstcdparanoia.so loaded
0:00:00.495506000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstdecodebin.so loaded
0:00:00.498392000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstdecodebin2.so loaded
0:00:00.586026000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstlibvisual.so loaded
0:00:00.589761000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstgdp.so loaded
0:00:00.593495000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstplaybin.so loaded
0:00:00.613137000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstogg.so loaded
0:00:00.692366000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgsturidecodebin.so loaded
0:00:00.695351000 15313 0x10017050 INFOGST_PLUGIN_LOADING 
gstplugin.c:517:gst_plugin_load_file: plugin 
/usr/lib/gstreamer-0.10/libgstqueue2.so loaded
0:00:00.69751 15313 0x10017050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
video/x-ms-asf
0:00:00.698333000 15313 0x10017050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
audio/x-musepack
0:00:00.699731000 15313 0x10017050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
audio/x-au
0:00:00.700378000 15313 0x10017050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
video/x-msvideo
0:00:00.700895000 15313 0x10017050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
video/x-cdxa
0:00:00.701403000 15313 0x10017050 INFO  GST_TYPEFIND 
gsttypefind.c:83:gst_type_find_register: registering typefind function for 
video/x-vcd
0:00:00.701916000 15313 0x10017050 INFO  GST_TYPEFIND 

Bug#443044: is this an xmodmap problem?

2007-09-22 Thread Brice Goglin
reassign 443044 xserver-xorg-core
found 443044 2:1.4-2
thank you



Harald Dunkel wrote:
 Hi folks,

 I doubt that this is a problem of xmodmap. If I roll
 x11-xserver-utils back to version 7.2+3 (which worked
 fine for Xorg 7.2), then I still get this problem.
 Rolling back xinit to version 1.0.4-2 didn't help,
 either.

 Shouldn't this be assigned to xserver-xorg-input-kbd?

I would vote for xserver-xorg-core instead. The input drivers didn't
change a lot recently, while the arrival of the new Xserver seems to
have caused multiple input-related problems...

Brice




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



Bug#443554: flite: Please include and enable Alsa support patch

2007-09-22 Thread Lukas Loehrer
Package: flite
Version: 1.2-release-2.2
Severity: wishlist
Tags: patch


Attached is a patch I developed in early 2006 that adds Alsa audio
playback support to flite. By now, the functunality is well tested
mostly via eflite. Alsa support allows TTS users to play other sounds
wile flite is talking. Flite currently uses OSS for audio playback
which is generally deprecated. The patch should apply cleanly to the
Debian modified flite sources. It also selects Alsa as audio playback
method in the debian/rules script.

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

Kernel: Linux 2.6.20.suspend2
Locale: LANG=en_US.iso88591, LC_CTYPE=en_US.iso88591 (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages flite depends on:
ii  libasound2 1.0.14a-2 ALSA library
ii  libc6  2.6.1-5   GNU C Library: Shared libraries
ii  libflite1  1.2-release-3 a small run-time speech synthesis 

flite recommends no packages.

-- no debconf information
diff -uNr flite-1.2-release.orig/config/common_make_rules flite-1.2-release/config/common_make_rules
--- flite-1.2-release.orig/config/common_make_rules	2007-09-08 12:31:31.0 +0200
+++ flite-1.2-release/config/common_make_rules	2007-09-08 10:41:25.0 +0200
@@ -88,7 +88,7 @@
 	@ rm -rf shared_os  mkdir shared_os
 	@ rm -f $@ $(LIBDIR)/[EMAIL PROTECTED] $(LIBDIR)/[EMAIL PROTECTED] 
 	@ (cd shared_os  ar x ../$)
-	@ (cd shared_os  $(CC) -shared -Wl,-soname,[EMAIL PROTECTED] -o ../[EMAIL PROTECTED] *.os)
+	@ (cd shared_os  $(CC) -shared -Wl,-soname,[EMAIL PROTECTED] -o ../[EMAIL PROTECTED] *.os $(AUDIOLIBS))
 	@(cd $(LIBDIR); ln -s [EMAIL PROTECTED] [EMAIL PROTECTED]; \
 	  ln -s [EMAIL PROTECTED] $@)
 	@ rm -rf shared_os
diff -uNr flite-1.2-release.orig/configure flite-1.2-release/configure
--- flite-1.2-release.orig/configure	2003-02-18 17:18:20.0 +0100
+++ flite-1.2-release/configure	2007-09-08 10:41:25.0 +0200
@@ -1415,16 +1415,16 @@
   echo $ac_tno 16
 fi
 
-ac_safe=`echo sys/asoundlib.h | sed 'y%./+-%__p_%'`
-echo $ac_n checking for sys/asoundlib.h... $ac_c 16
-echo configure:1421: checking for sys/asoundlib.h 5
+ac_safe=`echo alsa/asoundlib.h | sed 'y%./+-%__p_%'`
+echo $ac_n checking for alsa/asoundlib.h... $ac_c 16
+echo configure:1421: checking for alsa/asoundlib.h 5
 if eval test \`echo '$''{'ac_cv_header_$ac_safe'+set}'`\ = set; then
   echo $ac_n (cached) $ac_c 16
 else
   cat  conftest.$ac_ext EOF
 #line 1426 configure
 #include confdefs.h
-#include sys/asoundlib.h
+#include alsa/asoundlib.h
 EOF
 ac_try=$ac_cpp conftest.$ac_ext /dev/null 2conftest.out
 { (eval echo configure:1431: \$ac_try\) 15; (eval $ac_try) 25; }
@@ -1445,23 +1445,24 @@
   echo $ac_tyes 16
   AUDIODRIVER=alsa
 	   AUDIODEFS=-DCST_AUDIO_ALSA
+		   AUDIOLIBS=-lasound
 else
   echo $ac_tno 16
 fi
 
 ac_safe=`echo mmsystem.h | sed 'y%./+-%__p_%'`
 echo $ac_n checking for mmsystem.h... $ac_c 16
-echo configure:1455: checking for mmsystem.h 5
+echo configure:1456: checking for mmsystem.h 5
 if eval test \`echo '$''{'ac_cv_header_$ac_safe'+set}'`\ = set; then
   echo $ac_n (cached) $ac_c 16
 else
   cat  conftest.$ac_ext EOF
-#line 1460 configure
+#line 1461 configure
 #include confdefs.h
 #include mmsystem.h
 EOF
 ac_try=$ac_cpp conftest.$ac_ext /dev/null 2conftest.out
-{ (eval echo configure:1465: \$ac_try\) 15; (eval $ac_try) 25; }
+{ (eval echo configure:1466: \$ac_try\) 15; (eval $ac_try) 25; }
 ac_err=`grep -v '^ *+' conftest.out | grep -v ^conftest.${ac_ext}\$`
 if test -z $ac_err; then
   rm -rf conftest*
diff -uNr flite-1.2-release.orig/configure.in flite-1.2-release/configure.in
--- flite-1.2-release.orig/configure.in	2003-02-18 01:45:45.0 +0100
+++ flite-1.2-release/configure.in	2007-09-08 10:41:25.0 +0200
@@ -131,9 +131,10 @@
 AC_CHECK_HEADER(sys/audioio.h,
   [AUDIODRIVER=sun
AUDIODEFS=-DCST_AUDIO_SUNOS])
-AC_CHECK_HEADER(sys/asoundlib.h,
+AC_CHECK_HEADER(alsa/asoundlib.h,
   [AUDIODRIVER=alsa
-	   AUDIODEFS=-DCST_AUDIO_ALSA])
+	   AUDIODEFS=-DCST_AUDIO_ALSA
+		   AUDIOLIBS=-lasound])
 AC_CHECK_HEADER(mmsystem.h,
 	  [AUDIODRIVER=wince
 	   AUDIODEFS=-DCST_AUDIO_WINCE
diff -uNr flite-1.2-release.orig/debian/rules flite-1.2-release/debian/rules
--- flite-1.2-release.orig/debian/rules	2007-09-08 12:31:31.0 +0200
+++ flite-1.2-release/debian/rules	2007-09-08 10:41:38.0 +0200
@@ -22,7 +22,7 @@
 	dh_testdir
 	./configure --host=$(DEB_HOST_GNU_TYPE) --build=$(DEB_BUILD_GNU_TYPE) \
 		--prefix=/usr --mandir=\$${prefix}/share/man \
-		--infodir=\$${prefix}/share/info --with-audio=oss --with-vox=cmu_us_kal16 --enable-shared
+		--infodir=\$${prefix}/share/info --with-audio=alsa --with-vox=cmu_us_kal16 --enable-shared
 
 build: build-stamp
 
diff -uNr flite-1.2-release.orig/src/audio/au_alsa.c 

Bug#443553: kdesktop: kscreensaver spawns multiple processes on dual head set-up

2007-09-22 Thread Marc Haber
tags #443553 upstream
forwarded #443553 http://bugs.kde.org/89985
thanks

On Sat, Sep 22, 2007 at 01:02:17PM +0200, Sune Vuorela wrote:
 Have you tested the  fix and does it work?

I have not tested it, no. I hate the idea of a shell script wrapper
around a screensaver.

Greetings
Marc

-- 
-
Marc Haber | I don't trust Computers. They | Mailadresse im Header
Mannheim, Germany  |  lose things.Winona Ryder | Fon: *49 621 72739834
Nordisch by Nature |  How to make an American Quilt | Fax: *49 621 72739835



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



Bug#409045: tagging 409045

2007-09-22 Thread Florian Ernst
# Automatically generated email from bts, devscripts version 2.10.8
# Bug not only in experimental anymore, but also in testing/unstable ...
tags 409045 - experimental




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



Bug#443552: In a dual-head setup mouse pointer can't change from one monitor to other

2007-09-22 Thread Aldemir Akpinar
There is a misunderstanding here. Testing works fine. In order to launch my 
desktop fine i had to revert back to testing. And everything works fine here in 
testing (xorg wise). The problem is with unstable. Sorry I forgot to change the 
version numbers.
--
aldemir

- Original Message 
From: Brice Goglin [EMAIL PROTECTED]
To: Aldemir Akpinar [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Saturday, 22 September, 2007 2:05:50 PM
Subject: Re: Bug#443552: In a dual-head setup mouse pointer can't change from 
one monitor to other

Aldemir Akpinar wrote:
 Package: xserver-xorg-core
 Version: 2:1.3.0.0.dfsg-12
 Severity: grave
   

xserver-xorg-core 1.3 (in testing) ? I thought it was only 1.4 (the one
in unstable) ?

 With the xorg 7.3+2 packages, I can't use my dual head setup properly.
 The trouble is when I move mouse pointer to the secondary screen, I can
 not take it back to the primary one. The second one acts as if it is
 separate. I am attaching the Xorg.0.log file because I had to revert back to 
 testing (for xorg) to make my
 desktop work. 
   

I'll make sure this bug is reported upstream.

Brice






  ___ 
Want ideas for reducing your carbon footprint? Visit Yahoo! For Good  
http://uk.promotions.yahoo.com/forgood/environment.html




Bug#443551: details #443551

2007-09-22 Thread Sebastian Dröge
reassign 443551 gstreamer0.10-ffmpeg
forcemerge 443551 443551 443551
retitle 443551 Fails to initialize on PPC
thanks

Am Samstag, den 22.09.2007, 13:12 +0200 schrieb Geert Stappers:
 Hello,
 
 Attached a typescript of gst-launch with GST_DEBUG=3.
 
 I think the important line is:
 
 0:00:03.483794000 15312 0x10017050 ERROR GST_INIT 
 gst.c:866:ensure_current_registry_forking: child did not exit normally, 
 terminated by signal

Actually the line above that line is more important :)
Thanks, this bug is already known and somewhere in gstreamer0.10-ffmpeg
on PPC.

Bye


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#443555: banshee: crashes when searching for songs with the same genre on songs w/o genre

2007-09-22 Thread Daniel van Eeden
Package: banshee
Version: 0.13.1+dfsg-3
Severity: normal

Find a song with empty genre. right click, Search for songs, By matching
genre, Crash...

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

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

Versions of packages banshee depends on:
ii  boo0.7.6.2237-6  a python-like language and compile
ii  gconf2 2.18.0.1-3GNOME configuration database syste
ii  gnome-volume-manager   2.17.0-2  GNOME daemon to auto-mount and man
ii  gstreamer0.10-gnomevfs 0.10.14-4 GStreamer plugin for GnomeVFS
ii  gstreamer0.10-plugins-base 0.10.14-4 GStreamer plugins from the base 
ii  gstreamer0.10-plugins-good 0.10.6-2  GStreamer plugins from the good 
ii  hal0.5.9.1-4 Hardware Abstraction Layer
ii  libatk1.0-01.20.0-1  The ATK accessibility toolkit
ii  libc6  2.6.1-5   GNU C Library: Shared libraries
ii  libcairo2  1.4.10-1+b2   The Cairo 2D vector graphics libra
ii  libdbus-1-31.1.1-3   simple interprocess messaging syst
ii  libdbus-glib-1-2   0.74-1simple interprocess messaging syst
ii  libfontconfig1 2.4.2-1.2 generic font configuration library
ii  libgconf2-42.18.0.1-3GNOME configuration database syste
ii  libgconf2.0-cil2.16.0-7  CLI binding for GConf 2.16
ii  libglade2.0-cil2.10.2-1  CLI binding for the Glade librarie
ii  libglib2.0-0   2.14.1-3  The GLib library of C routines
ii  libglib2.0-cil 2.10.2-1  CLI binding for the GLib utility l
ii  libgnome-vfs2.0-cil2.16.0-7  CLI binding for GnomeVFS 2.16
ii  libgnome2.0-cil2.16.0-7  CLI binding for Gnome 2.16
ii  libgnomevfs2-0 1:2.20.0-1GNOME Virtual File System (runtime
ii  libgstreamer-plugins-base0 0.10.14-4 GStreamer libraries from the base
ii  libgstreamer0.10-0 0.10.14-2 Core GStreamer libraries and eleme
ii  libgtk2.0-02.12.0-2  The GTK+ graphical user interface 
ii  libgtk2.0-cil  2.10.2-1  CLI binding for the GTK+ toolkit 2
ii  libhal10.5.9.1-4 Hardware Abstraction Layer - share
ii  libipoddevice0 0.5.3-3   library for retrieving information
ii  libmono-cairo2.0-cil   1.2.5-3   Mono Cairo library
ii  libmono-corlib1.0-cil  1.2.5-3   Mono core library (1.0)
ii  libmono-corlib2.0-cil  1.2.5-3   Mono core library (2.0)
ii  libmono-security2.0-cil1.2.5-3   Mono Security library
ii  libmono-sharpzip2.84-cil   1.2.5-3   Mono SharpZipLib library
ii  libmono-sqlite2.0-cil  1.2.5-3   Mono Sqlite library
ii  libmono-system-data2.0-cil 1.2.5-3   Mono System.Data Library
ii  libmono-system-web2.0-cil  1.2.5-3   Mono System.Web Library
ii  libmono-system2.0-cil  1.2.5-3   Mono System libraries (2.0)
ii  libmono1.0-cil 1.2.5-3   Mono libraries (1.0)
ii  libmono2.0-cil 1.2.5-3   Mono libraries (2.0)
ii  libmusicbrainz4c2a 2.1.5-1   Second generation incarnation of t
ii  libnautilus-burn4  2.18.2-1  Nautilus Burn Library - runtime ve
ii  libndesk-dbus-glib1.0-cil  0.3-2 CLI implementation of D-Bus (GLib 
ii  libndesk-dbus1.0-cil   0.4.2-1   CLI implementation of D-Bus
ii  libnjb52.2.5-4.1 Creative Labs Nomad Jukebox librar
ii  liborbit2  1:2.14.7-0.1  libraries for ORBit2 - a CORBA ORB
ii  libpango1.0-0  1.18.2-1  Layout and rendering of internatio
ii  libtaglib2.0-cil   2.0.2.0-1 CLI library for accessing audio an
ii  libusb-0.1-4   2:0.1.12-7userspace USB programming library
ii  libx11-6   2:1.0.3-7 X11 client-side library
ii  libxcursor11:1.1.9-1 X cursor management library
ii  libxext6   1:1.0.3-2 X11 miscellaneous extension librar
ii  libxfixes3 1:4.0.3-2 X11 miscellaneous 'fixes' extensio
ii  libxi6 2:1.1.3-1 X11 Input extension library
ii  libxinerama1   1:1.0.2-1 X11 Xinerama extension library
ii  libxml22.6.30.dfsg-2 GNOME XML library
ii  libxrandr2 2:1.2.2-1 X11 RandR extension library
ii  libxrender11:0.9.4-1 X Rendering Extension client libra
ii  mono-runtime   1.2.5-3   Mono runtime

Versions of packages banshee recommends:
pn  gstreamer0.10-plugins-bad none (no description available)
ii  gstreamer0.10-plugins-ugly0.10.6-2   GStreamer plugins from the ugly 

-- no 

Bug#443511: closed by Manoj Srivastava [EMAIL PROTECTED] (Bug#443511: fixed in fvwm 1:2.5.23-2)

2007-09-22 Thread Mario 'BitKoenig' Holbe
On Sat, Sep 22, 2007 at 06:54:04AM +, Debian Bug Tracking System wrote:
* Bug fix: fvwm: postinst fails, thanks to Mario #39;BitKoenig#39;
  Holbe. Added a Section field to doc-base file.  Funny thing is, this
  did not fail to install for me -- I wonder why. (Closes: 
 #443511).

Hm, do you have doc-base installed?

doc-base: /usr/sbin/install-docs
ii  doc-base   0.8.5  utilities to manage online documentation


Mario
-- 
But after a while I learned the trick of speaking fast. You don't have
to think any faster; just use twice as many words to say everything.
-- Paul Graham


signature.asc
Description: Digital signature


Bug#443556: uml-utilities: manpages refer to broken URLs

2007-09-22 Thread Yann Dirson
Package: uml-utilities
Version: 20070815-1
Severity: normal

Manpages (eg. uml_mkcow) refer to URLs which do not exist any more.
Looks like the howto is now at
http://user-mode-linux.sourceforge.net/old/UserModeLinux-HOWTO.html

(well, there is also a similar broken link in the new website...)

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

Kernel: Linux 2.6.19.1-smp (SMP w/2 CPU cores)
Locale: LANG=C, LC_CTYPE=french (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages uml-utilities depends on:
ii  adduser   3.105  add and remove users and groups
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libfuse2  2.7.0-1Filesystem in USErspace library
ii  libncurses5   5.6+20070908-1 Shared libraries for terminal hand
ii  libreadline5  5.2-3  GNU readline and history libraries
ii  lsb-base  3.1-24 Linux Standard Base 3.1 init scrip

uml-utilities recommends no packages.

-- no debconf information



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



Bug#443292: Workaround for the bug

2007-09-22 Thread Elimar Riesebieter
On Fri, 21 Sep 2007 the mental interface of
Dario Gallucci told:

 I had the same problem.
 
 The mouse is working again whit evdev using
 Option Device and the specific event identifier given to the mouse by udev 
 in /dev/input/by-path/...
 
 I hope this can solve temporary this problem.

Thanks a lot for pointing out.

I created a udev rule:

KERNEL==event*, SYSFS{idVendor}==046d, SYSFS{idProduct}==c50e 
NAME=input/event-mx1000, SYMLINK=input/%k

and added:

Option Device /dev/input/event-mx1000

to the InputDevice Section.
This works ;)

But I noticed in evdev(4) that 'Option Device' is strongly
discouraged.

Elimar

-- 
  Talking much about oneself can also 
   be a means to conceal oneself.
 -Friedrich Nietzsche



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



Bug#443552: In a dual-head setup mouse pointer can't change from one monitor to other

2007-09-22 Thread Brice Goglin
forwarded 443552 https://bugs.freedesktop.org/show_bug.cgi?id=12145
thank you



Aldemir Akpinar wrote:
 Package: xserver-xorg-core
 Version: 2:1.3.0.0.dfsg-12
 Severity: grave

 Hello,
 With the xorg 7.3+2 packages, I can't use my dual head setup properly.
 The trouble is when I move mouse pointer to the secondary screen, I can
 not take it back to the primary one. The second one acts as if it is
 separate.

It looks like the upstream bug at the URL above.

There's seem to be a fix for this in the upstream git repository of the
mouse driver, could try building it and see whether it helps? Let me
know if you need help.

Brice




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



Bug#443555: banshee: crashes when searching for songs with the same genre on songs w/o genre

2007-09-22 Thread Sebastian Dröge
tags 443555 + confirmed upstream fixed-upstream
thanks

Am Samstag, den 22.09.2007, 13:19 +0200 schrieb Daniel van Eeden:
 Package: banshee
 Version: 0.13.1+dfsg-3
 Severity: normal
 
 Find a song with empty genre. right click, Search for songs, By matching
 genre, Crash...

Hi,
thanks for reporting. I've committed a fix upstream to not search at all
if genre, artist or album are empty for the corresponding search type.

Bye


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#443551: details #443551

2007-09-22 Thread Sjoerd Simons
On Sat, Sep 22, 2007 at 01:12:49PM +0200, Geert Stappers wrote:
 
 Hello,
 
 Attached a typescript of gst-launch with GST_DEBUG=3.
 
 I think the important line is:
 
 0:00:03.483794000 15312 0x10017050 ERROR GST_INIT 
 gst.c:866:ensure_current_registry_forking: child did not exit normally, 
 terminated by signal

For the record what kind of machine does this happen on ? G3 or something else
without altivec ?

  Sjoerd
-- 
The optimist thinks that this is the best of all possible worlds,
and the pessimist knows it.
-- J. Robert Oppenheimer, Bulletin of Atomic Scientists



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



Bug#432802: compiz: Compiz intereferes with workspace switcher and window selector applets

2007-09-22 Thread Lapse of Reason
I think your original problem might be related to
http://www.compiz.org/Workspace_Switcher_Fix as I was experiencing
similar problems.

It is not a particularly elegant fix, but the second part did the
trick for me: I set /apps/metacity/general/num_workspaces to 1 and
left my settings in /apps/compiz/general/screen0/options/ at their
defaults.

This means that I have set number_of_desktops in
/apps/compiz/general/screen0/options/ to 1 (looks like this should
always be the same as /apps/metacity/general/num_workspaces) and hsize
to 4, which gives me 4 virtual desktops (that all stay on the same
cube).

Hope this helps and that this gets fixed in future versions, because
it is strange that it is necessary to change metacity's settings to
fix compiz.



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



Bug#443254: sane: Scanner heads goes too far, bangs against frame (HP ScanJet 7400C)

2007-09-22 Thread Julien BLACHE
reassign 443254 libsane 1.0.18-5
thanks

Sebastien Desreux [EMAIL PROTECTED] wrote:

Hi Rene,

Could you have a look at the following bug report for avision in SANE
1.0.18 ?

Thanks.


 This report is written with regard to the HP ScanJet 7400C scanner (avision 
 driver).

 When scanning with 'scanimage', it seems that the first scan of the day 
 always 
 sends the head (the moving part) too far, until it collides with the plastic 
 frame at the bottom. I tried uncommenting the line
 option force-a4
 in /etc/sane.d/avision.conf
 but the result is the same.

 Interestingly, after the first failure, shutting down the scanner and 
 powering 
 it again, subsequent scans are OK. 


 There is also a vertical band of approximately 1cm that is not really 
 scanned; 
 it's weird: bright colors appear, but white patches look like they didn't 
 exist. This problem is independent from the first, it shows on all scans.


 I happen to have a (fully paid) commercial version of the program Vuescan 
 made especially for Linux; none of the two problems mentionned above appear 
 with this software. I would really prefer to use scanimage of course, not 
 least for the scripting capabilities and the better rendering... Scanimage 
 worked great with my old ScanJet 6300C.

JB.

-- 
 Julien BLACHE - Debian  GNU/Linux Developer - [EMAIL PROTECTED] 
 
 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 [EMAIL PROTECTED]
with a subject of unsubscribe. Trouble? Contact [EMAIL PROTECTED]



Bug#443543: stalonetray: Program committed suicide

2007-09-22 Thread Roman Dubtsov
Hi,

Thanks for the bug report. The fix is in svn already (bugfixes/0.7
branch if you are interested), fixed package can be expected to appear
in debian repository within a week or so.

-- 
:wqa



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



Bug#443557: cannot reload metacity after running compiz

2007-09-22 Thread Lapse of Reason
Package: metacity
Version: 1:2.18.5-1
Severity: normal

After loading compiz with compiz --replace  I can not load metacity
anymore unless I log out. When I try to run metacity --replace it
loads metacity for a second, but then immediately exits with status 0
and returns to compiz.

The version of compiz that I am running is 0.5.2-2.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.21-2-686

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

--- Package information. ---
Depends   (Version) | Installed
===-+-===
libatk1.0-0 (= 1.13.2) | 1.18.0-2
libc6(= 2.5-5) | 2.6.1-1+b1
libcairo2(= 1.4.0) | 1.4.10-1
libgconf2-4 (= 2.13.5) | 2.18.0.1-3
libglib2.0-0(= 2.12.9) | 2.14.0-2
libgtk2.0-0  (= 2.10.12-3) | 2.10.13-1
libice6(= 1:1.0.0) | 2:1.0.4-1
libmetacity0(= 1:2.14) | 1:2.18.5-1
libpango1.0-0   (= 1.16.4) | 1.18.1-1
libsm6  | 2:1.0.3-1+b1
libstartup-notification0 (= 0.8-1) | 0.9-1
libx11-6| 2:1.0.3-7
libxcursor1  ( 1.1.2) | 1:1.1.9-1
libxext6| 1:1.0.3-2
libxinerama1| 1:1.0.2-1
libxrandr2 (= 2:1.2.0) | 2:1.2.2-1
libxrender1 | 1:0.9.3-1
metacity-common (= 1:2.18) | 1:2.18.5-1
metacity-common ( 1:2.19) | 1:2.18.5-1



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



Bug#443558: perl: syscall.ph returns incorrect numbers

2007-09-22 Thread Tatsuya Kinoshita
Package: perl
Version: 5.8.8-11

The version 5.8.8-11 of perl causes that the following program
displays 173, 4 and 74, which are incorrect sycall numbers on my
i386 (i686) environment.


require 'syscall.ph';
print SYS_ioperm, \n;
print SYS_stat, \n;
print SYS_fsync, \n;


Downgrading to testing version 5.8.8-7 prevents this problem, which
displays correct syscall numbers 101, 106 and 118.

Thanks,
--
Tatsuya Kinoshita


pgpARsKDXbd0w.pgp
Description: PGP signature


Bug#442173: [Pkg-mono-group] Bug#442173: beagle: crashes over empty mailboxes

2007-09-22 Thread Mirco Bauer
tags 442173 - pending
reassign 442173 libgmime2.2-cil,beagle-backend-evolution
thanks

On Fri, 2007-09-21 at 19:35 +0200, Mirco Bauer wrote:
 tags 442173 + pending
 thanks
 
 I wrote a patch that fixes this issue.
 
 I will upload beagle 0.2.18-1 in some minutes which contains this patch.
 
 Thanks for your investigation.
 

My patch didn't fix all cases, it still crashed sometimes (not on empty
mailboxes though).
After further investigation, I found the exact cause in gmime-sharp,
thus I am reassigning this bugreport now.

-- 
Regards,

Mirco 'meebey' Bauer

PGP-Key ID: 0xEEF946C8

FOSS Developer[EMAIL PROTECTED]  http://www.meebey.net/
PEAR Developer[EMAIL PROTECTED] http://pear.php.net/
Debian Developer  [EMAIL PROTECTED]  http://www.debian.org/


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


Bug#443559: flex: limits of integral types are always defined

2007-09-22 Thread Jean-Baptiste Note
Package: flex
Version: 2.5.33-12
Severity: minor

Hello,

In the generated lexer, in case a C99 compiler is used, flex defines
__STDC_LIMIT_MACROS and includes inttypes.h, causing standard integral
limits to be defined. It then proceeds to define its own limits, which
clash somewhat with those from the header (UINT8_MAX and UINT16_MAX are
not exactly the same, causing sparse to complain). Probably these
definitions should be moved before the

#endif /* ! C99 */

stance, so as to define them only when !C99.

Thanks,
JB

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

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

Versions of packages flex depends on:
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  m41.4.9-2a macro processing language

Versions of packages flex recommends:
ii  gcc [c-compiler] 4:4.1.2-3   The GNU C compiler
ii  gcc-2.95 [c-compiler]1:2.95.4-27 The GNU C compiler
ii  gcc-3.0 [c-compiler] 1:3.0.4-6   The GNU C compiler.
ii  gcc-3.2 [c-compiler] 1:3.2.3-9   The GNU C compiler
ii  gcc-3.3 [c-compiler] 1:3.3.6-15  The GNU C compiler
ii  gcc-4.0 [c-compiler] 4.0.3-7 The GNU C compiler
ii  gcc-4.1 [c-compiler] 4.1.2-15The GNU C compiler

-- debconf information:
  flex/upgrade/pre_2.5.5: false



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



Bug#442127: foomatic-filters: More information about pdf images printing

2007-09-22 Thread Gilberto Taccari
Package: foomatic-filters
Version: 3.0.2-20061031-1.2
Followup-For: Bug #442127


I've noticed that the problem also appears with gs-gpl (not only
gs-esp), but x86 packages are not affected of the bug.

Searching on the WWW I've founded some information about a bad
management of not DSC-conforming but I don't know if this is the way to
solve the bug.

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

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

Versions of packages foomatic-filters depends on:
ii  bash  3.1dfsg-8  The GNU Bourne Again SHell
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  perl  5.8.8-7Larry Wall's Practical Extraction 
ii  ucf   3.001  Update Configuration File: preserv

Versions of packages foomatic-filters recommends:
ii  a2ps1:4.13b.dfsg.1-1 GNU a2ps - 'Anything to PostScript
ii  cupsys  1.3.0-3  Common UNIX Printing System(tm) - 
ii  cupsys-bsd [lpr]1.3.0-3  Common UNIX Printing System(tm) - 
ii  cupsys-client   1.3.0-3  Common UNIX Printing System(tm) - 
ii  foomatic-db-engine  3.0.2-20061031-1 linuxprinting.org printer support 
ii  gs-esp [gs] 8.15.3.dfsg.1-1  The Ghostscript PostScript interpr
ii  gs-gpl [gs] 8.56.dfsg.1-1.1  The GPL Ghostscript PostScript int

-- debconf information:
  foomatic-filters/config_parsed: true
  foomatic-filters/spooler: cups
  foomatic-filters/gspath: gs
  foomatic-filters/textfilter: Automagic
  foomatic-filters/filter_debug: false
  foomatic-filters/ps_accounting: false
  foomatic-filters/custom_textfilter:
  foomatic-filters/custom_gspath:



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



Bug#443560: html pages in /usr/share/doc/tor have broken links and images

2007-09-22 Thread Lapse of Reason
Package: tor
Version: 0.1.2.17-1
Severity: minor

The html pages with the tor documentation in /usr/share/doc/tor are
not properly linked to other pages nor can the images be found.

The images should be included in the package and the links should
either refer to a target on the Internet or to a local copy (if the
linked page is included in the package).

Moreover I would suggest to move all of the html documentation into a
subfolder of /usr/share/doc/tor to avoid having too many files in that
folder. Putting them into different folders according to their
language would be a good idea too.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.21-2-686

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

--- Package information. ---
Depends (Version) | Installed
=-+-==
libc6  (= 2.6-1) | 2.6.1-1+b1
libevent1   (= 1.3b) | 1.3b-0
libssl0.9.8 (= 0.9.8e-1) | 0.9.8e-6
zlib1g  (= 1:1.2.3.3.dfsg-1) | 1:1.2.3.3.dfsg-5
adduser   | 3.105
tsocks| 1.8beta5-6



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



Bug#436276: Problem still annoying - Workaround

2007-09-22 Thread pini

Hello,

I've had the same problem here on etch amd64.
As mentionned just above, FileZilla runs fine after closing the error 
message. But this is still annoying for our users.
As a quick and dirty workaround I've added this line to /etc/environment 
to get rid of the error:


FZ_FZSFTP=/usr/bin/fzsftp

--
_gilles.



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



Bug#443561: off_t size changed causing ABI breakage, but ABI was not bumped

2007-09-22 Thread Mirco Bauer
Package: libgmime-2.0-2
Severity: serious
Version: 2.2.10-1

libgmime-2.0-2 introduced an ABI breakage in 2.2.10-1 by activating LFS.
GMime has a streaming API which uses off_t, and that changed size.

From the build logs:
Automatic build of gmime2.2_2.2.9-1 on ninsei by sbuild/i386 99.99
checking size of off_t... 4

Automatic build of gmime2.2_2.2.10-1 on ninsei by sbuild/i386 99.99
checking size of off_t... 8

Also this causes gmime-sharp to pass incorectly sized parameters being
passed to the streaming functions causing crashes (asserts), see
#442173.

-- 
Regards,

Mirco 'meebey' Bauer

PGP-Key ID: 0xEEF946C8

FOSS Developer[EMAIL PROTECTED]  http://www.meebey.net/
PEAR Developer[EMAIL PROTECTED] http://pear.php.net/
Debian Developer  [EMAIL PROTECTED]  http://www.debian.org/


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


Bug#443487: hwclock.sh is running too late

2007-09-22 Thread Theodore Tso
On Fri, Sep 21, 2007 at 02:07:57PM -0600, LaMont Jones wrote:
 On Fri, Sep 21, 2007 at 01:48:43PM -0400, Theodore Ts'o wrote:
  Hence, I believe the correct answer is to restore hwclockfirst.sh, and
  to make it be at run at /etc/rcS.d/S08hwclockfirst.sh.
 
 Feel up to testing my fix?  Otherwise, I'll find a machine and get it
 tested.

Sure, I have a crash and burn machine that I can use for testing;
Where do you want me to grab your fix?  I'll grab it, set my clock to
tick localtime with a European timezone, and give it a whirl

Thanks,

- Ted



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



Bug#443562: roundcube: Reply fails to set To: address

2007-09-22 Thread Andrew Schulman
Package: roundcube
Version: 0.1~rc1-1
Severity: normal


When I select a message and hit Reply or Reply to all, a new
message opens, but the recipient list is empty.  I have to enter the
address of the person I'm replying to manually.

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

Kernel: Linux 2.6.22 (SMP w/2 CPU cores; PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1) (ignored: LC_ALL set to 
en_US)
Shell: /bin/sh linked to /bin/bash

Versions of packages roundcube depends on:
ii  apache2   2.2.6-1Next generation, scalable, extenda
ii  apache2-mpm-prefork [httpd]   2.2.6-1Traditional model for Apache HTTPD
ii  dbconfig-common   1.8.36 common framework for packaging dat
ii  debconf [debconf-2.0] 1.5.14 Debian configuration management sy
ii  mysql-client  5.0.45-1   MySQL database client (meta packag
ii  mysql-client-5.0 [mysql-clien 5.0.45-1   MySQL database client binaries
ii  php-auth  1.5.4-1PHP PEAR modules for creating an a
ii  php-db1.7.6-2PHP PEAR Database Abstraction Laye
ii  php-mail-mime 1.3.1-1.1  PHP PEAR module for creating and d
ii  php-net-smtp  1.2.6-2PHP PEAR module implementing SMTP 
ii  php-net-socket1.0.6-2PHP PEAR Network Socket Interface 
ii  php5  5.2.4-1server-side, HTML-embedded scripti
ii  php5-mcrypt   5.2.4-1MCrypt module for php5
ii  php5-mysql5.2.4-1MySQL module for php5
ii  sqlite2.8.17-3   command line interface for SQLite
ii  ucf   3.001  Update Configuration File: preserv

roundcube recommends no packages.

-- debconf information:
* roundcube/dbconfig-install: true
  roundcube/db/dbname: roundcube
  roundcube/pgsql/authmethod-admin: ident
  roundcube/pgsql/admin-user: postgres
  roundcube/internal/skip-preseed: false
  roundcube/db/app-user: roundcube
  roundcube/dbconfig-reinstall: false
* roundcube/restart-webserver: true
  roundcube/dbconfig-upgrade: true
  roundcube/remote/port:
  roundcube/pgsql/no-empty-passwords:
  roundcube/passwords-do-not-match:
  roundcube/internal/reconfiguring: false
  roundcube/upgrade-error: abort
  roundcube/pgsql/authmethod-user: password
  roundcube/purge: false
* roundcube/language: en_US
  roundcube/remote/newhost:
  roundcube/pgsql/changeconf: false
  roundcube/upgrade-backup: true
  roundcube/install-error: abort
  roundcube/mysql/admin-user: root
* roundcube/hosts: helium
  roundcube/dbconfig-remove:
  roundcube/mysql/method: unix socket
  roundcube/remove-error: abort
  roundcube/pgsql/method: unix socket
  roundcube/pgsql/manualconf:
  roundcube/db/basepath:
* roundcube/reconfigure-webserver: apache2
* roundcube/database-type: mysql
  roundcube/remote/host:
  roundcube/missing-db-package-error: abort



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



Bug#443347: usb_storage

2007-09-22 Thread maximilian attems
On Thu, 20 Sep 2007, Diego Fernandez wrote:

 When I put my usb pendrive on, I see the temperature of the cpu increasing 
 slowly, what makes me think of a infinite loop somewhere. If I put off the 
 pendrive, the temperature does not decrease. Even if I remove the usb_storage 
 module.
  I tried this booting the kernel with the single parameter and then pluggin 
 in the pendrive, in order to have the minimum of possible processes running. 
 Just to avoid confusion with other processes.
 
 I'm using debian 4.0, kernel 2.6.18-5 amd64 and libc6 2.3.6.ds1-13etch2

can you try newer kernel from backports.org?

thanks

-- 
maks



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



Bug#443563: nagios-plugins-basic: check_http returns warning instead of critical

2007-09-22 Thread Carsten Leonhardt
Package: nagios-plugins-basic
Version: 1.4.5-1
Severity: normal

When checking the validity of ssl certificates like

check_http --ssl -H $HOSTADDRESS$ -C $ARG1$

critical state is only entered 24 hours after expiry. See this excerpt from the 
log:

[2007-08-16 13:32:41] SERVICE ALERT: webserver;https_certificate;OK;HARD;1;OK - 
Certificate will expire on 09/21/2007 10:09.
[2007-08-21 10:13:05] SERVICE ALERT: 
webserver;https_certificate;WARNING;SOFT;1;WARNING - Certificate expires in 30 
day(s) (09/21/2007 10:09).
[2007-08-21 10:16:05] SERVICE ALERT: 
webserver;https_certificate;WARNING;SOFT;2;WARNING - Certificate expires in 30 
day(s) (09/21/2007 10:09).
[2007-08-21 10:19:05] SERVICE ALERT: 
webserver;https_certificate;WARNING;HARD;3;WARNING - Certificate expires in 30 
day(s) (09/21/2007 10:09).
[2007-09-22 10:10:21] SERVICE ALERT: 
webserver;https_certificate;CRITICAL;HARD;3;CRITICAL - Certificate expired on 
09/21/2007 10:09.

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

Versions of packages nagios-plugins-basic depends on:
ii  iputils-ping   3:20020927-6  Tools to test the reachability of
ii  libc6  2.3.6.ds1-13etch2 GNU C Library: Shared libraries
ii  libssl0.9.80.9.8c-4  SSL shared libraries
ii  procps 1:3.2.7-3 /proc file system utilities
ii  ucf2.0020Update Configuration File: preserv

nagios-plugins-basic recommends no packages.

-- no debconf information



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



Bug#443528: ITP: xmms-pulse -- Pulseaudio Output plugin for xmms

2007-09-22 Thread Thomas Goirand
Sjoerd Simons wrote:
 On Sat, Sep 22, 2007 at 10:13:17AM +0200, Thomas Viehmann wrote:
 Hi,

 Thomas GOIRAND wrote:
   Description : Pulseaudio output plugin for xmms
 Last I heard the xmms maintainers asked for input on removing xmms and
 how to deal with the plugins already in the archive...
 
 We already packaged xmms-pulse as part of pkg-pulseaudio. But never uploaded 
 it
 for exactly this reason. It doesn't seem very usefull to upload it just so it
 can be removed a few months later.
 
 You can find our packaging at
   http://svn.debian.org/wsvn/pkg-pulseaudio/xmms-pulse/
 
 Ofcourse always feel free to join pkg-pulseaudio if you want to
 package/maintain pulse related things :)..
 
   Sjoerd

I didn't know xmms2, I tried, and I don't like it at all... I don't like
the xmms2d thing, I think it's useless if you use something like
pulseaudio that does the job already. I also didn't like at all the
new interface. I think it would be a shame if xmms without the daemon
thing was removed.

Note that I'm not writing to debian-devel@ any more for that topic in
order to keep traffic lower, and not bother anybody more...

Thomas

P.S: I'm closing the ITP



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



Bug#443562: roundcube: Reply fails to set To: address

2007-09-22 Thread Andrew Schulman
And here's another aspect of this problem:  when I forward a message, the
Subject, Date, From, and To fields are empty in the forwarded message.  See
below for an example.  Thanks, Andrew.

 Original Message 
Subject: 
Date: 
From: 
To: 

22  26  32

4   Arthur

4:30Arthur  Cyberchase  Ruff

5   Cyberchase  Arthur

5:30Ruff




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



Bug#443552: In a dual-head setup mouse pointer can't change from one monitor to other

2007-09-22 Thread Brice Goglin
reassign 443552 xserver-xorg-input-mouse
found 443552 1:1.2.2-5
tags 443552 +fixed-upstream
thank you




Aldemir Akpinar wrote:
 Hi there,
 I just pulled the latest mouse driver code from cvs, and the problem has gone 
 away. Now I am using Xorg 1.4 with Ati driver 6.6.3-4.
   

Ok, thanks a lot for testing, we'll upload an updated
xserver-xorg-input-mouse soon.

Brice




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



Bug#443552: In a dual-head setup mouse pointer can't change from one monitor to other

2007-09-22 Thread Aldemir Akpinar
Hi there,
I just pulled the latest mouse driver code from cvs, and the problem has gone 
away. Now I am using Xorg 1.4 with Ati driver 6.6.3-4.
Thanks for your efforts,
--
aldemir

- Original Message 
From: Brice Goglin [EMAIL PROTECTED]
To: Aldemir Akpinar [EMAIL PROTECTED]; [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Sent: Saturday, 22 September, 2007 2:27:03 PM
Subject: Re: Bug#443552: In a dual-head setup mouse pointer can't change from 
one monitor to other

forwarded 443552 https://bugs.freedesktop.org/show_bug.cgi?id=12145
thank you



Aldemir Akpinar wrote:
 Package: xserver-xorg-core
 Version: 2:1.3.0.0.dfsg-12
 Severity: grave

 Hello,
 With the xorg 7.3+2 packages, I can't use my dual head setup properly.
 The trouble is when I move mouse pointer to the secondary screen, I can
 not take it back to the primary one. The second one acts as if it is
 separate.

It looks like the upstream bug at the URL above.

There's seem to be a fix for this in the upstream git repository of the
mouse driver, could try building it and see whether it helps? Let me
know if you need help.

Brice






  ___
Yahoo! Answers - Got a question? Someone out there knows the answer. Try it
now.
http://uk.answers.yahoo.com/




Bug#351843: screen: split command poorly documented

2007-09-22 Thread Jan Christoph Nordholz
Hi Dan,

how would you improve the documentation? There's nothing more
to the split command... as the manpage states, it creates a
blank region, 'C-a tab' jumps between regions, and then you're
free to do what you want with it (and eventually dispose of it
with 'remove' or 'only'). What do you have in mind?


Regards,

Jan


signature.asc
Description: Digital signature


Bug#443562: roundcube: Reply fails to set To: address

2007-09-22 Thread Vincent Bernat
OoO En ce  début d'après-midi nuageux du samedi  22 septembre 2007, vers
14:39, Andrew Schulman [EMAIL PROTECTED] disait:

 When I select a message and hit Reply or Reply to all, a new
 message opens, but the recipient list is empty.  I have to enter the
 address of the person I'm replying to manually.

I cannot reproduct  that here. When using reply to  all, it filters your
own address. When using reply, it should not filter anything. Do you use
reply and reply to all in the summary or in the message view ?
-- 
I WILL NOT EAT THINGS FOR MONEY
I WILL NOT EAT THINGS FOR MONEY
I WILL NOT EAT THINGS FOR MONEY
-+- Bart Simpson on chalkboard in episode 9F10




Bug#443171: [Logcheck-devel] Bug#443171: rules to ignore acpid messages

2007-09-22 Thread martin f krafft
tags 443171 moreinfo
thanks

also sprach Hanspeter Kunz [EMAIL PROTECTED] [2007.09.21.1612 +0100]:
 If there is a consensus about that, I will re-engineer the acpid rules.

Sounds good to me. I am preparing 1.2.62, so don't wait too long if
you want the acpid rules in there. :)

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


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


Bug#443562: roundcube: Reply fails to set To: address

2007-09-22 Thread Vincent Bernat
OoO En ce  début d'après-midi nuageux du samedi  22 septembre 2007, vers
14:57, Andrew Schulman [EMAIL PROTECTED] disait:

 And here's another aspect of this problem:  when I forward a message, the
 Subject, Date, From, and To fields are empty in the forwarded message.  See
 below for an example.  Thanks, Andrew.

Do you have anything suspicious in /var/log/roundcube/error.log ?
-- 
SPITWADS ARE NOT FREE SPEECH
SPITWADS ARE NOT FREE SPEECH
SPITWADS ARE NOT FREE SPEECH
-+- Bart Simpson on chalkboard in episode 8F01




Bug#431320: [EMAIL PROTECTED]: Bug#431320: dash, test: Arithmetic argument NULL must be handled as Not A Number]

2007-09-22 Thread Herbert Xu
On Wed, Sep 19, 2007 at 09:36:12AM +, Gerrit Pape wrote:

 Subject: [patch 01/03] dash, test: whitespace cleanup (as done by default by 
 emacs)

Applied.

 Subject: [patch 02/03] dash, test: little size and speed optimizations

Applied partially.

 @@ -259,16 +259,16 @@
  binop(void)
  {
   const char *opnd1, *opnd2;
 - struct t_op const *op;
 + short op_num;
  
   opnd1 = *t_wp;
   (void) t_lex(*++t_wp);
 - op = t_wp_op;
  
   if ((opnd2 = *++t_wp) == (char *)0)
 - syntax(op-op_text, argument expected);
 + syntax(t_wp_op-op_text, argument expected);
  
 - switch (op-op_num) {
 + op_num = t_wp_op-op_num;
 + switch (op_num) {

I don't see how this hunk can produce a positive effect so
I've dropped it.

 Subject: [patch 03/03] dash, test: recognize NULL argument as not a number

Nack because

1) The real Korn shell does the same thing;
2) It makes the code bigger :)

Cheers,
-- 
Visit Openswan at http://www.openswan.org/
Email: Herbert Xu ~{PmVHI~} [EMAIL PROTECTED]
Home Page: http://gondor.apana.org.au/~herbert/
PGP Key: http://gondor.apana.org.au/~herbert/pubkey.txt



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



Bug#443564: aptitude: segfaults while loading cache

2007-09-22 Thread Uwe Kleine-König
Package: aptitude
Version: 0.4.6.1-1
Severity: important

aptitude segfaults while loading the cache.  Same for apt-get install
fakeroot.  This happens on a fresh debootstrap'd sid, in a chroot.

Backtrace is attached (sorry, but cut'n'paste didn't work, so it's an image)

BTW I saw a similar thing just after installing Debian 4.0r1 from CD.
Now it works, but I cannot say what I changed that it works on that host
now.

Best regards
Uwe

-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 0;
APT::Install-Suggests 0;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::Cache-Limit 16777216;
APT::Get ;
APT::Get::Show-Versions true;
APT::Acquire ;
APT::Acquire::Translation environment;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;

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

-- /etc/apt/sources.list --

deb http://ftp.de.debian.org/debian/ etch main non-free contrib
deb http://ftp.de.debian.org/debian etch-proposed-updates main contrib non-free
deb http://security.debian.org/ etch/updates main contrib non-free
#deb-src http://ftp.de.debian.org/debian/ etch main non-free contrib
#deb-src http://ftp.de.debian.org/debian/ etch-proposed-updates main non-free 
contrib
#deb-src http://security.debian.org/ etch/updates main contrib non-free

deb http://ftp.de.debian.org/debian/ lenny main non-free contrib
deb http://ftp.de.debian.org/debian testing-proposed-updates main contrib 
non-free
deb http://security.debian.org/ lenny/updates main contrib non-free
#deb-src http://ftp.de.debian.org/debian/ lenny main non-free contrib
#deb-src http://ftp.de.debian.org/debian/ lenny-proposed-updates main non-free 
contrib
#deb-src http://security.debian.org/ lenny/updates main contrib non-free

deb http://ftp.de.debian.org/debian/ sid main non-free contrib
deb-src http://ftp.de.debian.org/debian/ sid main non-free contrib

deb http://ftp.de.debian.org/debian experimental main contrib non-free
deb-src http://ftp.de.debian.org/debian experimental main contrib non-free

-- System Information:
Debian Release: lenny/sid
Architecture: i386 (i686)

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

Versions of packages apt depends on:
ii  debian-archive-keyring2007.07.31 GnuPG archive keys of the Debian a
ii  libc6 2.6.1-5GNU C Library: Shared libraries
ii  libgcc1   1:4.2.1-5  GCC support library
ii  libstdc++64.2.1-5The GNU Standard C++ Library v3

-- 
Uwe Kleine-König

http://www.google.com/search?q=1+year+divided+by+3+in+seconds
attachment: aptitude-segfault.png

Bug#443264: [Pkg-shadow-devel] Bug#443264: closed by Nicolas Fran??ois [EMAIL PROTECTED] (Re: Bug#443264: passwd: useradd ignores default group and creates usergroups instead)

2007-09-22 Thread CaT
On Sat, Sep 22, 2007 at 10:39:17AM +0200, Christian Perrier wrote:
  Would it be possible to modify this slightly to say that if a GROUP=
  line is given in the configuration file then -n is implied and that is
  used, otherwise make a new one? It seems to me to be slightly better
  behaviour as it, at least to me, easily follows from the actual act of
  setting a single, solid group.
 
 I have mitigated feelings about a setting in the configuration file
 to change the default setting of the program switches.
 
 As such, your proposal is an interesting compromise, yes. However, I
 wouldn't like to introduce confusion in the use of the software.

I'd agree except that this isn't necessarily set in stone. It's only
present in an in-flux distribution of Debian (Lenny/Sid) and Etch
doesn't even have the switch at all (and is currently stuck with a
default totally different to its predecessors). Even the comments in the
Etch config file seems to indicate (in somewhat confused English :) )
something other then what has occured:

# The default group for users
# 1000=users on Debian systems
# same then USERS_GID in adduser
# Please be aware that Debian's adduser defaults to user groups
# which means that one group is created for each user
# There is no way to achieve this with useradd which must remains a low
# level utility
# GROUP=100

The behaviour I'm thinking of would be more like:

No switch, no default GROUP define: Keep the etch/red hat specific way
No switch, GROUP defined: use GROUP and behave as useradd always has
under Debian.
-n specified, no default GROUP: use group 1 as per manpage (not sure why
group 1 was chosen but hey)
-n specified, GROUP defined: use GROUP

The behaviour of -n doesn't /really/ change and keeps useradd
functioning in a mannger compatible with Red Hat. The behaviour of
useradd without -n would change from present Lenny (and Etch, since it
would then finally do as the docs suggest). With this, no scripts
written under previous versions of Debian need change and scripts from
Red Hat based systems can still be ported. People who wish 1 group/user
setup of useradd can still have it and those who  wish the longstanding
behaviour can still have it also.

-- 
To the extent that we overreact, we proffer the terrorists the
greatest tribute.
- High Court Judge Michael Kirby



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



Bug#443565: apt: Wrong candidate selection

2007-09-22 Thread Jö Fahlke
Package: apt
Version: 0.7.6
Severity: normal

apt (or at least apt-cache) sometimes selects the wrong package
version as a candidate.  For me that happened with package dar.

Here is the proplematic output of apt-cache policy dar:
==
dar:
  Installed: 2.3.4-1
  Candidate: 2.3.4-1
  Package pin: (not found)
  Version table:
 2.3.5-1 500
500 http://ftp.de.debian.org lenny/main Packages
 *** 2.3.4-1 500
100 /var/lib/dpkg/status
==
I believe that the candidate should in fact be 2.3.5-1, not 2.3.4-1.

Here is some more info which may help in debugging:

As you can see from the configuration files, I have a private
repository.  dar 2.3.4-1 was installed from that repository while my
system was still running etch.  I've since switched to lenny however,
and updated my sources.list to point to the lenny part of my
repository.  I did not however migrate dar from etch to lenny in my
repository, so as apt sees it, there should be no version of dar
available from my repository.

I also left the pins in the preferences file intact.  Here is the
relevant part of my preferences file:
==
Package: *
Pin: release o=Debian,a=testing,c=main
Pin-Priority: 500

Package: *
Pin: origin jorrit.de
Pin-Priority: -1

Package: dar
Pin: origin jorrit.de
Pin-Priority: 500

==
The preferences file is produced in full below.

BTW, in the output of apt-cache policy, what does the 500 after the
version number mean?  I noticed that other packages than dar have 0
there.

Thanks for your good work,
Jö.


-- Package-specific info:

-- apt-config dump --

APT ;
APT::Architecture i386;
APT::Build-Essential ;
APT::Build-Essential:: build-essential;
APT::Install-Recommends 0;
APT::Install-Suggests 0;
APT::NeverAutoRemove ;
APT::NeverAutoRemove:: ^linux-image.*;
APT::NeverAutoRemove:: ^linux-restricted-modules.*;
APT::Cache-Limit 33554432;
APT::Acquire ;
APT::Acquire::Translation environment;
Dir /;
Dir::State var/lib/apt/;
Dir::State::lists lists/;
Dir::State::cdroms cdroms.list;
Dir::State::userstatus status.user;
Dir::State::status /var/lib/dpkg/status;
Dir::Cache var/cache/apt/;
Dir::Cache::archives archives/;
Dir::Cache::srcpkgcache srcpkgcache.bin;
Dir::Cache::pkgcache pkgcache.bin;
Dir::Etc etc/apt/;
Dir::Etc::sourcelist sources.list;
Dir::Etc::sourceparts sources.list.d;
Dir::Etc::vendorlist vendors.list;
Dir::Etc::vendorparts vendors.list.d;
Dir::Etc::main apt.conf;
Dir::Etc::parts apt.conf.d;
Dir::Etc::preferences preferences;
Dir::Bin ;
Dir::Bin::methods /usr/lib/apt/methods;
Dir::Bin::dpkg /usr/bin/dpkg;
DPkg ;
DPkg::Pre-Install-Pkgs ;
DPkg::Pre-Install-Pkgs:: /usr/sbin/apt-listbugs apt || exit 10;
DPkg::Pre-Install-Pkgs:: /usr/bin/apt-listchanges --apt || test $? -ne 10;
DPkg::Pre-Install-Pkgs:: /usr/sbin/dpkg-preconfigure --apt || true;
DPkg::Tools ;
DPkg::Tools::Options ;
DPkg::Tools::Options::/usr/sbin/apt-listbugs ;
DPkg::Tools::Options::/usr/sbin/apt-listbugs::Version 2;
DPkg::Tools::Options::/usr/bin/apt-listchanges ;
DPkg::Tools::Options::/usr/bin/apt-listchanges::Version 2;
DPkg::Post-Invoke ;
DPkg::Post-Invoke:: if [ -x /usr/bin/debsums ]; then /usr/bin/debsums 
--generate=nocheck -sp /var/cache/apt/archives; fi;
Acquire ;
Acquire::http ;
Acquire::http::Proxy http://localhost:3128;;
Acquire::ftp ;
Acquire::ftp::Proxy http://localhost:3128;;

-- /etc/apt/preferences --

Package: *
Pin: release o=Debian,a=testing,c=main
Pin-Priority: 500

Package: *
Pin: release o=Debian
Pin-Priority: -1

Explanation: Package: autobook
Explanation: Pin: release o=Debian,a=testing
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: autoconf-doc
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: automake1.10-doc
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: emacs21-common-non-dfsg
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: gcc-4.1-doc
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: gcc-doc
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: gcc-doc-base
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: glibc-doc-reference
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Explanation: Package: gnu-standards
Explanation: Pin: release o=Debian,a=testing,c=main
Explanation: Pin-Priority: 500
Explanation: 
Package: *
Pin: release o=volatile.debian.org,c=main
Pin-Priority: 500

Package: *

Bug#443364: Please give us a full build log

2007-09-22 Thread Otavio Salvador
Hello,

Please give us a full build log so we can start to look at it.

TIA,

-- 
O T A V I OS A L V A D O R
-
 E-mail: [EMAIL PROTECTED]  UIN: 5906116
 GNU/Linux User: 239058 GPG ID: 49A5F855
 Home Page: http://otavio.ossystems.com.br
-
Microsoft sells you Windows ... Linux gives
 you the whole house.



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



Bug#438179: glibc's getaddrinfo() sort order

2007-09-22 Thread Florian Weimer
* Anthony Towns:

 I don't agree with making a decision to go against an IETF standard

RFC 3484 is not an IETF standard.



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



Bug#433187: Installing Debian on Ultrasparc III machines

2007-09-22 Thread Bernd Zeimetz

 BTW, lebrun.d.o, also an USIII, running 2.6.23-rc6 plus the aforementioned
 patch still created unkillable dpkg-query processes.

I've given 2.6.23-rc6-git7 a try now, which includes
6553daeafb4fa15cd07088f543352fa3779e86e1 - but no luck. This time ssh
processes keep stuck while logging out.

:(

-- 
Bernd Zeimetz
[EMAIL PROTECTED] http://bzed.de/



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



Bug#443566: websvn: Call to undefined method Repository::getDisplayName()

2007-09-22 Thread Marco Schuster
Package: websvn
Version: 1.61-22.2
Severity: grave
Justification: renders package unusable

When trying to view a file on a SVN repo, 
Fatal error: Call to undefined method Repository::getDisplayName() in
/usr/share/websvn/filedetails.php on line 130 appears, example is
http://velirat.de/websvn/filedetails.php?repname=ircbotspath=%2Flinky.phprev=0sc=0
. The SVN system itself seems to work, at least I can check in and check out
stuff.

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

Kernel: Linux 2.6.9-023stab043.3-smp (SMP w/4 CPU cores)
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)
Shell: /bin/sh linked to /bin/bash

Versions of packages websvn depends on:
ii  apache2-mpm-prefork [httpd] 2.2.4-3  Traditional model for Apache HTTPD
ii  debconf [debconf-2.0]   1.5.14   Debian configuration management sy
ii  libapache2-mod-php5 5.2.3-1+b1   server-side, HTML-embedded scripti
ii  php55.2.3-1  server-side, HTML-embedded scripti
ii  po-debconf  1.0.9manage translated Debconf template
ii  subversion  1.4.4dfsg1-1 Advanced version control system
ii  ucf 3.001Update Configuration File: preserv

Versions of packages websvn recommends:
pn  enscript  none (no description available)

-- debconf information:
* websvn/webservers: apache2
* websvn/configuration: true
* websvn/parentpath: /static/svn
* websvn/repositories: /static/svn/hd_bot,/static/svn/ircbots
* websvn/permissions:



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



Bug#442944: pycocuma: breaks long lines in vcf file

2007-09-22 Thread Christoph Berg
reassign 442944 rolo
thanks

Re: Owen Heisler 2007-09-18 [EMAIL PROTECTED]
 The NOTE line was not wrapped in this message; it is actually split onto two
 lines.  Rolo stops reading the vcf file at the NOTE line; removing the space
 and line break fixes that.
 
 Either this is actually a correct behavior for vCard v3 and rolo isn't 
 handling
 it properly or the behavior is incorrect and pycocuma has a bug.  I am
 obviously assuming the latter.

Feature - RFC2425 5.8.1. Line delimiting and folding.

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#425056: strange default for link_in_boot in config script

2007-09-22 Thread Ralf Neubauer
I have the same problem with linux-image-2.6.21-2-686

In /var/lib/dpkg/info/linux-image-2.6.21-2-686.config I found the
suspicious lines

# Predefined values:
my $version   = 2.6.21-2-686;
my $link_in_boot  = YESB;   # Should be empty, mostly
my $no_symlink= ;   # Should be empty, mostly
my $reverse_symlink   = ;   # Should be empty, mostly
my $do_symlink= Yes;  # target machine defined
my $do_boot_enable= Yes;  # target machine defined

linux-image-2.6.18-5-686.config still contains

# Predefined values:
my $version   = 2.6.18-5-686;
my $link_in_boot  = ;   # Should be empty, mostly
my $no_symlink= ;   # Should be empty, mostly
my $reverse_symlink   = ;   # Should be empty, mostly
my $do_symlink= Yes;  # target machine defined
my $do_boot_enable= Yes;  # target machine defined

kernel-img.conf(5) (from etch) says

   link_in_boot
  Set to Yes if you want the symbolic link to  the  kernel image,
  namely,  vmlinuz  in  /boot rather than the default /.  The old,
  and very confusing, name image_in_boot is deprecated, since  it
  is  the symbolic link that is usually being relocated.  Defaults
  to No.

Has the default changed? I can't image a reason for doing this, as
only people still using lilo should be affected at all. There was no
mention of a changed default in any changelog or NEWS I searched.

Is this a kernel-package bug?

-- 
  72 61 6c 66 40 73 74 72 : 63 6d 70 2e 64 65 0a [EMAIL PROTECTED] 



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



Bug#443567: libgd-gd2-perl: Description of $image-colorResolve

2007-09-22 Thread Jean-Damien Durand
Package: libgd-gd2-perl
Version: 1:2.35-1
Severity: minor

The description of function colorResolve() could say that if allocation fails, 
then it will return the index of the _closest_
color, c.f. http://www.libgd.org/OldColour, section 1.7! Thus one have to be 
very careful with this function, it will always
return an index but not necessarly one for a color that matches the (r,g,b) in 
input!

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

Kernel: Linux 2.6.22-kamikaze5 (PREEMPT)
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)
Shell: /bin/sh linked to /bin/bash

Versions of packages libgd-gd2-perl depends on:
ii  libc6   2.6.1-5  GNU C Library: Shared libraries
ii  libfontconfig1  2.4.2-1.2generic font configuration library
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgd2-xpm  2.0.35.dfsg-3GD Graphics Library version 2
ii  libjpeg62   6b-14The Independent JPEG Group's JPEG 
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxpm4 1:3.5.7-1X11 pixmap library
ii  perl5.8.8-11 Larry Wall's Practical Extraction 
ii  perl-base [perlapi-5.8. 5.8.8-11 The Pathologically Eclectic Rubbis
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

libgd-gd2-perl recommends no packages.

-- no debconf information



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



Bug#241927: closed by Marco Rodrigues [EMAIL PROTECTED] (Reopen if not fixed..)

2007-09-22 Thread Frederic Lehobey
Hi,

Debian Bug Tracking System [EMAIL PROTECTED] (2007-09-22 10:03:03) :

 #241927: pingus: Pingus crashes (on powerpc) when selecting Create a Level 
 (clanlib issue?)
 
 It has been closed by Marco Rodrigues [EMAIL PROTECTED].

 From: Marco Rodrigues [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 Subject: Reopen if not fixed..
 X-Enigmail-Version: 0.95.3
 
 Version: 0.7.0-2
 
 I think this bug is already fixed, that was told me by upstream author.
 
 The clanlib is not used anymore...

Yes, for the record, I acknowledge that this bug is not relevant
anymore:

 - 'Create a Level' is not proposed on the welcome menu anymore;
 - clanlib is not used anymore and (to the extent of my limited
testing) pingus seems to be now playable on powerpc.

There might be problems with the level editor but I had no time to go
into this.

Thanks for your work on packaging the renewed pingus,
Frédéric Lehobey



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



Bug#443375: additional information

2007-09-22 Thread Christian Gogolin
To further investigate the Problem I modified /etc/acpi/prepare.sh as 
follows.


#!/bin/sh

echo `date` prepare.sh started  /home/cgogolin/tmp/crash.log
sync

# sync harddrives befor anything else is done
sync

for SCRIPT in /etc/acpi/suspend.d/*.sh; do
echo `date`  starting script $SCRIPT  /home/cgogolin/tmp/crash.log
sync

. $SCRIPT
done

echo `date` prepare.sh done  /home/cgogolin/tmp/crash.log
sync


Using this modified file I was able to record this log during the last 
crash.


...
Sat Sep 22 12:20:31 CEST 2007 prepare.sh started
Sat Sep 22 12:20:31 CEST 2007  starting script 
/etc/acpi/suspend.d/05-acpi-lock.sh
Sat Sep 22 12:20:31 CEST 2007  starting script 
/etc/acpi/suspend.d/10-thinkpad-standby-led.sh
Sat Sep 22 12:20:31 CEST 2007  starting script 
/etc/acpi/suspend.d/30-proc-sysfs-save-state.sh
Sat Sep 22 12:20:31 CEST 2007  starting script 
/etc/acpi/suspend.d/50-irda-stop.sh
Sat Sep 22 12:20:31 CEST 2007  starting script 
/etc/acpi/suspend.d/50-time.sh
Sat Sep 22 12:20:34 CEST 2007  starting script 
/etc/acpi/suspend.d/50-tosh-save-brightness.sh
Sat Sep 22 12:20:34 CEST 2007  starting script 
/etc/acpi/suspend.d/55-down-interfaces.sh
Sat Sep 22 12:20:36 CEST 2007  starting script 
/etc/acpi/suspend.d/60-generate-modules-list.sh
Sat Sep 22 12:20:36 CEST 2007  starting script 
/etc/acpi/suspend.d/65-services-stop.sh
Sat Sep 22 12:20:36 CEST 2007  starting script 
/etc/acpi/suspend.d/70-modules-unload.sh
Sat Sep 22 12:20:36 CEST 2007  starting script 
/etc/acpi/suspend.d/75-console-switch.sh



So the crash seams to happen while 75-console-switch.sh is executed.

If it is this script that causes the system to crash and not an other 
process running simultaneously it should not be too difficult to 
identify the problem.


$ cat 75-console-switch.sh
#!/bin/sh

# And remember which console we're on
CONSOLE=`fgconsole`

# Change away from X, otherwise it'll blow up when we POST the video 
interface

chvt 12


I now consider the program chvt to be the primary suspect. I think it 
would fit well into the symptomatology described above. It has something 
to do with video output ant thus might caus the pixel patterns and it is 
called during suspend and hibernation and might (?) es well be called 
during logout.


I repaced the last line of 75-console-switch.sh with

strace -t -o /home/cgogolin/tmp/chvt.trace chvt 12
sync


hoping that strace will manage to write the trace to disc before the 
system locks up.



Although now there is some evidence that this bug is not related to the 
base system but to chvt I would like to see this report being kept 
open until there is really _strong_ evidence that chvt is the malefactor.


Suppose the problem is in chvt, if strace fails to write the trace 
to disk, is there any other way of getting more information on what 
exactly causes the crash?
begin:vcard
fn:Christian Gogolin
n:Gogolin;Christian
email;internet:[EMAIL PROTECTED]
x-mozilla-html:FALSE
version:2.1
end:vcard



Bug#439840: CVE-2007-4398: Multiple CRLF injection vulnerabilities

2007-09-22 Thread Christoph Berg
Hi,

while everyone seems to claim that the scripts on irssi.org/scripts/
have been fixed, the web server there reports 2005 as last change
date, and randomly checking some scripts doesn't show any differences
to the versions we are shipping. It could be that we are already
shipping fixed versions, but I doubt it. Does anyone have more
information?

Christoph
-- 
[EMAIL PROTECTED] | http://www.df7cb.de/


signature.asc
Description: Digital signature


Bug#432829: Grokking the GIMP should be kept

2007-09-22 Thread Roberto C . Sánchez
I just recently read Grokking the Gimp for the first time, using the
version of the Gimp in Etch to follow along.  With only a few minor
changes in the placement and layout of dialogs and menu options,
everything seems to be the same between the current version of the Gimp
and the book.

Personally, I like having it available as a Debian package as it makes
it very easy to have it available for offline work.

Regards,

-Roberto

-- 
Roberto C. Sánchez
http://people.connexer.com/~roberto
http://www.connexer.com


signature.asc
Description: Digital signature


  1   2   3   4   >