Bug#1031390: curl: Can not be installed because of wrong version of libcurl4

2023-02-16 Thread DaB.
Package: curl
Version: 7.74.0-1.3+deb11u5
Severity: important

Dear Maintainer,

I can’t install curl on a fresh install of Debian 11.6.

Curl demands version 7.74.0-1.3+deb11u3 of libcurl4 but version 
7.74.0-1.3+deb11u5 was installed by bullseye-security.

The solution in my eyes would be to change the demand in curl.

Thanks for your work!

Sincerley,
DaB.


-- System Information:
Debian Release: 11.6
  APT prefers stable-updates
  APT policy: (910, 'stable-updates'), (900, 'stable'), (500, 'stable-security')
Architecture: amd64 (x86_64)

Kernel: Linux 5.10.0-21-amd64 (SMP w/16 CPU threads)
Kernel taint flags: TAINT_FIRMWARE_WORKAROUND
Locale: LANG=en_GB.UTF-8, LC_CTYPE=en_GB.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8), LANGUAGE=en_GB:en
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages curl depends on:
ii  libc6 2.31-13+deb11u5
ii  libcurl4  7.74.0-1.3+deb11u5
ii  zlib1g1:1.2.11.dfsg-2+deb11u2

curl recommends no packages.

curl suggests no packages.


Bug#1030094: linux-headers-amd64: DKMS fails to build - missing evdi-dkms

2023-01-30 Thread DAB
Package: linux-headers-amd64
Version: 6.1.7-1
Severity: normal
Tags: newcomer
X-Debbugs-Cc: macda...@gmail.com

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
apt upgrade attempted to install linux-headers v 6.1.4 through 6.1.7 failed to
configure. the error came from DKMS build

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
examining the logs i saw it was something with evdi. i searched and found a
package evdi-dkms which seemed appropriate. i installed that and it fixed the
problem.

   * What was the outcome of this action?
the build failed and prevented boot without reverting to a previous version of
the kernel

   * What outcome did you expect instead?
if the package is needed, it should be flagged as a dependency

*** End of the template - remove these template lines ***


-- System Information:
Debian Release: bookworm/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (100, 
'bullseye-fasttrack'), (100, 'bullseye-backports-staging')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 6.0.0-6-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages linux-headers-amd64 depends on:
ii  linux-headers-6.1.0-2-amd64  6.1.7-1

linux-headers-amd64 recommends no packages.

linux-headers-amd64 suggests no packages.

-- no debconf information



Bug#1019689: aptsources: comments in /usr/lib/os-release cause parsing crash

2022-09-13 Thread DAB
Package: aptsources
Version: python-apt
Severity: normal
Tags: patch
X-Debbugs-Cc: macda...@gmail.com

Dear Maintainer,


   * What led up to the situation?

adding a commented line to /usr/lib/os-release

   * What exactly did you do (or not do) that was effective (or
 ineffective)?

ran `add-apt-repository` command

   * What was the outcome of this action?

an error:

```
Traceback (most recent call last):
  File "/usr/bin/add-apt-repository", line 11, in 
from softwareproperties.SoftwareProperties import SoftwareProperties,
shortcut_handler
  File "/usr/lib/python3/dist-
packages/softwareproperties/SoftwareProperties.py", line 57, in 
from . import shortcuts
  File "/usr/lib/python3/dist-packages/softwareproperties/shortcuts.py", line
23, in 
_DEF_CODENAME = aptsources.distro.get_distro().codename
  File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 580, in
get_distro
os_release = _OSRelease()
  File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 526, in
__init__
self.parse()
  File "/usr/lib/python3/dist-packages/aptsources/distro.py", line 551, in
parse
self.parse_entry(*line.split('=', 1))
TypeError: _OSRelease.parse_entry() missing 1 required positional argument:
'value'
```

   * What outcome did you expect instead?

the program should continue without stopping


patch:

diff --git a/aptsources/distro.py b/aptsources/distro.py
index df9bc2f5..f38907fb 100644
--- a/aptsources/distro.py
+++ b/aptsources/distro.py
@@ -545,6 +545,8 @@ class _OSRelease:
 line = line.strip()
 if not line:
 continue
+if line[0] == "#":
+continue
 self.parse_entry(*line.split('=', 1))
 f.close()



-- System Information:
Debian Release: bookworm/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (100, 
'bullseye-fasttrack'), (100, 'bullseye-backports-staging')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.19.0-1-amd64 (SMP w/16 CPU threads; PREEMPT)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled
diff --git a/aptsources/distro.py b/aptsources/distro.py
index df9bc2f5..f38907fb 100644
--- a/aptsources/distro.py
+++ b/aptsources/distro.py
@@ -545,6 +545,8 @@ class _OSRelease:
 line = line.strip()
 if not line:
 continue
+if line[0] == "#":
+continue
 self.parse_entry(*line.split('=', 1))
 f.close()
 
diff --git a/aptsources/distro.py b/aptsources/distro.py
index df9bc2f5..f38907fb 100644
--- a/aptsources/distro.py
+++ b/aptsources/distro.py
@@ -545,6 +545,8 @@ class _OSRelease:
 line = line.strip()
 if not line:
 continue
+if line[0] == "#":
+continue
 self.parse_entry(*line.split('=', 1))
 f.close()
 


Bug#998740: kde-telepathy: Connection to XMPP is not possible

2021-11-07 Thread DaB.
Package: kde-telepathy
Version: 20.08.0.1
Severity: normal

Dear Maintainer,

I just installed telepathy and wanted connect to my xmpp-account. My main 
account is at jabber.ccc.de.
I inserted the needed data and also player with the SSL-settings but no matter 
what it does not connect (some times it even crashes).
I sniffed the connection with tshark and I can see some packages moving between 
the server and the client, but not many.
I tried to use the account with Pidgin and it works, so it is not the server (a 
tshark of the connection shows many more packages too).
I also created a new account at another provider (jabber.no) and it also not 
works with Telepathy.
Somewhere I read to also try it with Empathy and it also not works in both 
cases. So I guess it is something in a library.

It would be nice if you could take a look, because I want to move away from 
Pidgin.

Thank you very much.

Sincerley,
DaB.



-- System Information:
Debian Release: 11.1
  APT prefers stable-security
  APT policy: (901, 'stable-security'), (900, 'stable'), (400, 'oldstable'), 
(300, 'oldoldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 5.10.0-8-amd64 (SMP w/16 CPU threads)
Kernel taint flags: TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8), LANGUAGE=de
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages kde-telepathy depends on:
ii  kde-telepathy-call-ui   20.08.0-1
ii  kde-telepathy-desktop-applets   20.08.0-1
ii  kde-telepathy-filetransfer-handler  20.08.0-1
ii  kde-telepathy-minimal   20.08.0.1
ii  kde-telepathy-send-file 20.08.0-1
ii  plasma-runner-telepathy-contact 20.08.0-1

kde-telepathy recommends no packages.

kde-telepathy suggests no packages.

-- debconf-show failed



Bug#867115: smplayer crashes with "Error parsing option noquiet (option not found)"

2017-07-03 Thread Daniel 'DaB.' Baur
Package: smplayer
Version: 16.11.0~ds0-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

after the update to Debian Stretch, which makes smplayer using mpv instead 
of mplayer, the smplayer does not work anymore.

Any file I try to open, smplayer crashes with "Error parsing option noquiet 
(option not found)". The problems seems to be, that mpv doesn’t have the 
same options that mplayer had, but smplayer does not respect this.

AFAIS you were told in #783401 that this would happen, but somehow this 
was ignored.

Could this please be fixed or reverted back? Currently smplayer is pretty 
useless in Debian.

Sincerely,
DaB.


