Bug#718882: libnet-telnet-cisco-perl: cmd() returns [ undef ] instead of empty list on error

2013-08-06 Thread Stefan Voelkel
Package: libnet-telnet-cisco-perl
Version: 1.10-5
Severity: normal
Tags: upstream patch

When using errmode == return and calling cmd() in list context and an error is
detected during command processing, Net::Telnet:::Cisco will return

$VAR1 = [ undef ];

instead of an empty list

$VAR1 = [];

However perldoc Net::Telnet states

When mode is return then the method generating the error places an
error message in the object and returns an undefined value in a scalar
context and an empty list in list context.  The error message may be
obtained using errmsg().

And perldoc Net::Telnet::Cisco states:

Before you use Net::Telnet::Cisco, you should have a good understanding
of Net::Telnet, so read it's documentation first, and then come back
here to see the improvements.

This patch seems to fix the problem:

--- /tmp/Cisco.pm   2013-08-06 15:01:51.0 +0200
+++ /usr/share/perl5/Net/Telnet/Cisco.pm2013-08-06 14:54:50.0 
+0200
@@ -202,6 +202,7 @@
 
if ($self-find_errors(@out) ) {
$ok = 0;
+   @out = ();
last;
}


-- System Information:
Debian Release: 6.0.7
  APT prefers oldstable
  APT policy: (500, 'oldstable')
Architecture: i386 (i686)

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


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



Bug#700079: pu: package dtach/0.8-2

2013-02-08 Thread Stefan Voelkel
Package: release.debian.org
Severity: normal
User: release.debian@packages.debian.org
Usertags: pu


Dear RMs,

Please accept this stable upload for #625302

CVE-2012-3368 random text sent on window close

The patch is the same as in 0.8-2.1:

[2012-07-07] dtach 0.8-2.1 MIGRATED to testing (Britney)

Thanks,

Stefan

-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-xen-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff -u dtach-0.8/debian/changelog dtach-0.8/debian/changelog
--- dtach-0.8/debian/changelog
+++ dtach-0.8/debian/changelog
@@ -1,3 +1,9 @@
+dtach (0.8-2+squeeze1) stable; urgency=low
+
+  * Fix CVE-2012-3368: properly handle close request (Closes: #625302).
+
+ -- Stefan Völkel ste...@bc-bd.org  Thu, 07 Feb 2013 17:04:48 +0100
+
 dtach (0.8-2) unstable; urgency=low
 
   * Updated to Policy version 3.8.1
only in patch2:
unchanged:
--- dtach-0.8.orig/attach.c
+++ dtach-0.8/attach.c
@@ -237,12 +237,16 @@
 		/* stdin activity */
 		if (n  0  FD_ISSET(0, readfds))
 		{
+			ssize_t l;
+
 			pkt.type = MSG_PUSH;
 			memset(pkt.u.buf, 0, sizeof(pkt.u.buf));
-			pkt.len = read(0, pkt.u.buf, sizeof(pkt.u.buf));
+			l = read(0, pkt.u.buf, sizeof(pkt.u.buf));
 
-			if (pkt.len = 0)
+			if (l = 0)
 exit(1);
+
+			pkt.len = l;
 			process_kbd(s, pkt);
 			n--;
 		}


Bug#698217: mssh: shift+insert only pastes to first window

2013-01-15 Thread Stefan Voelkel
Package: mssh
Version: 1.2-1
Severity: normal

Using shit+insert will only insert text into the first window.

Pasting using middle mousebutton works though.


-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages mssh depends on:
ii  gconf22.28.1-6   GNOME configuration database syste
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  libgconf2-4   2.28.1-6   GNOME configuration database syste
ii  libglib2.0-0  2.24.2-1   The GLib library of C routines
ii  libgtk2.0-0   2.20.1-2   The GTK+ graphical user interface 
ii  libvte9   1:0.24.3-4 Terminal emulator widget for GTK+ 
ii  openssh-client1:5.5p1-6+squeeze2 secure shell (SSH) client, for sec

mssh recommends no packages.

mssh suggests no packages.

-- no debconf information


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



Bug#691844: xauth: Failed X11 forwarding when using GDM via XDMCP

2012-10-30 Thread Stefan Voelkel
Package: xauth
Version: 1:1.0.4-1
Severity: normal
Tags: upstream patch


When using GDM via XDMCP, for examle when accessing GDM via
vncserver-XDMCP-localhost, ssh is no longer able to forward X11.

Invalid MIT-MAGIC-COOKIE-1 keyxterm Xt error: Can't open display:
localhost:10.0

The problem is, that xauth is unable to deal with the Family FamilyWild which
is used by GDM in XDMCP to store the MIT-MAGIC-COOKIE-1 for the user.

Attached are two patches, one for 1.0.4-1 and one for 1.0.7-1. The original
Patch is by Dr. Tilmann Bubeck.

Upstream Bug is at

https://bugs.freedesktop.org/show_bug.cgi?id=43425

FWIW, Redhat also has a bug for this:

https://bugzilla.redhat.com/show_bug.cgi?id=505545

-- System Information:
Debian Release: 6.0.6
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages xauth depends on:
ii  libc6 2.11.3-4   Embedded GNU C Library: Shared lib
ii  libx11-6  2:1.3.3-4  X11 client-side library
ii  libxau6   1:1.0.6-1  X11 authorisation library
ii  libxext6  2:1.1.2-1  X11 miscellaneous extension librar
ii  libxmuu1  2:1.0.5-2  X11 miscellaneous micro-utility li

xauth recommends no packages.

xauth suggests no packages.

-- no debconf information
From 5da21eaf6ec6537c3aab23adbebd617050e0c2c9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20V=C3=B6lkel?= stefan.volkel@nsn.com
Date: Wed, 8 Aug 2012 14:13:08 +0200
Subject: [PATCH] improve to handle FamilyWild necessary for GDM/XDMCP/SSH #43425

---
 process.c |   76 +---
 1 files changed, 67 insertions(+), 9 deletions(-)

diff --git a/process.c b/process.c
index 893b51d..5a3984c 100644
--- a/process.c
+++ b/process.c
@@ -465,8 +465,11 @@ read_auth_entries(FILE *fp, Bool numeric, AuthList 
**headp, AuthList **tailp)
 return n;
 }
 
-static Bool 
-get_displayname_auth(char *displayname, AuthList **authl)
+/**
+ * Parse the given displayname and build a corresponding AuthList.
+ */
+static Bool
+get_displayname_auth(const char *displayname, AuthList **authl)
 {
 int family;
 char *host = NULL, *rest = NULL;
@@ -997,6 +1000,9 @@ dump_entry(char *inputfilename, int lineno, Xauth *auth, 
char *data)
fwrite (auth-address, sizeof (char), auth-address_length, fp);
fprintf (fp, /unix);
break;
+ case FamilyWild:
+   fwrite (auth-address, sizeof (char), auth-address_length, fp);
+   break;
  case FamilyInternet:
 #if defined(IPv6)  defined(AF_INET6)
  case FamilyInternet6:
@@ -1079,6 +1085,49 @@ match_auth_dpy(register Xauth *a, register Xauth *b)
 memcmp(a-number, b-number, a-number_length) == 0) ? 1 : 0);
 }
 
+static int
+match_authwild_dpy(register Xauth *a, const char *displayname)
+{
+int family;
+char *host = NULL, *rest = NULL;
+int dpynum, scrnum;
+char dpynumbuf[40];/* want to hold largest display 
num */
+
+if ( a-family != FamilyWild )
+   return False;
+
+if (!parse_displayname (displayname,
+   family, host, dpynum, scrnum, rest)) {
+   free(host);
+   free(rest);
+
+   return False;
+}
+
+dpynumbuf[0] = '\0';
+sprintf (dpynumbuf, %d, dpynum);
+
+if (a-address_length != strlen(host) || a-number_length != 
strlen(dpynumbuf)) {
+   free(host);
+   free(rest);
+
+return False;
+}
+
+if (memcmp(a-address, host, a-address_length) == 0 
+memcmp(a-number, dpynumbuf, a-number_length) == 0) {
+   free(host);
+   free(rest);
+
+return True;
+} else {
+   free(host);
+   free(rest);
+
+return False;
+   }
+}
+
 /* return non-zero iff display and authorization type are the same */
 
 static int 
