Bug#970641: libqtgui4: QDialog randomly misplaced invisible in buster, patches

2020-09-20 Thread Christoph Lechleitner
Package: libqtgui4
Version: 4:4.8.7+dfsg-18
Severity: normal
Tags: patch


Introduction:

After migrating a legacy application from jessie to buster without making major
changes we experienced QDialogs and QMessageBoxes randomly showing up outside
the visible area.
In most of the occurences the invisible dialog didn't have focus despite being
modal, rendering the GUI frozen from the user's perspective.


Bugs:

We finally tracked it down to QDesktopWidget::availableGeometry(int screen)
parsing the response of XGetWindowProperty(_NET_WORKAREA) as array of 4 64 bit
integers despite format==32 clearly guaranteeing 32 bit integers.

This 'compresses' the 4 good values received in the first 2 values of the QRect
workArea c'tor, x and y, and pulls random memory content in the other 2 values,
width and heigth.

As a consequence QMessageBoxPrivate::updateSize() calculated hardLimit,
softLimit, width and height to crazy negative values like -123456789.
That whole method, QMessageBoxPrivate::updateSize(), has some wild heuristics
and should not use negative values, but that's not the root cause.

Depending on the window manager and system configuration the bad code path in
QDesktopWidget::availableGeometry(int) might be used or not.
It's always used in our customer's setup that facilitates   matchbox-window-
manager -use_titlebar no   for a kiosk-like user experience.


Patches:

Our main patch, qdesktopwidget_fix_availableGeometry.diff, fixes the main error
described above, in src/gui/kernel/qdesktopwidget_x11.cpp:304.

Our side patch qmessagebox_ironize_updatesize.diff makes
QMessageBoxPrivate::updateSize() ignore non-positive softLimits and hardLimits.
We're not 100% sure it's a good idea to apply that. Concerns
src/gui/dialogs/qmessagebox.cpp lines 345, 349, 375, 390.


Non-Patches:

On the assumption that such code is often copied'n'change we grepped for other
uses of XGetWindowProperty() (there are 51), quickly (not too thouroghly)
checked for similar mistakes and found serveral suspicious blocks of code.
This was done after 'apt-get source qt4-x11' to *.cpp under
qt4-x11-4.8.7+dfsg/src/, i.e. after debian patches have been applied to the
source code. Line numbers in upstream tarball might differ.

In QETWidget::translatePropertyEvent(),
  src/gui/kernel/qapplication_x11.cpp:5008ff
XGetWindowProperty(_KDE_NET_WM_FRAME_STRUT) seems to make a similar mistake,
but I haven't researched wether the contradiction between '// struts are 4
longs' and the check 'format == 32' is a bug or maybe a legitimate-ish hack.

Other XGetWindowProperty() calls with suspicious result processing can be found
in
  src/gui/kernel/qapplication_x11.cpp:2831, which someone has thought about
with // quint32, but seems not in use
  src/gui/kernel/qapplication_x11.cpp:5027
  src/gui/kernel/qapplication_x11.cpp:5106
  src/gui/kernel/qapplication_x11.cpp:5165
  src/gui/kernel/qx11embed_x11.cpp:415
  src/gui/kernel/qx11embed_x11.cpp:829
  src/gui/kernel/qx11embed_x11.cpp:1673


Patched amd64 packages:

Packages that include our 2 patches can be found on 
https://deb.clazzes.org/debian/pool/buster-xpkg-1/

To use them with apt or the like perform something like this:
  wget -O /etc/apt/trusted.gpg.d/pba-archiver.clazzes.org.gpg 
https://deb.clazzes.org/gpg/pba-archiver.clazzes.org.gpg
  cd /etc/apt/sources.list.d
  wget https://deb.clazzes.org/debian/sources.list.d/buster/buster-xpkg-1.list
  apt-get update
  apt-get upgrade

We'd be willing to add armhf packages if anyone's interested.
Our clean room build infrastructure has been relieved from i386 and we don't 
support other archs.


Regards, Christoph Lechleitner


-- 

Christoph Lechleitner

Geschäftsführung


ITEG IT-Engineers GmbH | Salurner Straße 18, A-6020 Innsbruck
FN 365826f | Handelsgericht Innsbruck | Mobiltelefon: +43 676 3674710
Mail: christoph.lechleit...@iteg.at | Web: http://www.iteg.at/