-- System Information:
Debian Release: 9.0
  APT prefers stable
  APT policy: (900, 'stable'), (500, 'oldstable-updates'), (300, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8), LANGUAGE=de (charmap=UTF-8) (ignored: LC_ALL set to 
de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages smplayer depends on:
ii  libc6 2.24-11+deb9u1
ii  libgcc1   1:6.3.0-18
ii  libgl1-mesa-glx [libgl1]  13.0.6-1+b2
ii  libqt5core5a  5.7.1+dfsg-3+b1
ii  libqt5dbus5   5.7.1+dfsg-3+b1
ii  libqt5gui55.7.1+dfsg-3+b1
ii  libqt5network55.7.1+dfsg-3+b1
ii  libqt5script5 5.7.1~20161021+dfsg-2
ii  libqt5widgets55.7.1+dfsg-3+b1
ii  libqt5xml55.7.1+dfsg-3+b1
ii  libstdc++66.3.0-18
ii  libx11-6  2:1.6.4-3
ii  libxext6  2:1.3.3-1+b2
ii  mpv   0.23.0-2+b2
ii  zlib1g1:1.2.8.dfsg-5

Versions of packages smplayer recommends:
ii  smplayer-l10n16.11.0~ds0-1
ii  smplayer-themes  1:16.8.0-1

smplayer suggests no packages.

-- no debconf information


Bug#866807: kopete: Can not connect due to missing auth-mechanism

2017-07-01 Thread Daniel 'DaB.' Baur
Package: kopete
Version: 4:16.08.1-3
Severity: important

Dear Maintainer,

I updated today from Debian Jessie to Debian Stretch. Unfortunantly now kopete 
is not long able to connect to my XMPP-accout at jabber.ccc.de :-(.

It worked perfectly before the update, and I did not changed my config – in 
fact: pidgig is still able to connect on my laptop (which was not updated yet).

Upon start, kopete tells me that “no appropriate authentication mechanism [is] 
avaible”. The XML-console tells me that PLAIN, X-OAUTH2 and SCRAM-SHA1 would be 
possible (see below).


http://jabber.org/protocol/caps; 
node="http://www.process-one.net/en/ejabberd/; 
ver="8TBgyHso9WGvSCtDfDqtKZKKD8E=" hash="sha-1"/>
http://jabber.org/features/iq-register"/>
http://jabber.org/features/compress;>
zlib


PLAIN
X-OAUTH2
SCRAM-SHA-1



I have the feeling that I miss a libary or something, but I could not find 
which. I also tried to start with a clean config, but it changed nothing.

Please tell me if I did something wrong, or you need more infos. 

Sincerely,
DaB.


-- System Information:
Debian Release: 9.0
  APT prefers stable
  APT policy: (900, 'stable'), (500, 'oldstable-updates'), (300, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8), LANGUAGE=de (charmap=UTF-8) (ignored: LC_ALL set to 
de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages kopete depends on:
ii  kde-runtime 4:16.08.3-2
ii  libc6   2.24-11+deb9u1
ii  libexpat1   2.2.0-2+deb9u1
ii  libgadu31:1.12.1-4
ii  libglib2.0-02.50.3-2
ii  libidn111.33-1
ii  libkabc44:4.14.10-7+b2
ii  libkcmutils44:4.14.26-2
ii  libkde3support4 4:4.14.26-2
ii  libkdecore5 4:4.14.26-2
ii  libkdeui5   4:4.14.26-2
ii  libkdnssd4  4:4.14.26-2
ii  libkemoticons4  4:4.14.26-2
ii  libkhtml5   4:4.14.26-2
ii  libkio5 4:4.14.26-2
ii  libknewstuff2-4 4:4.14.26-2
ii  libknotifyconfig4   4:4.14.26-2
ii  libkopete4  4:16.08.1-3
ii  libkparts4  4:4.14.26-2
ii  libkpimidentities4  4:4.14.10-7+b2
ii  libmeanwhile1   1.0.2-9
ii  libmediastreamer-base3  3.6.1-3
ii  libortp93.6.1-3
ii  libotr5 4.1.1-2
ii  libphonon4  4:4.9.0-4
ii  libqca2 2.1.1-4+b2
ii  libqimageblitz4 1:0.0.6-4+b2
ii  libqt4-dbus 4:4.8.7+dfsg-11
ii  libqt4-network  4:4.8.7+dfsg-11
ii  libqt4-qt3support   4:4.8.7+dfsg-11
ii  libqt4-sql  4:4.8.7+dfsg-11
ii  libqt4-xml  4:4.8.7+dfsg-11
ii  libqtcore4  4:4.8.7+dfsg-11
ii  libqtgui4   4:4.8.7+dfsg-11
ii  libsolid4   4:4.14.26-2
ii  libsrtp01.4.5~20130609~dfsg-2
ii  libssl1.0.2 1.0.2l-2
ii  libstdc++6  6.3.0-18
ii  libv4l-01.12.3-1
ii  libx11-62:1.6.4-3
ii  libxml2 2.9.4+dfsg1-2.2
ii  libxslt1.1  1.1.29-2.1
ii  perl5.24.1-3
ii  phonon  4:4.9.0-4
ii  zlib1g  1:1.2.8.dfsg-5

Versions of packages kopete recommends:
ii  kdepim-runtime   4:16.04.2-2+b2
ii  libqca2-plugin-ossl  2.1.1-4+b2
ii  libqt4-sql-sqlite4:4.8.7+dfsg-11

Versions of packages kopete suggests:
ii  imagemagick  8:6.9.7.4+dfsg-11
ii  imagemagick-6.q16 [imagemagick]  8:6.9.7.4+dfsg-11
pn  kdeartwork-emoticons 
ii  khelpcenter  4:16.08.3-1
ii  texlive-latex-base   2016.20170123-5

-- no debconf information


Bug#838765: openssl: Last upgrade broke TLS for Outlook under XP

2016-09-24 Thread DaB.
Package: openssl
Version: 1.0.1t-1+deb8u4
Severity: normal

Dear Maintainer,

tonights update of OpenSSL (1.0.1t-1+deb8u3, 1.0.1t-1+deb8u4) broke the
connection between an Outlook 2007 (12.0.6744.500) under Windows XP and 
a postfix under Debian.

See the following log of a connection-try:

-- beginn ---

Sep 23 11:26:42 hermes postfix/smtpd[30240]: setting up TLS connection from
X.Y.Z.invalid[10.X.Y.Z]
Sep 23 11:26:42 hermes postfix/smtpd[30240]:
X.Y.Z.invalid[10.X.Y.Z]: TLS cipher list
"aNULL:-aNULL:ALL:!EXPORT:!LOW:!MEDIUM:+RC4:@STRENGTH"
Sep 23 11:26:42 hermes postfix/smtpd[30240]: SSL_accept:before/accept
initialization
Sep 23 11:26:42 hermes postfix/smtpd[30240]: SSL3 alert
write:fatal:handshake failure
Sep 23 11:26:42 hermes postfix/smtpd[30240]: SSL_accept:error in error
Sep 23 11:26:42 hermes postfix/smtpd[30240]: SSL_accept:error in error
Sep 23 11:26:42 hermes postfix/smtpd[30240]: SSL_accept error from
X.Y.Z.invalid[10.X.Y.Z]: -1
Sep 23 11:26:42 hermes postfix/smtpd[30240]: warning: TLS library problem:
error:1408A0C1:SSL routines:SSL3_GET_CLIENT_HELLO:no shared
cipher:s3_srvr.c:1440:
Sep 23 11:26:42 hermes postfix/smtpd[30240]: lost connection after STARTTLS
from X.Y.Z.invalid[10.X.Y.Z]

-- end ---

The connection worked fine yesterday and no change was done at Outlook or
Postfix.

The TSL-config in postfix is the following (shortened):

-- beginn ---

smtpd_use_tls=yes
smtp_tls_security_level = may
smtp_tls_loglevel = 1
smtpd_tls_loglevel = 1

smtpd_tls_mandatory_protocols = !SSLv2 !SSLv3
smtp_tls_mandatory_protocols = !SSLv2 !SSLv3
smtp_tls_protocols = !SSLv2, !SSLv3
smtpd_tls_protocols = !SSLv2 !SSLv3

tls_preempt_cipherlist  = yes
smtpd_tls_mandatory_ciphers = high
smtpd_tls_ciphers   = medium

smtp_tls_mandatory_ciphers  = $smtpd_tls_mandatory_ciphers
smtp_tls_ciphers= $smtpd_tls_ciphers

smtpd_tls_eecdh_grade = strong

-- end ---


Of course I’m willing to submit further information if needed.

Sincererly,
DaB.

-- System Information:
Debian Release: 8.4
  APT prefers oldstable
  APT policy: (900, 'oldstable'), (400, 'stable'), (301, 'oldoldstable')
Architecture: i386 (i686)

Kernel: Linux 3.16.0-4-686-pae (SMP w/2 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/bash
Init: sysvinit (via /sbin/init)

Versions of packages openssl depends on:
ii  libc62.19-18+deb8u4
ii  libssl1.0.0  1.0.1t-1+deb8u4

openssl recommends no packages.

Versions of packages openssl suggests:
ii  ca-certificates  20130119+deb7u1

-- no debconf information



Bug#807591: scdaemon: pcsc-wrapper crashes at start-up

2015-12-10 Thread Daniel 'DaB.' Baur
Package: scdaemon
Version: 2.0.26-6
Severity: important

Dear Maintainer,

I have a ReinerSCt-card-reader for online-banking with KMyMoney. The problem
is, that at start-up the follwoing process is created:

xxx4135   1  0 15:47 ?00:00:00 pcsc-wrapper -- 1 libpcsclite.so.1

and as long as the process is running, KMyMoney can not communicate with the
card-reader (it asks to insert the card over and over again). If I kill the
process with -9 (normal killing is not working) everything works fine.

I will be happy to provide more data, if needed.

Thanks in advantage.

Sincereley,
DaB.


-- System Information:
Debian Release: 8.2
  APT prefers stable
  APT policy: (900, 'stable'), (400, 'testing'), (300, 'oldstable')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: sysvinit (via /sbin/init)

Versions of packages scdaemon depends on:
ii  libassuan0 2.1.2-2
ii  libc6  2.19-18+deb8u1
ii  libgcrypt201.6.3-2
ii  libgpg-error0  1.17-3
ii  libksba8   1.3.2-1
ii  libpth20   2.0.7-20
ii  libusb-0.1-4   2:0.1.12-25

scdaemon recommends no packages.

scdaemon suggests no packages.

-- no debconf information



Bug#783957: /usr/sbin/zonesigner: Incrementation failed on domains with a number

2015-05-01 Thread Daniel 'DaB.' Baur
Package: dnssec-tools
Version: 1.13-1
Severity: important
File: /usr/sbin/zonesigner

Hello,
the zonesigner fails to increment domains with a number in it. Instead of 
raising the number of the serial, it just (poorly) increased the number 
in the domain-name.
To fix this for configs with the serial on a different line, the following 
change can be made in lines 2976 and 2978:

--snip---
for(; $ind+1  @lines; $ind++)
{
my $line = $lines[$ind+1];
--snap---
.
For configs that have the serial on the same line, the hereustic have to 
improved.

Sincerely,
DaB.



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

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

Versions of packages dnssec-tools depends on:
ii  bind9utils 1:9.8.4.dfsg.P1-6+nmu2+deb7u4 Utilities for BIND
ii  libmailtoo 2.06-1Manipulate email in perl programs
ii  libnet-dns 0.66-2+b2 Perform DNS queries from a Perl sc
ii  libnet-dns 0.16-2DNSSEC extension to NET::DNS
ii  libtimedat 1.2000-1  collection of modules to manipulat
ii  perl   5.14.2-21+deb7u2  Larry Wall's Practical Extraction 

Versions of packages dnssec-tools recommends:
ii  bind9  1:9.8.4.dfsg.P1-6+nmu2+deb7u4 Internet Domain Name Server

dnssec-tools 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#738464: lighttpd: Init script returns exit 4 for status when not running

2014-02-09 Thread Daniel 'DaB.' Baur
Package: lighttpd
Version: 1.4.28-2+squeeze1.5
Severity: normal
Tags: patch

Hello,

/etc/init.d/lighttpd status returns a 4 if lighttpd is not
running. This habbens because its pid-file can not be found. The 
return-code of 4 confuses the pacemaker/corosync here, so I had to patch
the init-file localy to return a 3 if there is no pid-file. Maybe you could  
include it in a coming version.

Thanks for your great service :-).

Sincerley,
DaB.

--patch starts ---
--- /tmp/lighttpd   2013-02-16 16:18:05.0 +
+++ /etc/init.d/lighttpd2014-02-09 20:20:25.0 +
@@ -93,6 +96,10 @@
 $0 start
 ;;
 status)
+   if [ ! -e ${PIDFILE} ]; then
+   echo Not running.
+   exit 3
+   fi
 status_of_proc -p $PIDFILE $DAEMON lighttpd  exit 0 || exit $?
 ;;
 *)


--patch ends ---



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

Kernel: Linux 3.2.0-4-686-pae (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 lighttpd depends on:
ii  libattr1   1:2.4.44-2Extended attribute shared library
ii  libbz2-1.0 1.0.5-6+squeeze1  high-quality block-sorting file co
ii  libc6  2.13-38   Embedded GNU C Library: Shared lib
ii  libfam02.7.0-17  Client library to control the FAM 
ii  libldap-2.4-2  2.4.23-7.3OpenLDAP libraries
ii  libpcre3   8.02-1.1  Perl 5 Compatible Regular Expressi
ii  libssl0.9.80.9.8o-4squeeze14 SSL shared libraries
ii  libterm-readline-perl- 1.0303-1  Perl implementation of Readline li
ii  lsb-base   3.2-23.2squeeze1  Linux Standard Base 3.2 init scrip
ii  mime-support   3.48-1MIME files 'mime.types'  'mailcap
ii  zlib1g 1:1.2.3.4.dfsg-3  compression library - runtime

Versions of packages lighttpd recommends:
ii  spawn-fcgi1.6.3-1A fastcgi process spawner

Versions of packages lighttpd suggests:
ii  apache2-utils 2.2.16-6+squeeze11 utility programs for webservers
ii  openssl   0.9.8o-4squeeze14  Secure Socket Layer (SSL) binary a
pn  rrdtool   none (no description available)

-- Configuration Files:
/etc/init.d/lighttpd changed [not included]

-- 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#738465: puppetmaster: Init script returns exit 4 for status when not running

2014-02-09 Thread Daniel 'DaB.' Baur
Package: puppetmaster
Version: 2.7.23-1~deb7u3
Severity: normal
Tags: patch

Hello,

/etc/init.d/puppetmaster status returns a 4 if the puppet-master is not
running. This habbens because its pid-file can not be found. The
return-code of 4 confuses the pacemaker/corosync here, so I had to patch
the init-file localy to return a 3 if there is no pid-file. Maybe you could
include it in a coming version.

Thanks for your great service :-).

Sincerley,
DaB.

--patch starts ---
--- /tmp/puppetmaster   2014-01-13 19:03:52.0 +
+++ /etc/init.d/puppetmaster2014-02-09 20:24:57.0 +
@@ -52,6 +52,10 @@
 }
 
 status_puppet_master() {
+if [ ! -e /var/run/puppet/${NAME}.pid ]; then
+   echo Not running.
+exit 3
+fi   
 status_of_proc -p /var/run/puppet/${NAME}.pid ${DAEMON} ${NAME}
 }

--patch ends ---

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

Kernel: Linux 3.2.0-4-686-pae (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 puppetmaster depends on:
ii  puppetmaster-common 2.7.23-1~deb7u3  Puppet master common scripts
ii  ruby1.8 1.8.7.358-7.1+deb7u1 Interpreter of object-oriented scr

puppetmaster recommends no packages.

puppetmaster suggests no packages.

-- Configuration Files:
/etc/default/puppetmaster changed [not included]
/etc/init.d/puppetmaster changed [not included]

-- 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#517717: Works in 2.7.1 too

2013-08-20 Thread Daniel 'DaB.' Baur
Hello,

works in the version of testing (2.7) too.

Sincerely,
DaB.



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


Bug#687162: grub-probe: fails with error: no such disk.

2012-09-10 Thread Daniel 'DaB.' Baur
Package: grub-pc
Version: 1.99-22.1
Severity: important

Dear Maintainer,

if I run update-grub2 on my nearly fresh installed system, it fails (there
is no update at /boot at all AFAIS). The problem seems to be grub-probe,
maybe in a combination with grub-mount.

--snip--

root@dabpc:~# LC_ALL=C update-grub2
Generating grub.cfg ...
Found linux image: /boot/vmlinuz-3.2.0-3-amd64
Found initrd image: /boot/initrd.img-3.2.0-3-amd64
grub-probe: error: no such disk.
grub-probe: error: no such disk.
grub-probe: error: no such disk.
done
root@dabpc:~# ps -ef|grep grub|grep root
root 10564 1  0 14:12 ?00:00:00 grub-mount
/dev/mapper/ssd0-var /var/lib/os-prober/mount
root 11868 25408  0 14:17 pts/000:00:00 grep grub
root@dabpc:~# 

--snapp--

My /boot is a primary partition (/dev/sda1), / is on a LVM.

Sincerely,
DaB.

-- Package-specific info:

*** BEGIN /proc/mounts
/dev/mapper/ssd0-root / ext4 
rw,relatime,errors=remount-ro,user_xattr,acl,barrier=1,data=ordered 0 0
/dev/sda1 /boot ext3 rw,relatime,errors=continue,barrier=1,data=ordered 0 0
/dev/mapper/ssd0-usr /usr ext4 
rw,relatime,user_xattr,acl,barrier=1,data=ordered 0 0
/dev/mapper/ssd0-home /home ext4 rw,relatime,user_xattr,barrier=1,data=ordered 
0 0
/dev/mapper/vg0-var /var ext4 rw,relatime,user_xattr,barrier=1,data=ordered 0 0
/dev/mapper/vg0-home /mnt/oldhome ext3 
rw,relatime,errors=continue,barrier=1,data=ordered 0 0
*** END /proc/mounts

*** BEGIN /boot/grub/device.map
(hd0)   /dev/disk/by-id/ata-KINGSTON_SV200S364G_223A32I4KATK
*** END /boot/grub/device.map

*** BEGIN /boot/grub/grub.cfg
#
# DO NOT EDIT THIS FILE
#
# It is automatically generated by grub-mkconfig using templates
# from /etc/grub.d and settings from /etc/default/grub
#

### BEGIN /etc/grub.d/00_header ###
if [ -s $prefix/grubenv ]; then
  load_env
fi
set default=0
if [ ${prev_saved_entry} ]; then
  set saved_entry=${prev_saved_entry}
  save_env saved_entry
  set prev_saved_entry=
  save_env prev_saved_entry
  set boot_once=true
fi

function savedefault {
  if [ -z ${boot_once} ]; then
saved_entry=${chosen}
save_env saved_entry
  fi
}

function load_video {
  insmod vbe
  insmod vga
  insmod video_bochs
  insmod video_cirrus
}

set timeout=5
### END /etc/grub.d/00_header ###

### BEGIN /etc/grub.d/05_debian_theme ###
set menu_color_normal=cyan/blue
set menu_color_highlight=white/blue
### END /etc/grub.d/05_debian_theme ###

### BEGIN /etc/grub.d/10_linux ###
menuentry 'Debian GNU/Linux, with Linux 3.2.0-3-amd64' --class debian --class 
gnu-linux --class gnu --class os {
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 
89309671-c989-4e8b-ae27-831008f2b4b7
echo'Loading Linux 3.2.0-3-amd64 ...'
linux   /vmlinuz-3.2.0-3-amd64 root=/dev/mapper/ssd0-root ro  quiet
echo'Loading initial ramdisk ...'
initrd  /initrd.img-3.2.0-3-amd64
}
menuentry 'Debian GNU/Linux, with Linux 3.2.0-3-amd64 (recovery mode)' --class 
debian --class gnu-linux --class gnu --class os {
insmod gzio
insmod part_msdos
insmod ext2
set root='(hd0,msdos1)'
search --no-floppy --fs-uuid --set=root 
89309671-c989-4e8b-ae27-831008f2b4b7
echo'Loading Linux 3.2.0-3-amd64 ...'
linux   /vmlinuz-3.2.0-3-amd64 root=/dev/mapper/ssd0-root ro single 
echo'Loading initial ramdisk ...'
initrd  /initrd.img-3.2.0-3-amd64
}
### END /etc/grub.d/10_linux ###

### BEGIN /etc/grub.d/20_linux_xen ###
### END /etc/grub.d/20_linux_xen ###

### BEGIN /etc/grub.d/30_os-prober ###
### END /etc/grub.d/30_os-prober ###

### BEGIN /etc/grub.d/40_custom ###
# This file provides an easy way to add custom menu entries.  Simply type the
# menu entries you want to add after this comment.  Be careful not to change
# the 'exec tail' line above.
### END /etc/grub.d/40_custom ###

### BEGIN /etc/grub.d/41_custom ###
if [ -f  $prefix/custom.cfg ]; then
  source $prefix/custom.cfg;
fi
### END /etc/grub.d/41_custom ###
*** END /boot/grub/grub.cfg

*** BEGIN /proc/mdstat
Personalities : [raid1] 
md0 : active raid1 sdb3[0] sdc3[1]
  484472128 blocks [2/2] [UU]
  
unused devices: none
*** END /proc/mdstat

*** BEGIN LVM

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

Kernel: Linux 3.2.0-3-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages grub-pc depends on:
ii  debconf [debconf-2.0]  1.5.46
ii  grub-common1.99-22.1
ii  grub-pc-bin1.99-22.1
ii  grub2-common   1.99-22.1
ii  ucf

Bug#662844: Same problem here

2012-04-02 Thread Daniel 'DaB.' Baur
Hello,

I have the same problem here; amarok version: 2.5.0-1 of testing. Can this 
please fixed, my ears would VERY appreciate it :-).

Sincerely,
DaB.



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


Bug#658632: lm-sensors: VIA-i2c-bus is not searched by sensors-detect anymore

2012-02-05 Thread Daniel 'DaB.' Baur
Hello,

thanks for your answer.

Am Sonntag 05 Februar 2012, 17:49:28 schrieb Aurelien Jarno:
 The best way to start would be to load the i2c-viapro module in both
 2.6.26 and 2.6.32 kernels and look at the reported kernel messages.
 The best is to first remove the module and then load it again so that
 the messages are not lost in the middle of the others. So in short, can
 you send me the output of the following command on both kernels?
 
   rmmod i2c-viapro ; modprobe i2c-viapro ; dmesg | grep tail

Produces no output on both kernels (I also tried a version with tail -n 5 
instead of grep tail). Also nothing in the syslog. Do I have to set any 
debug-switches?

Sincerly,
DaB.



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


Bug#658632: lm-sensors: VIA-i2c-bus is not searched by sensors-detect anymore

2012-02-04 Thread dab
Package: lm-sensors
Version: 1:3.1.2-6
Severity: important

Hello,
I today updated the kernel of this box from lenny to squeeze. The problem
is, that now sensors doesn't woek anymore and sensors-detect can not find
any sensors anymore. If I reboot back to the old kernel (2.6.26) everything
works fine again. I am not sure if that is the problem of lmsensors or the
kernel-package, so if the bug is wrong here, please move it or just tell me.
Below you find the output of sensors-detect of the old and the new kernel. I
also discovered that the via82cxxx-module is not longer in the kernel, but I
am unsure if that is a problem. If you have any questions or need more data,
just ask.

Thank you very much,
DaB.

-- Output of sensors-detect on 2.6.26-2-686 --
hermes:/home/dab# sensors-detect 
# sensors-detect revision 5818 (2010-01-18 17:22:07 +0100)
# System: EliteGroup Computer Systems CO.,LTD Elite BX

This program will help you determine which kernel modules you need
to load to use lm_sensors most effectively. It is generally safe
and recommended to accept the default answers to all questions,
unless you know what you're doing.

Some south bridges, CPUs or memory controllers contain embedded sensors.
Do you want to scan for them? This is totally safe. (YES/no): 
Silicon Integrated Systems SIS5595...   No
VIA VT82C686 Integrated Sensors...  No
VIA VT8231 Integrated Sensors...No
AMD K8 thermal sensors...   No
AMD Family 10h thermal sensors...   No
AMD Family 11h thermal sensors...   No
Intel Core family thermal sensor... No
Intel Atom thermal sensor...No
Intel AMB FB-DIMM thermal sensor... No
VIA C7 thermal sensor...No
VIA Nano thermal sensor...  No

Some Super I/O chips contain embedded sensors. We have to write to
standard I/O ports to probe them. This is usually safe.
Do you want to scan for Super I/O sensors? (YES/no): 
Probing for Super-I/O at 0x2e/0x2f
Trying family `National Semiconductor'...   No
Trying family `SMSC'... No
Trying family `VIA/Winbond/Nuvoton/Fintek'...   No
Trying family `ITE'...  No
Probing for Super-I/O at 0x4e/0x4f
Trying family `National Semiconductor'...   No
Trying family `SMSC'... No
Trying family `VIA/Winbond/Nuvoton/Fintek'...   No
Trying family `ITE'...  No

Some systems (mainly servers) implement IPMI, a set of common interfaces
through which system health data may be retrieved, amongst other things.
We first try to get the information from SMBIOS. If we don't find it
there, we have to read from arbitrary I/O ports to probe for such
interfaces. This is normally safe. Do you want to scan for IPMI
interfaces? (YES/no): 
Probing for `IPMI BMC KCS' at 0xca0...  No
Probing for `IPMI BMC SMIC' at 0xca8... No

Some hardware monitoring chips are accessible through the ISA I/O ports.
We have to write to arbitrary I/O ports to probe them. This is usually
safe though. Yes, you do have ISA I/O ports even if you do not have any
ISA slots! Do you want to scan the ISA I/O ports? (YES/no): 
Probing for `National Semiconductor LM78' at 0x290...   No
Probing for `National Semiconductor LM79' at 0x290...   No
Probing for `Winbond W83781D' at 0x290...   No
Probing for `Winbond W83782D' at 0x290...   No

Lastly, we can probe the I2C/SMBus adapters for connected hardware
monitoring devices. This is the most risky part, and while it works
reasonably well on most systems, it has been reported to cause trouble
on some systems.
Do you want to probe the I2C/SMBus adapters now? (YES/no): 
Using driver `i2c-viapro' for device :00:07.3: VIA Technologies VT82C596
Apollo ACPI
Module i2c-dev loaded successfully.

Next adapter: SMBus Via Pro adapter at 5000 (i2c-0)
Do you want to scan it? (YES/no/selectively): 
Client found at address 0x2d
Handled by driver `gl520sm' (already loaded), chip type `gl520sm'
Client found at address 0x50
Probing for `Analog Devices ADM1033'... No
Probing for `Analog Devices ADM1034'... No
Probing for `SPD EEPROM'... Yes
(confidence 8, not a hardware monitoring chip)
Probing for `EDID EEPROM'...No
Client found at address 0x51
Probing for `Analog Devices ADM1033'... No
Probing for `Analog Devices ADM1034'... No
Probing for `SPD EEPROM'... Yes
(confidence 8, not a hardware monitoring chip)

Now follows a summary of the probes I have

Bug#650851: 650851

2011-12-04 Thread Daniel 'DaB.' Baur
Hello,

yes looks fine now.

Sincerly,
DaB.



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


Bug#650851: Same proble here

2011-12-03 Thread Daniel 'DaB.' Baur
Hello,
same problem here with several boxes. All runing lenny and are 32bit. Looks 
like the file on the server is corrupt.

Sincerly,
DaB.



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


Bug#645823: nvidia-kernel-legacy-173xx-dkms: Does not work with linux 3.0

2011-10-18 Thread Daniel 'DaB.' Baur
Package: nvidia-kernel-legacy-173xx-dkms
Version: 173.14.27-2
Severity: grave
Justification: renders package unusable

From the DKMS-Log:
quote
DKMS make.log for nvidia-173.14.27 for kernel 3.0.0-1-486 (i686)
Di 18. Okt 21:44:40 CEST 2011
make: Entering directory `/var/lib/dkms/nvidia/173.14.27/build'
make -C /lib/modules/3.0.0-1-486/build  M=`/bin/pwd` modules
make[1]: Entering directory `/usr/src/linux-headers-3.0.0-1-486'
/var/lib/dkms/nvidia/173.14.27/build/Makefile:162: *** Only 2.6.x and later
/kernels are supported (3.0.0).  Schluss.
make[3]: *** [_module_/var/lib/dkms/nvidia/173.14.27/build] Fehler 2
make[2]: *** [sub-make] Fehler 2
make[1]: *** [all] Fehler 2
make[1]: Leaving directory `/usr/src/linux-headers-3.0.0-1-486'
make: *** [modules] Fehler 2
make: Leaving directory `/var/lib/dkms/nvidia/173.14.27/build'
/quote

-- Package-specific info:
uname -a:
Linux dabnotebook 3.0.0-1-486 #1 Sat Aug 27 15:56:48 UTC 2011 i686 GNU/Linux

/proc/version:
Linux version 3.0.0-1-486 (Debian 3.0.0-3) (b...@decadent.org.uk) (gcc version 
4.5.3 (Debian 4.5.3-8) ) #1 Sat Aug 27 15:56:48 UTC 2011

lspci 'VGA compatible controller [0300]':
01:00.0 VGA compatible controller [0300]: nVidia Corporation NV34M [GeForce FX 
Go5200 64M] [10de:0324] (rev a1) (prog-if 00 [VGA controller])
Subsystem: Dell Device [1028:019c]
Control: I/O+ Mem+ BusMaster+ SpecCycle- MemWINV- VGASnoop+ ParErr- 
Stepping- SERR- FastB2B- DisINTx-
Status: Cap+ 66MHz+ UDF- FastB2B+ ParErr- DEVSEL=medium TAbort- 
TAbort- MAbort- SERR- PERR- INTx-
Latency: 32 (1250ns min, 250ns max)
Interrupt: pin A routed to IRQ 11
Region 0: Memory at fc00 (32-bit, non-prefetchable) [size=16M]
Region 1: Memory at d000 (32-bit, prefetchable) [size=256M]
Expansion ROM at fd00 [disabled] [size=128K]
Capabilities: access denied


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

Kernel: Linux 3.0.0-1-486
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/dash

Versions of packages nvidia-kernel-legacy-173xx-dkms depends on:
ii  dkms  2.2.0.2-1 
ii  nvidia-kernel-common  20100522+1

Versions of packages nvidia-kernel-legacy-173xx-dkms recommends:
pn  nvidia-glx-legacy-173xx  none

nvidia-kernel-legacy-173xx-dkms suggests no packages.

Versions of packages nvidia-glx-legacy-173xx depends on:
pn  dpkg1.16.1
pn  libgl1-nvidia-legacy-173xx-glx  none
pn  nvidia-alternative-legacy-173xx none
pn  nvidia-installer-cleanup20110729+2
pn  nvidia-kernel-173.14.30 none
pn  nvidia-support  20110729+2
pn  xserver-xorg-video-nvidia-legacy-173xx  none

Versions of packages nvidia-glx-legacy-173xx suggests:
ii  nvidia-settings  280.13-1

Versions of packages nvidia-kernel-legacy-173xx-dkms is related to:
ii  binutils   2.21.90.20111004-2
ii  binutils-gold  none
ii  linux-headers-2.6  none
ii  nvidia-glx-legacy-173xxnone
ii  nvidia-kernel-common   20100522+1
ii  nvidia-kernel-legacy-173xx-dkms173.14.27-2   
ii  nvidia-kernel-legacy-173xx-source  none
ii  xserver-xorg   1:7.5+8   
ii  xserver-xorg-core  2:1.7.7-13

-- debconf-show failed



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



Bug#632566: glx-alternative-nvidia: nvidia's GLX is not set as a alternative for glx

2011-07-03 Thread Daniel 'DaB.' Baur
Package: glx-alternative-nvidia
Version: 0.1.3
Severity: grave
Justification: renders package unusable

Hello,
the yesterday update-run broke my system. The X-server is not starting
anymore, because it misses the nvidia-driver. Because the nvidia driver is
still there and the yesterday-update removed/changed GLX-packages, I guess
the problem is at the changing of the GLX-system.
I noticed, that

17:30:24root@dabpc:~# update-alternatives --list glx
/usr/lib/mesa-diverted

lists only mesa but no nvidia, so I guess there is a problem with the
alternative-trigger. The trigger-file for nvidia in the source-package is
rather short (compared with the for mesa or fglrx), so I guess it is
incomplete. I noticed that a similar problem was there with fglrx (Bug
631680).

Thanks for your time.

Sincerly,
DaB.

-- Package-specific info:
Diversions:
diversion of /usr/lib/libGL.so to /usr/lib/mesa-diverted/libGL.so by 
glx-diversions
diversion of /usr/lib/libGL.so.1 to /usr/lib/mesa-diverted/libGL.so.1 by 
glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1 to 
/usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1 by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1.2 to 
/usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so to 
/usr/lib/mesa-diverted/i386-linux-gnu/libGL.so by glx-diversions
diversion of /usr/lib/i386-linux-gnu/libGL.so.1.2 to 
/usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1.2 by glx-diversions
diversion of /usr/lib/xorg/modules/extensions/libglx.so to 
/usr/lib/mesa-diverted/libglx.so by glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so.1 to 
/usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so.1 by glx-diversions
diversion of /usr/lib/libGL.so.1.2 to /usr/lib/mesa-diverted/libGL.so.1.2 by 
glx-diversions
diversion of /usr/lib/x86_64-linux-gnu/libGL.so to 
/usr/lib/mesa-diverted/x86_64-linux-gnu/libGL.so by glx-diversions
diversion of /usr/lib/debug/usr/lib/xorg/modules/extensions/libglx.so to 
/usr/lib/mesa-diverted/libglx.so.dbg by glx-diversions

/usr/lib/mesa-diverted:
total 500
drwxr-xr-x   4 root root   4096 Jul  3 16:33 .
drwxr-xr-x 241 root root 172032 Jul  3 16:52 ..
drwxr-xr-x   2 root root   4096 Jul  3 16:33 i386-linux-gnu
lrwxrwxrwx   1 root root 25 Jul  3 16:33 libGLso - 
/etc/alternatives/libGLso
-rw-r--r--   1 root root 315608 Jun 17 19:11 libglx.so
drwxr-xr-x   2 root root   4096 Jun 29 19:27 x86_64-linux-gnu

/usr/lib/mesa-diverted/i386-linux-gnu/:
total 396
drwxr-xr-x 2 root root   4096 Jul  3 16:33 .
drwxr-xr-x 4 root root   4096 Jul  3 16:33 ..
lrwxrwxrwx 1 root root 10 Jun 19 19:02 libGL.so - libGL.so.1
lrwxrwxrwx 1 root root 12 Jun 19 19:02 libGL.so.1 - libGL.so.1.2
-rw-r--r-- 1 root root 391184 Jun 19 19:02 libGL.so.1.2

/usr/lib/mesa-diverted/libGLso/:
total 500
drwxr-xr-x   4 root root   4096 Jul  3 16:33 .
drwxr-xr-x 241 root root 172032 Jul  3 16:52 ..
drwxr-xr-x   2 root root   4096 Jul  3 16:33 i386-linux-gnu
lrwxrwxrwx   1 root root 25 Jul  3 16:33 libGLso - 
/etc/alternatives/libGLso
-rw-r--r--   1 root root 315608 Jun 17 19:11 libglx.so
drwxr-xr-x   2 root root   4096 Jun 29 19:27 x86_64-linux-gnu

/usr/lib/mesa-diverted/x86_64-linux-gnu/:
total 8
drwxr-xr-x 2 root root 4096 Jun 29 19:27 .
drwxr-xr-x 4 root root 4096 Jul  3 16:33 ..

Alternative 'glx':
glx - auto mode
  link currently points to /usr/lib/mesa-diverted
/usr/lib/mesa-diverted - priority 5
  slave glx--libGL.so.1-i386-linux-gnu: 
/usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1
  slave glx--libglx.so: /usr/lib/mesa-diverted/libglx.so
Current 'best' version is '/usr/lib/mesa-diverted'.

lrwxrwxrwx 1 root root 22 Jul  3 16:52 /etc/alternatives/glx - 
/usr/lib/mesa-diverted
lrwxrwxrwx 1 root root 46 Jul  3 16:33 
/etc/alternatives/glx--libGL.so-i386-linux-gnu - 
/usr/lib/mesa-diverted/i386-linux-gnu/libGL.so
lrwxrwxrwx 1 root root 48 Jul  3 16:52 
/etc/alternatives/glx--libGL.so.1-i386-linux-gnu - 
/usr/lib/mesa-diverted/i386-linux-gnu/libGL.so.1
lrwxrwxrwx 1 root root 32 Jul  3 16:52 /etc/alternatives/glx--libglx.so - 
/usr/lib/mesa-diverted/libglx.so

File System:
lrwxrwxrwx 1 root root 32 Jul  3 16:52 
/usr/lib/xorg/modules/extensions/libglx.so - /etc/alternatives/glx--libglx.so
-rw-r--r-- 1 root root 426497 Jul 18  2008 
/usr/lib/xorg/modules/extensions/libglx.so.173.14.09
-rw-r--r-- 1 root root 426657 Aug 15  2008 
/usr/lib/xorg/modules/extensions/libglx.so.debian
-rw-r--r-- 1 root root 424173 Jun  1  2007 
/usr/lib/xorg/modules/extensions/libglx.so.old


-- System Information:
Debian Release: wheezy/sid
  APT prefers testing
  APT policy: (900, 'testing'), (400, 'stable'), (100, 'unstable')
Architecture: i386 (i686)

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

Versions of packages glx-alternative-nvidia depends on:
ii  glx-alternative-mesa

Bug#632566: glx-alternative-nvidia: nvidia's GLX is not set as a alternative for glx

2011-07-03 Thread Daniel 'DaB.' Baur
Hello,
Am Sonntag 03 Juli 2011, 18:51:30 schrieben Sie:
 
 I don't see any nvidia driver packages installed on your machine. So no
 alternative registered.

the nvidia-driver is installed via DKMS.

  lists only mesa but no nvidia, so I guess there is a problem with the
  alternative-trigger. The trigger-file for nvidia in the source-package is
  rather short (compared with the for mesa or fglrx), so I guess it is
  incomplete. I noticed that a similar problem was there with fglrx (Bug
  631680).
 
 No, it's sufficient, because it's a two stage trigger, the file-triggers
 all belong to nvidia-alternative.

ok, sorry for the misunderstanding by me.

 
  lrwxrwxrwx 1 root root 32 Jul  3 16:52
  /usr/lib/xorg/modules/extensions/libglx.so -
  /etc/alternatives/glx--libglx.so -rw-r--r-- 1 root root 426497 Jul 18 
  2008 /usr/lib/xorg/modules/extensions/libglx.so.173.14.09 -rw-r--r-- 1
  root root 426657 Aug 15  2008
  /usr/lib/xorg/modules/extensions/libglx.so.debian -rw-r--r-- 1 root root
  424173 Jun  1  2007 /usr/lib/xorg/modules/extensions/libglx.so.old
 
 There seem to be some ancient files from unknown sources lying around:
 /usr/lib/xorg/modules/extensions/libglx.so.*

I deleted them, but it doesn't helped of corse. What helped in the end: 
Installing libgl1-nvidia-glx from unstable and installing xserver-xorg-video-
nvidia from unstable too.

I guess this bug can be closed now. Thanks for your time and help :-).

 
 Andreas

Sincerly,
DaB.



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


Bug#610111: /sbin/ip6tables: Man-page-error: icmp-port-unreachable has to be icmp6-port-unreachable

2011-01-15 Thread Daniel 'DaB.' Baur
Package: iptables
Version: 1.4.2-6
Severity: normal
File: /sbin/ip6tables

Hello,
the man-page of ip6tables says at TARGET EXTENSIONS/REJECT/--reject-with that
icmp-port-unreachable is a valid option. But ip6tables thinks otherwise:

quote
hobbes:~# ip6tables -A INPUT -p tcp --dport 9898 -j REJECT --reject-with 
icmp-port-unreachable
ip6tables v1.4.2: unknown reject type `icmp-port-unreachable'
Try `ip6tables -h' or 'ip6tables --help' for more information.
/quote


icmp6-port-unreachable seems to work:

quote
hobbes:~# ip6tables -A INPUT -p tcp --dport 9898 -j REJECT --reject-with 
icmp6-port-unreachable
hobbes:~#
/quote

So I guess the man-page needs a correction.

Sincerly,
DaB.


-- System Information:
Debian Release: 5.0.6
  APT prefers stable
  APT policy: (900, 'stable'), (400, 'testing')
Architecture: i386 (i586)

Kernel: Linux 2.6.26-2-486
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages iptables depends on:
ii  libc6   2.7-18lenny4 GNU C Library: Shared libraries

iptables recommends no packages.

iptables 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#586242: mytop: Crashes with 'Error in option spec: long|!' at startup

2010-06-17 Thread Daniel 'DaB.' Baur
Hello,
Am Donnerstag 17 Juni 2010, 20:03:55 schrieb Dmitry E. Oboukhov:
 tags 586242 unreproducible moreinfo
 thanks
 
 It isn't debian's bug: there is no line
  long|!= \$config{long_nums},
 
 there is correct line:
  long!   = \$config{long_nums},

r...@nightshade:~/tmp$ wget 
http://ftp.ch.debian.org/debian/pool/main/m/mytop/mytop_1.6-4_all.deb;
--2010-06-17 18:47:25--  
http://ftp.ch.debian.org/debian/pool/main/m/mytop/mytop_1.6-4_all.deb
Resolving ftp.ch.debian.org... 129.132.86.210
Connecting to ftp.ch.debian.org|129.132.86.210|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 33548 (33K) [application/x-debian-package]
Saving to: `mytop_1.6-4_all.deb'

100%[]
 
33,548  --.-K/s   in 0.06s   

2010-06-17 18:47:25 (555 KB/s) - `mytop_1.6-4_all.deb' saved [33548/33548]

r...@nightshade:~/tmp$ dpkg -x mytop_1.6-4_all.deb .
r...@nightshade:~/tmp$ ls -l
total 33
-rw-r--r-- 1 rdab admins 33548 2008-05-08 05:32 mytop_1.6-4_all.deb
drwxr-xr-x 4 rdab admins96 2008-05-08 05:24 usr
r...@nightshade:~/tmp$ grep 'long|!' usr/bin/mytop
long|!  = \$config{long_nums},


 
 
 I use mytop everyday and don't know what I should do to reproduce this
 crash.
 

We use it everyday too, and until yesterday it worked ;-). But as you can see 
above, the line IS in your package (maybe it was there all the time and nobody 
noticed and now a libery became more strict?).

Sincerly,
DaB.


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


Bug#554349: Problem still occures in testing

2009-12-31 Thread Daniel 'DaB.' Baur
Hello all,

yesterday and today the bug hits me. I'm running debian testing (with a few 
sid-packages and a few stables).  apt-get update -o Acquire::Pdiffs=false 
work-arrounded the problem.


Sincerly,
DaB.


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


Bug#517717: amarok: It's impossible to go back in playlist with global keys if album-random-mode is enabled

2009-03-01 Thread Daniel 'DaB.' Baur
Package: amarok
Version: 1.4.10-2
Severity: normal

Hello,
it is impossible to use the globalkeys to go back in playlist if 
album-random-mode is
enabled. Instead the same song starts again. It is no problem to go forward
in playlist in this mode. And it is no problem to go back if the
normal-random-mode is enabled. It is also possible to go back in playlist
with album-random-mode with the GUI-buttons.

Thanking you in anticipation.

Sincerly,
DaB.


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

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

Versions of packages amarok depends on:
ii  amarok-common1.4.10-2architecture independent files for
ii  amarok-engine-xi 1.4.10-2Xine engine for the Amarok audio p
ii  amarok-engine-ya 1.4.10-2Yauap engine for the Amarok audio 
ii  kdelibs4c2a  4:3.5.10.dfsg.1-0lenny1 core libraries and binaries for al
ii  libc62.7-18  GNU C Library: Shared libraries
ii  libgcc1  1:4.3.2-1.1 GCC support library
ii  libgl1-mesa-glx  7.0.3-7 A free implementation of the OpenG
ii  libglib2.0-0 2.16.6-1The GLib library of C routines
ii  libgpod3 0.6.0-6 library to read and write songs an
ii  libifp4  1.0.0.2-3   communicate with iRiver iFP audio 
ii  libkarma00.0.6-4 Rio Karma access library [runtime 
ii  libmtp7  0.2.6.1-3   Media Transfer Protocol (MTP) libr
ii  libmysqlclient15 5.0.51a-24  MySQL database client library
ii  libnjb5  2.2.5-4.2   Creative Labs Nomad Jukebox librar
ii  libpq5   8.3.6-1 PostgreSQL C client library
ii  libqt3-mt3:3.3.8b-5+b1   Qt GUI Library (Threaded runtime v
ii  libruby1.8   1.8.7.72-3  Libraries necessary to run Ruby 1.
ii  libsdl1.2debian  1.2.13-2Simple DirectMedia Layer
ii  libsqlite3-0 3.5.9-6 SQLite 3 shared library
ii  libstdc++6   4.3.2-1.1   The GNU Standard C++ Library v3
ii  libtag1c2a   1.5-3   TagLib Audio Meta-Data Library
ii  libtunepimp5 0.5.3-7 MusicBrainz tagging library
ii  libusb-0.1-4 2:0.1.12-13 userspace USB programming library
ii  libvisual-0.4-0  0.4.0-2.1   Audio visualization framework
ii  unzip5.52-12 De-archiver for .zip files

Versions of packages amarok recommends:
ii  amarok-konqsidebar1.4.10-2   Amarok sidebar for konqueror 3.x.x
ii  kdemultimedia-kio-plugins 4:3.5.9-2  enables the browsing of audio CDs 

Versions of packages amarok suggests:
ii  amarok-engines  1.4.10-2 output engines for the Amarok musi
ii  iceweasel [www-browser] 3.0.6-1  lightweight web browser based on M
ii  konqueror [www-browser] 4:3.5.9.dfsg.1-6 KDE's advanced file manager, web b
ii  libvisual-0.4-plugins   0.4.0.dfsg.1-2   Audio visualization framework plug
ii  lynx-cur [www-browser]  2.8.7dev9-2.1Text-mode WWW Browser with NLS sup
pn  moodbar none   (no description available)

-- debconf-show failed



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



Bug#505802: kmix: Global shortcut for muting doesn't work

2008-11-15 Thread Daniel 'DaB.' Baur
Package: kmix
Version: 4:3.5.9-2
Severity: normal

Hello,

the global shortcut for muting doesn't work. The global shortcuts for
increase and decrease of volume do. I tried the workarround in bug 391996
but it doesn't change anything.

Thanks for your work :).

Sincerly,
DaB.


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

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

Versions of packages kmix depends on:
ii  kdelibs4c2a 4:3.5.9.dfsg.1-6 core libraries and binaries for al
ii  libasound2  1.0.16-2 ALSA library
ii  libc6   2.7-15   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.2-1GCC support library
ii  libqt3-mt   3:3.3.8b-5   Qt GUI Library (Threaded runtime v
ii  libstdc++6  4.3.2-1  The GNU Standard C++ Library v3

kmix recommends no packages.

Versions of packages kmix suggests:
ii  khelpcente 4:4.0.0.really.3.5.9.dfsg.1-5 help center for KDE

-- debconf-show failed



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



Bug#502014: konversation: Konversation doesn't shows all channelmods

2008-10-12 Thread Daniel 'DaB.' Baur
Package: konversation
Version: 1.1-1
Severity: normal

Hello,
the Settings for this channel-Windows, Tab Modi has a list of
channelmodes like c,d,f,F,h and so on. But at least one is missing: z. z
is used at Freenode to signal that messages by muted users can be seen by
channel-admins (see http://freenode.net/using_the_network.shtml). It would
be nice if konversation would show that too.

Sincerly,
DaB.


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

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

Versions of packages konversation depends on:
ii  kdelibs4c2a 4:3.5.9.dfsg.1-6 core libraries and binaries for al
ii  libc6   2.7-13   GNU C Library: Shared libraries
ii  libgcc1 1:4.3.2-1GCC support library
ii  libqt3-mt   3:3.3.8b-5   Qt GUI Library (Threaded runtime v
ii  libstdc++6  4.3.2-1  The GNU Standard C++ Library v3
ii  libx11-62:1.1.5-2X11 client-side library

Versions of packages konversation recommends:
ii  python2.5.2-2An interactive high-level object-o
ii  ruby  4.2An interpreter of object-oriented 

Versions of packages konversation suggests:
pn  libsoap-lite-perl none (no description available)

-- no debconf information



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



Bug#482173: postfix: Postfix rejects valid IPv6-Adresses

2008-05-21 Thread Daniel 'DaB.' Baur
Package: postfix
Version: 2.3.8-2+b1
Severity: important

Hello,
my postfix rejects a IPv6-adress without reason. From the log (I removed the
eMail-Adresses):

May 21 08:42:03 platon postfix/smtpd[7208]: connect from 
dabpc.alt.baur4.info[2001:6f8:11b4::20d:56ff:feea:832e]
May 21 08:42:04 platon postfix/smtpd[7208]: NOQUEUE: reject: RCPT from
dabpc.alt.baur4.info[2001:6f8:11b4::20d:56ff:feea:832e]: 501 5.5.2 
[2001:6f8:11b4::20d:56ff:feea:832e]: Helo command
rejected: invalid ip address; from=me to=you proto=ESMTP 
helo=[2001:6f8:11b4::20d:56ff:feea:832e]
May 21 08:42:04 platon postfix/smtpd[7208]: disconnect from 
dabpc.alt.baur4.info[2001:6f8:11b4::20d:56ff:feea:832e]

I use IPv6 with postfix for month with another IPv6-Adress without
problems, so IPv6 is not the problem in generell (I guess it's a wrong rule
somewhere inside postfix).

Sincerly,
DaB.

-- System Information:
Debian Release: 4.0
  APT prefers stable
  APT policy: (900, 'stable'), (400, 'testing')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.18-6-686
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) (ignored: LC_ALL 
set to de_DE.utf8)

Versions of packages postfix depends on:
ii  adduser3.102 Add and remove users and groups
ii  debconf [debconf-2.0]  1.5.11etch1   Debian configuration management sy
ii  dpkg   1.13.25   package maintenance system for Deb
ii  libc6  2.3.6.ds1-13etch5 GNU C Library: Shared libraries
ii  libdb4.3   4.3.29-8  Berkeley v4.3 Database Libraries [
ii  libsasl2-2 2.1.22.dfsg1-8Authentication abstraction library
ii  libssl0.9.80.9.8c-4etch3 SSL shared libraries
ii  lsb-base   3.1-23.2etch1 Linux Standard Base 3.1 init scrip
ii  netbase4.29  Basic TCP/IP networking system
ii  ssl-cert   1.0.14Simple debconf wrapper for openssl

Versions of packages postfix recommends:
ii  mailx [mail-read 1:8.1.2-0.20050715cvs-1 A simple mail user agent

-- debconf information:
  postfix/master_upgrade_warning:
  postfix/db_upgrade_warning: true
  postfix/mailname: /etc/mailname
  postfix/tlsmgr_upgrade_warning:
  postfix/dynamicmaps_upgrade_warning:
  postfix/recipient_delim: +
* postfix/main_mailer_type: No configuration
  postfix/transport_map_warning:
  postfix/relayhost:
  postfix/procmail:
  postfix/bad_recipient_delimiter:
  postfix/chattr: falsch
  postfix/root_address:
  postfix/rfc1035_violation: false
  postfix/mydomain_warning:
  postfix/mynetworks: 127.0.0.0/8
  postfix/destinations:
  postfix/nqmgr_upgrade_warning:
  postfix/not_configured:
  postfix/mailbox_limit: 0
  postfix/protocols:



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



Bug#467244: bsdutils: logger doesn't works with option -f

2008-02-23 Thread Daniel 'DaB.' Baur
Package: bsdutils
Version: 1:2.13.1-1
Severity: normal

Hello all,
the programm logger has the option -f to Log the specified file..
However, it doesn't work. See:

[EMAIL PROTECTED]:/tmp$ logger -f /tmp/test.log Test1
logger: /tmp/test.log: No such file or directory.

If I create this file by hand:

[EMAIL PROTECTED]:/tmp$ touch /tmp/test.log
[EMAIL PROTECTED]:/tmp$ logger -f /tmp/test.log Test1
[EMAIL PROTECTED]:/tmp$ cat /tmp/test.log
[EMAIL PROTECTED]:/tmp$

nothing is logged.

The normal logging to syslog works without problems.

Sincerly,
DaB.

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

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

Versions of packages bsdutils depends on:
ii  libc6 2.7-6  GNU C Library: Shared libraries

Versions of packages bsdutils recommends:
ii  bsdmainutils  6.1.10 collection of more utilities from 

-- no debconf information



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



Bug#439805: xsnow: Does nothing

2007-08-27 Thread Daniel 'DaB.' Baur
Package: xsnow
Version: 1:1.42-6
Severity: important

The programm does nothing; no snow, no trees and no santa under lenny and 
its kde. I selfcompile the Xsnow-1.42-version too and still nothing. The
debug-output shows me many POPUP discarded. The begin of the debug-output
as attach, I can give more, if requeried.

Would be nice if the program would be fixed until xmas :).

Sincerly,
DaB.

#-- Debug start -
Xsnow-1.42, December 14th 2001 by Rick Jansen ([EMAIL PROTECTED])
WWW: http://www.euronet.nl/~rja/Xsnow/

InitSantaPixymaps: SantaSize=2 Rudolf=1
InitSantaPixymaps: SantaWidth: 177, SantaHeight: 34
makewrgn: nChildren=521

w x:0 y:0 w:2560 h:1024 - bw:0 d:24
MakeWrx: (x;0   y:0 x+w2560 y+h1024)bw:0 d:24

w x:1280 y:570 w:1280 h:398 - bw:0 d:24
MakeWrx: (x;1280y:570   x+w2560 y+h968) bw:0 d:24

w x:1280 y:0 w:1208 h:419 - bw:0 d:24
MakeWrx: (x;1280y:0 x+w2488 y+h419) bw:0 d:24

w x:0 y:0 w:1208 h:811 - bw:0 d:24
MakeWrx: (x;0   y:0 x+w1208 y+h811) bw:0 d:24

w x:116 y:261 w:1098 h:606 - bw:0 d:24
MakeWrx: (x;116 y:261   x+w1214 y+h867) bw:0 d:24

w x:0 y:978 w:2560 h:46 - bw:0 d:24
MakeWrx: (x;0   y:978   x+w2560 y+h1024)bw:0 d:24

w x:2488 y:0 w:72 h:636 - bw:0 d:24
MakeWrx: (x;2488y:0 x+w2560 y+h636) bw:0 d:24

w x:-1 y:-1 w:1 h:1 - bw:0 d:0
MakeWrx: (x;-1  y:-1x+w0y+h0)   bw:0 d:0
POPUP discarded
POPUP discarded
POPUP discarded
POPUP discarded
POPUP discarded

# Debug end 

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

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

Versions of packages xsnow depends on:
ii  libc6 2.6.1-1GNU C Library: Shared libraries
ii  libx11-6  2:1.0.3-7  X11 client-side library
ii  libxext6  1:1.0.3-2  X11 miscellaneous extension librar
ii  libxpm4   1:3.5.6-3  X11 pixmap library
ii  procps1:3.2.7-4  /proc file system utilities

xsnow recommends no packages.

-- no debconf information


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



Bug#432225: /usr/bin/ooo-wrapper: OOWriter crashs if I start the letter wizard

2007-07-08 Thread Daniel 'DaB.' Baur
Package: openoffice.org-common
Version: 2.0.4.dfsg.2-7etch1
Severity: normal
File: /usr/bin/ooo-wrapper

If I open a empty document in oowriter and try to open the letter-wizzard,
oowriter crashes and informs me, that my document will be restore at the
next start. Then oo-writer restarts and my document is restored. If I try to
start the letter wizzard again, oo-writer crashed again and the hole thing
repeat.

I found no verbose-option for oo-writer in the man-page so I can't give
you more information.

My Java-Version is Java(TM) SE Runtime Environment (build 1.6.0-b105) (I
read in another big-report that the letter wizzard use java).

Sincerly,
DaB.


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

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

Versions of packages openoffice.org-common depends on:
ii  dictionaries-common [openoffi 0.82.0 Common utilities for spelling dict

openoffice.org-common recommends no packages.

-- no debconf information


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



Bug#431997: ITP: libjavajodatime-java -- The JodaTime-Libery for java

2007-07-08 Thread Daniel 'DaB.' Baur
Hello,
Am Freitag 06 Juli 2007 22:37 schrieb Christian Perrier:
 Quoting Daniel 'DaB.' Baur ([EMAIL PROTECTED]):
Description : The JodaTime-Libery for java

 JodaTime-Libery for Java

 ie removing the leading article...

 (I would bet that Java has to be capitalized)

Sorry, I'm not a  english native speaker.


  (Include the long description here.)

 Where is the proposed long description?
This is my first debian-package. How long should the long description be? 
Is The JodaTime-Libery adds serveral time- and date-classes to java. enough 
or should I tell, which classes and what their do?

Sincerly,
DaB.


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



Bug#432225: /usr/bin/ooo-wrapper: OOWriter crashs if I start the letter wizard

2007-07-08 Thread Daniel 'DaB.' Baur
Hello,
Am Sonntag 08 Juli 2007 18:12 schrieben Sie:

 Wrong package. Really. It might be worth sanity-cheking what you get
 from reportbug... (and using the feature in whose trap you just fell
 into is bad anyway IMHO)

Sorry for sending it to the wrong package, but reportbug said to me, that this 
would be the right package. I guess, openoffice.org-writer is the right one? 
Can this bugreport moved?


 And some other JDKs? Especially java5 and gcj?
 If it works in other Javas, it might be a bug in Java which we cannot do
 anything about.
 And where did you get Java6 from? it's not in stable afaik.

Sun-Java6 is in testing since April 2007. JDK5 is also installed, but no idea 
how to tell openoffice to use it (the manpage says nothing about this AFAIS). 

Have you a hint for me?


 Gr��e/Regards,

 Ren�

Sincerly,
DaB.


pgpA7c95oMhQZ.pgp
Description: PGP signature


Bug#431997: ITP: libjavajodatime-java -- The JodaTime-Libery for java

2007-07-06 Thread Daniel 'DaB.' Baur
Package: wnpp
Severity: wishlist
Owner: Daniel 'DaB.' Baur [EMAIL PROTECTED]


* Package name: libjavajodatime-java
  Version : 1.4
  Upstream Author : Stephen Colebourne [EMAIL PROTECTED]
* URL : http://joda-time.sourceforge.net/index.html
* License : Apache License Version 2.0.
  Programming Lang: Java
  Description : The JodaTime-Libery for java

(Include the long description here.)
The jodatime-libery will be part of the official sun-java-programm in the
future (see https://jsr-310.dev.java.net/). But this will take some time. So
a package which containes the java-libery would be nice and should make no
problems.

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

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


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



Bug#322843: java-package: Created deb-file

2007-01-17 Thread Daniel 'DaB.' Baur
Package: java-package
Followup-For: Bug #322843

Hello all,
I created a .deb-file from the patch above and put it
under http://sokrates.baur4.info/~dab/debian/ . Perhaps somebody can need
it. I'm not a maintainer and can not garantie anything :).

Sincerly,
DaB.

-- System Information:
Debian Release: 4.0
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages java-package depends on:
ii  debhelper 5.0.42 helper programs for debian/rules
ii  fakeroot  1.5.10 Gives a fake root environment
ii  unzip 5.52-9 De-archiver for .zip files

java-package recommends no packages.

-- no debconf information


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



Bug#394920:

2006-10-23 Thread dab
Hello,
I can approve this bug. It crashed my apache2 and I had to deactivated
it.

Sincerly,
DaB.


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#394197: knights: Save do Save as

2006-10-20 Thread Daniel 'DaB.' Baur
Package: knights
Version: 0.6-7.1
Severity: normal

Open a game, make a move and try to save it to the old name using save. It
allways ask for the savename (like using Save as). Thats annoying, please
fix it.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages knights depends on:
ii  kdebase-kio-plugins 4:3.5.4-2+b1 core I/O slaves for KDE
ii  kdelibs4c2a 4:3.5.5a-1   core libraries and binaries for al
ii  libacl1 2.2.41-1 Access control list shared library
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libarts1c2a 1.5.5-1  aRts sound system core components
ii  libasound2  1.0.13-1 ALSA library
ii  libattr12.4.32-1 Extended attribute shared library
ii  libaudio2   1.8-2The Network Audio System (NAS). (s
ii  libaudiofile0   0.2.6-6  Open-source version of SGI's audio
ii  libc6   2.3.6.ds1-4  GNU C Library: Shared libraries
ii  libesd0 0.2.36-3 Enlightened Sound Daemon - Shared 
ii  libfam0 2.7.0-11 Client library to control the FAM 
ii  libfontconfig1  2.4.1-2  generic font configuration library
ii  libfreetype62.2.1-5  FreeType 2 font engine, shared lib
ii  libgcc1 1:4.1.1-13   GCC support library
ii  libglib2.0-02.12.4-1 The GLib library of C routines
ii  libice6 1:1.0.1-2X11 Inter-Client Exchange library
ii  libidn110.6.5-1  GNU libidn library, implementation
ii  libjack0.100.0-00.101.1-1JACK Audio Connection Kit (librari
ii  libjpeg62   6b-13The Independent JPEG Group's JPEG 
ii  libmad0 0.15.1b-2.1  MPEG audio decoder library
ii  libogg0 1.1.3-2  Ogg Bitstream Library
ii  libpng12-0  1.2.8rel-5.2 PNG library - runtime
ii  libqt3-mt   3:3.3.6-4Qt GUI Library (Threaded runtime v
ii  libsm6  1:1.0.1-3X11 Session Management library
ii  libstdc++6  4.1.1-13 The GNU Standard C++ Library v3
ii  libvorbis0a 1.1.2-1  The Vorbis General Audio Compressi
ii  libvorbisenc2   1.1.2-1  The Vorbis General Audio Compressi
ii  libvorbisfile3  1.1.2-1  The Vorbis General Audio Compressi
ii  libx11-62:1.0.0-9X11 client-side library
ii  libxcursor1 1.1.7-4  X cursor management library
ii  libxext61:1.0.1-2X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-8FreeType-based font drawing librar
ii  libxi6  1:1.0.1-3X11 Input extension library
ii  libxinerama11:1.0.1-4.1  X11 Xinerama extension library
ii  libxrandr2  2:1.1.0.2-4  X11 RandR extension library
ii  libxrender1 1:0.9.1-3X Rendering Extension client libra
ii  libxt6  1:1.0.2-2X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3-13   compression library - runtime

knights recommends no packages.

-- no debconf information


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



Bug#386344: apt-proxy: APT-Proxy has Problems with ~ in package-names

2006-09-06 Thread Daniel 'DaB.' Baur
Package: apt-proxy
Version: 1.9.35
Severity: grave
Tags: security
Justification: renders package unusable

Apt-Proxy can not handle Package, which have the new ~ in there names.
A example is libkrb5-dev_1.4.4~beta1-1_i386.deb which gives a 404 file not 
found on
backend error. Please fix it, because it is unpossible to play in any
packages or security-updates.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apt-proxy depends on:
ii  adduser   3.96   Add and remove users and groups
ii  bzip2 1.0.3-3high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.3  Debian configuration management sy
ii  logrotate 3.7.1-3Log rotation utility
ii  python2.3.5-11   An interactive high-level object-o
ii  python-apt0.6.19 Python interface to libapt-pkg
ii  python-central0.5.5  register and build utility for Pyt
ii  python-twisted-web0.6.0-1An HTTP protocol implementation to

apt-proxy recommends no packages.

-- debconf information:
  apt-proxy/upgrading-v2:
  apt-proxy/upgrading-v2-result:


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



Bug#375677: Fixing this bug

2006-08-03 Thread Daniel 'DaB' Baur
hello all,

I have created a package of apt-proxy which contains the fixing of this
bug and all other bugs for that was a patch avaible. For me it work very
fine.

It can be found at http://www.daniel.baur4.info/public/debian/apt-proxy/

Please note that I'm not a debian-developper and using is on OWN RISC of
corse.

If somebody can tell me, how I can make this version the official one
please write me a private eMail.

Have fun,

Sincerly,
DaB.


signature.asc
Description: Dies ist ein digital signierter Nachrichtenteil


Bug#375677: apt-proxy: patch for fixing the problem

2006-07-08 Thread Daniel 'DaB.' Baur
Package: apt-proxy
Version: 1.9.33-0.1
Followup-For: Bug #375677


The following patch for the file 

/usr/lib/python2.3/site-packages/twisted/manhole/telnet.py

fixed the problem

Sincerly,
DaB.

8c8
 from twisted.conch import telnet
---
 from twisted.protocols import telnet


-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apt-proxy depends on:
ii  adduser   3.87   Add and remove users and groups
ii  bzip2 1.0.3-2high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.2  Debian configuration management sy
ii  logrotate 3.7.1-3Log rotation utility
pn  pythonnone (no description available)
pn  python-aptnone (no description available)
ii  python-twisted2.2.0-2Event-based framework for internet
ii  python-twisted-web0.5.0-4.1  An HTTP protocol implementation to

apt-proxy recommends no packages.

-- debconf information:
  apt-proxy/upgrading-v2:
  apt-proxy/upgrading-v2-result:


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



Bug#375991: apt-proxy: Apt-proxy does not work after upgrade of twisted

2006-06-29 Thread Daniel 'DaB.' Baur
Package: apt-proxy
Version: 1.9.33-0.1
Severity: grave
Justification: renders package unusable


After a apt-get distupgrade yesterday, apt-proxy does not work anymore. The
log (see down) shows a problem with twisted.

Please fix it imidealy, apt-proxy is useless in this state.

Sincerly,
DaB.


=== The Log shows: ===
2006/06/29 15:33 CEST [-] Log opened.
2006/06/29 15:33 CEST [-] twistd 2.2.0 (/usr/bin/python2.3 2.3.5) starting
up
2006/06/29 15:33 CEST [-] reactor class:
twisted.internet.selectreactor.SelectReactor
2006/06/29 15:33 CEST [-] Loading /usr/sbin/apt-proxy...
2006/06/29 15:33 CEST [-]
/usr/lib/python2.3/site-packages/twisted/manhole/telnet.py:8:
exceptions.DeprecationWarning: As of Twisted 2.1, twisted.protocols.telnet
is deprecated.  See twist
ed.conch.telnet for the current, supported API.
2006/06/29 15:33 CEST [-] WARNING: apt-proxy has not been tested under this
version of twisted (2.2.0).
2006/06/29 15:33 CEST [-] WARNING: although it should work without problem.
2006/06/29 15:33 CEST [-] Loaded.
2006/06/29 15:33 CEST [-] apt_proxy.apt_proxy.Factory starting on 
2006/06/29 15:33 CEST [-] Starting factory apt_proxy.apt_proxy.Factory
instance at 0xb78d03ec
2006/06/29 15:33 CEST [-] set uid/gid 100/65534
2006/06/29 15:33 CEST [Channel,3,127.0.0.1] Unhandled error in Deferred:
2006/06/29 15:33 CEST [Channel,3,127.0.0.1] Traceback (most recent call
last):
Failure: twisted.protocols.ftp.ConnectionLost: ('FTP connection
lost', twisted.python.failure.Failure twisted.protocols.ftp.CommandFailed)

2006/06/29 15:33 CEST [Channel,3,127.0.0.1] Unhandled error in Deferred:
2006/06/29 15:33 CEST [Channel,3,127.0.0.1] Traceback (most recent call
last):
Failure: twisted.protocols.ftp.ConnectionLost: ('FTP connection
lost', twisted.python.failure.Failure twisted.protocols.ftp.CommandFailed)
[] Many repeats of teh above
2006/06/29 15:41 CEST [-] Received SIGTERM, shutting down.
2006/06/29 15:41 CEST [-] (Port  Closed)
2006/06/29 15:41 CEST [-] Stopping factory apt_proxy.apt_proxy.Factory
instance at 0xb78d03ec
2006/06/29 15:41 CEST [-] Traceback (most recent call last):
  File /usr/lib/python2.3/site-packages/twisted/scripts/twistd.py,
line 197, in runApp
app.runReactorWithLogging(config, oldstdout, oldstderr)
  File
/usr/lib/python2.3/site-packages/twisted/application/app.py, line 131, in
runReactorWithLogging
reactor.run()
  File
/usr/lib/python2.3/site-packages/twisted/internet/posixbase.py, line 218,
in run
self.mainLoop()
  File
/usr/lib/python2.3/site-packages/twisted/internet/posixbase.py, line 226,
in mainLoop
self.runUntilCurrent()
--- exception caught here ---
  File /usr/lib/python2.3/site-packages/twisted/internet/base.py,
line 541, in runUntilCurrent
call.func(*call.args, **call.kw)
  File /usr/lib/python2.3/site-packages/twisted/internet/tcp.py,
line 814, in connectionLost
self.factory.doStop()
  File
/usr/lib/python2.3/site-packages/twisted/internet/protocol.py, line 64, in
doStop
self.stopFactory()
  File /usr/lib/python2.3/site-packages/apt_proxy/apt_proxy.py,
line 1922, in stopFactory
packages.cleanup(self)
  File /usr/lib/python2.3/site-packages/apt_proxy/packages.py,
line 298, in cleanup
backend.get_packages_db().cleanup()
exceptions.AttributeError: 'str' object has no attribute
'get_packages_db'

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.20
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)

Versions of packages apt-proxy depends on:
ii  adduser   3.87   Add and remove users and groups
ii  bzip2 1.0.3-2high-quality block-sorting file co
ii  debconf [debconf-2.0] 1.5.1  Debian configuration management sy
ii  logrotate 3.7.1-3Log rotation utility
ii  python2.3.5-5An interactive high-level object-o
ii  python-apt0.6.17 Python interface to libapt-pkg
ii  python-twisted2.2.0-2Event-based framework for internet
ii  python-twisted-web0.5.0-4.1  An HTTP protocol implementation to
ii  python2.3 2.3.5-9.1  An interactive high-level object-o

apt-proxy recommends no packages.

-- debconf information:
  apt-proxy/upgrading-v2:
  apt-proxy/upgrading-v2-result:


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



Bug#361825: fetchmail: Connection vom an IPv4-only-host to an IPv6/IPv4-Host doesn't work

2006-04-10 Thread Daniel 'DaB.' Baur
Package: fetchmail
Version: 6.3.2-2
Severity: important


Hello,

my IPv4-Only-host (ServerX) can't connects to my IPv6/IPv4-Host (kant). kant
has a IPv6- and a IPv4-DNS-Entry.
Syslog shows:
Apr 10 12:34:48 ServerX fetchmail[10277]: Abfragestatus=2 (SOCKET)
Apr 10 12:34:48 ServerX fetchmail[10277]: POP3 Verbindung zu kant
fehlgeschlagen: Die Adressfamilie wird von der Protokollfamilie nicht
unterstütz.

No eMail will be get.

Sincertly
DaB.

-- System Information:
Debian Release: testing/unstable
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'unstable'), (500, 'stable'), (1, 
'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.4.31
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-1) (ignored: LC_ALL set to 
de_DE)

Versions of packages fetchmail depends on:
ii  adduser   3.85   Add and remove users and groups
ii  debianutils   2.15.3 Miscellaneous utilities specific t
ii  gettext   0.14.5-2   GNU Internationalization utilities
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libssl0.9.8   0.9.8a-7   SSL shared libraries

Versions of packages fetchmail recommends:
ii  ca-certificates   20050804   Common CA Certificates PEM files

-- no debconf information


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