@@ -1242,13 +1291,22 @@ iterdpy (char *inputfilename, int lineno, int start,
/* l may be freed by remove_entry below. so save its contents */
next = l-next;
tmp_auth = copyAuth(l-auth);
-   for (proto = proto_head; proto; proto = proto-next) {
-   if (match_auth_dpy (proto-auth, tmp_auth)) {
-   matched = True;
-   if (yfunc) {
-   status = (*yfunc) (inputfilename, lineno,
-  tmp_auth, data);
-   if (status  0) break;
+
+   if ( match_authwild_dpy(tmp_auth, displayname) ) {
+   matched = True;
+   if (yfunc) {
+   status = (*yfunc) (inputfilename, lineno,
+  tmp_auth, data);
+   }
+   } else {
+   for (proto = proto_head; proto; 

Bug#600886: arpwatch: [PATCH] support pcap filters

2012-09-27 Thread Stefan Voelkel
Package: arpwatch
Version: 2.1a15-1.1+squeeze1
Severity: normal
Tags: patch

Attached is a PATCH that adds support for pcap filters.

This also provides a way to workaround #512297

Stefan

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

Kernel: Linux 2.6.32-5-xen-686 (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash
diff --git a/arpwatch.8 b/arpwatch.8
index 1bee166..266020b 100644
--- a/arpwatch.8
+++ b/arpwatch.8
@@ -44,6 +44,14 @@ arpwatch \- keep track of ethernet/ip address pairings
 .br
 .ti +8
 [
+.B -F
+.I filter
+]
+.\ **
+.\ **
+.br
+.ti +8
+[
 .B -i
 .I interface
 ]
@@ -189,6 +197,13 @@ does not fork.
 .\ **
 .LP
 (Debian) The
+.B -f
+flag is used to specify a pcap filter used to ignore packages.
+It is prefixed with (arp or rarp) and.
+.\ **
+.\ **
+.LP
+(Debian) The
 .B -s
 flag is used to specify the path to the sendmail program.
 Any program that takes the option -odi and then text from stdin
diff --git a/arpwatch.c b/arpwatch.c
index 9892894..52fa1dc 100644
--- a/arpwatch.c
+++ b/arpwatch.c
@@ -166,6 +166,48 @@ void dropprivileges(const char* user)
   syslog(LOG_INFO, Running as uid=%d gid=%d, getuid(), getgid());
 }
 
+int compile_filter(pcap_t *p, struct bpf_program *fp, const char *filter_user,
+	bpf_u_int32 netmask)
+{
+	int len, result;
+
+	char *filter = NULL;
+	static const char filter_extended[] = (arp or rarp) and ;
+	static const char filter_default[] = arp or rarp;
+
+	/* calculate needed space for filter string. it is unlikely that
+	 * filter_efault becomes longer that filter_extended + 1, however we use
+	 * strncpy() later, which will behave badly when there is no \0 within
+	 * the first n bytes */
+	len = strlen(filter_user) + strlen(filter_extended) + 1;
+	len = len  strlen(filter_default) ? strlen(filter_default) : len;
+
+	filter = malloc(len);
+	if (!filter) {
+		syslog(LOG_ERR, compile_filter: out of memory);
+		return -1;
+	}
+
+	if (!filter_user) {
+		/* while copying this string is not needed, this way shortens
+		 * the amount of code we need ant should be easier to read even
+		 * if a tiny bit slower */
+		strncpy(filter, filter_default, len);
+	} else {
+		result = snprintf(filter, len, %s%s, filter_extended, filter_user);
+		if (result != len - 1) {
+			syslog(LOG_ERR, compile_filter: snprintf() error);
+			return -1;
+		}
+	}
+	syslog(LOG_INFO, using pcap filter '%s', filter);
+
+	result = pcap_compile(p, fp, filter, 1, netmask);
+	free(filter);
+
+	return result;
+}
+
 int
 main(int argc, char **argv)
 {
@@ -179,6 +221,7 @@ main(int argc, char **argv)
 	struct bpf_program code;
 	char errbuf[PCAP_ERRBUF_SIZE];
 	char* username = NULL;
+	char *filter_user = NULL;
 	int restart = 0;
 	char options[] =
 		d
@@ -187,6 +230,9 @@ main(int argc, char **argv)
 		f:
 		/**/
 		/**/
+		F:
+		/**/
+		/**/
 		i:
 		/**/
 		/**/
@@ -262,6 +308,10 @@ main(int argc, char **argv)
 			arpfile = optarg;
 			break;
 
+		case 'F':
+			filter_user = strdup(optarg);
+			break;
+
 		case 'i':
 			interface = optarg;
 			break;
@@ -429,10 +479,12 @@ label_restart:
 	}
 
 	/* Compile and install filter */
-	if (pcap_compile(pd, code, arp or rarp, 1, netmask)  0) {
+	if (compile_filter(pd, code, filter_user, netmask)  0) {
 		syslog(LOG_ERR, pcap_compile: %s, pcap_geterr(pd));
 		exit(1);
 	}
+	free(filter_user);
+
 	if (pcap_setfilter(pd, code)  0) {
 		syslog(LOG_ERR, pcap_setfilter: %s, pcap_geterr(pd));
 		exit(1);
@@ -901,6 +953,9 @@ usage(void)
 		[-f datafile] 
 		/**/
 		/**/
+		[-F \filter\ ]
+		/**/
+		/**/
 		[-i interface] 
 		/**/
 		/**/
diff --git a/debian/arpwatch.default b/debian/arpwatch.default
index b0a7d8f..42faf28 100644
--- a/debian/arpwatch.default
+++ b/debian/arpwatch.default
@@ -3,5 +3,8 @@
 # Debian: don't report bogons, don't use PROMISC.
 ARGS=-N -p
 
+# If you want to use pcap filters, you must suround them by single quotes, e.g.
+# ARGS=-N -p -F 'not host 192.168.0.1'
+
 # Debian: run as `arpwatch' user.  Empty this to run as root.
 RUNAS=arpwatch
diff --git a/debian/init.d b/debian/init.d
index 4641fa6..469ca08 100644
--- a/debian/init.d
+++ b/debian/init.d
@@ -58,7 +58,7 @@ start_instance () {
 		echo -n (chown $RUNAS $DATAFILE) 
 		chown $RUNAS $DATAFILE
 	fi
-	start-stop-daemon --start --quiet \
+	exec start-stop-daemon --start --quiet \
 		--pidfile /var/run/${INSTANCE}.pid \
 		--exec $DAEMON -- $IFACE_OPTS $ARGS
 	echo ${INSTANCE}.
@@ -105,7 +105,7 @@ start_default () {
 		echo -n (chown $RUNAS $DATADIR/arp.dat) 
 		chown $RUNAS $DATADIR/arp.dat
 	fi
-	start-stop-daemon --start --quiet \
+	exec start-stop-daemon --start --quiet \
 		--exec $DAEMON -- $ARGS
 	echo $NAME.
 }


Bug#687622: /sbin/start-stop-daemon: start-stop-daemon breaks options containing whitespaces

2012-09-14 Thread Stefan Voelkel
Package: dpkg
Version: 1.15.8.12
Severity: normal
File: /sbin/start-stop-daemon

When specifying arguments with whitespace in /etc/default/foo,
start-stop-daemon will break these when passing them to the daemon:

/etc/default/foo

ARGS=-c 'bar quux'

/etc/init.d/foo

start-stop-daemon --start --quiet --exec $DAEMON -- $ARGS

The daemon will then parse it's options as:

op=/c/
optarg=/'bar /

(slashes added to mark begining and end of text)

The only workaround I found so far is:

/etc/default/foo

ARGS=-a -b
C=bar quux

/etc/init.d/foo

[ -n $C ]  ARGS=$ARGS -c
start-stop-daemon --start --quiet --exec $DAEMON -- $ARGS $C

Regards

Stefan

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages dpkg depends on:
ii  coreutils   8.5-1GNU core utilities
ii  libbz2-1.0  1.0.5-6+squeeze1 high-quality block-sorting file co
ii  libc6   2.11.3-3 Embedded GNU C Library: Shared lib
ii  libselinux1 2.0.96-1 SELinux runtime shared libraries
ii  xz-utils5.0.0-2  XZ-format compression utilities
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

dpkg recommends no packages.

Versions of packages dpkg suggests:
ii  apt0.8.10.3+squeeze1 Advanced front-end for dpkg

-- no debconf information


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



Bug#681865: ditaa: java.util.NoSuchElementException with certain input files

2012-07-17 Thread Stefan Voelkel
Package: ditaa
Version: 0.9+ds1-2
Severity: normal

Dear Maintainer,

this input file:

+--+
| Java |
+---+--+
   -/

leads to this exception:

Exception in thread main java.util.NoSuchElementException
at java.util.HashMap$HashIterator.nextEntry(HashMap.java:813)
at java.util.HashMap$KeyIterator.next(HashMap.java:845)
at org.stathissideris.ascii2image.text.CellSet.getFirst(CellSet.java:82)
at 
org.stathissideris.ascii2image.graphics.CompositeDiagramShape.createOpenFromBoundaryCells(CompositeDiagramShape.java:85)
at 
org.stathissideris.ascii2image.graphics.Diagram.init(Diagram.java:349)
at 
org.stathissideris.ascii2image.core.CommandLineConverter.main(CommandLineConverter.java:222)

WHen you add a second dash:

+--+
| Java |
+---+--+
  --/

ditaa hangs, using 100% CPU.

This However works:

+--+
| Java |
+---+--+
/

Regards

Stefan

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages ditaa depends on:
ii  jarwrapper0.32   Run executable Java .jar files
ii  junit44.8.2-2JUnit regression test framework fo
ii  libbatik-java 1.7-6  xml.apache.org SVG Library
ii  libcommons-cli-ja 1.2-3  API for working with the command l
ii  libjericho-html-j 3.1-1  Java based library for HTML Parsin
ii  libxml-commons-ex 1.3.05-2   XML Commons external code - DOM, S
ii  openjdk-6-jdk 6b18-1.8.13-0+squeeze2 OpenJDK Development Kit (JDK)
ii  openjdk-6-jre [ja 6b18-1.8.13-0+squeeze2 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [ja 6.26-0squeeze1 Sun Java(TM) Runtime Environment (

ditaa recommends no packages.

ditaa suggests no packages.

-- no debconf information


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



Bug#681895: ditaa: text is rendered outside it's box

2012-07-17 Thread Stefan Voelkel
Package: ditaa
Version: 0.9+ds1-2
Severity: normal

Dear Maintainer,

using this input:

+---+--+++---+---+-+--++
|111|22|||555|666|7|88||
+---+--+++---+---+-+--++
|  |
+--+

will result in an image where the text is not rendered inside it's box (see
attached screenshot).

Stefan

-- System Information:
Debian Release: 6.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages ditaa depends on:
ii  jarwrapper0.32   Run executable Java .jar files
ii  junit44.8.2-2JUnit regression test framework fo
ii  libbatik-java 1.7-6  xml.apache.org SVG Library
ii  libcommons-cli-ja 1.2-3  API for working with the command l
ii  libjericho-html-j 3.1-1  Java based library for HTML Parsin
ii  libxml-commons-ex 1.3.05-2   XML Commons external code - DOM, S
ii  openjdk-6-jdk 6b18-1.8.13-0+squeeze2 OpenJDK Development Kit (JDK)
ii  openjdk-6-jre [ja 6b18-1.8.13-0+squeeze2 OpenJDK Java runtime, using Hotspo
ii  sun-java6-jre [ja 6.26-0squeeze1 Sun Java(TM) Runtime Environment (

ditaa recommends no packages.

ditaa suggests no packages.

-- no debconf information
attachment: bug.png

Bug#657039: cluster-agents: ocf:heartbeat:Squid fails with default debian config because of ipv4 regexp

2012-01-23 Thread Stefan Voelkel
Package: cluster-agents
Version: 1:1.0.3-3.1
Severity: normal
Tags: ipv6

The ocf:heartbeat:resource agent checks with an ipv4 regexp to see which process
has the configured squid port open.

A default squid3 on squeeze listens on :::$PORT, thus the agent does not detect
the daemon as started and fails it.

Specifying an v4 address in /etc/squid3/squid.conf

http_port 127.0.0.1:8080

fixes this.



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



Bug#633088: revelation: Reproduceable

2011-08-26 Thread Stefan Voelkel
Package: revelation
Version: 0.4.11-9
Severity: normal

I can reproduce this both on squeeze with backported -9 and on wheezy with -9.

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

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

Versions of packages revelation depends on:
ii  gconf22.28.1-6   GNOME configuration database syste
ii  gnome-extra-icons 1.1-2  Optional GNOME icons
ii  gnome-icon-theme  2.30.3-2   GNOME Desktop icon theme
ii  libc6 2.11.2-10  Embedded GNU C Library: Shared lib
ii  libcrack2 2.8.16-4   pro-active password checker librar
ii  python2.6.6-3+squeeze6   interactive high-level object-orie
ii  python-crypto 2.1.0-2cryptographic algorithms and proto
ii  python-gnome2 2.28.1-1   Python bindings for the GNOME desk
ii  python-gnomeapplet2.30.0-4   Python bindings for the GNOME pane
ii  python-gobject2.21.4+is.2.21.3-1 Python bindings for the GObject li
ii  python-gtk2   2.17.0-4   Python bindings for the GTK+ widge
ii  python2.6 2.6.6-8+b1 An interactive high-level object-o
ii  shared-mime-info  0.71-4 FreeDesktop.org shared MIME databa

revelation recommends no packages.

revelation suggests no packages.

-- no debconf information



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



Bug#614370: live-build: sysllinux failes with: mkdir: cannot create directory `': No such file or directory

2011-02-21 Thread Stefan Voelkel
Package: live-build
Version: 2.0.12-2
Severity: normal

This is on Debian Squeeze:

...
P: Begin installing syslinux...
mkdir: cannot create directory `': No such file or directory
P: Begin unmounting filesystems...

Reproduceable with lb clean; lb build. binary.log attached.

Stefan

-- Package-specific info:

-- System Information:
Debian Release: 6.0
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages live-build depends on:
ii  debootstrap   1.0.26 Bootstrap a basic Debian system

Versions of packages live-build recommends:
ii  cpio  2.11-4 GNU cpio -- a program to manage ar
pn  gnu-fdisk none (no description available)

Versions of packages live-build suggests:
ii  dosfstools   3.0.9-1 utilities for making and checking 
ii  fakeroot 1.14.4-1Gives a fake root environment
ii  genisoimage  9:1.1.11-1  Creates ISO-9660 CD-ROM filesystem
ii  grub 0.97-64 GRand Unified Bootloader (dummy pa
ii  memtest86+   4.10-1.1thorough real-mode memory tester
ii  mtools   4.0.12-1Tools for manipulating MSDOS files
pn  parted   none  (no description available)
ii  squashfs-tools   1:4.0-8 Tool to create and append to squas
ii  sudo 1.7.4p4-2.squeeze.1 Provide limited super user privile
ii  syslinux 2:4.02+dfsg-7   collection of boot loaders
pn  uuid-runtime none  (no description available)
pn  win32-loader none  (no description available)

-- no debconf information
P: Setting up cleanup function
P: Begin caching bootstrap stage...
W: skipping bootstrap_cache.restore
P: Begin bootstrapping system...
W: skipping bootstrap
P: Begin caching bootstrap stage...
W: skipping bootstrap_cache.save
P: Begin unmounting filesystems...
P: Setting up cleanup function
P: Begin caching chroot stage...
P: Begin mounting /dev/pts...
W: skipping chroot_devpts
P: Begin mounting /proc...
W: skipping chroot_proc
P: Begin mounting /sys...
W: skipping chroot_sysfs
P: Configuring file /etc/debian_chroot
P: Configuring file /sbin/start-stop-daemon
P: Configuring file /usr/sbin/policy-rc.d
W: skipping chroot_sysv-rc
P: Configuring file /usr/sbin/initctl
W: skipping chroot_upstart
P: Configuring file /etc/hosts
W: skipping chroot_hosts
P: Configuring file /etc/resolv.conf
W: skipping chroot_resolv
P: Configuring file /etc/hostname
W: skipping chroot_hostname
P: Configuring file /etc/apt/apt.conf
W: skipping chroot_apt
P: Configuring file /etc/apt/sources.list
W: skipping chroot_sources
P: Configuring file /etc/kernel-img.conf
P: Begin executing preseed...
P: Begin executing local preseeds...
P: Begin installing tasks...
P: Begin queueing installation of packages lists...
W: skipping chroot_packageslists
P: Begin queueing installation of local packages lists...
P: Begin queueing installation of packages...
W: skipping chroot_packages
P: Begin queueing installation of local packages...
P: Begin installing packages...
W: skipping chroot_install-packages
P: Begin installing localization packages...
W: skipping chroot_localization
P: Begin copying chroot local includes...
P: Begin applying chroot local patches...
P: Configuring package sysvinit
P: Begin executing local hooks...
P: Begin executing hooks...
P: Begin executing hacks...
W: skipping chroot_hacks
P: Deconfiguring file /etc/kernel-img.conf
P: Deconfiguring file /etc/apt/sources.list
Get:1 http://security.debian.org squeeze/updates Release.gpg [835 B]
Ign http://security.debian.org/ squeeze/updates/contrib Translation-en
Ign http://security.debian.org/ squeeze/updates/main Translation-en
Ign http://security.debian.org/ squeeze/updates/non-free Translation-en
Get:2 http://security.debian.org squeeze/updates Release [38.4 kB]
Get:3 http://security.debian.org squeeze/updates/main i386 Packages [24.1 kB]
Get:4 http://security.debian.org squeeze/updates/contrib i386 Packages [14 B]
Get:5 http://cdn.debian.net squeeze Release.gpg [1671 B]
Get:6 http://security.debian.org squeeze/updates/non-free i386 Packages [14 B]
Ign http://cdn.debian.net/debian/ squeeze/contrib Translation-en
Ign http://cdn.debian.net/debian/ squeeze/main Translation-en
Ign http://cdn.debian.net/debian/ squeeze/non-free Translation-en
Get:7 http://cdn.debian.net squeeze-updates Release.gpg [835 B]
Ign http://cdn.debian.net/debian/ squeeze-updates/contrib Translation-en
Ign http://cdn.debian.net/debian/ squeeze-updates/main Translation-en
Ign http://cdn.debian.net/debian/ squeeze-updates/non-free Translation-en
Get:8 http://cdn.debian.net squeeze Release [69.3 kB]
Get:9 http://cdn.debian.net squeeze-updates Release [27.6 

Bug#595096: debian-goodies: false positive: dovecot

2011-01-17 Thread Stefan Voelkel
Package: debian-goodies
Version: 0.47
Followup-For: Bug #595096

Another false positive:

Process /usr/lib/dovecot/imap (PID: 10670)
List of deleted files in use:
/home/***/Maildir/.temp.bc-bd.org.10670.f112b9b7ee63d72f
/home/***/Maildir/.temp.bc-bd.org.10670.f112b9b7ee63d72f (deleted)

  Stefan

-- System Information:
Debian Release: 5.0.7
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages debian-goodies depends on:
ii  curl  7.18.2-8lenny4 Get a file from an HTTP, HTTPS or 
ii  dctrl-tools [grep-dct 2.13.1 Command-line tools to process Debi
ii  less  418-1  Pager program similar to more
ii  lsof  4.78.dfsg.1-4  List open files
ii  python2.5.2-3An interactive high-level object-o
ii  whiptail  0.52.2-11.3+lenny1 Displays user-friendly dialog boxe

debian-goodies recommends no packages.

Versions of packages debian-goodies suggests:
pn  popularity-contestnone (no description available)
ii  xdg-utils 1.0.2-6.1  desktop integration utilities from
pn  zenitynone (no description available)

-- no debconf information



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



Bug#595096: /usr/sbin/checkrestart: false positive: dhcpd

2011-01-17 Thread Stefan Voelkel
Package: debian-goodies
Version: 0.47
Followup-For: Bug #595096

Looks like checkrestart reports a false positive for dhcpd:

bd@fw:~$ ps fax | grep dhcpd
24507 pts/4S+ 0:00  \_ grep dhcpd
bd@fw:~$ sudo /etc/init.d/dhcp start
Starting DHCP server: dhcpd.
bd@fw:~$ sudo checkrestart
Found 1 processes using old versions of upgraded files
(1 distinct program)
(1 distinct packages)

Of these, 1 seem to contain init scripts which can be used to restart them:
The following packages seem to have init scripts that could be used
to restart them:
dhcp:
24521   /usr/sbin/dhcpd

These are the init scripts:
/etc/init.d/dhcp restart

bd@fw:~$ sudo /etc/init.d/dhcp restart
Stopping DHCP server: dhcp.
Starting DHCP server: dhcpd.
bd@fw:~$ sudo checkrestart
Found 1 processes using old versions of upgraded files
(1 distinct program)
(1 distinct packages)

Of these, 1 seem to contain init scripts which can be used to restart them:
The following packages seem to have init scripts that could be used
to restart them:
dhcp:
24547   /usr/sbin/dhcpd

These are the init scripts:
/etc/init.d/dhcp restart

-- System Information:
Debian Release: 5.0.7
  APT prefers stable
  APT policy: (500, 'stable'), (50, 'testing')
Architecture: i386 (i686)

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

Versions of packages debian-goodies depends on:
ii  curl  7.18.2-8lenny4 Get a file from an HTTP, HTTPS or 
ii  dctrl-tools [grep-dct 2.13.1 Command-line tools to process Debi
ii  dialog1.1-20080316-1 Displays user-friendly dialog boxe
ii  less  418-1  Pager program similar to more
ii  lsof  4.78.dfsg.1-4  List open files
ii  python2.5.2-3An interactive high-level object-o
ii  whiptail  0.52.2-11.3+lenny1 Displays user-friendly dialog boxe

debian-goodies recommends no packages.

Versions of packages debian-goodies suggests:
pn  popularity-contestnone (no description available)
ii  xdg-utils 1.0.2-6.1  desktop integration utilities from
pn  zenitynone (no description available)

-- no debconf information



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



Bug#608269: corosync: does not start correctly on boot

2010-12-29 Thread Stefan Voelkel
Package: corosync
Version: 1.2.1-3
Severity: important

After booting the machine, corosync is not started correctly:

 crm_mon -r1

Connection to cluster failed: connection failed

 ps fax | grep corosync
  806 ?Ssl0:01 /usr/sbin/corosync
  818 ?S  0:00  \_ /usr/sbin/corosync
  819 ?S  0:00  \_ /usr/sbin/corosync
  820 ?S  0:00  \_ /usr/sbin/corosync
  821 ?S  0:00  \_ /usr/sbin/corosync
  822 ?S  0:00  \_ /usr/sbin/corosync
  823 ?S  0:00  \_ /usr/sbin/corosync

Stopping is not possible with /etc/init.d/corosync stop

A normal kill is ingnored.

Kiilling with -9, and then starting corosync works though:

 killall -9 corosync
 /etc/init.d/corosync start
Starting corosync daemon: corosync.

 1530 ?Ssl0:00 /usr/sbin/corosync
 1540 ?SLs0:00  \_ /usr/lib/heartbeat/stonithd
 1541 ?S  0:00  \_ /usr/lib/heartbeat/cib
 1542 ?S  0:00  \_ /usr/lib/heartbeat/lrmd
 1543 ?S  0:00  \_ /usr/lib/heartbeat/attrd
 1544 ?S  0:00  \_ /usr/lib/heartbeat/pengine
 1545 ?S  0:00  \_ /usr/lib/heartbeat/crmd

# crm_mon -1

Last updated: Sun Dec 26 14:13:37 2010
Stack: openais
Current DC: NONE
2 Nodes configured, 2 expected votes
4 Resources configured.


OFFLINE: [ sonic futro ]

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

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

Versions of packages corosync depends on:
ii  adduser   3.112+nmu2 add and remove users and groups
ii  libc6 2.11.2-7   Embedded GNU C Library: Shared lib
ii  libcorosync4  1.2.1-3Standards-based cluster framework 
ii  lsb-base  3.2-23.1   Linux Standard Base 3.2 init scrip

corosync recommends no packages.

corosync suggests no packages.

-- Configuration Files:
/etc/corosync/corosync.conf changed:
totem {
version: 2
# How long before declaring a token lost (ms)
token: 3000
# How many token retransmits before forming a new configuration
token_retransmits_before_loss_const: 10
# How long to wait for join messages in the membership protocol (ms)
join: 60
# How long to wait for consensus to be achieved before starting a new 
round of membership configuration (ms)
consensus: 3600
# Turn off the virtual synchrony filter
vsftype: none
# Number of messages that may be sent by one processor on receipt of 
the token
max_messages: 20
# Limit generated nodeids to 31-bits (positive signed integers)
clear_node_high_bit: yes
# Disable encryption
secauth: off
# How many threads to use for encryption/decryption
threads: 0
# Optionally assign a fixed node id (integer)
# nodeid: 1234
# This specifies the mode of redundant ring, which may be none, active, 
or passive.
rrp_mode: none
interface {
# The following values need to be set based on your environment 
ringnumber: 0
bindnetaddr: 10.0.0.0
mcastaddr: 226.94.1.1
mcastport: 5405
}
}
amf {
mode: disabled
}
service {
# Load the Pacemaker Cluster Resource Manager
ver:   0
name:  pacemaker
}
aisexec {
user:   root
group:  root
}
logging {
fileline: off
to_stderr: yes
to_logfile: no
to_syslog: yes
syslog_facility: daemon
debug: off
timestamp: on
logger_subsys {
subsys: AMF
debug: off
tags: enter|leave|trace1|trace2|trace3|trace4|trace6
}
}

/etc/default/corosync changed:
START=yes


-- no debconf information
-- 
Never reveal your best argument.



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



Bug#589163: mongodb: Please enable readline support for mongo shell

2010-07-15 Thread Stefan Voelkel
Package: mongodb
Version: 1:1.4.2-1
Severity: wishlist

Please build depend on libreadline-dev to enable readline support in the mongo
shell.

-- System Information:
Debian Release: 5.0.5
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages mongodb depends on:
ii  adduser3.110 add and remove users and groups
ii  libboost-filesystem1.4 1.40.0-6~bpo50+1  filesystem operations (portable pa
ii  libboost-program-optio 1.40.0-6~bpo50+1  program options library for C++
ii  libboost-system1.40.0  1.40.0-6~bpo50+1  Operating system (e.g. diagnostics
ii  libboost-thread1.40.0  1.40.0-6~bpo50+1  portable C++ multi-threading
ii  libc6  2.7-18lenny4  GNU C Library: Shared libraries
ii  libgcc11:4.3.2-1.1   GCC support library
ii  libmozjs2d 1.9.1.8-4~bpo50+1 The Mozilla SpiderMonkey JavaScrip
ii  libpcre3   7.6-2.1   Perl 5 Compatible Regular Expressi
ii  libpcrecpp07.6-2.1   Perl 5 Compatible Regular Expressi
ii  libstdc++6 4.3.2-1.1 The GNU Standard C++ Library v3

mongodb recommends no packages.

mongodb suggests no packages.

-- no debconf information



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



Bug#583486: libmoosex-yaml-perl: Please update to 0.04

2010-05-27 Thread Stefan Voelkel
Package: libmoosex-yaml-perl
Version: 0.03-1
Severity: wishlist

Hello,

version 0.04 is available please update, thanks.

regards

Stefan


-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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



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



Bug#580504: synergy: Wrong keyboard layout

2010-05-06 Thread Stefan Voelkel
Package: synergy
Version: 1.3.1-5
Severity: normal

Synergy server 1.3.1 on Windows XP german keyboard layout, 1.3.1 client on 
squeeze.

When working on the client, the layout is switched to english.

FWIW upstream seems dead, however there is a fork: synergy+

http://code.google.com/p/synergy-plus/

Stefan

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

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

Versions of packages synergy depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.2-9  GCC support library
ii  libice6   2:1.0.6-1  X11 Inter-Client Exchange library
ii  libsm62:1.1.1-1  X11 Session Management library
ii  libstdc++64.4.2-9The GNU Standard C++ Library v3
ii  libx11-6  2:1.3.3-2  X11 client-side library
ii  libxext6  2:1.1.1-3  X11 miscellaneous extension librar
ii  libxinerama1  2:1.1-3X11 Xinerama extension library
ii  libxtst6  2:1.1.0-2  X11 Testing -- Resource extension 

synergy recommends no packages.

synergy suggests no packages.

-- no debconf information



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



Bug#579225: debian-maintainers: Please add Stefan Völkel to Debian Maintainers keyring

2010-04-26 Thread Stefan Voelkel
Package: debian-maintainers
Version: 1.52
Severity: normal

Please add Stefan Völkel ste...@bc-bd.org to Debian Maintainers keyring.

Thanks,

Stefan

-- 
BOFH excuse #203:

Write-only-memory subsystem too slow for this machine. Contact your local 
dealer.
Recommended-By: Michael Schiansky mich...@schiansky.de
Agreement: http://lists.debian.org/debian-newmaint/2010/04/msg00013.html
Advocates: http://lists.debian.org/debian-newmaint/2010/04/msg00029.html
Comment: Add Stefan Völkel ste...@bc-bd.org as a Debian Maintainer
Date: Mon, 26 Apr 2010 10:36:48 +0200
Action: import
Data: 
  -BEGIN PGP PUBLIC KEY BLOCK-
  Version: GnuPG v1.4.9 (GNU/Linux)
  
  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
  8LbtiNo/ZQCZAaAl4eBv0TY8eU8yNFsEND+jzRc=
  =c/BV
  -END PGP PUBLIC KEY BLOCK-



Bug#453007: xbacklight: Also on nc10

2010-04-19 Thread Stefan Voelkel
Package: xbacklight
Version: 1.1.1-1
Severity: normal

[ I guess the bug's subject is wrong, should be
 
  xbacklight -inc doesn't work, xbacklight -dec and xbacklight -set work

]

On my Samsung nc10 using awesome as windowmanager -inc does not work, -dec and
-set do.

HTH

  Stefan

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

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

Versions of packages xbacklight depends on:
ii  libc6 2.10.2-6   Embedded GNU C Library: Shared lib
ii  libx11-6  2:1.3.3-2  X11 client-side library
ii  libxrandr22:1.3.0-3  X11 RandR extension library
ii  libxrender1   1:0.9.5-2  X Rendering Extension client libra

xbacklight recommends no packages.

xbacklight suggests no packages.

-- no debconf information



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



Bug#577192: apt-listbugs: crashes with `display_bugs_as_html': undefined method `codeset' for Locale:Module (NoMethodError)

2010-04-10 Thread Stefan Voelkel
Package: apt-listbugs
Version: 0.1.3
Severity: normal

Just run an apt-get update  apt-get dist-upgrade:

Retrieving bug reports... Done
Parsing Found/Fixed information... Done
grave bugs of libnss3-1d (3.12.5-2 - 3.12.6-1) unfixed
 #576621 - libnss3-1d: Last upgrade broke flashplugin-nonfree
serious bugs of cryptsetup (2:1.1.0~rc2-1 - 2:1.1.0-2) unfixed
 #576488 - cryptroot: boot script assumes to be run in initramfs
Summary:
 cryptsetup(1 bug), libnss3-1d(1 bug)
Are you sure you want to install/upgrade the above packages? [Y/n/?/...]  w
/usr/share/apt-listbugs/apt-listbugs/logic.rb:588:in `display_bugs_as_html':
undefined method `codeset' for Locale:Module (NoMethodError)
  from /usr/share/apt-listbugs/apt-listbugs/logic.rb:404:in `view'
  from /usr/sbin/apt-listbugs:374
E: Sub-process /usr/sbin/apt-listbugs apt || exit 10 returned an
error code (10)
E: Failure running script /usr/sbin/apt-listbugs apt || exit 10



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

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

Versions of packages apt-listbugs depends on:
ii  apt  0.7.25.3Advanced front-end for dpkg
ii  libdpkg-ruby1.8  0.3.6   modules/classes for dpkg on ruby 1
ii  libgettext-ruby1.8   2.1.0-1 Gettext for ruby1.8
ii  libhttp-access2-ruby1.8  2.1.5.2-2   HTTP accessing library for ruby (t
ii  libruby1.8 [libzlib-ruby1.8] 1.8.7.249-2 Libraries necessary to run Ruby 1.
ii  libxml-parser-ruby1.80.6.8-4 Interface of expat for the scripti
ii  ruby 4.2 An interpreter of object-oriented 

apt-listbugs recommends no packages.

Versions of packages apt-listbugs suggests:
ii  debianutils 3.2.2Miscellaneous utilities specific t
ii  iceweasel [www-browser] 3.5.8-1  Web browser based on Firefox
ii  lynx-cur [www-browser]  2.8.8dev.2-1 Text-mode WWW Browser with NLS sup
ii  reportbug   4.10.2   reports bugs in the Debian distrib
ii  w3m [www-browser]   0.5.2-4  WWW browsable pager with excellent

-- no debconf information



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



Bug#572325: ITP: xjobs -- reads job descriptions line by line and executes them in parallel

2010-03-03 Thread Stefan Voelkel
Package: wnpp
Severity: wishlist
Owner: Stefan Voelkel b...@bc-bd.org


* Package name: xjobs
  Version : 20100203
  Upstream Author : Thomas Maier-Komor tho...@maier-komor.de
* URL : http://www.maier-komor.de/xjobs.html
* License : GPL
  Programming Lang: C
  Description : reads job descriptions line by line and executes them in 
parallel

 It limits the number of parallel executing jobs and starts new jobs when jobs
 finish. Therefore, it combines the arguments from every input line with the
 utility and arguments given on the command line. If no utility is given as an
 argument to xjobs, then the first argument on every job line will be used as
 utility. To execute utility xjobs searches the directories given in the PATH
 environment variable and uses the first file found in these directories.
 .
 xjobs is most useful on multi-processor/core machines when one needs to
 execute several time consuming command several that could possibly be run in
 parallel. With xjobs this can be achieved easily, and it is possible to limit
 the load of the machine to a useful value. It works similar to xargs, but
 starts several processes simultaneously and gives only one line of arguments
 to each utility call.

From the webpage:

Comment on GNU xargs vs. xjobs

Yes, GNU's xargs has an option -P that allow parallelizing jobs. But you must
tell xargs how many arguments to pass to each job, as it doesn't make a
difference between a space and a newline charakter. In consequence each job
issued by xargs must have the same number of arguments, whereas xjobs can
handle different jobs with different commands and different number of
arguments.

Additionally, xjobs support I/O redirection, which makes some applications
possible that cannot be done with GNU's xargs. xjobs also determines the number
of processors automatically, whereas xargs must be told how many processes to
start. Finally, non-GNU xargs (e.g. Solaris' and DEC/Compaq/HP Alpha's) don't
have the option -P. Try to do the following with GNU's xargs with some files
having blanks in their name:

* ls -1 *.mp3 | sed 's/\(.*\)\.mp3/\1.mp3  \1.wav/' | xjobs -- mpg123 
-s

If you aren't convinced yet, just compare the output of unziping multiple zip
files in parallel with xjobs and GNU xargs. xjobs won't intermix the output of
unzip like xargs. Instead it will present the output of each unzip separated
clearly from the other jobs. 

-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)



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



Bug#571236: liblog-handler-perl: missing dependency, needs UNIVERSAL/require.pm

2010-02-24 Thread Stefan Voelkel
Package: liblog-handler-perl
Version: 0.45-1
Severity: important


Looks like liblog-handler-perl needs a dependency on libuniversal-require-perl:

$ sudo apt-get install liblog-handler-perl
Reading package lists... Done
Building dependency tree
Reading state information... Done
The following extra packages will be installed:
  libdevel-backtrace-perl libstring-escape-perl
The following NEW packages will be installed:
  libdevel-backtrace-perl liblog-handler-perl libstring-escape-perl
0 upgraded, 3 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B/150kB of archives.
After this operation, 598kB of additional disk space will be used.
Do you want to continue [Y/n]?
Reading package fields... Done
Reading package status... Done
Retrieving bug reports... Done
Parsing Found/Fixed information... Done
database /var/lib/apt/listchanges.db failed to load.
Selecting previously deselected package libstring-escape-perl.
(Reading database ... 94709 files and directories currently installed.)
Unpacking libstring-escape-perl (from 
.../libstring-escape-perl_2002.001-8_all.deb) ...
Selecting previously deselected package libdevel-backtrace-perl.
Unpacking libdevel-backtrace-perl (from 
.../libdevel-backtrace-perl_0.11-1_all.deb) ...
Selecting previously deselected package liblog-handler-perl.
Unpacking liblog-handler-perl (from .../liblog-handler-perl_0.45-1_all.deb) ...
Processing triggers for man-db ...
Setting up libstring-escape-perl (2002.001-8) ...
Setting up libdevel-backtrace-perl (0.11-1) ...
Setting up liblog-handler-perl (0.45-1) ...
$

--8
#!/usr/bin/perl

use strict;
use warnings;

use Log::Handler;

exit(0);
--8

$ ./log.pl
Can't locate UNIVERSAL/require.pm in @INC (@INC contains: /etc/perl 
/usr/local/lib/perl/5.10.0 /usr/local/share/perl/5.10.0 /usr/lib/perl5 
/usr/share/perl5 /usr/lib/perl/5.10 /usr/share/perl/5.10 
/usr/local/lib/site_perl .) at /usr/share/perl5/Log/Handler.pm line 846.
BEGIN failed--compilation aborted at /usr/share/perl5/Log/Handler.pm line 846.
Compilation failed in require at ./log.pl line 6.
BEGIN failed--compilation aborted at ./log.pl line 6.
$

$ sudo apt-get install libuniversal-require-perl
...
$ ./$log.pl
$

regards

Stefan

-- System Information:
Debian Release: 5.0.4
  APT prefers stable
  APT policy: (500, 'stable')
Architecture: i386 (i686)

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

Versions of packages liblog-handler-perl depends on:
ii  libdevel-backtrace-perl  0.11-1  Object-oriented backtrace
ii  libparams-validate-perl  0.91-2  validate parameters to Perl method
ii  perl 5.10.0-19lenny2 Larry Wall's Practical Extraction 

liblog-handler-perl recommends no packages.

Versions of packages liblog-handler-perl suggests:
ii  libconfig-general-perl2.40-1 Generic Configuration Module
ii  libyaml-perl  0.66-1 YAML Ain't Markup Language (tm)

-- no debconf information



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



Bug#563779: ferm ignores hooks unless config file is newer than last start

2010-01-05 Thread Stefan Voelkel
Package: ferm
Version: 2.0.3-1
Severity: important

Hi,

I have

hook pre echo 0 /proc/sys/net/ipv4/ip_forward;
hook post echo 1 /proc/sys/net/ipv4/ip_forward;

in my /e/f/ferm.conf, however ip forwarding is only enabled if I touch the
config file prior to execution of /e/i/ferm start:

 $ sudo /etc/init.d/ferm reload
 Reloading Firewall configuration..done.

 $ cat /proc/sys/net/ipv4/ip_forward
 0

 $ sudo touch /etc/ferm/ferm.conf
 $ sudo /etc/init.d/ferm reload
 Reloading Firewall configuration..echo 1 /proc/sys/net/ipv4/ip_forward
 done.

 $ cat /proc/sys/net/ipv4/ip_forward
 1

This problem could be related to #548579, this is my /etc/default/ferm

FAST=yes
CACHE=yes
OPTIONS=
ENABLED=yes

and the cached script lacks an echo 1  ...

/var/cache/ferm/start.sh:

echo 0 /proc/sys/net/ipv4/ip_forward
/sbin/iptables-restore EOT
...
COMMIT
EOT

Setting

FAST=no
CACHE=no

solves this problem.

regards

Stefan

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

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

Versions of packages ferm depends on:
ii  debconf  1.5.24  Debian configuration management sy
ii  iptables 1.4.2-6 administration tools for packet fi
ii  lsb-base 3.2-20  Linux Standard Base 3.2 init scrip
ii  perl 5.10.0-19lenny2 Larry Wall's Practical Extraction 

ferm recommends no packages.

ferm suggests no packages.

-- debconf information:
* ferm/enable: false



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



Bug#553439: network-manager: writes wrong path in /etc/resolv.conf

2009-10-31 Thread Stefan Voelkel
Package: network-manager
Version: 0.6.6-3
Severity: minor

NetworkManager this comment block to resolv.conf:

### BEGIN INFO
#
# Modified_by:  NetworkManager
# Process:  /usr/bin/NetworkManager
# Process_id:   2869
#
### END INFO

however the path is wrong:

$ file /usr/bin/NetworkManager
/usr/bin/NetworkManager: ERROR: cannot open `/usr/bin/NetworkManager' (No such 
file or directory)

regards

Stefan

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

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

Versions of packages network-manager depends on:
ii  adduser   3.110  add and remove users and groups
ii  dbus  1.2.1-5+lenny1 simple interprocess messaging syst
ii  dhcdbd3.0-5  D-Bus interface to the ISC DHCP cl
ii  hal   0.5.11-8   Hardware Abstraction Layer
ii  ifupdown  0.6.8+nmu1 high level tools to configure netw
ii  iproute   20080725-2 networking and traffic control too
ii  libc6 2.7-18 GNU C Library: Shared libraries
ii  libdbus-1-3   1.2.1-5+lenny1 simple interprocess messaging syst
ii  libdbus-glib-1-2  0.76-1 simple interprocess messaging syst
ii  libgcrypt11   1.4.1-1LGPL Crypto library - runtime libr
ii  libglib2.0-0  2.20.5-1   The GLib library of C routines
ii  libgpg-error0 1.4-2  library for common error values an
ii  libhal1   0.5.11-8   Hardware Abstraction Layer - share
ii  libiw29   29-1.1 Wireless tools - library
ii  libnl11.1-2  library for dealing with netlink s
ii  libnm-util0   0.6.6-3network management framework (shar
ii  lsb-base  3.2-20 Linux Standard Base 3.2 init scrip
ii  wpasupplicant 0.6.4-3Client support for WPA and WPA2 (I

Versions of packages network-manager recommends:
ii  network-manager-gnome 0.6.6-4network management framework (GNOM

network-manager suggests no packages.

-- no debconf information



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



Bug#546182: Add documentation about specific package build

2009-09-11 Thread Stefan Voelkel
Package: linux-image-2.6.30-bpo.1-686
Version: 2.6.30-6~bpo50+1
Severity: wishlist
Tags: patch


Please add documentation on how to build a specific kernel package

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

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

Versions of packages linux-image-2.6.30-bpo.1-686 depends on:
ii  debconf [debconf-2.0] 1.5.24 Debian configuration management sy
ii  initramfs-tools [linux-initra 0.92o  tools for generating an initramfs
ii  module-init-tools 3.4-1  tools for managing Linux kernel mo

Versions of packages linux-image-2.6.30-bpo.1-686 recommends:
ii  libc6-i6862.7-18 GNU C Library: Shared libraries [i

Versions of packages linux-image-2.6.30-bpo.1-686 suggests:
ii  grub   0.97-47lenny2 GRand Unified Bootloader (Legacy v
pn  linux-doc-2.6.30   none(no description available)

-- debconf information excluded

diff --git a/README.Debian b/README.Debian
index 759f728..2b4cb8a 100644
--- a/README.Debian
+++ b/README.Debian
@@ -24,6 +24,13 @@ given a lower priority for security support. Options marked 
as BROKEN
 or EXPERIMENTAL are of very low priority, and should not be enabled in
 customized builds for a security-sensitive environment.
 
+Building only specific packages
+---
+You can build specific kernel packages by calling debian/rules.gen directly.
+If you for example want to build the -686 image use:
+
+   $ fakeroot make -f debian/rules.gen binary-arch_i386_none_686
+
 Rebuilding Adaptec AIC7xxx/79xx firmware
 
 You can rebuild the firmware for the Adaptec AIC7xxx/79xx SCSI Adapters. To



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



Bug#456185: fglrx-driver: no longer detects graphics card

2007-12-13 Thread Stefan Voelkel
Package: fglrx-driver
Version: 8.43.2-2
Severity: important

The fglrx driver is no longer working for me after the update to 8.43.2-2. X
complains with: (EE) No devices detected.

01:00.0 VGA compatible controller: ATI Technologies Inc M10 NT [FireGL Mobility 
T2] (rev 80) (prog-if 00 [VGA])
Subsystem: IBM Unknown device 054f
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop- ParErr- 
Stepping- SERR+ FastB2B+
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR-
Latency: 66 (2000ns min), Cache Line Size: 32 bytes
Interrupt: pin A routed to IRQ 11
Region 0: Memory at e000 (32-bit, prefetchable) [size=128M]
Region 1: I/O ports at 3000 [size=256]
Region 2: Memory at c010 (32-bit, non-prefetchable) [size=64K]
[virtual] Expansion ROM at c012 [disabled] [size=128K]
Capabilities: [58] AGP version 2.0
Status: RQ=80 Iso- ArqSz=0 Cal=0 SBA+ ITACoh- GART64- HTrans- 
64bit- FW+ AGP3- Rate=x1,x2,x4
Command: RQ=1 ArqSz=0 Cal=0 SBA+ AGP- GART64- 64bit- FW- 
Rate=none
Capabilities: [50] Power Management version 2
Flags: PMEClk- DSI- D1+ D2+ AuxCurrent=0mA 
PME(D0-,D1-,D2-,D3hot-,D3cold-)
Status: D0 PME-Enable- DSel=0 DScale=0 PME-

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

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

Versions of packages fglrx-driver depends on:
ii  libc6 2.7-2  GNU C Library: Shared libraries
ii  libgl1-mesa-glx [libgl1]  7.0.1-2A free implementation of the OpenG
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxrandr22:1.2.2-1  X11 RandR extension library
ii  libxrender1   1:0.9.4-1  X Rendering Extension client libra
ii  xserver-xorg  1:7.3+7the X.Org X server

Versions of packages fglrx-driver recommends:
ii  fglrx-kernel-2 8.43.2-2+2.6.18.dfsg.1-12 ATI binary kernel module for Linux
ii  fglrx-kernel-s 8.43.2-2  kernel module source for the non-f

-- no debconf information
[fglrx] Maximum main memory to use for locked dma buffers: 929 MBytes.
[fglrx] ASYNCIO init succeed!
[fglrx] PAT is enabled successfully!
[fglrx] module loaded - fglrx 8.43.2 [Nov  9 2007] on minor 0

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

Section ServerLayout
Identifier Default Layout
Screen Screen 0 0 0
#   Screen Screen 1 Above Screen 0
InputDeviceGeneric Keyboard
InputDeviceTrackpoint
#   InputDeviceUSB Mouse
EndSection

Section Files

# since xorg7 this is where fonts are
FontPath /usr/share/fonts/X11/100dpi
FontPath /usr/share/fonts/X11/75dpi
FontPath /usr/share/fonts/X11/Type1
FontPath /usr/share/fonts/X11/encodings
FontPath /usr/share/fonts/X11/misc
FontPath /usr/share/fonts/X11/util

# if the local font server has problems, we can fall back on these
# since xorg7.0 this is supposed to no longer be working
#   FontPath unix/:7100
#   FontPath /usr/lib/X11/fonts/misc
#   FontPath /usr/lib/X11/fonts/cyrillic
#   FontPath /usr/lib/X11/fonts/100dpi/:unscaled
#   FontPath /usr/lib/X11/fonts/75dpi/:unscaled
#   FontPath /usr/lib/X11/fonts/Type1
#   FontPath /usr/lib/X11/fonts/CID
#   FontPath /usr/lib/X11/fonts/Speedo
#   FontPath /usr/lib/X11/fonts/100dpi
#   FontPath /usr/lib/X11/fonts/75dpi
EndSection

Section Module
# fails with xorg7
#   Load  GLcore
#   Load  speedo

Load  bitmap
Load  dbe
Load  ddc
Load  dri
Load  extmod
Load  freetype
Load  glx
Load  int10
Load  record
Load  type1
Load  vbe
EndSection

Section InputDevice
Identifier  

Bug#446767: amarok: Segfault wrt USB Stick

2007-10-15 Thread Stefan Voelkel
Package: amarok
Version: 1.4.7-1+b1
Severity: normal


When clicking on Cancel in the New Media Device Popup a Segfault happens and
the following stacktrace is produced:

#0  0xb7b27584 in QValueListPrivateQString::at () from /usr/lib/libamarok.so.0
#1  0xb7cc70f4 in MountPointManager::mediumAdded () from /usr/lib/libamarok.so.0
#2  0xb7cc8665 in MountPointManager::qt_invoke () from /usr/lib/libamarok.so.0
#3  0xb620de50 in QObject::activate_signal () from /usr/lib/libqt-mt.so.3
#4  0xb7c3189d in DeviceManager::mediumAdded () from /usr/lib/libamarok.so.0
#5  0xb7c356a5 in DeviceManager::mediumAdded () from /usr/lib/libamarok.so.0
#6  0xb7e401da in Amarok::DcopDevicesHandler::mediumAdded () from
/usr/lib/libamarok.so.0
#7  0xb7e46c00 in AmarokDevicesInterface::process () from
/usr/lib/libamarok.so.0
#8  0xb5e6f027 in DCOPClient::receive () from /usr/lib/libDCOP.so.4
#9  0xb5e7077b in ?? () from /usr/lib/libDCOP.so.4
#10 0x080bc250 in ?? ()
#11 0xbfa29f14 in ?? ()
#12 0xbfa29f0c in ?? ()
#13 0xbfa29f04 in ?? ()
#14 0xbfa29efc in ?? ()
#15 0xbfa29ef4 in ?? ()
#16 0xbfa29eec in ?? ()
#17 0xb6751651 in ?? () from /lib/i686/cmov/libc.so.6
#18 0xbfa29f1c in ?? ()
#19 0xbfa29f14 in ?? ()
#20 0xbfa29f0c in ?? ()
#21 0xbfa29f04 in ?? ()
#22 0xbfa29efc in ?? ()
#23 0xbfa29ef4 in ?? ()
#24 0xbfa29eec in ?? ()
#25 0x0010 in ?? ()
#26 0xbfa29ec4 in ?? ()
#27 0x0806d0c8 in vtable for QMemArraychar ()
#28 0xb6813edc in ?? () from /lib/i686/cmov/libc.so.6
#29 0x0862a900 in ?? ()
#30 0x0182d150 in ?? ()
#31 0x0001 in ?? ()
#32 0x0001 in ?? ()
#33 0x080b7c48 in ?? ()
#34 0x080b1fc8 in ?? ()
#35 0x080bc250 in ?? ()
#36 0xb6813edc in ?? () from /lib/i686/cmov/libc.so.6
#37 0xb6944ff4 in ?? () from /usr/lib/libstdc++.so.6
#38 0xbfa2a4bc in ?? ()
#39 0x in ?? ()

The USB Stick is no longer present when clicking on Cancel.

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

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

Versions of packages amarok depends on:
ii  amarok-engines  1.4.6-1+b1   output engines for the Amarok audi
ii  amarok-xine [amarok-eng 1.4.7-1+b1   xine engine for the Amarok audio p
ii  kdelibs4c2a 4:3.5.7.dfsg.1-4 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-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  libgcc1 1:4.2.1-3GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.1-1  A free implementation of the OpenG
ii  libglib2.0-02.14.1-5 The GLib library of C routines
ii  libgpod20.5.2-2  a library to read and write songs 
ii  libice6 2:1.0.3-3X11 Inter-Client Exchange library
ii  libidn111.0-0GNU libidn library, implementation
ii  libifp4 1.0.0.2-3communicate with iRiver iFP audio 
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libkarma0   0.0.6-2  Rio Karma access library [runtime 
ii  libmtp6 0.2.2-2  Media Transfer Protocol (MTP) libr
ii  libmysqlclient15off 5.0.45-1 MySQL database client library
ii  libnjb5 2.2.5-4.1Creative Labs Nomad Jukebox librar
ii  libpng12-0  1.2.15~beta5-2   PNG library - runtime
ii  libpq5  8.2.4-3  PostgreSQL C client library
ii  libqt3-mt   3:3.3.7-6Qt GUI Library (Threaded runtime v
ii  libruby1.8  1.8.6.36-1   Libraries necessary to run Ruby 1.
ii  libsdl1.2debian 1.2.11-9 Simple DirectMedia Layer
ii  libsm6  2:1.0.3-1+b1 X11 Session Management library
ii  libsqlite3-03.4.2-2  SQLite 3 shared library
ii  libstdc++6  4.2.1-3  The GNU Standard C++ Library v3
ii  libtag1c2a  1.4-8+b1 TagLib Audio Meta-Data Library
ii  libtagc01.4-8+b1 TagLib Audio Meta-Data Library (C 
ii  libtunepimp50.5.3-4+b1   MusicBrainz tagging library
ii  libusb-0.1-42:0.1.12-7   userspace USB programming library
ii  libvisual-0.4-0 0.4.0-1.1Audio visualization framework
ii  libx11-62:1.0.3-7X11 client-side library
ii  libxcursor1 1:1.1.8-2X cursor management library
ii  libxext61:1.0.3-2X11 miscellaneous extension librar
ii  libxft2 2.1.12-2

Bug#441823: scorched3d: SEGFAULT on start

2007-09-11 Thread Stefan Voelkel
Package: scorched3d
Version: 40.1d.dfsg-1
Severity: normal


scorched3d crashes on start on my IBM Thinkpad T42p:

01:00.0 VGA compatible controller: ATI Technologies Inc M10 NT [FireGL Mobility 
T2] (rev 80) (prog-if 00 [VGA])
Subsystem: IBM Unknown device 054f
Flags: bus master, fast Back2Back, 66MHz, medium devsel, latency 255, 
IRQ 11
Memory at e000 (32-bit, prefetchable) [size=128M]
I/O ports at 3000 [size=256]
Memory at c010 (32-bit, non-prefetchable) [size=64K]
[virtual] Expansion ROM at c012 [disabled] [size=128K]
Capabilities: [58] AGP version 2.0
Capabilities: [50] Power Management version 2

#0  0xb7403ab0 in wcsncpy () from /lib/i686/cmov/libc.so.6
No symbol table info available.
#1  0xbe6b in wxGetUserName () from /usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#2  0xb77764f9 in wxGetUserName () from /usr/lib/libwx_baseu-2.6.so.0
No symbol table info available.
#3  0x081d0d9f in parseCommandLine (argc=2, argv=0xbffb1724) at main.cpp:76
osDesc = {wxStringBase = {static npos = 4294967295,
m_pchData = 0x83626a4}, No data fields}
userName = {wxStringBase = {static npos = 4294967295,
m_pchData = 0x8362704}, No data fields}
aParser = {_vptr.ARGParser = 0x8274578, argMap_ = {_M_t = {
  _M_impl = {std::allocatorstd::_Rb_tree_nodestd::pairconst 
std::basic_stringchar, std::char_traitschar, std::allocatorchar , 
ARGParser::Entry   = 
{__gnu_cxx::new_allocatorstd::_Rb_tree_nodestd::pairconst 
std::basic_stringchar, std::char_traitschar, std::allocatorchar , 
ARGParser::Entry   = {No data fields}, No data fields},
_M_key_compare = { = {No data fields}, No data fields}, _M_header 
= {
  _M_color = std::_S_red, _M_parent = 0x835ebf8, _M_left = 0x835ee18,
  _M_right = 0x835e848}, _M_node_count = 15
dirs = {_vptr.ModDirs = 0x1f,
  dirs_ = {std::_List_baseModInfo,std::allocatorModInfo  = {
  _M_impl = {std::allocatorstd::_List_nodeModInfo  = 
{__gnu_cxx::new_allocatorstd::_List_nodeModInfo  = {No data fields}, 
No data fields}, _M_node = {_M_next = 0x377cc22,
  _M_prev = 0xb74d0ff4}}}, No data fields}}
#4  0x081d0f7e in main (argc=2, argv=0x0) at main.cpp:121
checkfile = value optimized out
initFlags = value optimized out
#5  0xb73a3050 in __libc_start_main () from /lib/i686/cmov/libc.so.6
No symbol table info available.
#6  0x0805b041 in _start () at ../sysdeps/i386/elf/start.S:119

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

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

Versions of packages scorched3d depends on:
ii  libalut01.1.0-1  OpenAL Utility Toolkit
ii  libc6   2.6.1-1+b1   GNU C Library: Shared libraries
ii  libfreetype62.3.5-1+b1   FreeType 2 font engine, shared lib
ii  libgcc1 1:4.2.1-3GCC support library
ii  libgl1-mesa-glx [libgl1 7.0.1-1  A free implementation of the OpenG
ii  libglu1-mesa [libglu1]  7.0.1-1  The OpenGL utility library (GLU)
ii  libogg0 1.1.3-2  Ogg Bitstream Library
ii  libopenal0a 1:0.0.8-6OpenAL is a portable library for 3
ii  libsdl-net1.2   1.2.5-7+b1   network library for Simple DirectM
ii  libsdl1.2debian 1.2.11-9 Simple DirectMedia Layer
ii  libstdc++6  4.2.1-3  The GNU Standard C++ Library v3
ii  libvorbis0a 1.2.0.dfsg-1 The Vorbis General Audio Compressi
ii  libvorbisfile3  1.2.0.dfsg-1 The Vorbis General Audio Compressi
ii  libwxbase2.6-0  2.6.3.2.1.5  wxBase library (runtime) - non-GUI
ii  libwxgtk2.6-0   2.6.3.2.1.5  wxWidgets Cross-platform C++ GUI t
ii  scorched3d-data 40.1d.dfsg-1 data files for Scorched3D game
ii  zlib1g  1:1.2.3.3.dfsg-5 compression library - runtime

scorched3d recommends no packages.

-- no debconf information



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



Bug#440173: conflicting file with openarena-server

2007-08-30 Thread Stefan Voelkel
Package: openarena
Version: 0.7.0-1
Severity: important


I just tried to update openarena and openarena-server which resulted in this
error:

dpkg: error processing /var/cache/apt/archives/openarena_0.7.0-1_i386.deb
(--unpack):
 trying to overwrite `/usr/share/doc/openarena-server/changelog.gz', which is
 also in package openarena-server
 Preparing to replace openarena-server 0.6.0-4+b1 (using
 .../openarena-server_0.7.0-1_i386.deb) ...
 Unpacking replacement openarena-server ...
 Errors were encountered while processing:
  /var/cache/apt/archives/openarena_0.7.0-1_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

regards
Stefan

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

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

Versions of packages openarena depends on:
ii  libc6 2.6.1-1+b1 GNU C Library: Shared libraries
ii  libcurl3-gnutls   7.16.4-2   Multi-protocol file transfer libra
ii  libopenal0a   1:0.0.8-6  OpenAL is a portable library for 3
ii  libsdl1.2debian   1.2.11-9   Simple DirectMedia Layer
pn  openarena-datanone (no description available)

openarena recommends no packages.

-- no debconf information


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



Bug#319221: du * | xdiskusage leads do segfault

2005-07-20 Thread Stefan Voelkel
Subject: du * | xdiskusage leads do segfault
Package: xdiskusage
Version: 1.48-4
Severity: normal

Hi,

$ du * | xdiskusage; echo $?
Segmentation fault
139

$ du | xdiskusage; echo $?
0

$ du *  du
$ gdb xdiskusage

(gdb) r  du
Starting program: /usr/bin/xdiskusage  du
(no debugging symbols found)
...
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread 16384 (LWP 25901)]
(no debugging symbols found)
...
(no debugging symbols found)

Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 16384 (LWP 25901)]
0x0804bda6 in ?? ()
(gdb) bt
#0  0x0804bda6 in ?? ()
#1  0x0804c3ef in ?? ()
#2  0x400472c2 in Fl_Window::flush () from /usr/lib/libfltk.so.1.1
#3  0x40045e4f in Fl::flush () from /usr/lib/libfltk.so.1.1
#4  0x40045a55 in Fl::wait () from /usr/lib/libfltk.so.1.1
#5  0x40045b6b in Fl::run () from /usr/lib/libfltk.so.1.1
#6  0x0804ad46 in ?? ()
#7  0x40378e36 in __libc_start_main () from /lib/libc.so.6
#8  0x08049ce1 in ?? ()

regards
  Stefan

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.4.27-2-386
Locale: LANG=en_US, LC_CTYPE=en_US (charmap=ISO-8859-1)

Versions of packages xdiskusage depends on:
ii  libc62.3.2.ds1-22GNU C Library: Shared
libraries an
ii  libfltk1.1c102   1.1.6-5 Fast Light Toolkit shared
librarie
ii  libgcc1  1:3.4.3-13  GCC support library
ii  libstdc++5   1:3.3.5-13  The GNU Standard C++ Library
v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol
client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous
exte
ii  xlibmesa-gl [libgl1] 4.3.0.dfsg.1-14 Mesa 3D graphics library
[XFree86]
ii  xlibmesa-glu [libglu1]   4.3.0.dfsg.1-14 Mesa OpenGL utility library
[XFree
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB)
configu

-- no debconf information


-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



Bug#300117: revelation: Don't start

2005-03-21 Thread Stefan Voelkel
Hello,

 Hello,

 I found the problem.

Please append the commands to the bug you used to solve the problem, that
way we have the solution documented in the bts. I'll close the bug
afterwards.

regards
  Stefan
-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



Bug#300117: revelation: Don't start

2005-03-18 Thread Stefan Voelkel
Hello,

please try this and send us the output:

$ python
 import gnome
 gnome.libgnome_module_info_get()
GnomeModuleInfo at 0x807e840

Do you get a GnomeModuleInfo at xxx message, or an error?

-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



Bug#297612: revelation: xnest Test

2005-03-15 Thread Stefan Voelkel
Hi,

 I've got a workaround.

thanks for the tip, another person had the same problem with his window
manager (wmi) and could also start revelatoin after running
gnome-theme-manager.

I'll try to get hold of the gnome maintainers...

regards

  Stefan
-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



Bug#297612: revelation: xnest Test

2005-03-14 Thread Stefan Voelkel
Hello,

I now have a seconde report of that problem, although with another window
manager: wmi.

I am getting the feeling that the problem is Gnome-WM / Non-Gnome-WM
related.

Could you run a Gnome WM (for example metacity) in an Xnest Window and test
revelation there?

regards
  Stefan

-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



Bug#297612: revelation: Revelation stopped to work after upgrade

2005-03-02 Thread Stefan Voelkel
Hi,

 pixbuf = self.theme.load_icon(icon, pixelsize, 0)
 GError: Ikona gnome-fs-directory jest nieobecna w motywie (is not
 present in motive?)

The needed icon should be provided by the package gnome-icon-theme.

AFAICS you do have this package installed:

Versions of packages revelation depends on:
ii  gnome-icon-theme  2.8.0-3GNOME Desktop icon theme

Do you use the default gnome icon theme or another one?
If not could you please try the default theme?

Could you please check that the file gnome-fs-directory.png present at
these places:

usr/share/icons/gnome/12x12/filesystems/gnome-fs-directory.png
usr/share/icons/gnome/24x24/filesystems/gnome-fs-directory.png
usr/share/icons/gnome/36x36/filesystems/gnome-fs-directory.png
usr/share/icons/gnome/48x48/filesystems/gnome-fs-directory.png
usr/share/icons/gnome/72x72/filesystems/gnome-fs-directory.png
usr/share/icons/gnome/96x96/filesystems/gnome-fs-directory.png

regards
  Stefan

-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-



Bug#293720: revelation: Add a field for arbitrary notes, please.

2005-02-07 Thread Stefan Voelkel
Hi,

FYI

Comment #1 by Erik Grinaker  at 2005-02-07 15:17 CET:
Thanks - this is planned for version 0.5.0, as it will require changes to
the file format.

regards
  Stefan

-- 
Stefan Völkel[EMAIL PROTECTED]
Millenux GmbH  mobile: +49.170.79177.17
Lilienthalstraße 2  phone: +49.711.88770.300
70825 Stuttgart-Korntal   fax: +49.711.88770.349
 -= linux without limits -=- http://linux.zSeries.org/ =-