--- qt4-x11-4.8.7+dfsg.orig/src/gui/kernel/qdesktopwidget_x11.cpp	2015-05-07 16:14:43.0 +0200
+++ qt4-x11-4.8.7+dfsg/src/gui/kernel/qdesktopwidget_x11.cpp	2020-09-20 15:49:52.089122544 +0200
@@ -301,7 +301,8 @@
 QRect workArea;
 if (e == Success && ret == XA_CARDINAL &&
 format == 32 && nitems == 4) {
-long *workarea = (long *) data;
+//long *workarea = (long *) data;
+qint32 *workarea = (qint32 *) data;
 workArea = QRect(workarea[0], workarea[1], workarea[2], workarea[3]);
 } else {
 workArea = screenGeometry(screen);
--- qt4-x11-4.8.7+dfsg.orig/src/gui/dialogs/qmessagebox.cpp	2015-05-07 16:14:43.0 +0200
+++ qt4-x11-4.8.7+dfsg/src/gui/dialogs/qmessagebox.cpp	2020-09-20 15:49:20.787609493 +0200
@@ -342,11

Bug#970023: krdc: default protocol is being ignored in settings

2020-09-10 Thread Christoph Zechner
Package: krdc
Version: 4:18.04.1-1
Severity: normal
Tags: patch

KRDC ignores the default protocol from settings (under "When Connecting") and
uses vnc as default. KRDC version 20.08.0-1 in bullseye does not have this bug
anymore.

I do not have a patch per se, but this should be the relevant commit in the
source:

https://invent.kde.org/network/krdc/-/commit/d9797f4758660d10f182111a76f81287a4e1c5cc

Thanks in advance.

Best regards
Christoph Zechner



-- System Information:
Debian Release: 10.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.19.0-10-amd64 (SMP w/8 CPU cores)
Kernel taint flags: TAINT_WARN, TAINT_OOT_MODULE, TAINT_UNSIGNED_MODULE
Locale: LANG=en_AT.UTF-8, LC_CTYPE=C.UTF-8 (charmap=locale: Cannot set 
LC_MESSAGES to default locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
UTF-8), LANGUAGE=en_US:en (charmap=locale: Cannot set LC_MESSAGES to default 
locale: No such file or directory
locale: Cannot set LC_ALL to default locale: No such file or directory
UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages krdc depends on:
ii  libc6 2.28-10
ii  libkf5bookmarks5  5.54.0-1
ii  libkf5completion5 5.54.0-1
ii  libkf5configcore5 5.54.0-1+deb10u1
ii  libkf5configgui5  5.54.0-1+deb10u1
ii  libkf5configwidgets5  5.54.0-1
ii  libkf5coreaddons5 5.54.0-1
ii  libkf5dnssd5  5.54.0-1
ii  libkf5i18n5   5.54.0-1
ii  libkf5kcmutils5   5.54.0-1
ii  libkf5notifications5  5.54.0-1
ii  libkf5notifyconfig5   5.54.0-1
ii  libkf5service-bin 5.54.0-1
ii  libkf5service55.54.0-1
ii  libkf5wallet-bin  5.54.0-1
ii  libkf5wallet5 5.54.0-1
ii  libkf5widgetsaddons5  5.54.0-1
ii  libkf5xmlgui5 5.54.0-1
ii  libqt5core5a  5.11.3+dfsg1-1+deb10u3
ii  libqt5gui55.11.3+dfsg1-1+deb10u3
ii  libqt5widgets55.11.3+dfsg1-1+deb10u3
ii  libqt5xml55.11.3+dfsg1-1+deb10u3
ii  libstdc++68.3.0-6
ii  libvncclient1 0.9.11+dfsg-1.3+deb10u3

Versions of packages krdc recommends:
ii  freerdp2-x11  2.0.0~git20190204.1.2693389a+dfsg1-1+deb10u2

Versions of packages krdc suggests:
ii  khelpcenter  4:18.04.0-1
ii  krfb 4:17.08.3-1

-- debconf information excluded

-- debsums errors found:
perl: warning: Setting locale failed.
perl: warning: Please check that your locale settings:
LANGUAGE = "en_US:en",
LC_ALL = (unset),
LC_CTYPE = "C.UTF-8",
LANG = "en_AT.UTF-8"
are supported and installed on your system.
perl: warning: Falling back to the standard locale ("C").



Bug#935525: sddm ignores policykit rules

2019-08-23 Thread Christoph Pleger
   

 


 
[Disable reboot]

 
 Identity=unix-user:*   

 
 
Action=org.freedesktop.login1.reboot;org.freedesktop.login1.reboot-multiple-sessions


 ResultAny=auth_admin_keep  

 
 ResultInactive=auth_admin_keep 

 
 ResultActive=auth_admin_keep


That should prevent normal users from performing the named actions. This works 
in combination with other display managers,
but in sddm, every user can suspend, hibernate, shutdown or reboot the machine 
without having to autenticate as root before. 

Regards
  Christoph Pleger


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

Kernel: Linux 4.19.0-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages sddm depends on:
ii  adduser   3.118
ii  debconf [debconf-2.0] 1.5.71
ii  libc6 2.28-10
ii  libgcc1   1:8.3.0-6
ii  libpam0g  1.3.1-5
ii  libqt5core5a  5.11.3+dfsg1-1
ii  libqt5dbus5   5.11.3+dfsg1-1
ii  libqt5gui55.11.3+dfsg1-1
ii  libqt5network55.11.3+dfsg1-1
ii  libqt5qml55.11.3-4
ii  libqt5quick5  5.11.3-4
ii  libstdc++68.3.0-6
ii  libsystemd0   241-5
ii  libxcb-xkb1   1.13.1-2
ii  libxcb1   1.13.1-2
ii  qml-module-qtquick2   5.11.3-4
ii  x11-common1:7.7+19
ii  xserver-xephyr [xserver]  2:1.20.4-1
ii  xserver-xorg [xserver]1:7.7+19

Versions of packages sddm recommends:
ii  haveged1.9.1-7
ii  libpam-systemd 241-5
ii  sddm-theme-debian-elarun [sddm-theme]  0.18.0-1
ii  sddm-theme-debian-maui [sddm-theme]0.18.0-1

Versions of packages sddm suggests:
ii  libpam-kwallet5   5.14.5-1
pn  qtvirtualkeyboard-plugin  

-- debconf information:
* shared/default-x-display-manager: lightdm
  sddm/daemon_name: /usr/bin/sddm



Bug#935319: plasma-workspace-wayland: Plasma Wayland session crashes

2019-08-21 Thread Christoph Pleger
Package: plasma-workspace-wayland
Version: 4:5.14.5.1-1
Severity: important

Dear Maintainer,

the plasma wayland session crashes directly after login and the login screen 
appears again.

Here is what .xsession-errors says:

Xsession: X session started for cpleger at Mi 21. Aug 16:45:16 CEST 2019
dbus-update-activation-environment: setting 
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
Xsession: unable to launch "dbus-run-session /usr/bin/startplasmacompositor" X 
session --- "dbus-run-session /usr/bin/startplasmacompositor" not found; 
falling back to default session.
xrdb: Can't open display ''
xrdb: Can't open display ''
xhost:  unable to open display ""
dbus-update-activation-environment: setting GTK_MODULES=gail:atk-bridge
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: setting USER=cpleger
dbus-update-activation-environment: setting XDG_SESSION_TYPE=wayland
dbus-update-activation-environment: setting HOME=/home/cpleger
dbus-update-activation-environment: setting DESKTOP_SESSION=plasmawayland
dbus-update-activation-environment: setting 
XDG_SEAT_PATH=/org/freedesktop/DisplayManager/Seat0
dbus-update-activation-environment: setting GTK_MODULES=gail:atk-bridge
dbus-update-activation-environment: setting 
DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus
dbus-update-activation-environment: setting LOGNAME=cpleger
dbus-update-activation-environment: setting XDG_SESSION_CLASS=user
dbus-update-activation-environment: setting 
PATH=/usr/local/bin:/usr/bin:/bin:/usr/local/games:/usr/games
dbus-update-activation-environment: setting 
XDG_SESSION_PATH=/org/freedesktop/DisplayManager/Session3
dbus-update-activation-environment: setting XDG_RUNTIME_DIR=/run/user/1000
dbus-update-activation-environment: setting LANG=de_DE.UTF-8
dbus-update-activation-environment: setting XDG_CURRENT_DESKTOP=KDE
dbus-update-activation-environment: setting XDG_SESSION_DESKTOP=plasmawayland
dbus-update-activation-environment: setting 
XDG_GREETER_DATA_DIR=/var/lib/lightdm/data/cpleger
dbus-update-activation-environment: setting SHELL=/bin/bash
dbus-update-activation-environment: setting GDMSESSION=plasmawayland
dbus-update-activation-environment: setting QT_ACCESSIBILITY=1
dbus-update-activation-environment: setting 
GPG_AGENT_INFO=/run/user/1000/gnupg/S.gpg-agent:0:1
dbus-update-activation-environment: setting PWD=/home/cpleger
Failed to create wl_display (Verbindungsaufbau abgelehnt)
qt.qpa.plugin: Could not load the Qt platform plugin "wayland" in "" even 
though it was found.
qt.qpa.screen: QXcbConnection: Could not connect to display 
Could not connect to any X display.

Regards
  Christoph Pleger 

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

Kernel: Linux 4.19.0-5-amd64 (SMP w/2 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages plasma-workspace-wayland depends on:
ii  kwayland-integration  5.14.5-1
ii  kwin-wayland  4:5.14.5-1
ii  plasma-workspace  4:5.14.5.1-1
ii  qtwayland55.11.3-2

plasma-workspace-wayland recommends no packages.

plasma-workspace-wayland suggests no packages.

-- no debconf information



Bug#902118: Duplicate bug (and unsupported situation)

2018-06-22 Thread Christoph Terasa
Thank you Lissandro. I now realized that dist-upgrading to testing 
apparently did not upgrade to the latest kernel, because the machine I'm 
running this on does use a custom kernel by the VPS provider, so this is 
actually still 3.14.32, which explains the issues with libqt5core5a, 
according to the bug against libqt5core5a you mentioned: 
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=895718


I will upgrade the kernel and I'd assume everything will be smooth, then.

regards,
Christoph

On 06/22/2018 06:47 PM, Lisandro Damián Nicanor Pérez Meyer wrote:

reassign 902118 src:qtbase-opensource-src/5.10.1+dfsg-5
forcemerge 895718 902118
thanks

Jan: while the bug you reported is actually a copy of #895718 note that we do
*not* support using oldstable with testing packages. It might or not work, but
definitely not supported.

Cheers, Lisandro.





Bug#887806: libqt5core5a: please clean up leagcy files properly

2018-01-19 Thread Christoph Anton Mitterer
Package: libqt5core5a
Version: 5.9.2+dfsg-7
Severity: normal


Hi.

Apparently, some config files and/or dirs were dropped, but not properly
cleaned up:

Unpacking libqt5core5a:amd64 (5.9.2+dfsg-7) over (5.9.2+dfsg-6) ...
dpkg: warning: unable to delete old directory '/etc/xdg/QtProject': Directory 
not empty

$ ls -al /etc/xdg/QtProject
total 0
drwxr-xr-x 1 root root   0 Jan 20 04:54 .
drwxr-xr-x 1 root root 466 Dec 19 21:05 ..
$

Could you please clean that up in the next version so that not leacy
cruft (i.e. the empty dir) remains?

Thanks,
Chris



Bug#848835: libkf5akonadicore-bin: really necessary to depend on akonadi-server?

2017-07-04 Thread Christoph Anton Mitterer
Control: reassign -1 kf5-kdepimlibs

Hey.

Could someone please trigger a rebuild of this package, so that the
dependencies get cleaned up as Maximiliano said?


Cheers,
Chris.

smime.p7s
Description: S/MIME cryptographic signature


Bug#860423: gwenview kinit

2017-04-16 Thread Christoph Egger
Hi!

FWIW plasema-workspace doesn't seem to be needed at all but installing
kdeinit actually makes gwenview work for me

  Christoph



Bug#860423: gwenview: Could not start process Cannot talk to klauncher: The name org.kde.klauncher5 was not provided by any .service files.

2017-04-16 Thread Christoph Egger
Package: gwenview
Version: 4:16.08.3-1
Severity: serious

Dear Maintainer,

gwenview seems to miss some dependencies

| Invalid pixmap specified.
| QTimeLine::setDuration: cannot set duration <= 0
| Invalid pixmap specified.
| QTimeLine::setDuration: cannot set duration <= 0
| Invalid pixmap specified.
| QTimeLine::setDuration: cannot set duration <= 0
| Invalid pixmap specified.
| QTimeLine::setDuration: cannot set duration <= 0
| Invalid pixmap specified.
| QTimeLine::setDuration: cannot set duration <= 0
| klauncher not running... launching kdeinit
| Can not find 'kdeinit5' executable at  
"/home/christoph/bin:/home/christoph/bin:/usr/local/bin:/usr/bin:/bin:/usr/games"
 "/usr/bin, /usr/lib/x86_64-linux-gnu/qt5/bin"
| klauncher not running... launching kdeinit
| Can not find 'kdeinit5' executable at  
"/home/christoph/bin:/home/christoph/bin:/usr/local/bin:/usr/bin:/bin:/usr/games"
 "/usr/bin, /usr/lib/x86_64-linux-gnu/qt5/bin"
| klauncher not running... launching kdeinit
| Can not find 'kdeinit5' executable at  
"/home/christoph/bin:/home/christoph/bin:/usr/local/bin:/usr/bin:/bin:/usr/games"
 "/usr/bin, /usr/lib/x86_64-linux-gnu/qt5/bin"
| couldn't create slave: "Cannot talk to klauncher: The name org.kde.klauncher5 
was not provided by any .service files"

In the end and empty gwenview window appears that doesn't display any
images and doesn't work (open dialog also just opens the error message
from $subject)

  Christoph

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

Kernel: Linux 4.9.0-2-amd64 (SMP w/16 CPU cores)
Locale: LANG=en_IE.UTF-8, LC_CTYPE=en_IE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages gwenview depends on:
ii  kio 5.28.0-2
ii  libc6   2.24-9
ii  libexiv2-14 0.25-3+b1
ii  libgcc1 1:6.3.0-12
ii  libjpeg62-turbo 1:1.5.1-2
ii  libkf5activities5   5.28.0-1
ii  libkf5baloo55.28.0-2
ii  libkf5completion5   5.28.0-1
ii  libkf5configcore5   5.28.0-2
ii  libkf5configgui55.28.0-2
ii  libkf5configwidgets55.28.0-2
ii  libkf5coreaddons5   5.28.0-2
ii  libkf5filemetadata3 5.28.0-1+b2
ii  libkf5i18n5 5.28.0-2
ii  libkf5iconthemes5   5.28.0-2
ii  libkf5itemmodels5   5.28.0-2
ii  libkf5itemviews55.28.0-1
ii  libkf5jobwidgets5   5.28.0-2
ii  libkf5kdcraw5   16.04.0-2
ii  libkf5kdelibs4support5  5.28.0-1
ii  libkf5kiocore5  5.28.0-2
ii  libkf5kiofilewidgets5   5.28.0-2
ii  libkf5kiowidgets5   5.28.0-2
ii  libkf5kipi31.0.04:16.08.2-1
ii  libkf5notifications55.28.0-1
ii  libkf5parts55.28.0-1
ii  libkf5service-bin   5.28.0-1
ii  libkf5service5  5.28.0-1
ii  libkf5textwidgets5  5.28.0-1
ii  libkf5widgetsaddons55.28.0-2
ii  libkf5xmlgui5   5.28.0-1
ii  liblcms2-2  2.8-4
ii  libphonon4qt5-4 4:4.9.0-4
ii  libpng16-16 1.6.28-1
ii  libqt5core5a5.7.1+dfsg-3+b1
ii  libqt5gui5  5.7.1+dfsg-3+b1
ii  libqt5opengl5   5.7.1+dfsg-3+b1
ii  libqt5printsupport5 5.7.1+dfsg-3+b1
ii  libqt5svg5  5.7.1~20161021-2+b2
ii  libqt5widgets5  5.7.1+dfsg-3+b1
ii  libqt5x11extras55.7.1~20161021-2
ii  libstdc++6  6.3.0-12
ii  libx11-62:1.6.4-3
ii  phonon4qt5  4:4.9.0-4

Versions of packages gwenview recommends:
ii  kamera 4:16.08.3-1
ii  kio-extras 4:16.08.3-1
ii  qt5-image-formats-plugins  5.7.1~20161021-2

gwenview suggests no packages.

-- no debconf information



Bug#848835: libkf5akonadicore-bin: really necessary to depend on akonadi-server?

2016-12-20 Thread Christoph Anton Mitterer
On Tue, 2016-12-20 at 15:46 +0100, Maximiliano Curia wrote:
> 
> The problem here is that we used to inject the -bin dependency
> whenever you 
> linked against libkf5akonadicore, this is no longer needed, and the
> dependency 
> injection is no longer there in the current version, but, since the
> dependency 
> injection happends at build time, this needs a rebuild of kf5-
> kdepimlibs for 
> the binary packages to drop the -bin dependency.

Ah... I see... can you trigger the rebuild? Or should I simply reassign
this bug to the package and requesting one?


Thanks :)
Chris.

smime.p7s
Description: S/MIME cryptographic signature


Bug#848835: libkf5akonadicore-bin: really necessary to depend on akonadi-server?

2016-12-19 Thread Christoph Anton Mitterer
Package: libkf5akonadicore-bin
Version: 16.04.3-4
Severity: normal


Hi.

Since 16.04.3-4 this depends on akonadi-server…

Is this reall necessar? I mean it' just a librar package and probably
shouldn't force one to install yet another daemon just beacuse some other
package depends on it.

In my case I just use digikam, not even in a KDE but Cinnamon desktop env,…
digikam depends on digikam-private-libs which in turn depends on
libkf5akonadicontact5 which in turn depends on libkf5akonadicore-bin which
now pulls in the server.

Can't this be circumvented somehow? I mean many packages e.g. build agaist
and depend on the avahi client libs, but these only recommend the
avahi server and don't force one to install it.


Cheers,
Chris.


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

Kernel: Linux 4.8.0-2-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_DE.UTF-8, LC_CTYPE=en_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libkf5akonadicore-bin depends on:
ii  libc6  2.24-8
ii  libgcc11:6.2.1-7
ii  libkf5akonadiwidgets5  4:16.04.3-3+b1
ii  libkf5coreaddons5  5.28.0-1
ii  libkf5i18n55.28.0-1
ii  libqt5core5a   5.7.1+dfsg-1
ii  libqt5widgets5 5.7.1+dfsg-1
ii  libstdc++6 6.2.1-7

libkf5akonadicore-bin recommends no packages.

libkf5akonadicore-bin suggests no packages.

-- no debconf information


Bug#799951: ark does not start

2015-09-25 Thread Christoph Pfister
2015-09-25 1:54 GMT+02:00 Scott Kitterman :

> If you install libkf5parts-plugins does it work better?

No; but after experimenting a bit, I found that installing
'libkf5service-bin' solves the problem (guess what - it contains
kbuildsycoca5).

(This was really a full test cycle: with the same set of installed
packages as in the initial post, create new user --> ark does not
work; install libkf5service-bin --> ark works).



Bug#799951: ark does not start

2015-09-24 Thread Christoph Pfister
Package: ark
Version: 4:15.08.1-1

This is on a freshly bootstrapped amd64 unstable system:

lxuser@debian:~$ ark
ark.main: Error loading Ark KPart.
lxuser@debian:~$

(screenshot of the popup is attached).

Likely, this has something to do with the kpart infrastructure, but
you guys know that better than I do.

Note that this is on a Xfce system, so just in case that there are
dependency issues, I've attached the list of installed packages.

Cheers,

Christoph
acl 2.2.52-2
adduser 3.113+nmu3
adwaita-icon-theme  3.18.0-1
alsa-utils  1.0.29-1
amd64-microcode 2.20141028.1
anacron 2.3-23
apg 2.2.3.dfsg.1-2
apt 1.0.10.2
ark 4:15.08.1-1
base-files  9.4
base-passwd 3.5.38
bash4.3-14
bash-completion 1:2.1-4.2
bc  1.06.95-9
bind9-host  1:9.9.5.dfsg-12
binutils2.25.1-3
blt 2.5.3+dfsg-1
bomber  4:4.12.4-1
bovo4:4.11.3-2
bsdmainutils9.0.6
bsdutils1:2.27-3
bzip2   1.0.6-8
ca-certificates 20150426
ca-certificates-java20140324
catdoc  0.94.4-1.1
cdparanoia  3.10.2+debian-11
cdrdao  1:1.2.3-2+b1
coinor-libcbc3  2.8.12-1+b1
coinor-libcgl1  0.58.9-1+b1
coinor-libclp1  1.15.10-1+b1
coinor-libcoinmp1v5:amd64   1.7.6+dfsg1-2
coinor-libcoinutils3v5  2.9.15-3.1
coinor-libosi1v50.106.9-2+b1
console-setup   1.132
console-setup-linux 1.132
consolekit  0.4.6-5
coreutils   8.23-4
cpio2.11+dfsg-4.1
cpp 4:5.2.1-4
cpp-4.9 4.9.3-4
cpp-5   5.2.1-17
cpufrequtils008-1
cups2.1.0-4
cups-client 2.1.0-4
cups-common 2.1.0-4
cups-core-drivers   2.1.0-4
cups-daemon 2.1.0-4
cups-filters1.0.76-1
cups-filters-core-drivers   1.0.76-1
cups-ppdc   2.1.0-4
cups-server-common  2.1.0-4
dash0.5.7-4+b1
dbus1.10.0-3
dbus-x111.10.0-3
dc  1.06.95-9
dconf-gsettings-backend:amd64   0.24.0-2
dconf-service   0.24.0-2
debconf 1.5.57
debian-archive-keyring  2014.3
debianutils 4.5.1
default-jdk 2:1.7-52
default-jre 2:1.7-52
default-jre-headless2:1.7-52
desktop-file-utils  0.22-1
dh-python   2.20150826
dictionaries-common 1.26.3
diffutils   1:3.3-1+b1
ding1.8-1
dkms2.2.0.3-2
dmsetup 2:1.02.104-1
docbook-xml 4.5-7.3
docbook-xsl 1.78.1+dfsg-1
dolphin 4:15.08.1-1
dosfstools  3.0.28-2
dpkg1.18.3
dvd+rw-tools7.1-11+b1
e2fslibs:amd64  1.42.13-1
e2fsprogs   1.42.13-1
eject   2.1.5+deb1+cvs20081104-13.1
emacsen-common  2.0.8
exo-utils   0.10.7-1
filelight   4:15.08.0-1
findutils   4.4.2-9+b1
firmware-linux  0.44
firmware-linux-free 3.4
firmware-linux-nonfree  0.44
firmware-ralink 0.44
firmware-realtek0.44
fontconfig  2.11.0-6.3
fontconfig-config   2.11.0-6.3
fonts-crosextra-caladea 20130214-1
fonts-crosextra-carlito 20130920-1
fonts-dejavu2.35-1
fonts-dejavu-core   2.35-1
fonts-dejavu-extra  2.35-1
fonts-liberation1.07.4-1
fonts-linuxlibertine5.3.0-2
fonts-opensymbol2:102.6+LibO5.0.2-1
fonts-sil-gentium-basic 1.1-7
foomatic-db-compressed-ppds 20150825-1
g++ 4:5.2.1-4
g++-5   5.2.1-17
gcc 4:5.2.1-4
gcc-4.9 4.9.3-4
gcc-4.9-base:amd64  4.9.3-4
gcc-5   5.2.1-17
gcc-5-base:amd645.2.1-17
gconf-service   3.2.6-3
gconf2-common   3.2.6-3
gdb 7.10-1
genisoimage 9:1.1.11-3
getmail44.48.0-1
gettext-base0.19.6-1
ghostscript 9.16~dfsg-2
gimp2.8.14-1+b1
gimp-data   2.8.14-1
gir1.2-glib-2.0:amd64   1.44.0-1+b2
git 1:2.5.3-1
git-man 1:2.5.3-1
glib-networking-common  2.44.0-2
glib-networking-services2.44.0-2+b1
glib-networking:amd64   2.44.0-2+b1
gnome-icon-theme3.12.0-1
gnupg   1.4.19-5
gnupg-agent 2.1.8-1
gnupg2  2.1.8-1
gpgv1.4.19-5
granatier   4:4.14.2-1
graphviz2.38.0-10
grep2.21-2
groff-base  1.22.3-1
growisofs   7.1-11+b1
grub-common 2.02~beta2-28
grub-pc 2.02~beta2-28
grub-pc-bin 2.02~beta2-28
grub2-common2.02~beta2-28
gsettings-desktop-schemas   3.18.0-1
gsfonts 1:8.11+urwcyr1.0.7~pre44-4.2
gstreamer0.10-alsa:amd640.10.36-2
gstreamer0.10-plugins-base:amd640.10.36-2
gstreamer1.0-alsa:amd64 1.4.5-2
gstreamer1.0-libav:amd641.4.5-3
gstreamer1.0-plugins-base:amd64 1.4.5-2
gstreamer1.0-plugins-good:amd64 1.4.5-2+b2
gstreamer1.0-pulseaudio:amd64   1.4.5-2+b2
gtk2-engines-xfce   3.2.0-2
gwenview4:15.08.1-1
gzip1.6-4
hexedit 1.2.13-1
hicolor-icon-theme  0.13-1
hostname3.16
hplip   3.14.6-1+b2
hplip-data  3.14.6-1
hunspell1.3.3-3+b1
hunspell-de-ch  20131206-6
hunspell-en-us  20070829-6
icc-profiles2.0.1-1
icc-profiles-free   2.0.1+dfsg-1
icedove 38.2.0-1
icedove-l10n-de 1:38.0.1-1
iceweasel   38.3.0esr-1
iceweasel-l10n-de   1:38.3.0esr-1
ifupdown0.7.54
imagemagick 8:6.8.9.9-6
imagemagick-6.q16   8:6.8.9.9-6
imagemagick-common  8:6.8.9.9-6
init1.23
init-system-helpers 1.23
initramfs-tools 0.120
initscripts 2.88dsf-59.2
insserv 1.14.0-5
iproute24.1.1-1
ip

Bug#799927: pkg-kde-tools: fails to handle some buildlogs

2015-09-24 Thread Christoph Egger
Package: pkg-kde-tools
Version: 0.15.19
Severity: wishlist

Hi!

Don't know how one would really go ahead with this and if this is the
right place for a fix. But seems on parallel build there can be output
in the buildlog in between the symbols diff in which case
pkgkde-symbolshelper can't handle the log.

  Christoph

->
   
https://buildd.debian.org/status/fetch.php?pkg=libgc&arch=hurd-i386&ver=1%3A7.4.2-2&stamp=1440188006

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

Kernel: Linux 4.1.0-2-amd64 (SMP w/6 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages pkg-kde-tools depends on:
ii  libdpkg-perl  1.18.2
ii  perl  5.20.2-6

Versions of packages pkg-kde-tools recommends:
ii  dpkg-dev 1.18.2
ii  libwww-perl  6.13-1

Versions of packages pkg-kde-tools suggests:
ii  cdbs   0.4.130
ii  debhelper  9.20150811

-- no debconf information



Bug#788657: libutempter0: doesn't clean up unused/retired utempter group

2015-06-14 Thread Christoph Anton Mitterer
Hey Felix

On Sun, 2015-06-14 at 11:46 +0200, Felix Geyer wrote:
> You can't be certain that there are no files on the system that have
> been chgrp to that group.
> If the group is removed its gid might get reused.

Sure,... which is IMHO one of the several general deficiencies of how
Debian handles their system users/groups.
But the same would apply to many other packages as well, which in fact
*do* remove their users/groups at purge, for many of them where it is
even much more likely that people actually used it.


> The cost of having one more entry in /etc/group is really small so
> I've decided not to remove the group on upgrade.
> 
> See also https://wiki.debian.org/AccountHandlingInMaintainerScripts
> for some more discussion about the pros and cons of removing 
> accounts.

May I suggest then, that you add an entry to the NEWS file, where you
tell that this is no longer used, and people can typically safely
remove it if nothing on their system still uses these as owners?
Perhaps even giving a example find / -group foo command to look for
such files?

That way people would have a more likely chance to notice that change
and keep their systems consistent with what fresh installations would
have.


Thanks,
Chris.

smime.p7s
Description: S/MIME cryptographic signature


Bug#788657: libutempter0: doesn't clean up unused/retired utempter group

2015-06-13 Thread Christoph Anton Mitterer
Package: libutempter0
Version: 1.1.6-1
Severity: normal


Hi.

Apparently with this release the group utempter is no longer used.
This doesn't seem to be one of the "base groups" as defined by the
base-passwd package.

It is however not properly cleaned up, so legacy installations
would keep it forever without any good reason.

Could you please clean that up in one of the following uploads?


Cheers,
Chris.


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

Kernel: Linux 4.0.0-1-amd64 (SMP w/8 CPU cores)
Locale: LANG=en_DE.UTF-8, LC_CTYPE=en_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libutempter0 depends on:
ii  libc6  2.19-18

libutempter0 recommends no packages.

libutempter0 suggests no packages.

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/20150613223531.25777.29824.report...@heisenberg.scientia.net



Bug#728523: [kdelibs-bin] alternative solution

2015-05-05 Thread Christoph Franzen
Package: kdelibs-bin

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

Hi,

I also want to use several old KDE programmes, hence I suggest an
alternative solution to consider:

You could, if already present, divert those two OLD files to
non-conflicting names, like "/usr/bin/kmailservice3" and
"/usr/bin/ktelnetservice3". A script would have to test for the old
"kdelibs4c2a" package's existence, and for the diversion to be already
in place, in order to make sure to not divert previous versions of the
NEW package's files, which can simply be replaced by a more recent
version.

In pseudo-code:

if package_installed(kdelibs4c2a)
then {
  if not_already_diverted(ktelnetservice)
  then {
rename(ktelnetservice->ktelnetservice3)
   }
  if not_already_diverted(kmailservice)
  then {
rename(kmailservice->kmailservice3)
   }
 }
continue_normally

This should not have any impact on leftover old software, which,
if it uses those files at all, would simply call the new versions
instead. I think the probability of failure due to the new files
reacting differently is very low in this special case.

Installing old KDE-3-software containing the same files AFTER
the upgrade of KDE would let the package management refuse to overwrite
the then already present NEW file versions, so even if "oldstable" is
still in "sources.list", there is no real problem.

Having moved pre-installed files out of the way, there is no need to
introduce an otherwise unnecessary conflict.

Regards, Christoph Franzen


signature.asc
Description: PGP signature


Bug#771188: multi-user.target boots to graphical mode

2015-03-20 Thread Christoph Pleger
Hello,

> Is x-display-manager.target active?

Yes, it is.

Regards
  Christoph


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/bf1ff18c42a159ad456020d2892ff763.squir...@postweb.cs.tu-dortmund.de



Bug#771188: multi-user.target boots to graphical mode

2015-03-20 Thread Christoph Pleger
Hello,


>> Say you use kdm, which doesn't ship a native service file yet and
>> doesn't yet support the new scheme, you could try a different approach:
>> Add systemd.mask=kdm.service to the kernel command line
>>
>> This will runtime mask the service and prohibit it's start.
>>
>> Btw, when you boot with systemd.unit=multi-user.target, what is the
>> output of
>> systemctl status graphical.target multi-user.target
>>
>> My gut feeling is, that it's actually a bug in the actual display
>> manager and should be re-assigned accordingly.
>>
>
> This needs to be solved by display-manager providing a proper service
> file and setting up the display-manager.service symlink as outlined in
> the wiki.
>
> From the systemctl dump, you seem to be using kdm, therefore
> re-assigning and merging with the existing bug report.

I have a fresh jessie installation with gdm3 as default display manager,
and after setting multi-user.target as the default target and rebooting,
gdm3 still starts at boot.

This is the output of systemctl status graphical.target multi-user.target:

  graphical.target - Graphical Interface
   Loaded: loaded (/lib/systemd/system/graphical.target; static)
   Active: inactive (dead)
 Docs: man:systemd.special(7)

  multi-user.target - Multi-User System
   Loaded: loaded (/lib/systemd/system/multi-user.target; enabled)
   Active: active since Fr 2015-03-20 09:52:18 CET; 9min ago
 Docs: man:systemd.special(7)

Regards
  Christoph


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
https://lists.debian.org/3c297fe6faf5f2f23e750184ca44dbf0.squir...@postweb.cs.tu-dortmund.de



Bug#749427: isql fails to load multi-arched odbc drivers

2014-05-27 Thread Christoph Berg
Re: To Debian Bug Tracking System 2014-05-26 
<20140526212058.ga1...@msgid.df7cb.de>
> Package: libiodbc2
> Version: 3.52.9-1
> Severity: grave
> 
> When running the psqlodbc testsuite, I found that isql no longer loads
> psqlodbca.so correctly:
> 
> 1: SQLDriverConnect = [iODBC][Driver Manager]psqlodbca.so: Kann die 
> Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden (0) 
> SQLSTATE=0
> 2: SQLDriverConnect = [iODBC][Driver Manager]Specified driver could not be 
> loaded (0) SQLSTATE=IM003
> 
> strace:
> open("/usr/lib/x86_64-linux-gnu/psqlodbca.so", O_RDONLY|O_CLOEXEC) = -1 
> ENOENT (No such file or directory)
> 
> The correct location includes an extra "odbc/" in the path:
> 
> odbc-postgresql:amd64: /usr/lib/x86_64-linux-gnu/odbc/psqlodbca.so

Steps to reproduce:

sudo apt-get install odbc-postgresql postgresql, unixodbc, iodbc
apt-get source psqlodbc
cd */
debian/tests/isql

Fwiw, the bug seems to be in iodbc, not libiodbc2 - I ran into the bug
after upgrading only iodbc.

Christoph
-- 
c...@df7cb.de | http://www.df7cb.de/


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140527083019.ga6...@msgid.df7cb.de



Bug#749427: isql fails to load multi-arched odbc drivers

2014-05-26 Thread Christoph Berg
Package: libiodbc2
Version: 3.52.9-1
Severity: grave

When running the psqlodbc testsuite, I found that isql no longer loads
psqlodbca.so correctly:

1: SQLDriverConnect = [iODBC][Driver Manager]psqlodbca.so: Kann die 
Shared-Object-Datei nicht öffnen: Datei oder Verzeichnis nicht gefunden (0) 
SQLSTATE=0
2: SQLDriverConnect = [iODBC][Driver Manager]Specified driver could not be 
loaded (0) SQLSTATE=IM003

strace:
open("/usr/lib/x86_64-linux-gnu/psqlodbca.so", O_RDONLY|O_CLOEXEC) = -1 ENOENT 
(No such file or directory)

The correct location includes an extra "odbc/" in the path:

odbc-postgresql:amd64: /usr/lib/x86_64-linux-gnu/odbc/psqlodbca.so

-- System Information:
Debian Release: jessie/sid
  APT prefers testing
  APT policy: (700, 'testing'), (600, 'unstable'), (150, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

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

Versions of packages libiodbc2 depends on:
ii  libc6  2.18-5
ii  multiarch-support  2.18-5

libiodbc2 recommends no packages.

Versions of packages libiodbc2 suggests:
ii  iodbc  3.52.9-1

-- no debconf information

Christoph
-- 
c...@df7cb.de | http://www.df7cb.de/


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: https://lists.debian.org/20140526212058.ga1...@msgid.df7cb.de



Re: Bug#719058: libgc symbols error on mips64(el)

2013-08-11 Thread Christoph Egger
Hi!

YunQiang Su  writes:
> Mips64(el) 's symbols is a little different, or it will ftbfs.

Hmm strange. Maybe the symbols helper doesn't know mips64(el) yet?

Regards

Christoph


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87pptkj9g0@mitoraj.siccegge.de



Bug#714768: [pkgkde-getbuildlogs] support debian-ports as well

2013-07-02 Thread Christoph Egger
Package: pkg-kde-tools
Version: 0.15.3
Severity: wishlist
File: /usr/bin/pkgkde-getbuildlogs

Hi!

  Would be cool if debian-ports was supported as well. Should be
possible with the same code just replacing buildd.debian.org by
buildd.debian-ports.org

Regards

Christoph

-- System Information:
Debian Release: 7.1
  APT prefers stable
  APT policy: (990, 'stable'), (500, 'unstable'), (500, 'testing'), (500, 
'oldstable'), (1, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 3.9-1-amd64 (SMP w/6 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 pkg-kde-tools depends on:
ii  libdpkg-perl  1.16.10
ii  perl  5.14.2-21

Versions of packages pkg-kde-tools recommends:
ii  dpkg-dev 1.16.10
ii  libwww-perl  6.04-1

Versions of packages pkg-kde-tools suggests:
ii  cdbs   0.4.115+deb7u1
ii  debhelper  9.20120909

-- no debconf information


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130702173659.29273.55978.reportbug@hepworth.asgard



qtchooser vs. alternatives system

2013-05-24 Thread Christoph Anton Mitterer
Hi.

I just stumbled across the new qtchooser... isn't that duplicating the
functionality what we already have with the alternatives system, and
shouldn't rather that be used instead of adding a Qt special way of
handling things?


Cheers,
Chris.,


smime.p7s
Description: S/MIME cryptographic signature


Bug#700530: qt frames empty

2013-02-21 Thread Christoph Egger
Sune Vuorela  writes:
> So, after a lot of testing and involving like 10 different people there is 
> now 
> actually kind of a fix.

Thanks to all of you!

> The fix is surprisingly in xorg-server and can be found here:
> http://people.debian.org/~jcristau/kbsd-peercred.diff
>
> having it real-life tested on linux and on kbsd on squeeze and wheezy/sid 
> would be much appreciated. success reports go to me somehow.

Works perfectly well here

kfeebsd-amd64 / kfreebsd-10 / wheezy

Christoph


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87r4k9w6jj@mitoraj.siccegge.de



Bug#700530: qt frames remain empty in kfreebsd since -10 to -11 update

2013-02-13 Thread Christoph Egger
Source: qt4-x11
Version: 4:4.8.2+dfsg-11
Severity: serious

Hi!

  Since I updated my kfreebsd testing system yesterday all qt based
applications only show an empty window. I also get X Errors about SHM
which unfortunately sound like the fix for CVE-2013-0254. I personally
won't have time to work on that issue at least until end of next week,
sorry.

Christoph

X Error: BadAccess (attempt to access private resource denied) 10
  Extension:140 (MIT-SHM)
  Minor opcode: 1 (X_ShmAttach)
  Resource id:  0x10a
X Error: BadShmSeg (invalid shared segment parameter) 148
  Extension:140 (MIT-SHM)
  Minor opcode: 5 (X_ShmCreatePixmap)
  Resource id:  0x15b
X Error: BadDrawable (invalid Pixmap or Window parameter) 9
  Major opcode: 62 (X_CopyArea)
  Resource id:  0x1c0001a


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

Kernel: kFreeBSD 10.0-0-amd64
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20130214005317.4294.43999.report...@mitoraj.siccegge.de



Bug#697647: kwalletd not working

2013-01-07 Thread Christoph Egger
Package: kde-runtime
Version: 4:4.8.4-2
Severity: normal
File: /usr/bin/kwalletd
User: debian-...@lists.debian.org

Hi!

I can't use kwallet here on my system which is either a problem with
not using gnome/kde as desktop (slim->herbstluftwm->no desktop
environment here) or with using kfreebsd I guess. Would be cool if I
can narrow it down to one of the causes.

Symptoms:

 * kwalletmanager / python-keyring /
   iceweasel-kwallet-extionsion-thing all seem to run into a timeout
   for most (all?) operations and not succeeding
 * Iff I freshly launch kwalletmanager with no keyring open it sees
   the kwallet keyring for a moment (can select it as default in
   settings). As soon as I unlock it all keyrings are gone (and the
   detail window for the freshly unlocked keyring in kwalletmanager
   doesn't let me do anything).

Debug output of kwalletd / kwalletmanager don't get me any further:

% kwalletd --nofork 
QDBusConnection: session D-Bus connection created before QCoreApplication. 
Application may misbehave.
kwalletd(11717)/KSharedDataCache ensureFileAllocated: This system misses 
support for posix_fallocate() -- ensure this partition has room for at least 
10547304 bytes. 
kcmshell(11782)/KSharedDataCache ensureFileAllocated: This system misses 
support for posix_fallocate() -- ensure this partition has room for at least 
10547304 bytes. 
kcmshell(11238) KCMShell::appExit:
kcmshell(11426) KCMShell::appExit:
kcmshell(11426) KCMShell::appExit:
kcmshell(11426) KCMShell::appExit: ' "org.kde.kcmshell_kwalletconfig" ' closed, 
dereferencing.
kcmshell(11238) KCMShell::appExit:
kcmshell(11238) KCMShell::appExit: ' "org.kde.kcmshell_kwalletconfig" ' closed, 
dereferencing.
QDBusConnection: session D-Bus connection created before QCoreApplication. 
Application may misbehave.
QDBusConnection: session D-Bus connection created before QCoreApplication. 
Application may misbehave.
kcmshell(11891)/KSharedDataCache ensureFileAllocated: This system misses 
support for posix_fallocate() -- ensure this partition has room for at least 
10547304 bytes. 
kcmshell(11426) KCMShell::appExit:
kcmshell(11238) KCMShell::appExit:
kcmshell(11426) KCMShell::appExit:
kcmshell(11426) KCMShell::appExit: ' "org.kde.kcmshell_kwalletconfig" ' closed, 
dereferencing.
kcmshell(11238) KCMShell::appExit:
kcmshell(11238) KCMShell::appExit: ' "org.kde.kcmshell_kwalletconfig" ' closed, 
dereferencing.


% kwalletmanager --nofork
QDBusConnection: session D-Bus connection created before
QCoreApplication. Application may misbehave.
kwalletmanager(11781)/KSharedDataCache ensureFileAllocated: This
system misses support for posix_fallocate() -- ensure this partition
has room for at least 10547304 bytes. 
QSystemTrayIcon::setVisible: No Icon set
Connecting to deprecated signal 
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)

Regards

Christoph

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

Kernel: kFreeBSD 10.0-0-amd64
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 kde-runtime depends on:
ii  kde-runtime-data4:4.8.4-2
ii  kdelibs5-plugins4:4.8.4-4
ii  libattica0  0.2.0-1
ii  libc0.1 2.13-37
ii  libcanberra00.28-6
ii  libexiv2-12 0.23-1
ii  libgcc1 1:4.7.2-4
ii  libjpeg88d-1
ii  libkcmutils44:4.8.4-4
ii  libkdeclarative54:4.8.4-4
ii  libkdecore5 4:4.8.4-4
ii  libkdesu5   4:4.8.4-4
ii  libkdeui5   4:4.8.4-4
ii  libkdewebkit5   4:4.8.4-4
ii  libkdnssd4  4:4.8.4-4
ii  libkemoticons4  4:4.8.4-4
ii  libkfile4   4:4.8.4-4
ii  libkhtml5   4:4.8.4-4
ii  libkidletime4   4:4.8.4-4
ii  libkio5 4:4.8.4-4
ii  libkmediaplayer44:4.8.4-4
ii  libknewstuff3-4 4:4.8.4-4
ii  libknotifyconfig4   4:4.8.4-4
ii  libkparts4  4:4.8.4-4
ii  libkpty44:4.8.4-4
ii  libnepomuk4 4:4.8.4-4
ii  libnepomukquery4a   4:4.8.4-4
ii  libopenexr6 1.6.1-6
ii  libphonon4  4:4.6.0.0-2
ii  libplasma3  4:4.8.4-4
ii  libpulse-mainloop-glib0 2.0-6
ii  libpulse0   2.0-6
ii  libqt4-dbus 4:4.8.2+dfsg-6
ii  libqt4-declarative  4:4.8.2+dfsg-6
ii  libqt4-network  4:4.8.2+dfsg-6
ii  libqt4-

Bug#683933: [qtcreator] undefined symbol: _ZTVN5Botan11POSIX_TimerE

2012-08-05 Thread Christoph Egger
Package: qtcreator
Version: 2.5.0-1
Severity: serious

Hi!

  qtcreator doesn't run here:

% qtcreator
Failed to load core: 
/usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/libCore.so: Cannot load 
library /usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/libCore.so: 
(/usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/../../libBotan.so.1: 
undefined symbol: _ZTVN5Botan11POSIX_TimerE)

Regards

Christoph

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

Kernel: kFreeBSD 8.3-1-amd64
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 qtcreator depends on:
ii  libc0.1 2.13-33
ii  libgcc1 1:4.7.1-2
ii  libqt4-declarative  4:4.8.2-1
ii  libqt4-designer 4:4.8.2-1
ii  libqt4-help 4:4.8.2-1
ii  libqt4-network  4:4.8.2-1
ii  libqt4-script   4:4.8.2-1
ii  libqt4-sql  4:4.8.2-1
ii  libqt4-sql-sqlite   4:4.8.2-1
ii  libqt4-svg  4:4.8.2-1
ii  libqt4-xml  4:4.8.2-1
ii  libqtcore4  4:4.8.2-1
ii  libqtgui4   4:4.8.2-1
ii  libqtwebkit42.2.1-4+b1
ii  libstdc++6  4.7.1-2

Versions of packages qtcreator recommends:
ii  gdb  7.4.1-1.1
ii  make 3.81-8.2
ii  qt4-demos4:4.8.2-1
ii  qt4-dev-tools4:4.8.2-1
ii  qt4-doc  4:4.8.2-1
ii  qt4-qmlviewer4:4.8.2-1
ii  qtcreator-doc2.5.0-1
ii  rxvt-unicode-256color [x-terminal-emulator]  9.15-2
ii  xterm [x-terminal-emulator]  278-1

Versions of packages qtcreator suggests:
pn  cmake  
ii  g++4:4.7.1-1
ii  git1:1.7.10.4-1
ii  kdelibs5-data  4:4.8.4-3
ii  subversion 1.6.17dfsg-4

-- no debconf information

-- 


-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/20120805144939.ga8...@mitoraj.siccegge.de



Bug#677854: okular: FTBFS[kfreebsd]: symbol changes

2012-06-17 Thread Christoph Egger
Package: src:okular
Version: 4:4.8.4-1
Severity: serious
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

dpkg-gensymbols: warning: some new symbols appeared in the symbols file: see 
diff output below
dpkg-gensymbols: warning: some symbols or patterns disappeared in the symbols 
file: see diff output below
dpkg-gensymbols: warning: debian/libokularcore1/DEBIAN/symbols doesn't match 
completely debian/libokularcore1.symbols
--- debian/libokularcore1.symbols (libokularcore1_4:4.8.4-1_kfreebsd-amd64)
+++ dpkg-gensymbolskY7BnO   2012-06-17 02:00:34.0 +
@@ -1,8 +1,10 @@
 libokularcore.so.1 libokularcore1 #MINVER#
+ _ZN14KBookmarkGroupD1Ev@Base 4:4.8.4-1
+ _ZN14KBookmarkGroupD2Ev@Base 4:4.8.4-1
  (optional=external)_ZN19KCoreConfigSkeleton8ItemEnum7Choice2D1Ev@Base 4:4.6.5
  (optional=external)_ZN19KCoreConfigSkeleton8ItemEnum7Choice2D2Ev@Base 4:4.6.5
- (optional=external|arch=kfreebsd-amd64 kfreebsd-i386)_ZN4KUrl4ListD1Ev@Base 
4:4.6.5
- (arch=kfreebsd-amd64 kfreebsd-i386)_ZN4KUrl4ListD2Ev@Base 4:4.6.5
+#MISSING: 4:4.8.4-1# (optional=external|arch=kfreebsd-amd64 
kfreebsd-i386)_ZN4KUrl4ListD1Ev@Base 4:4.6.5
+#MISSING: 4:4.8.4-1# (arch=kfreebsd-amd64 kfreebsd-i386)_ZN4KUrl4ListD2Ev@Base 
4:4.6.5
  _ZN6Okular10Annotation11setContentsERK7QString@Base 4:4.4.5
  _ZN6Okular10Annotation11setNativeIdERK8QVariant@Base 4:4.4.5
  _ZN6Okular10Annotation13setUniqueNameERK7QString@Base 4:4.4.5
@@ -16,6 +18,7 @@
  _ZN6Okular10Annotation5Style12setLineStyleENS0_9LineStyleE@Base 4:4.4.5
  _ZN6Okular10Annotation5Style13setLineEffectENS0_10LineEffectE@Base 4:4.4.5
  _ZN6Okular10Annotation5Style18setEffectIntensityEd@Base 4:4.4.5
+ _ZN6Okular10Annotation5Style7PrivateaSERKS2_@Base 4:4.8.4-1
  _ZN6Okular10Annotation5Style8setColorERK6QColor@Base 4:4.4.5
  _ZN6Okular10Annotation5Style8setMarksEi@Base 4:4.4.5
  _ZN6Okular10Annotation5Style8setWidthEd@Base 4:4.4.5
@@ -30,8 +33,9 @@
  _ZN6Okular10Annotation5styleEv@Base 4:4.4.5
  _ZN6Okular10Annotation6Window10setSummaryERK7QString@Base 4:4.4.5
  _ZN6Okular10Annotation6Window10setTopLeftERKNS_15NormalizedPointE@Base 4:4.4.5
- (arch=i386)_ZN6Okular10Annotation6Window7PrivateD1Ev@Base 4:4.8.4
- (arch=i386)_ZN6Okular10Annotation6Window7PrivateD2Ev@Base 4:4.8.4
+ _ZN6Okular10Annotation6Window7PrivateD1Ev@Base 4:4.8.4
+ _ZN6Okular10Annotation6Window7PrivateD2Ev@Base 4:4.8.4
+ _ZN6Okular10Annotation6Window7PrivateaSERKS2_@Base 4:4.8.4-1
  _ZN6Okular10Annotation6Window7setTextERK7QString@Base 4:4.4.5
  _ZN6Okular10Annotation6Window8setFlagsEi@Base 4:4.4.5
  _ZN6Okular10Annotation6Window8setTitleERK7QString@Base 4:4.4.5
@@ -388,7 +392,7 @@
  _ZN6Okular19HighlightAnnotation16setHighlightTypeENS0_13HighlightTypeE@Base 
4:4.4.5
  _ZN6Okular19HighlightAnnotation4Quad10setFeatherEd@Base 4:4.4.5
  _ZN6Okular19HighlightAnnotation4Quad11setCapStartEb@Base 4:4.4.5
- (arch=i386)_ZN6Okular19HighlightAnnotation4Quad7PrivateaSERKS2_@Base 4:4.8.4
+ _ZN6Okular19HighlightAnnotation4Quad7PrivateaSERKS2_@Base 4:4.8.4
  _ZN6Okular19HighlightAnnotation4Quad8setPointERKNS_15NormalizedPointEi@Base 
4:4.4.5
  _ZN6Okular19HighlightAnnotation4Quad9setCapEndEb@Base 4:4.4.5
  _ZN6Okular19HighlightAnnotation4Quad9transformERK7QMatrix@Base 4:4.4.5
@@ -783,8 +787,12 @@
  _ZN6Okular9GeneratorD0Ev@Base 4:4.4.5
  _ZN6Okular9GeneratorD1Ev@Base 4:4.4.5
  _ZN6Okular9GeneratorD2Ev@Base 4:4.4.5
- (arch=kfreebsd-amd64 kfreebsd-i386)_ZN9KBookmark4ListD1Ev@Base 4:4.6.5
- (arch=kfreebsd-amd64 kfreebsd-i386)_ZN9KBookmark4ListD2Ev@Base 4:4.6.5
+#MISSING: 4:4.8.4-1# (arch=kfreebsd-amd64 
kfreebsd-i386)_ZN9KBookmark4ListD1Ev@Base 4:4.6.5
+#MISSING: 4:4.8.4-1# (arch=kfreebsd-amd64 
kfreebsd-i386)_ZN9KBookmark4ListD2Ev@Base 4:4.6.5
+ _ZN9KBookmarkD1Ev@Base 4:4.8.4-1
+ _ZN9KBookmarkD2Ev@Base 4:4.8.4-1
+ _ZN9KJSStringD1Ev@Base 4:4.8.4-1
+ _ZN9KJSStringD2Ev@Base 4:4.8.4-1
  _ZNK6Okular10Annotation10canBeMovedEv@Base 4:4.4.5
  _ZNK6Okular10Annotation10uniqueNameEv@Base 4:4.4.5
  _ZNK6Okular10Annotation12creationDateEv@Base 4:4.4.5
dh_makeshlibs: dpkg-gensymbols -plibokularcore1 -Idebian/libokularcore1.symbols 
-Pdebian/libokularcore1 returned exit code 1
make[1]: *** [pre_binary-arch_dh_makeshlibs] Error 1
make[1]: Leaving directory 
`/build/buildd-okular_4.8.4-1-kfreebsd-amd64-Bj0OBg/okular-4.8.4'
make: *** [debian/dhmk_binary-arch] Error 2

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=okular&arch=kfreebsd-amd64&ver=4%3A4.8.4-1&stamp=1339898466

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



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

Bug#672527: qtcreator: FTBFS[kfreebsd-*] linker error

2012-05-11 Thread Christoph Egger
Package: src:qtcreator
Version: 2.5.0~rc-1
Severity: serious
Tags: sid wheezy
User: debian-...@lists.debian.org
Usertags: kfreebsd
X-Debbugs-Cc: debian-...@lists.debian.org
Justification: fails to build from source (but built successfully in the past)

Hi!

Your package failed to build on the kfreebsd-* buildds:

dpkg-shlibdeps: error: couldn't find library libAggregation.so.1 needed by 
debian/qtcreator/usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/libTaskList.so
 (ELF format: 'elf64-x86-64-freebsd'; RPATH: '').
dpkg-shlibdeps: error: couldn't find library libExtensionSystem.so.1 needed by 
debian/qtcreator/usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/libTaskList.so
 (ELF format: 'elf64-x86-64-freebsd'; RPATH: '').
dpkg-shlibdeps: error: couldn't find library libBotan.so.1 needed by 
debian/qtcreator/usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/libTaskList.so
 (ELF format: 'elf64-x86-64-freebsd'; RPATH: '').
dpkg-shlibdeps: error: couldn't find library libUtils.so.1 needed by 
debian/qtcreator/usr/lib/x86_64-kfreebsd-gnu/qtcreator/plugins/Nokia/libTaskList.so
 (ELF format: 'elf64-x86-64-freebsd'; RPATH: '').

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=qtcreator&arch=kfreebsd-amd64&ver=2.5.0%7Erc-1&stamp=1335968064

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/871umqld1s@hepworth.siccegge.de



Bug#662951: kdenetwork: FTBFS(kfreebsd): /usr/bin/ld: cannot find -lsrtp

2012-03-07 Thread Christoph Egger
.o

Full build log at
https://buildd.debian.org/status/fetch.php?pkg=kdenetwork&arch=kfreebsd-i386&ver=4%3A4.7.4-2&stamp=1331119009

Regards

Christoph

If you have further questions please mail debian-...@lists.debian.org
-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer



--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/87vcmgfqxa@hepworth.siccegge.de



Bug#657928: kdeinit4: --suicide --nokded seem to not work

2012-01-29 Thread Christoph Anton Mitterer
Package: kdelibs-bin
Version: 4:4.7.4-1
Severity: normal


Hi.

I'm not using the KDE desktop itself, but several programs from it, e.g. 
digikam.

When finished with it, I'd prefer that all processes that are started around it
go away, as they just consume resources and are likely not used again anymore.

I thought (from the manpage) the solution for this was to invoke the KDE program
like this:
kdeinit4 --suicide --nokded digikam

It seems however that both options do not work (or I got something wrong).
While digikam is still running I have:
$ ps ax | grep kded
11386 ?S  0:00 kdeinit4: kded4 [kdeinit]

And after it has terminated (even with waiting for some time) I still see:
11379 ?Ss 0:00 kdeinit4: kdeinit4 Running...
11384 ?S  0:00 kdeinit4: klauncher [kdeinit] --fd=8
11386 ?S  0:00 kdeinit4: kded4 [kdeinit]  
11443 ?S  0:00 /usr/lib/gamin/gam_server


Any ideas?


Cheers,
Chris.


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

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

Versions of packages kdelibs-bin depends on:
ii  libc6 2.13-24
ii  libkdecore5   4:4.7.4-1
ii  libkdeui5 4:4.7.4-1
ii  libkio5   4:4.7.4-1
ii  libkjsapi44:4.7.4-1
ii  libkjsembed4  4:4.7.4-1
ii  libkrosscore4 4:4.7.4-1
ii  libnepomuk4   4:4.7.4-1
ii  libnepomukutils4  4:4.7.4-1
ii  libqt4-dbus   4:4.7.4-2
ii  libqt4-xml4:4.7.4-2
ii  libqtcore44:4.7.4-2
ii  libqtgui4 4:4.7.4-2
ii  libsoprano4   2.7.3+dfsg.1-1
ii  libstdc++64.6.2-12
ii  libx11-6  2:1.4.4-4

kdelibs-bin recommends no packages.

kdelibs-bin suggests no packages.

-- no debconf information



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20120130004847.13768.90491.report...@heisenberg.scientia.net



Bug#525599: kdelibs5-data: Unknown media type in type 'all/all'

2012-01-17 Thread Christoph Anton Mitterer
On Tue, 2012-01-17 at 17:48 +0100, José Manuel Santamaría Lema wrote:
> Could you please just shut up
Phew... this is "kindness" which really makes contributing fun...


> if you have nothing to add to the bug report?
Well it happens often that bugs got simply forgotten and lost amongst
many others (-> "3 years old now").
And given that the solutions seemed to be quite easy (those mime type
classes do not exist and should therefore not be registered),... I tried
to remember it again with, what seemed to me the solution.





smime.p7s
Description: S/MIME cryptographic signature


Bug#525599: kdelibs5-data: Unknown media type in type 'all/all'

2012-01-16 Thread Christoph Anton Mitterer

Hi.

3 years old now. Could you please just remove all those illegal MIME 
types.


Chris.



--
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: http://lists.debian.org/b67c10def59961d62a4163c39dc96...@scientia.net



Bug#626631: kdebindings: FTBFS error: cannot allocate an object of abstract type '__smokekio::x_KArchive'

2011-05-13 Thread Christoph Egger
Package: src:kdebindings
Version: 4:4.4.5-6
Severity: serious
Tags: sid wheezy
Justification: fails to build from source (but built successfully in the past)

Hi!

your package failed to build on the kfreebsd buildds.

x_1.cpp: In static member function 'static void 
__smokekio::x_KArchive::x_1(Smoke::Stack)':
x_1.cpp:623:72: error: cannot allocate an object of abstract type 
'__smokekio::x_KArchive'
x_1.cpp:614:7: note:   because the following virtual functions are pure within 
'__smokekio::x_KArchive':

Full build log at 
https://buildd.debian.org/status/fetch.php?pkg=kdebindings&arch=kfreebsd-amd64&ver=4%3A4.4.5-6&stamp=1304984309

Regards

Christoph

-- 
9FED 5C6C E206 B70A 5857  70CA 9655 22B9 D49A E731
Debian Developer | Lisp Hacker | CaCert Assurer

A. Because it breaks the logical sequence of discussion
Q. Why is top posting bad?


pgpPatNXyvC85.pgp
Description: PGP signature


Bug#566113: /usr/lib/utempter/utempter has wrong group and permissions

2010-04-01 Thread Christoph Pleger
Hello,

On Wed, 31 Mar 2010 12:52:36 +0200
Julien Cristau  wrote:

> That should fail the build-dependency check, libutempter build-depends
> on a newer debhelper than is in lenny.

I changed the dependency in the control file, so that only the lenny
version of debhelper was required. As the build process did not
complain, I thought that that version was sufficient. 

Regards
  Christoph 



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100401094046.7c71a5f2.christoph.ple...@cs.tu-dortmund.de



Bug#566113: /usr/lib/utempter/utempter has wrong group and permissions

2010-03-31 Thread Christoph Pleger
On Wed, 31 Mar 2010 09:27:34 +0200
Julien Cristau  wrote:

> How exactly did you build the package?  The packages in the archive
> have correct permissions (on all architectures)...

I built it with "dpkg-buildpackage -us -uc -rfakeroot", but with the
lenny version of debhelper. Maybe that is the reason? If it is, I still
wonder why it works that chmod is called before chown. When I execute
these commands in the same order on the installed
/usr/lib/utempter/utempter, they definitely remove the setgid
bit from that file.

Regards
  Christoph



-- 
To UNSUBSCRIBE, email to debian-qt-kde-requ...@lists.debian.org
with a subject of "unsubscribe". Trouble? Contact listmas...@lists.debian.org
Archive: 
http://lists.debian.org/20100331114719.6cf16023.christoph.ple...@cs.tu-dortmund.de



Bug#566113: /usr/lib/utempter/utempter has wrong group and permissions

2010-01-21 Thread Christoph Pleger
Package: libutempter0
Version: 1.1.5-2

Hello,

I downloaded your package source and used it to create the two packages for 
lenny. After installing package libutempter0, the 
command 'ls -l /usr/lib/utempter/utempter' shows the following:

-rwxr-xr-x   1 root root   4848 2010-01-19 14:08 utempter

I think that these are not the correct permissions and ownerships, but that 
the file must be owner root, group utmp with setgid bit set. debian/rules 
tells that it was the intention of the package maintainer to set  ownerships 
and permissions like this, but that had no effect on the installed file.

By the way,  in debian/rules the chmod and chown commands must be called in 
opposite order, because chown removes the setgid bit.

Regards
  Christoph



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



Bug#533506: Fixed in kdebindings 4:4.2.4-2

2009-07-11 Thread Christoph Burgmer
I believe this bug is fixed with [1], only that Sune Vuorela missed the last 
digit on #53350. 

-Christoph

[1] http://packages.qa.debian.org/k/kdebindings/news/20090710T100249Z.html




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



Bug#532574: [python-kde4] Report was for 4.5-1, continues in 4.5.1-1

2009-06-19 Thread Christoph Burgmer
Package: python-kde4
Version: 4:4.2.4-1

--- Please enter the report below this line. ---
The initial report was actually filed after python-qt4 4.5-1 was installed. 
Only now 4.5.1-1 is available in unstable. Still though, the segfault 
continues with the updated package.

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

Debian Release: squeeze/sid
  500 unstableftp.de.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-===
kdebase-runtime   (>= 4:4.2.2) | 4:4.2.4-1
kdelibs5  (>= 4:4.2.4) | 4:4.2.4-1
kdepimlibs5   (>= 4:4.2.4) | 4:4.2.4-1
libc6   (>= 2.1.3) | 2.9-16
libgcc1   (>= 1:4.1.1) | 1:4.4.0-7
libphonon4(>= 4:4.3.0) | 4:4.3.1-1
libplasma3(>= 4:4.2.2) | 4:4.2.4-1
libqt4-network  (>= 4.5.1) | 4.5.1-2
libqt4-svg  (>= 4.5.1) | 4.5.1-2
libqt4-xml  (>= 4.5.1) | 4.5.1-2
libqtcore4  (>= 4.5.1) | 4.5.1-2
libqtgui4   (>= 4.5.1) | 4.5.1-2
libsoprano4 (>= 2.1.67-2~) | 2.2.2+dfsg.1-1
libstdc++6  (>= 4.2.1) | 4.4.0-7
phonon(>= 4:4.3.0) | 4:4.3.1-1
python2.5 (>= 2.5) | 2.5.4-1
python(<< 2.6) | 2.5.4-2
python(>= 2.5) | 2.5.4-2
python-support (>= 0.90.0) | 1.0.3
python-qt4  (>= 4.4.4) | 4.5.1-1
python-sip4 (>= 4.7.8) | 4.8.1-1


Package's Recommends field is empty.

Package's Suggests field is empty.







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



Bug#532574: python-kde4: Upgrading to python-qt4 4.5.1 breaks python-kde4

2009-06-10 Thread Christoph Burgmer
Package: python-kde4
Version: 4:4.2.4-1
Severity: grave
Justification: renders package unusable

After upgrading to python-qt4 4.5.1 any import of a PyKDE4 module makes
Python exit giving a "memory access error" (translated from German):

$ python
Python 2.5.4 (r254:67916, Feb 17 2009, 20:16:45)
[GCC 4.3.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from PyKDE4 import kdeui
Speicherzugriffsfehler
$

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

Kernel: Linux 2.6.29-2-686 (SMP w/1 CPU core)
Locale: lang=de...@euro, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages python-kde4 depends on:
ii  kdebase-runtime   4:4.2.4-1  runtime components from the offici
ii  kdelibs5  4:4.2.4-1  core libraries for all KDE 4 appli
ii  kdepimlibs5   4:4.2.4-1  core libraries for KDE PIM 4 appli
ii  libc6 2.9-13 GNU C Library: Shared libraries
ii  libgcc1   1:4.4.0-5  GCC support library
ii  libphonon44:4.3.1-1  Phonon multimedia framework for Qt
ii  libplasma34:4.2.4-1  library for the KDE 4 Plasma deskt
ii  libqt4-network4.5.1-2Qt 4 network module
ii  libqt4-svg4.5.1-2Qt 4 SVG module
ii  libqt4-xml4.5.1-2Qt 4 XML module
ii  libqtcore44.5.1-2Qt 4 core module
ii  libqtgui4 4.5.1-2Qt 4 GUI module
ii  libsoprano4   2.2.2+dfsg.1-1 libraries for the Soprano RDF fram
ii  libstdc++64.4.0-5The GNU Standard C++ Library v3
ii  phonon4:4.3.1-1  metapackage for Phonon multimedia 
ii  python2.5.4-2An interactive high-level object-o
ii  python-qt44.5-1  Python bindings for Qt4
ii  python-sip4   4.8-1  Python/C++ bindings generator runt
ii  python-support1.0.3  automated rebuilding support for P
ii  python2.5 2.5.4-1An interactive high-level object-o

python-kde4 recommends no packages.

python-kde4 suggests no packages.

-- no debconf information



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



Bug#526257: libqtgui4: major gfx mem corruption

2009-05-25 Thread Christoph
Hello,

I had the same problems on a 64Bit Squeeze(mostly) system. I run kernel 2.6.29 
and self-compiled drm.ko and radeon.ko to get EXA acceleration with my gpu. 
The problems seem to have completely disappeared by upgrading xorg-server from 
2:1.6.1-1 to 2:1.6.1.901-2

Best Regards,
Christoph



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



Bug#528962: kleopatra fails to import pkcs12 certificate exported by icedove

2009-05-16 Thread Christoph Egger
Package: kleopatra
Version: 4:4.2.2-1
Severity: important

Hi!

Trying to import a pkcs12 private key exported by icedove
fails with the Message «Decryption failed». I can flawlessly inspect
the same cert with «openssl pkcs12 -in $filename -info» so the
exported key seems to be fine and in a not-too-strange format.

Regards

Christoph

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

Kernel: Linux 2.6.29-1-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/dash

Versions of packages kleopatra depends on:
ii  dirmngr   1.0.2-1server for managing certificate re
ii  gnupg-agent   2.0.11-1   GNU privacy guard - password agent
ii  gnupg22.0.11-1   GNU privacy guard - a free PGP rep
ii  gpgsm 2.0.11-1   GNU privacy guard - S/MIME version
ii  kdebase-runtime   4:4.2.2-1  runtime components from the offici
ii  kdelibs5  4:4.2.2-2  core libraries for all KDE 4 appli
ii  kdepimlibs5   4:4.2.2-1  core libraries for KDE PIM 4 appli
ii  libc6 2.9-4  GNU C Library: Shared libraries
ii  libgcc1   1:4.4.0-4  GCC support library
ii  libgpg-error0 1.6-1  library for common error values an
ii  libgpgme111.1.8-2GPGME - GnuPG Made Easy
ii  libkleo4  4:4.2.2-1  certificate based crypto library f
ii  libqt4-dbus   4.5.1-2Qt 4 D-Bus module
ii  libqt4-network4.5.1-2Qt 4 network module
ii  libqtcore44.5.1-2Qt 4 core module
ii  libqtgui4 4.5.1-2Qt 4 GUI module
ii  libstdc++64.4.0-4The GNU Standard C++ Library v3
ii  pinentry-gtk2 [pinentry-x11]  0.7.5-3GTK+-2-based PIN or pass-phrase en

kleopatra recommends no packages.

kleopatra suggests no packages.

-- no debconf information

-- 
/"\  ASCII Ribbon : GPG-Key ID: 0x0372275D
\ /Campaign   : 
 X   against HTML : Debian NM
/ \   in eMails   : http://www.debian.org/

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



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



Bug#527472: kopete: Please provide an menu file

2009-05-07 Thread Christoph Egger
Package: kopete
Version: 4:4.2.2-1
Severity: minor

The kopete package for KDE4 seems to lack a debian-menu file, which
was present in the KDE3 version if I remember correctly. Please
provide one again so kopete becomes accessible from a fluxbox desktop.

Thanks

Christoph

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

Kernel: Linux 2.6.29-1-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/dash

Versions of packages kopete depends on:
ii  kdebase-runtime4:4.2.2-1 runtime components from the offici
ii  kdelibs5   4:4.2.2-2 core libraries for all KDE 4 appli
ii  kdepimlibs54:4.2.2-1 core libraries for KDE PIM 4 appli
ii  libasound2 1.0.19-1  shared library for ALSA applicatio
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libglib2.0-0   2.20.0-2  The GLib library of C routines
ii  libidn11   1.14-3GNU Libidn library, implementation
ii  libkopete4 4:4.2.2-1 main Kopete library
ii  libmeanwhile1  1.0.2-3   open implementation of the Lotus S
ii  libmsn0.1  4.0~beta3-1   high-level C++ library for MSN Mes
ii  libortp8   3.0.0-3   Real-time Transport Protocol stack
ii  libotr23.2.0-1   Off-the-Record Messaging library
ii  libqca22.0.0-4   libraries for the Qt Cryptographic
ii  libqimageblitz41:0.0.4-4 QImageBlitz image effects library
ii  libqt4-dbus4.5.1-2   Qt 4 D-Bus module
ii  libqt4-network 4.5.1-2   Qt 4 network module
ii  libqt4-qt3support  4.5.1-2   Qt 3 compatibility library for Qt 
ii  libqt4-sql 4.5.1-2   Qt 4 SQL module
ii  libqt4-xml 4.5.1-2   Qt 4 XML module
ii  libqtcore4 4.5.1-2   Qt 4 core module
ii  libqtgui4  4.5.1-2   Qt 4 GUI module
ii  libspeex1  1.2~rc1-1 The Speex codec runtime library
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  libxml22.7.3.dfsg-1  GNOME XML library
ii  libxslt1.1 1.1.24-2  XSLT processing library - runtime 
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages kopete recommends:
ii  libqca2-plugin-ossl   0.1~20070904-3 QCA OSSL plugin for libqca2

Versions of packages kopete suggests:
ii  kdeartwork-emoticons  4:4.2.2-2  emoticon collections for KDE 4 cha
pn  khelpcenter(no description available)

-- no debconf information

-- 
/"\  ASCII Ribbon : GPG-Key ID: 0x0372275D
\ /Campaign   : 
 X   against HTML : Debian NM
/ \   in eMails   : http://www.debian.org/

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


signature.asc
Description: Digital signature


Bug#526159: konqueror: Piwik dashboard items collapsed

2009-04-29 Thread Christoph Egger
Package: konqueror
Version: 4:4.2.2-1
Severity: minor

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi!

As one can see on the online demo[0], konqueror shows all but the fist
item of piwik's dashboard collapsed. All of Midori, Iceweasel and Opera
succed at rendering that page correctly.

Regards

    Christoph

[0] 
http://piwik.org:80/demo/index.php?module=CoreHome&action=index&idSite=1&period=day&date=yesterday
- -- System Information:
Debian Release: squeeze/sid
  APT prefers testing
  APT policy: (990, 'testing'), (500, 'stable'), (400, 'unstable'), (100, 
'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.29-1-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/dash

Versions of packages konqueror depends on:
ii  kdebase-bin4:4.2.2-1 core binaries for the KDE 4 base m
ii  kdebase-data   4:4.2.2-1 shared data files for the KDE 4 ba
ii  kdebase-runtime4:4.2.2-1 runtime components from the offici
ii  kdelibs5   4:4.2.2-2 core libraries for all KDE 4 appli
ii  libc6  2.9-4 GNU C Library: Shared libraries
ii  libkonq5   4:4.2.2-1 core libraries for Konqueror
ii  libkonqsidebarplugin4  4:4.2.2-1 Konqueror sidebar plugin library
ii  libqt4-dbus4.5.1-1   Qt 4 D-Bus module
ii  libqt4-qt3support  4.5.1-1   Qt 3 compatibility library for Qt 
ii  libqt4-xml 4.5.1-1   Qt 4 XML module
ii  libqtcore4 4.5.1-1   Qt 4 core module
ii  libqtgui4  4.5.1-1   Qt 4 GUI module
ii  libstdc++6 4.3.3-3   The GNU Standard C++ Library v3
ii  libx11-6   2:1.2.1-1 X11 client-side library
ii  zlib1g 1:1.2.3.3.dfsg-13 compression library - runtime

Versions of packages konqueror recommends:
ii  dolphin   4:4.2.2-1  file manager for KDE 4
ii  konqueror-nsplugins   4:4.2.2-1  Netscape plugin support for Konque

Versions of packages konqueror suggests:
ii  konq-plugins  4:3.5.9-2  plugins for Konqueror, the KDE fil

- -- no debconf information

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

iEYEARECAAYFAkn4hZgACgkQz9S5sZBYslOgVwCfQHukZI+PTCdNIz3nKnwhyMQl
cbkAn2UR7DoR9ouQuMDdIOgLJEyTJPWm
=DTnw
-END PGP SIGNATURE-



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



Bug#512000: kdelibs-bin: kded4 crashes on update of packages to 4.1.4

2009-01-15 Thread Christoph Burgmer
Package: kdelibs-bin
Version: 4:4.1.4-1
Severity: minor

kded4 crashes during installing the 4.1.4 packages but seems to be resumed
later on.
Maybe the kde4 packages could handle this gracefully.

Stack trace:
Application: KDE Daemon (kded4), signal SIGSEGV

Thread 1 (Thread 0xb60ef8d0 (LWP 3690)):
[KCrash Handler]
#6  0xb7385f65 in QString::operator== (this=0x91c8a58, oth...@0xbfd2d63c) at
# ../../include/QtCore/../../src/corelib/tools/qstring.h:100
#7  0xb7c15256 in KDirWatchPrivate::inotifyEventReceived (this=0x90e62b8) at
# /tmp/buildd/kde4libs-4.1.4/kio/kio/kdirwatch.cpp:288
#8  0xb7c1552b in KDirWatchPrivate::qt_metacall (this=0x90e62b8,
# _c=QMetaObject::InvokeMetaMethod, _id=2, _a=0xbfd2d77c) at
# /tmp/buildd/kde4libs-4.1.4/obj-i486-linux-gnu/kio/kdirwatch_p.moc:74
#9  0xb7448be0 in QMetaObject::activate (sender=0x9150830,
# from_signal_index=4, to_signal_index=4, argv=0xbfd2d77c) at
# kernel/qobject.cpp:3031
#10 0xb7449962 in QMetaObject::activate (sender=0x9150830, m=0xb7517070,
# local_signal_index=0, argv=0xbfd2d77c) at kernel/qobject.cpp:3101
#11 0xb74836f3 in QSocketNotifier::activated (this=0x9150830, _t1=9) at
# .moc/release-shared/moc_qsocketnotifier.cpp:81
#12 0xb744e7b7 in QSocketNotifier::event (this=0x9150830, e=0xbfd2db40) at
# kernel/qsocketnotifier.cpp:320
#13 0xb6a3979c in QApplicationPrivate::notify_helper (this=0x90d5580,
# receiver=0x9150830, e=0xbfd2db40) at kernel/qapplication.cpp:3803
#14 0xb6a4161e in QApplication::notify (this=0xbfd2de74, receiver=0x9150830,
# e=0xbfd2db40) at kernel/qapplication.cpp:3393
#15 0xb796e2bd in KApplication::notify (this=0xbfd2de74, receiver=0x9150830,
# event=0xbfd2db40) at
# /tmp/buildd/kde4libs-4.1.4/kdeui/kernel/kapplication.cpp:311
#16 0xb74340e1 in QCoreApplication::notifyInternal (this=0xbfd2de74,
# receiver=0x9150830, event=0xbfd2db40) at kernel/qcoreapplication.cpp:587
#17 0xb745e87a in socketNotifierSourceDispatch (source=0x90d9680) at
# ../../include/QtCore/../../src/corelib/kernel/qcoreapplication.h:209
#18 0xb64721b8 in g_main_context_dispatch () from /usr/lib/libglib-2.0.so.0
#19 0xb6475853 in ?? () from /usr/lib/libglib-2.0.so.0
#20 0x090d8c98 in ?? ()
#21 0x in ?? ()

-- System Information:
Debian Release: 5.0
  APT prefers unstable
  APT policy: (500, 'unstable'), (101, 'experimental')
Architecture: i386 (i686)

Kernel: Linux 2.6.26-1-686 (SMP w/1 CPU core)
Locale: lang=de...@euro, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

Versions of packages kdelibs-bin depends on:
ii  kdelibs5   4:4.1.4-1 core libraries for all KDE 4 appli
ii  libc6  2.7-18GNU C Library: Shared libraries
ii  libqt4-dbus4.4.3-2   Qt 4 D-Bus module
ii  libqt4-xml 4.4.3-2   Qt 4 XML module
ii  libqtcore4 4.4.3-2   Qt 4 core module
ii  libqtgui4  4.4.3-2   Qt 4 GUI module
ii  libsoprano42.1.1+dfsg.1-1libraries for the Soprano RDF fram
ii  libstdc++6 4.3.2-2   The GNU Standard C++ Library v3
ii  libx11-6   2:1.1.5-2 X11 client-side library
ii  libxml22.6.32.dfsg-5 GNOME XML library
ii  libxml2-utils  2.6.32.dfsg-5 XML utilities
ii  libxslt1.1 1.1.24-2  XSLT processing library - runtime 
ii  zlib1g 1:1.2.3.3.dfsg-12 compression library - runtime

kdelibs-bin recommends no packages.

kdelibs-bin suggests no packages.

-- no debconf information



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



Bug#503618: kopete: password fields do not accept pasting

2008-10-29 Thread Christoph Kluenter
Hi,

You can paste to the password field. Just don't use the middle mouse or Ctr-V 
but the right button and click on "paste". I think this behavior is on 
purpose.

Christoph






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



Bug#494752: [kdelibs5] Deletion of selected text on refocus

2008-08-11 Thread Christoph Burgmer
Package: kdelibs5
Version: 4:4.1.0-1
Severity: important

--- Please enter the report below this line. ---
Selected text in editable widgets (might be connected to KTextEdit fields) is 
removed on a refocus. This refocus can be a switch from the search bar of 
Kate/Kwrite to the text edit or a application switch (via Alt+Tab). In those 
cases text that is selected will be removed.

This error occurs in Kwrite and in own applications using kdelibs.

See https://bugs.kde.org/show_bug.cgi?id=167982 for the bug filed against 
KWrite that was closed (though WORKSFORME is wrong).

This is an important bug as it removes text without notice.

--- System information. ---
Architecture: i386
Kernel:   Linux 2.6.22

Debian Release: lenny/sid
  500 unstableftp.de.debian.org 

--- Package information. ---
Depends  (Version) | Installed
==-+-
libacl1  (>= 2.2.11-1) | 2.2.47-2
libaspell15  (>= 0.60) | 0.60.6-1
libattr1 (>= 2.4.41-1) | 1:2.4.43-1
libbz2-1.0 | 1.0.5-0.1
libc6   (>= 2.7-1) | 2.7-13
libenchant1c2a | 1.4.2-3
libfam0| 2.7.0-13.3
libgcc1   (>= 1:4.1.1) | 1:4.3.1-8
libgif4 (>= 4.1.6) | 4.1.6-5
libice6   (>= 1:1.0.0) | 2:1.0.4-1
libilmbase6| 1.0.1-2+nmu1
libjasper1(>= 1.900.1) | 1.900.1-5
libjpeg62  | 6b-14
libkrb53   (>= 1.6.dfsg.2) | 1.6.dfsg.4~beta1-3
libopenexr6 (>= 1.6.1) | 1.6.1-3
libpcre3  (>= 7.4) | 7.6-2.1
libphonon4(>> 4:4.2.0) | 4:4.2.0-1
libpng12-0   (>= 1.2.13-4) | 1.2.27-1
libqt4-dbus (>= 4.4.0) | 4.4.0-4
libqt4-designer (>= 4.4.0) | 4.4.0-4
libqt4-network  (>= 4.4.0) | 4.4.0-4
libqt4-qt3support   (>= 4.4.0) | 4.4.0-4
libqt4-script   (>= 4.4.0) | 4.4.0-4
libqt4-svg  (>= 4.4.0) | 4.4.0-4
libqt4-xml  (>= 4.4.0) | 4.4.0-4
libqtcore4  (>= 4.4.0) | 4.4.0-4
libqtgui4   (>= 4.4.0) | 4.4.0-4
libsm6 | 2:1.0.3-2
libsoprano4   (>= 2.1) | 2.1+dfsg.1-1
libssl0.9.8  (>= 0.9.8f-5) | 0.9.8g-12
libstdc++6  (>= 4.2.1) | 4.3.1-8
libstreamanalyzer0 (>= 0.5.11) | 0.5.11-1
libx11-6   | 2:1.1.4-2
libxcursor1 (>> 1.1.2) | 1:1.1.9-1
libxfixes3(>= 1:4.0.1) | 1:4.0.3-2
libxml2(>= 2.6.27) | 2.6.32.dfsg-2
libxrender1| 1:0.9.4-2
libxslt1.1 (>= 1.1.18) | 1.1.24-1
libxtst6   | 2:1.0.3-1
zlib1g (>= 1:1.2.3.3.dfsg) | 1:1.2.3.3.dfsg-12
kdelibs5-data   (>= 4:4.1.0-1) | 4:4.1.0-1
kdelibs-bin (>= 4:4.1.0-1) | 4:4.1.0-1
dbus-x11   | 1.2.1-3
shared-mime-info   | 0.30-2
xauth  | 1:1.0.3-2






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




Bug#476738: kword-data: .desktop file inconsistent

2008-04-18 Thread Christoph Burgmer
Package: kword-data
Version: 1:1.6.3-5
Severity: minor

kword's desktop file doesn't comply to the standards [1].

Running
$ desktop-file-validate /usr/share/applications/kde/kword.desktop

gives upon others the following line:
/usr/share/applications/kde/kword.desktop: error: value
"application/vnd.oasis.opendocument.text;application/x-kword;application/msword;text/rtf;text/plain;application/x-mswrite"
/for string list key "MimeType" in group "Desktop Entry" does not have a
semicolon (';') as trailing character

If you believe filing a bug against this is superflous let me know, this
isn't the only package generating this kind of output.

Regards,
Chris

[1] http://standards.freedesktop.org/desktop-entry-spec/latest/ar01s03.html

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

Kernel: Linux 2.6.22 (PREEMPT)
Locale: [EMAIL PROTECTED], LC_CTYPE=zh_CN.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/bash

-- no debconf information



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



Bug#418658: Can't mount USB floppy via KDE+hal+pmount

2007-12-24 Thread Christoph Pleger
Hello,

> I tried asking some hal people. The error is either hal doing something
> weird or kde passing weird options to hal.

I guess that the error is in KDE because in GNOME the USB floppy can be 
mounted without problems.

>
> Hal-people suggested the following:
> | Let the user run "hald --daemon=no --verbose=yes" while he tries to
> | mount.
>
> and ship us the output.

I will send it next week.

Regards
  Christoph



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



Bug#418658: Can't mount USB floppy via KDE+hal+pmount

2007-12-19 Thread Christoph Pleger
Hello,

On Wed, 19 Dec 2007 10:31:11 -0500
Noah Meyerhans <[EMAIL PROTECTED]> wrote:

> On Wed, Dec 19, 2007 at 03:45:11PM +0100, Christoph Pleger wrote:
> > is any solution for that in sight? I have exactly the same problem
> > in the etch version of kdebase-kio-plugins and I do not believe that
> > it is caused by a local configuration error.
> 
> It works fine for me.  Are you in the plugdev, netdev, and powerdev
> groups?  I believe you need to be in at least plugdev for this to work
> right (And you must log out, restart dbus, and log back in after
> making the changes; rebooting is easiest.)

No chance to make it work for me, it seems.

Because I used a combination of libpam-devperm and udev to
manage access rights, I removed all that and created a new user who
belongs to his own group, to dialout, cdrom, floppy, audio, video and
plugdev. I restarted dbus and then logged in as the new user, but I
still get the error message.

Maybe you have an fstab-entry for the usb floppy drive? I found out that
with an fstab-entry the error does not occur. But I do not want to
create an entry for a hotpluggable device.

Regards
  Christoph



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



Bug#418658: Can't mount USB floppy via KDE+hal+pmount

2007-12-19 Thread Christoph Pleger
Hello,

is any solution for that in sight? I have exactly the same problem in
the etch version of kdebase-kio-plugins and I do not believe that it is
caused by a local configuration error.

Regards
  Christoph



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



Bug#434883: Subject: kuser: userid starting at 500 not 1000

2007-07-27 Thread Christoph Foelmer
Subject: kuser: userid starting at 500 not 1000
Package: kuser
Version: 4:3.5.7-1
Severity: normal

*** Please type your report below this line ***
Adding a user gives uid starting at 500. uid counting starts at 1000
if you use adduser.


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

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

Versions of packages kuser depends on:
ii  kdelibs4c2a 4:3.5.7.dfsg.1-1 core libraries and binaries for 
al
ii  libc6   2.6-2GNU C Library: Shared libraries
ii  libgcc1 1:4.2-20070712-1 GCC support library
ii  libqt3-mt   3:3.3.7-5Qt GUI Library (Threaded runtime 
v
ii  libstdc++6  4.2-20070712-1   The GNU Standard C++ Library v3

kuser recommends no packages.

-- no debconf information


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



Bug#384604: Cannot drop icons on second screen

2006-08-25 Thread Christoph Schumacher
Package: kdebase ?
Version: 3.5.4-2

When i drop icons on my second screen (radeon, xorg), the icons do not
reside there, but fall back to primary screen.

xorg.conf:

Section "Device"
Identifier  "ATI Technologies, Inc. Radeon R300 NG [FireGL X1]"
Driver  "radeon"
Option  "UseInternalAGPGART""no"
Option  "CRT2Position"  "RightOf"
EndSection

xserver:
xserver-xorg7.0.22
xserver-xorg-core   1.0.2-9
linux-image-2.6.16-2-686-smp2.6.16-17
libc6   2.3.6-15

I use the testing tree.



Christoph



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



Bug#295582: kopete: crashes when connecting through dante SOCKS proxy

2006-06-11 Thread Christoph Haas
Sorry for the delay. I have just tried to use a SOCKS proxy connection
through "dante-server" from Kopete (0.11.3) but it appears that the
proxy isn't used at all. KDE reports the SOCKS proxy is configured
correctly but Kopete doesn't even try to connect to the proxy's port.

Either Kopete's proxy support has been dropped completely or I'm doing
something wrong.

 Christoph


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



kdereview/kvpnc

2005-12-26 Thread Christoph Thielecke
SVN commit 491632 by crissi:

daemon tools info now shown in daemon tools settings

 M  +1 -0  ChangeLog  
 M  +35 -0 debian/changelog  
 M  +769 -323  src/configdaemonoptionsbase.ui  
 M  +71 -30src/preferencesdialog.cpp  



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



kdereview/kvpnc/debian

2005-10-29 Thread Christoph Thielecke
SVN commit 475605 by crissi:

:)


 M  +1 -1  control  


--- trunk/kdereview/kvpnc/debian/control #475604:475605
@@ -2,7 +2,7 @@
 Section: net
 Priority: extra
 Maintainer: Christoph Thielecke <[EMAIL PROTECTED]>
-Build-Depends: debhelper (>> 4.1.0), cdbs, kdelibs4-dev
+Build-Depends: debhelper (>> 4.1.0), cdbs, kdelibs4-dev, libgcrypt11-dev
 Standards-Version: 3.6.1
 
 Package: kvpnc


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



kdereview/kvpnc

2005-10-08 Thread Christoph Thielecke
SVN commit 468582 by crissi:

:)


 D config.guess  
 D config.log  
 D config.sub  
 D configure  
 A debian/changelog  
 A debian/control  
 A debian/copyright  
 A debian/docs  
 AMdebian/rules  
 A doc/Makefile.am  
 A doc/Makefile.in  
 A doc/de (directory)  
 A doc/de/Makefile.am  
 A doc/de/Makefile.in  
 AMdoc/de/dock_connected.png  
 AMdoc/de/dock_disconnected.png  
 A doc/de/handbook.po  
 AMdoc/de/import_cisco_pcf.png  
 AMdoc/de/import_pkcs12_certifcate.png  
 A doc/de/index.docbook  
 AMdoc/de/mainwindow.png  
 AMdoc/de/new_profile.png  
 AMdoc/de/settings_global.png  
 AMdoc/de/settings_profiles.png  
 AMdoc/de/settings_programs.png  
 A doc/debian_compile.txt  
 A doc/debian_compile_debug.txt  
 A doc/der_import.txt  
 A doc/en (directory)  
 A doc/en/Makefile.am  
 A doc/en/Makefile.in  
 AMdoc/en/dock_connected.png  
 AMdoc/en/dock_disconnected.png  
 A doc/en/handbook.pot  
 AMdoc/en/import_cisco_pcf.png  
 AMdoc/en/import_pkcs12_certifcate.png  
 A doc/en/index.docbook  
 AMdoc/en/mainwindow.png  
 AMdoc/en/new_profile.png  
 AMdoc/en/settings_global.png  
 AMdoc/en/settings_profiles.png  
 AMdoc/en/settings_programs.png  
 A doc/fr (directory)  
 A doc/fr/Makefile.am  
 A doc/fr/Makefile.in  
 AMdoc/fr/dock_connected.png  
 AMdoc/fr/dock_disconnected.png  
 A doc/fr/handbook.po  
 AMdoc/fr/import_cisco_pcf.png  
 AMdoc/fr/import_pkcs12_certifcate.png  
 A doc/fr/index.docbook  
 AMdoc/fr/mainwindow.png  
 AMdoc/fr/new_profile.png  
 AMdoc/fr/settings_global.png  
 AMdoc/fr/settings_profiles.png  
 AMdoc/fr/settings_programs.png  
 A doc/openvpn.txt  
 A doc/pptp.txt  
 A doc/update_handbook.sh  
 A doc/vpnc-0.2-err-sort.txt  
 A doc/vpnc-0.2-err.txt  
 A doc/vpnc-0.2-strings.txt  
 A doc/vpnc-0.3.1-err-newlines.txt  
 A doc/vpnc-0.3.1-err-sort.txt  
 A doc/vpnc-0.3.1-err.txt  
 A doc/vpnc-0.3.1-strings.txt  
 A doc/vpnc-err.txt  
 A doc/vpnc_connect_script_dns_patch_fix.txt  
 D kvpnc.kdevses.save  
 D libtool  
 A src/Makefile.am  
 A src/Makefile.in  
 A src/addnetworkroutedialog.cpp   [License: GPL (v2+) (wrong 
address)]
 A src/addnetworkroutedialog.h   [License: GPL (v2+) (wrong 
address)]
 A src/addnetworkroutedialogbase.ui  
 A src/advancedprofiledialogbase.ui  
 A src/advancedprofilesettingsdialogbase.ui  
 AMsrc/advancedsettingsdialog.cpp   [License: GPL (v2+) (wrong 
address)]
 AMsrc/advancedsettingsdialog.h   [License: GPL (v2+) (wrong 
address)]
 A src/configconnectoptions.cpp   [License: GPL (v2+) (wrong 
address)]
 A src/configconnectoptions.h   [License: GPL (v2+) (wrong address)]
 A src/configconnectoptionsbase.ui  
 A src/configdaemonoptions.cpp   [License: GPL (v2+) (wrong 
address)]
 A src/configdaemonoptions.h   [License: GPL (v2+) (wrong address)]
 A src/configdaemonoptionsbase.ui  
 A src/configdebugoptions.cpp   [License: no copyright GENERATED 
FILE]
 A src/configdebugoptions.h   [License: no copyright GENERATED FILE]
 A src/configdebugoptions.ui  
 A src/confighelperprogramoptions.cpp   [License: GPL (v2+) (wrong 
address)]
 A src/confighelperprogramoptions.h   [License: GPL (v2+) (wrong 
address)]
 A src/confighelperprogramoptionsbase.ui  
 A src/configlogoptions.cpp   [License: GPL (v2+) (wrong address)]
 A src/configlogoptions.h   [License: GPL (v2+) (wrong address)]
 A src/configlogoptionsbase.ui  
 AMsrc/connected.png  
 A src/debugoutputtextedit.cpp   [License: GPL (v2+) (wrong 
address)]
 A src/debugoutputtextedit.h   [License: GPL (v2+) (wrong address)]
 AMsrc/disconnected.png  
 A src/enterpassworddialog.cpp   [License: GPL (v2+) (wrong 
address)]
 A src/enterpassworddialog.h   [License: GPL (v2+) (wrong address)]
 A src/enterpassworddialogbase.ui  
 AMsrc/eventsrc  
 A src/generateopenvpnkeydialog.cpp   [License: GPL (v2+) (wrong 
address)]

Bug#325782: libqt4-designer: not useable

2005-08-30 Thread Jan Christoph Uhde
Package: libqt4-designer
Version: 4.0.1-1
Severity: important

All menus and frames are empty.
Please take a look at the screen shot ( 
http://rapidshare.de/files/4547925/designer-qt4.png.html ).
Probably the bug should be reported against the qt4-dev-tools package, but i am 
not sure at all:(
best regards Jan Christoph Uhde

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.13_obi_desktop
Locale: LANG=en_US.ISO-8859-15, LC_CTYPE=de_DE (charmap=ISO-8859-1)

Versions of packages libqt4-designer depends on:
ii  libaudio2 1.7-2  The Network Audio System (NAS). (s
ii  libc6 2.3.5-5GNU C Library: Shared libraries an
ii  libfontconfig12.3.2-1generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.1-6  GCC support library
ii  libice6   6.8.2.dfsg.1-5 Inter-Client Exchange library
ii  libmysqlclient14  4.1.13a-3  mysql database client library
ii  libpng12-01.2.8rel-1 PNG library - runtime
ii  libpq48.0.3-14   PostgreSQL C client library
ii  libqt4-core   4.0.1-1Qt 4 core non-GUI functionality ru
ii  libqt4-gui4.0.1-1Qt 4 core GUI functionality runtim
ii  libqt4-qt3support 4.0.1-1Qt 3 compatibility library for Qt 
ii  libqt4-sql4.0.1-1Qt 4 SQL database module
ii  libsm66.8.2.dfsg.1-5 X Window System Session Management
ii  libstdc++64.0.1-6The GNU Standard C++ Library v3
ii  libx11-6  6.8.2.dfsg.1-5 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.8.2.dfsg.1-5 X Window System miscellaneous exte
ii  libxi66.8.2.dfsg.1-5 X Window System Input extension li
ii  libxinerama1  6.8.2.dfsg.1-5 X Window System multi-head display
ii  libxrandr26.8.2.dfsg.1-5 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0-2  X Rendering Extension client libra
ii  libxt66.8.2.dfsg.1-5 X Toolkit Intrinsics
ii  xlibs 6.8.2.dfsg.1-5 X Window System client libraries m
ii  zlib1g1:1.2.3-4  compression library - runtime

libqt4-designer recommends no packages.

-- no debconf information


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



kppp & gateway setting

2005-04-23 Thread Christoph Schumacher
Hi !

I try to use kppp as user to dial to internet via Modem/Cell/ISDN. So far, it 
works, but kppp isn't able to set the correct default gateway, when a default 
gateway is already set (e.g. by eth0). What's wrong ? I already set kppp +s, 
but it didn't help.


Thanks

Christoph


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



Bug#295582: kopete: crashes when connecting through dante SOCKS proxy

2005-02-16 Thread Christoph Haas
Package: kopete
Version: 4:3.3.2-1
Severity: normal

Kopete works perfectly on a direct connection. But when using a SOCKS
proxy (dante-client/server combination here) set up in the KDE command
center Kopete just crashes when connecting to either ICQ or Jabber.
I haven't tried other services.

Lurking on the interface I can see that no connection to the SOCKS
proxy server is even tried. Using other proxy aware applications like
Gaim works perfectly through dante. So it appears that the SOCKS
connection is not even tried.

This is the only debug information I could gather:

[KCrash handler]
#3  0xb6e048f0 in QString::operator+= () from /usr/lib/libqt-mt.so.3
#4  0xb6dfe670 in QString::multiArg () from /usr/lib/libqt-mt.so.3
#5  0xb7f217be in KopeteContact::toolTip () from /usr/lib/libkopete.so.1
#6  0x08071cd2 in ?? ()
#7  0xbfffa550 in ?? ()
#8  0x08342d10 in ?? ()
#9  0x in ?? ()
#10 0x in ?? ()
#11 0x083e88d8 in ?? ()
#12 0xbfffa500 in ?? ()
#13 0xbfffa510 in ?? ()
#14 0x080d84f8 in static_QUType_QString ()
#15 0x0001 in ?? ()
#16 0xb7ef4c00 in ?? () from /usr/lib/libkopete.so.1
#17 0x0018 in ?? ()
#18 0x08240978 in ?? ()
#19 0x083ed988 in ?? ()
#20 0x in ?? ()
#21 0x in ?? ()
#22 0xb7f00f44 in ?? () from /usr/lib/libkopete.so.1
#23 0x083e88d8 in ?? ()
#24 0xb7ed43c4 in ?? () from /usr/lib/libkopete.so.1
#25 0xb7fa5000 in ?? ()
#26 0xb7f5f7be in Kopete::Global::Properties::self ()
   from /usr/lib/libkopete.so.1
#27 0x0807269c in ?? ()
#28 0x08240978 in ?? ()
#29 0x08342d10 in ?? ()
#30 0x0835cc18 in ?? ()
#31 0xb6f90fdc in ?? () from /usr/lib/libqt-mt.so.3
#32 0x08241658 in ?? ()
#33 0xbfffa620 in ?? ()
#34 0xbfffa5f8 in ?? ()
#35 0xb6b2a526 in QObject::activate_signal () from
/usr/lib/libqt-mt.so.3
#36 0xb6b2a526 in QObject::activate_signal () from
/usr/lib/libqt-mt.so.3
#37 0xb7f22964 in KopeteContact::propertyChanged ()
   from /usr/lib/libkopete.so.1
#38 0xb7f20a8c in KopeteContact::setProperty () from
/usr/lib/libkopete.so.1
#39 0xb5c8d0bd in JabberBaseContact::reevaluateStatus ()
   from /usr/lib/kde3/kopete_jabber.so
#40 0xb5c8a7f8 in JabberResourcePool::notifyRelevantContacts ()
   from /usr/lib/kde3/kopete_jabber.so
#41 0xb5c8a9dc in JabberResourcePool::addResource ()
   from /usr/lib/kde3/kopete_jabber.so
#42 0xb5c86d0a in JabberAccount::setPresence ()
   from /usr/lib/kde3/kopete_jabber.so
#43 0xb5c85f9f in JabberAccount::disconnect ()
   from /usr/lib/kde3/kopete_jabber.so
#44 0xb5c85f02 in JabberAccount::disconnect ()
   from /usr/lib/kde3/kopete_jabber.so
#45 0xb5c8234f in JabberAccount::~JabberAccount ()
   from /usr/lib/kde3/kopete_jabber.so
#46 0xb7f1a166 in KopeteProtocol::~KopeteProtocol ()
   from /usr/lib/libkopete.so.1
#47 0xb5c81214 in JabberProtocol::~JabberProtocol ()
   from /usr/lib/kde3/kopete_jabber.so
#48 0xb7f24b27 in KopetePluginManager::~KopetePluginManager ()
   from /usr/lib/libkopete.so.1
#49 0xb7f69f6f in KopeteNotifyDataObject::notifyDataFromXML ()
   from /usr/lib/libkopete.so.1
#50 0xb6441396 in __cxa_finalize () from /lib/tls/libc.so.6
#51 0xb7f17880 in ?? () from /usr/lib/libkopete.so.1
#52 0xb7f9b000 in ?? () from /usr/lib/libkopete.so.1
#53 0xb7fa2f48 in ?? () from /usr/lib/libkopete.so.1
#54 0xbfffae68 in ?? ()
#55 0xb7f8f3f6 in _fini () from /usr/lib/libkopete.so.1
#56 0xb7f8f3f6 in _fini () from /usr/lib/libkopete.so.1
#57 0xb7ff64f6 in _dl_init () from /lib/ld-linux.so.2
#58 0xb6441102 in exit () from /lib/tls/libc.so.6
#59 0xb430227d in serr () from /usr/lib/libdsocksd.so.0
#60 0xb42f0c00 in socks_yyerror () from /usr/lib/libdsocksd.so.0
#61 0xb42f1217 in socks_yyparse () from /usr/lib/libdsocksd.so.0
#62 0xb42f0ae4 in readconfig () from /usr/lib/libdsocksd.so.0
#63 0xb42fa24e in genericinit () from /usr/lib/libdsocksd.so.0
#64 0xb42f7413 in clientinit () from /usr/lib/libdsocksd.so.0
#65 0xb42fc138 in Rconnect () from /usr/lib/libdsocksd.so.0
#66 0xb71dcc7d in KSocks::connect () from /usr/lib/libkdecore.so.4
#67 0xb7247aee in KNetwork::KSocksSocketDevice::connect ()
   from /usr/lib/libkdecore.so.4
#68 0xb72434c0 in KNetwork::KStreamSocket::connectionEvent ()
   from /usr/lib/libkdecore.so.4
#69 0xb7243b1d in KNetwork::KStreamSocket::qt_invoke ()
   from /usr/lib/libkdecore.so.4
#70 0xb72499c4 in KNetwork::KBufferedSocket::qt_invoke ()
   from /usr/lib/libkdecore.so.4
#71 0xb6b2a5ac in QObject::activate_signal () from
/usr/lib/libqt-mt.so.3
#72 0xb6e6826a in QSignal::signal () from /usr/lib/libqt-mt.so.3
#73 0xb6b4478d in QSignal::activate () from /usr/lib/libqt-mt.so.3
#74 0xb6b4bf73 in QSingleShotTimer::event () from /usr/lib/libqt-mt.so.3
#75 0xb6acdbff in QApplication::internalNotify () from
/usr/lib/libqt-mt.so.3
#76 0xb6acd1fe in QApplication::notify () from /usr/lib/libqt-mt.so.3
#77 0xb7107e03 in KApplication::notify () from /usr/lib/libkdecore.so.4
#78 0xb6abd425 in QEventLoop::activateTimers () from
/usr/lib/libqt-mt.so.3
#79 0xb6a76c6b in QEventLoop::processEvents () from
/usr/lib/libqt-mt.so.3
#80 0xb6a

Bug#291239: KDM ignores host aliases in Xaccess

2005-01-19 Thread Christoph Barbian
Package: kdm
Version: 3.3.1-4
--
KDM ignores host aliases of the form
%mylist host-a host-b
*   CHOOSER %mylist
in Xaccess file. It logs
Jan 19 15:00:26 dhcp kdm_config[12163]: Host "%mylist" not found
--
I think there is a typo in kdm_config.c:
In line 1010 of kdm/kfrontend/kdm_config.c we have
#define PARSE_NO_ALIAS  3
but I assume (not sure) it should be
#define PARSE_NO_ALIAS 4
(I tried it and now at least Xaccess parsing works as it should).
--
Running Debian GNU/Linux 3.1 (testing)
Kernel 2.4.27-1-686-smp and libc-2.3.2.so
--
Cheers
  Christoph Barbian
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


Bug#268943: LD_PRELOAD

2004-10-10 Thread Jan Christoph Uhde

after reinstalling kitchensync korganizer refuses to work again.
i tied to use LD_PRELOAD to get the programm working but it was only a 
kind of partial success:


[EMAIL PROTECTED]:~$ korganizer
korganizer: relocation error: /usr/lib/libkcal_resourceremote.so.1: undefined 
symbol: _ZNK4KCal16ResourceCalendar8infoTextEv

[EMAIL PROTECTED]:~$ export LD_PRELOAD='/usr/lib/libkcal_resourceremote.so.1'; 
korganizer
korganizer: relocation error: /usr/lib/libkorganizer_calendar.so.1: undefined 
symbol: _ZN4KCal8Calendar10incidencesERK5QDate

[EMAIL PROTECTED]:~$ export LD_PRELOAD='/usr/lib/libkcal_resourceremote.so.1 
/usr/lib/libkorganizer_calendar.so.1'; korganizer
korganizer: relocation error: /usr/lib/libkorganizer_calendar.so.1: undefined 
symbol: _ZN4KCal8Calendar10incidencesERK5QDate

[EMAIL PROTECTED]:~$ export 
LD_PRELOAD='/usr/lib/libkcal_resourceremote.so.1:/usr/lib/libkorganizer_calendar.so.1';
 korganizer
korganizer: relocation error: /usr/lib/libkorganizer_calendar.so.1: undefined 
symbol: _ZN4KCal8Calendar10incidencesERK5QDate

[EMAIL PROTECTED]:~$ export 
LD_PRELOAD='/usr/lib/libkorganizer_calendar.so.1:/usr/lib/libkcal_resourceremote.so.1';
 korganizer
korganizer: relocation error: /usr/lib/libkcal_resourceremote.so.1: undefined 
symbol: _ZNK4KCal16ResourceCalendar8infoTextEv

[EMAIL PROTECTED]:~$

Using LD_PRELOAD i am  able to load the 'libkcal_resourceremote.so.1' 
but then theres a second library missing.

is there a way to load more than one lib ??



crystalsvg - Thunderbird Icon transparent background

2004-09-27 Thread Jan Christoph Ebersbach

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi,

the crystalsvg 16x16 and 32x32 Thunderbirdicon has a white instead of a
transparent background.

Bye.

Jan Christoph
- --
eMail: [EMAIL PROTECTED]
Hompage  : http://www.e-jc.de/
PGP-KeyID: 0x2D600996
Wo kämen wir hin, wenn alle sagen würden "wo kämen wir hin" und keiner
ginge, um zu sehen, wohin man käme, wenn man ginge ;-)
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.2.5 (GNU/Linux)

iD8DBQFBV/cVY+DL3S1gCZYRAiWgAJ4zlML+HKSGZHKwur2KFPkht7FQjwCg7D3J
BKTW5YaosiY53TTQZMJX5cY=
=VJAr
-END PGP SIGNATURE-




Bug#268943: kitchensync

2004-09-19 Thread Jan Christoph Uhde

The problem seems to be related to kitchensync.
After removing kde and reinstalling it without
kitchensync korganizer works fine.

there was a version of kitchensync installed
on my pc before kitchensync was a part of
sid. Could that cause the trouble?



Bug#268943: last lines of strace

2004-08-31 Thread Jan Christoph Uhde

[EMAIL PROTECTED]:~$ strace korganizer
..
open("/usr/lib/libexpat.so.1", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\240!\0"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=126248, ...}) = 0
old_mmap(NULL, 129252, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41c11000
old_mmap(0x41c2e000, 12288, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x1c000) = 0x41c2e000

close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or 
directory)

open("/usr/lib/libkdenetwork.so.2", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0P\377\3"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=825808, ...}) = 0
old_mmap(NULL, 829300, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41c31000
old_mmap(0x41cf4000, 32768, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0xc2000) = 0x41cf4000

close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or 
directory)

open("/usr/lib/libqgpgme.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\2200\0"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=22888, ...}) = 0
old_mmap(NULL, 21864, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41cfc000
old_mmap(0x41d01000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x5000) = 0x41d01000

close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or 
directory)

open("/usr/lib/libkspell.so.4", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0`\6\0\000"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=3404, ...}) = 0
old_mmap(NULL, 6512, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41d02000
old_mmap(0x41d03000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0) = 0x41d03000

close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or 
directory)

open("/usr/lib/libgpgme++.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0\20\336"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=123204, ...}) = 0
old_mmap(NULL, 126300, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41d04000
old_mmap(0x41d22000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x1d000) = 0x41d22000

close(3)= 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 
-1, 0) = 0x41d23000
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or 
directory)

open("/usr/lib/libgpgme.so.11", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0p4\0\000"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=87144, ...}) = 0
old_mmap(NULL, 92280, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41d24000
old_mmap(0x41d39000, 8192, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x14000) = 0x41d39000

close(3)= 0
access("/etc/ld.so.nohwcap", F_OK)  = -1 ENOENT (No such file or 
directory)

open("/usr/lib/libgpg-error.so.0", O_RDONLY) = 3
read(3, "\177ELF\1\1\1\0\0\0\0\0\0\0\0\0\3\0\3\0\1\0\0\0 \10\0\000"..., 
512) = 512

fstat64(3, {st_mode=S_IFREG|0644, st_size=10924, ...}) = 0
old_mmap(NULL, 13984, PROT_READ|PROT_EXEC, MAP_PRIVATE, 3, 0) = 0x41d3b000
old_mmap(0x41d3e000, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_FIXED, 
3, 0x2000) = 0x41d3e000

close(3)= 0
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 
-1, 0) = 0x41d3f000
old_mmap(NULL, 4096, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS, 
-1, 0) = 0x41d4
writev(2, [{"korganizer", 10}, {": ", 2}, {"relocation error", 16}, {": 
", 2}, {"/usr/lib/libkcal_resourceremote."..., 36},{": ", 2}, 
{"undefined symbol: _ZNK4KCal16Res"..., 56}, {"", 0}, {"", 0}, {"\n", 
1}], 10korganizer: relocation error: 
/usr/lib/libkcal_resourceremote.so.1: undefined symbol: 
_ZNK4KCal16ResourceCalendar8infoTextEv

) = 125
exit_group(127) = ?
[EMAIL PROTECTED]:~$  



Bug#269029: kde: vertical icon spacing

2004-08-30 Thread Jan Christoph Uhde
Package: kde
Version: 4:3.1.2
Severity: minor


the icon spacing in kde 3.3 inacceptable there's this huge gap between
all my icons.

ftp://bofh.jeet.nu/pub/incoming/icon_spacing.png

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=C, [EMAIL PROTECTED]

Versions of packages kde depends on:
ii  kde-amusements   4:3.1.2 The K Desktop Environment (Games a
ii  kde-core 4:3.1.2 The K Desktop Environment (Core)
ii  kdeaddons4:3.2.3-2   add-on plugins and applets provide
ii  kdeadmin 4:3.3.0-1   KDE Administration tools metapacka
ii  kdeartwork   4:3.2.3-2   themes, styles and more from the o
ii  kdegraphics  4:3.3.0-1.1 KDE Graphics metapackage
ii  kdemultimedia4:3.3.0-1   KDE Multimedia metapackage
ii  kdenetwork   4:3.3.0-2   KDE Network metapackage
ii  kdepim   4:3.3.0-2   KDE Personal Information Managemen
ii  kdeutils 4:3.3.0-1   KDE Utilities metapackage
ii  quanta   1:3.2.3-2   web development environment for KD

-- no debconf information



Bug#268943: korganizer crashes at start

2004-08-29 Thread Jan Christoph Uhde
Package: korganizer
Version: 4:3.3.0-2
Severity: important

[EMAIL PROTECTED]:/usr/lib$ korganizer
korganizer: relocation error: /usr/lib/libkcal_resourceremote.so.1:
undefined symbol: _ZNK4KCal16ResourceCalendar8infoTextEv

[EMAIL PROTECTED]:/usr/lib$ ll libkcal_re*
-rw-r--r--  1 root root  52K 2004-08-27 22:28 libkcal_resourceremote.a
-rw-r--r--  1 root root 1,4K 2004-08-27 21:23 libkcal_resourceremote.la
lrwxr-xr-x  1 root root   31 2004-08-29 22:43 libkcal_resourceremote.so
-> libkcal_resourceremote.so.1.0.0
lrwxr-xr-x  1 root root   40 2004-08-30 00:50
libkcal_resourceremote.so.1 -> /usr/lib/libkcal_resourceremote.so.1.0.0
-rw-r--r--  1 root root  44K 2004-08-27 22:28
libkcal_resourceremote.so.1.0.0


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.8.1
Locale: LANG=C, [EMAIL PROTECTED]

Versions of packages korganizer depends on:
ii  kdelibs4  4:3.3.0-1.1KDE core libraries
ii  ktnef 4:3.3.0-2  KDE TNEF viewer
ii  libart-2.0-2  2.3.16-6   Library of functions for 2D graphi
ii  libc6 2.3.2.ds1-16   GNU C Library: Shared libraries an
ii  libgcc1   1:3.4.1-7  GCC support library
ii  libice6   4.3.0.dfsg.1-6 Inter-Client Exchange library
ii  libidn11  0.5.2-3GNU libidn library, implementation
ii  libkcal2  4:3.3.0-2  KDE calendaring library
ii  libkdepim14:3.3.0-2  KDE PIM library
ii  libkgantt04:3.3.0-2  KDE gantt charting library
ii  libkpimexchange1  4:3.3.0-2  KDE PIM Exchange library
ii  libkpimidentities14:3.3.0-2  KDE PIM user identity information 
ii  libpng12-01.2.5.0-7  PNG library - runtime
ii  libqt3c102-mt 3:3.3.3-4  Qt GUI Library (Threaded runtime v
ii  libsm64.3.0.dfsg.1-6 X Window System Session Management
ii  libstdc++51:3.3.4-9  The GNU Standard C++ Library v3
ii  libx11-6  4.3.0.dfsg.1-6 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-6 X Window System miscellaneous exte
ii  libxrender1   0.8.3-7X Rendering Extension client libra
ii  perl  5.8.4-2Larry Wall's Practical Extraction 
ii  xlibs 4.3.0.dfsg.1-6 X Window System client libraries m
ii  zlib1g1:1.2.1.1-7compression library - runtime

-- no debconf information



Bug#242519: Workaround

2004-04-23 Thread Christoph Pohl

Chris Cheney wrote:

kdepim 3.2.2 is already in sid. If the bug isn't fixed yet it won't
likely be fixed anytime soon. That bug seems to imply the upstream
author doesn't feel like fixing bugs in the 3.2 branch. Perhaps if you
bug him some more he will fix it?


Well, I'm not so sure about this.

I've got version 4:3.2.2-1 of libkdepim1, kpilot, and korganizer 
installed but the About dialog of korganizer keeps telling me 'Version 
3.2.1 (Using KDE 3.2.2)'. Since the bug (and the workaround) actually 
concerns korganizer, I'm not sure whether these guys referred to the KDE 
branch in general or korganizer specifically.




Bug#242519: Workaround

2004-04-22 Thread Christoph Pohl

I found the corresponding bug in bugs.kde.org:

http://bugs.kde.org/show_bug.cgi?id=74221

So, until kdepim-3.2.2 makes it to Debian unstable, use the workaround 
described there: unset the local time zone in korganizer's settings.




Bug#237069: /usr/bin/kprinter: same problem

2004-04-07 Thread Christoph Pohl
Package: kdeprint
Version: 4:3.2.1-1
Severity: normal
File: /usr/bin/kprinter
Followup-For: Bug #237069

I can confirm this problem. Exactly the same for me.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (100, 'unstable'), (90, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.3
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)

Versions of packages kdeprint depends on:
ii  enscript1.6.4-3  Converts ASCII text to Postscript,
ii  gv  1:3.5.8-31   A PostScript and PDF viewer for X 
ii  kdelibs44:3.2.1-1KDE core libraries
ii  libart-2.0-22.3.16-3 Library of functions for 2D graphi
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  libfam0c102 2.7.0-5  client library to control the FAM 
ii  libgcc1 1:3.3.3-6GCC support library
ii  libice6 4.3.0-7  Inter-Client Exchange library
ii  libpng12-0  1.2.5.0-5PNG library - runtime
ii  libqt3c102-mt   3:3.2.3-2Qt GUI Library (Threaded runtime v
ii  libsm6  4.3.0-7  X Window System Session Management
ii  libstdc++5  1:3.3.3-6The GNU Standard C++ Library v3
ii  libx11-64.3.0-7  X Window System protocol client li
ii  libxext64.3.0-7  X Window System miscellaneous exte
ii  libxrender1 0.8.3-7  X Rendering Extension client libra
ii  poster  20020830-2   Create large posters out of PostSc
ii  psutils 1.17-17  A collection of PostScript documen
ii  xlibs   4.3.0-7  X Window System client libraries m
ii  zlib1g  1:1.2.1-5compression library - runtime

-- no debconf information

-- 
This message has been scanned for viruses and
dangerous content, and is believed to be clean.




Bug#242519: kpilot: event times set 2h too early in calender

2004-04-07 Thread Christoph Pohl
Package: kpilot
Version: 4:3.2.1-1
Severity: important

Since last week, kpilot sets my Palm m500's calendar events 2h too early.
I guess there's something wrong with the calendar conduit. 
The clock conduit seems to work fine, though: I have the same time set on my
desktop and Palm (timezone: CEST).

This bug makes it hard if not outright impossible to keep track of personal 
appointments.
Anyway, it's pretty anoying when audio notification go off 2h too early all
the time, especially in the morning! :-(

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (100, 'unstable'), (90, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.3
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)

Versions of packages kpilot depends on:
ii  debconf [debconf-2.0]   1.4.21   Debian configuration management sy
ii  kdelibs44:3.2.1-1KDE core libraries
ii  libart-2.0-22.3.16-3 Library of functions for 2D graphi
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  libfam0c102 2.7.0-5  client library to control the FAM 
ii  libgcc1 1:3.3.3-6GCC support library
ii  libice6 4.3.0-7  Inter-Client Exchange library
ii  libkcal24:3.2.1-1KDE calendaring library
ii  libmal1 0.40-3   A library of the functions in mals
ii  libncurses5 5.4-3Shared libraries for terminal hand
ii  libpisock8  0.11.8-9 Library for communicating with a P
ii  libpng12-0  1.2.5.0-5PNG library - runtime
ii  libqt3c102-mt   3:3.2.3-2Qt GUI Library (Threaded runtime v
ii  libreadline44.3-10   GNU readline and history libraries
ii  libsm6  4.3.0-7  X Window System Session Management
ii  libstdc++5  1:3.3.3-6The GNU Standard C++ Library v3
ii  libx11-64.3.0-7  X Window System protocol client li
ii  libxext64.3.0-7  X Window System miscellaneous exte
ii  libxrender1 0.8.3-7  X Rendering Extension client libra
ii  xlibs   4.3.0-7  X Window System client libraries m
ii  zlib1g  1:1.2.1-5compression library - runtime

-- debconf information excluded

-- 
This message has been scanned for viruses and
dangerous content, and is believed to be clean.




Bug#225325: kpilot: same problem

2004-04-07 Thread Christoph Pohl
Package: kpilot
Version: 4:3.2.1-1
Severity: normal
Followup-For: Bug #225325

I experience exactly the same problems on my Palm m500.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (100, 'unstable'), (90, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.3
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)

Versions of packages kpilot depends on:
ii  debconf [debconf-2.0]   1.4.21   Debian configuration management sy
ii  kdelibs44:3.2.1-1KDE core libraries
ii  libart-2.0-22.3.16-3 Library of functions for 2D graphi
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  libfam0c102 2.7.0-5  client library to control the FAM 
ii  libgcc1 1:3.3.3-6GCC support library
ii  libice6 4.3.0-7  Inter-Client Exchange library
ii  libkcal24:3.2.1-1KDE calendaring library
ii  libmal1 0.40-3   A library of the functions in mals
ii  libncurses5 5.4-3Shared libraries for terminal hand
ii  libpisock8  0.11.8-9 Library for communicating with a P
ii  libpng12-0  1.2.5.0-5PNG library - runtime
ii  libqt3c102-mt   3:3.2.3-2Qt GUI Library (Threaded runtime v
ii  libreadline44.3-10   GNU readline and history libraries
ii  libsm6  4.3.0-7  X Window System Session Management
ii  libstdc++5  1:3.3.3-6The GNU Standard C++ Library v3
ii  libx11-64.3.0-7  X Window System protocol client li
ii  libxext64.3.0-7  X Window System miscellaneous exte
ii  libxrender1 0.8.3-7  X Rendering Extension client libra
ii  xlibs   4.3.0-7  X Window System client libraries m
ii  zlib1g  1:1.2.1-5compression library - runtime

-- debconf information excluded

-- 
This message has been scanned for viruses and
dangerous content, and is believed to be clean.




Bug#237184: knotes: spawns [Actions] and [Display] notes on startup

2004-03-10 Thread Christoph Pohl
Package: knotes
Version: 4:3.2.1-1
Severity: important
Tags: sid



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (100, 'unstable'), (90, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.3
Locale: LANG=C, LC_CTYPE=C (ignored: LC_ALL set to C)

Versions of packages knotes depends on:
ii  kdelibs44:3.2.1-1KDE core libraries
ii  libart-2.0-22.3.16-1 Library of functions for 2D graphi
ii  libc6   2.3.2.ds1-11 GNU C Library: Shared libraries an
ii  libfam0c102 2.7.0-5  client library to control the FAM 
ii  libgcc1 1:3.3.3-2GCC support library
ii  libice6 4.3.0-5  Inter-Client Exchange library
ii  libkcal24:3.2.1-1KDE calendaring library
ii  libpng12-0  1.2.5.0-5PNG library - runtime
ii  libqt3c102-mt   3:3.2.3-2Qt GUI Library (Threaded runtime v
ii  libsm6  4.3.0-5  X Window System Session Management
ii  libstdc++5  1:3.3.3-2The GNU Standard C++ Library v3
ii  libx11-64.3.0-5  X Window System protocol client li
ii  libxext64.3.0-5  X Window System miscellaneous exte
ii  libxrender1 0.8.3-5  X Rendering Extension client libra
ii  xlibs   4.3.0-5  X Window System client libraries m
ii  zlib1g  1:1.2.1-4compression library - runtime

-- no debconf information

I start knotes immediately at login. However, since the recent update to KDE
3.2.1 in Debian Sid, it suddenly spawns 4 small, empty, black-colored notes,
titled '[Actions]' and '[Display]', 2 of each kind. 
I have not the faintest idea where they come from but I consider this an
*important* bug since it renders the whole package unusable to me. (I'm
heavily using knotes in combination with kpilot, so my Palm is flooded as
well by those strange notes.)