Bug#362972: dcop ?

2006-04-18 Thread Sune Vuorela
On Tuesday 18 April 2006 01:39, Steve M. Robbins wrote:

> Wow.  That's perfect.  How did you find that nugget of
> information?

Most kde applications have a dcop interface.

/Sune


pgpLbqe3oBP2W.pgp
Description: PGP signature


Bug#297709: marked as done (kdebase: FTBFS (amd64/gcc-4.0): undefined reference to `KHotKeys::Simple_action_data::cfg_write(KConfig&) const')

2006-04-18 Thread Debian Bug Tracking System
Your message dated Mon, 17 Apr 2006 17:31:36 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Should be fixed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kdebase
Severity: normal
Tags: patch

When building 'kdebase' on amd64 with gcc-4.0,
I get the following error:

/bin/sh ../../libtool --silent --tag=CXX --mode=link x86_64-linux-g++  
-Wnon-virtual-dtor -Wno-long-long -Wundef -ansi -D_XOPEN_SOURCE=500 
-D_BSD_SOURCE -Wcast-align -Wconversion -Wchar-subscripts -Wall -W 
-Wpointer-arith -Wwrite-strings -DNDEBUG -DNO_DEBUG -O2 -Wformat-security 
-Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common 
-DQT_CLEAN_NAMESPACE -DQT_NO_ASCII_CAST -DQT_NO_STL -DQT_NO_COMPAT 
-DQT_NO_TRANSLATION -D_GNU_SOURCE-o kcm_khotkeys.la -rpath /usr/lib/kde3 
-L/usr/X11R6/lib -L/usr/share/qt3/lib -L/usr/lib  -module -avoid-version 
-no-undefined -Wl,--no-undefined -Wl,--allow-shlib-undefined 
kcm_khotkeys_la.all_cpp.lo  ui/libui.la -lkdeui 
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys32Command_url_shortcut_action_dataE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys18Simple_action_dataINS_16Shortcut_triggerENS_18Command_url_actionEEE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys30Menuentry_shortcut_action_dataE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys18Simple_action_dataINS_16Shortcut_triggerENS_16Menuentry_actionEEE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys18Simple_action_dataINS_16Shortcut_triggerENS_11Dcop_actionEEE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys18Simple_action_dataINS_16Shortcut_triggerENS_21Keyboard_input_actionEEE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
.libs/kcm_khotkeys_la.all_cpp.o(.gnu.linkonce.d._ZTVN8KHotKeys18Simple_action_dataINS_16Shortcut_triggerENS_22Activate_window_actionEEE+0x20):
 undefined reference to 
`KHotKeys::Simple_action_data::cfg_write(KConfig&) const'
collect2: ld returned 1 exit status
make[5]: *** [kcm_khotkeys.la] Error 1
make[5]: Leaving directory `/kdebase-3.3.2/obj-x86_64-linux/khotkeys/kcontrol'

With the attached patch (taken from CVS) the 'kdebase' package
can be compiled on amd64 using gcc-4.0.

Regards
Andreas Jochens

diff -urN ../tmp-orig/kdebase-3.3.2/khotkeys/shared/action_data.cpp 
./khotkeys/shared/action_data.cpp
--- ../tmp-orig/kdebase-3.3.2/khotkeys/shared/action_data.cpp   2004-05-22 
22:26:49.0 +0200
+++ ./khotkeys/shared/action_data.cpp   2005-02-28 16:08:59.613349642 +0100
@@ -304,8 +304,6 @@
 
 // Command_url_shortcut_action_data
 
-template class Simple_action_data< Shortcut_trigger, Command_url_action >;
-
 Command_url_shortcut_action_data::Command_url_shortcut_action_data( 
Action_data_group* parent_P,
 const QString& name_P, const QString& comment_P,
 const KShortcut& shortcut_P, const QString& command_url_P, bool enabled_P )
@@ -324,9 +322,9 @@
 cfg_P.writeEntry( "Type", "COMMAND_URL_SHORTCUT_ACTION_DATA" );
 }
 
-// Menuentry_shortcut_action_data
+template class Simple_action_data< Shortcut_trigger, Command_url_action >;
 
-template class Simple_action_data< Shortcut_trigger, Menuentry_action >;
+// Menuentry_shortcut_action_data
 
 Menuentry_shortcut_action_data::Menuentry_shortcut_action_data( 
Action_data_group* parent_P,
 const QString& name_P, const QString& comment_P,
@@ -346,9 +344,9 @@
 cfg_P.writeEntry( "Type", "MENUENTRY_SHORTCUT_ACTION_DATA" );
 }
 
-// Dcop_shortcut_action_data
+template class Simple_action_data< Shortcut_trigger, Menuentry_action >;
 
-template class Simple_action_data< Shortcut_trigger, Dcop_action >;
+// Dcop_shortcut_action_data
 
 template<>
 void Simple_action_data< Shortcut_trigger, Dcop_action >
@@ -357,11 +355,9 @@
 base::cfg_write( cfg_P );
 cfg_P.writeEntry( "Type", "DCOP_SHORTCUT_ACTION_DATA" );
 }
-
+template class Simple_action_data< Shortcut_trigger, Dcop_action >;
 // Keyboard_input_shortcut_action_data
 
-template class Simple_action_data< Sho

Bug#363269: konsolekalendar: Segfaults during startup

2006-04-18 Thread Christian Hammers
Package: konsolekalendar
Version: 4:3.3.2-3
Severity: important

Hello

On Sarge, konsolekalendar is not usable.

(if that matters, I hoped that it would load and display the WebDAV calendar,
I configured and successfully used with korganizer so if you can't reproduce
it, try adding a webdav resource)

bye,

-christian-

(gdb) run
Starting program: /usr/bin/konsolekalendar 
(no debugging symbols found)
(no debugging symbols found)
...
Program received signal SIGSEGV, Segmentation fault.
[Switching to Thread 1098435424 (LWP 5834)]
0x404cfb66 in KApplication::ref () from /usr/lib/libkdecore.so.4
(gdb) where
#0  0x404cfb66 in KApplication::ref () from /usr/lib/libkdecore.so.4
#1  0x40e5e72b in KIO::Job::Job () from /usr/lib/libkio.so.4
#2  0x40e6686e in KIO::FileCopyJob::FileCopyJob () from /usr/lib/libkio.so.4
#3  0x40e683d5 in KIO::file_copy () from /usr/lib/libkio.so.4
#4  0x418d6b19 in KCal::ResourceRemote::doLoad () from 
/usr/lib/libkcal_resourceremote.so.1
#5  0x400a9fff in KCal::ResourceCalendar::load () from /usr/lib/libkcal.so.2
#6  0x400b2d43 in KCal::CalendarResources::load () from /usr/lib/libkcal.so.2
#7  0x08054a3a in ?? ()
#8  0x080683c0 in ?? ()
#9  0x in ?? ()
#10 0x in ?? ()
#11 0x in ?? ()
#12 0x in ?? ()
#13 0x0001 in ?? ()
#14 0x08056520 in _IO_stdin_used ()
#15 0x in ?? ()
#16 0x08056b60 in typeinfo for QGList ()
#17 0x08055be5 in _IO_stdin_used ()
#18 0x1000 in ?? ()
#19 0x414d06d0 in KStyle::qt_static_property () from /usr/lib/libkdefx.so.4
#20 0x402e1974 in __libc_start_main () from /lib/tls/libc.so.6
#21 0x0804b361 in ?? ()
(gdb) 

-- System Information:
Debian Release: 3.1
Architecture: i386 (i686)
Kernel: Linux 2.6.8-2-686-smp
Locale: LANG=de_DE, LC_CTYPE=de_DE (charmap=ISO-8859-15) (ignored: LC_ALL set 
to [EMAIL PROTECTED])

Versions of packages konsolekalendar depends on:
ii  kdelibs44:3.3.2-6.4  KDE core libraries
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:3.4.3-13   GCC support library
ii  libkcal2a   4:3.3.2-3KDE calendaring library
ii  libkdepim1  4:3.3.2-3KDE PIM library
ii  libqt3c102-mt   3:3.3.4-3Qt GUI Library (Threaded runtime v
ii  libstdc++5  1:3.3.5-13   The GNU Standard C++ Library v3

-- no debconf information


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 224924 http://bugs.kde.org/71239
Bug#224924: kdesktop: panels->control center->arrangement->screen->identify 
broken (2 heads)
Forwarded-to-address changed from http://bugs.kde.org/71239 to 
http://bugs.kde.org/71239.

> usertag 224924 =
There were no usertags set.
Usertags are now: .
> usertag 224924 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 224891 http://bugs.kde.org/71239
Bug#224891: kdesktop: panel changes don't take effect right away (2 heads)
Forwarded-to-address changed from http://bugs.kde.org/71239 to 
http://bugs.kde.org/71239.

> usertag 224891 =
There were no usertags set.
Usertags are now: .
> usertag 224891 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 225233 http://bugs.kde.org/71239
Bug#225233: kdesktop: no option to empty trash on 2nd display (2 heads)
Forwarded-to-address changed from http://bugs.kde.org/71239 to 
http://bugs.kde.org/71239.

> usertag 225233 =
There were no usertags set.
Usertags are now: .
> usertag 225233 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was 
debian-qt-kde@lists.debian.org).
> forwarded 224885 http://bugs.kde.org/71239
Bug#224885: kdesktop: Launch activation cursor appears on wrong head (2 heads)
Forwarded-to-address changed from http://bugs.kde.org/71239 to 
http://bugs.kde.org/71239.

> usertag 224885 =
There were no usertags set.
Usertags are now: .
> usertag 224885 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 224902 http://bugs.kde.org/71239
Bug#224902: kdesktop: taskbar unhides for mouse on wrong screen (2 heads)
Forwarded-to-address changed from http://bugs.kde.org/71239 to 
http://bugs.kde.org/71239.

> usertag 224902 =
There were no usertags set.
Usertags are now: .
> usertag 224902 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 224918 http://bugs.kde.org/71239
Bug#224918: kdesktop: multiple desktop path configurations are broken
Forwarded-to-address changed from http://bugs.kde.org/71239 to 
http://bugs.kde.org/71239.

> usertag 224918 =
There were no usertags set.
Usertags are now: .
> usertag 224918 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 283472 http://bugs.kde.org/94095
Bug#283472: man: something urls do not work - konqueror wants MANPATH although 
Debian use manpath
Forwarded-to-address changed from http://bugs.debian.org/94095 to 
http://bugs.kde.org/94095.

> usertag 283472 =
There were no usertags set.
Usertags are now: .
> usertag 283472 + bzStatus-unconfirmed
There were no usertags set.
Usertags are now: bzStatus-unconfirmed.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 281312 http://bugs.kde.org/119129
Bug#281312: kmag --display :0.1 magnifies area on :0.1 when cursor on :0.0
Noted your statement that Bug has been forwarded to http://bugs.kde.org/119129.

> usertag 281312 =
There were no usertags set.
Usertags are now: .
> usertag 281312 + bzStatus-unconfirmed
There were no usertags set.
Usertags are now: bzStatus-unconfirmed.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#363280: konsole: Missing slave alternative /usr/share/man/man1/x-terminal-emulator.1.gz

2006-04-18 Thread Magnus Holmgren
Package: konsole
Version: 4:3.5.2-1
Severity: minor
Tags: patch

I think you should add 

 --slave /usr/share/man/man1/x-terminal-emulator.1.gz \
x-terminal-emulator.1.gz /usr/share/man/man1/konsole.1.gz

to the update-alternatives command in konsole.postinst, because other 
X-terminal packages do and it results in mandb reporting a dangling symlink 
once a day if you choose konsole as the x-terminal-emulator alternative.

Even if this is a minor bug, since there exists a man page for konsole there 
is no good enough reason not to add an alternatives link to it, IMHO.

-- 
Magnus Holmgren
[EMAIL PROTECTED]


pgpNYqVKkeX4X.pgp
Description: PGP signature


Bug#276633: fixed in kde 3.4

2006-04-18 Thread Pierre HABOUZIT
close 276633 4:3.4.0
thanks

On Sat, Mar 26, 2005 at 09:40:17AM +1100, Ben Burton wrote:
> tags 276633 + fixed-upstream
> thanks mate
> 
> Just a note that this issue is fixed in KDE 3.4.
> 
> Ben.
> 
> 

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature


Processed: Re: fixed in kde 3.4

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> close 276633 4:3.4.0
Bug#276633: konq-plugins: rellinks plugin unusable
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.4.0, send any further explanations to Romain 
Lerallut <[EMAIL PROTECTED]>

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: setting package to kappfinder kate kcontrol kdebase kdebase-bin kdebase-data kdebase-dbg kdebase-dev kdebase-doc kdebase-doc-html kdebase-kio-plugins kdepasswd kdeprint kdesktop kdm kfind k

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.17
> package kappfinder kate kcontrol kdebase kdebase-bin kdebase-data kdebase-dbg 
> kdebase-dev kdebase-doc kdebase-doc-html kdebase-kio-plugins kdepasswd 
> kdeprint kdesktop kdm kfind khelpcenter kicker klipper kmenuedit konqueror 
> konqueror-nsplugins konsole kpager kpersonalizer ksmserver ksplash ksysguard 
> ksysguardd ktip kwin libkonq4 libkonq4-dev
Ignoring bugs not assigned to: ksysguard kcontrol kappfinder kdeprint kdepasswd 
libkonq4-dev kdesktop kdebase-dev kdebase-doc-html kmenuedit konsole klipper 
kdebase-data kate libkonq4 ktip kfind kdebase-doc khelpcenter 
konqueror-nsplugins kpersonalizer kdebase-bin kdebase kdebase-dbg kwin 
kdebase-kio-plugins konqueror ksplash ksmserver kpager kicker ksysguardd kdm

> tags 363076 + pending
Bug#363076: konqueror: Missing slave alternative 
/usr/share/man/man1/x-www-browser.1.gz
Tags were: patch
Tags added: pending

> tags 363280 + pending
Bug#363280: konsole: Missing slave alternative 
/usr/share/man/man1/x-terminal-emulator.1.gz
Tags were: patch
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#348039: marked as done (konq-plugins: extract here option is gone for rar files)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 12:22:12 +0200
with message-id <[EMAIL PROTECTED]>
and subject line bug fixed
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: konq-plugins
Version: 4:3.5.0-3
Severity: normal

I don't have the extract options anymore in the contextual menu of
konqueror when I right click on a rar file, I have the compression
options instead, as if it wasn't an archive.

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

Versions of packages konq-plugins depends on:
ii  kdelibs4c2a   4:3.5.0-3  core libraries for all KDE applica
ii  konqueror 4:3.5.0-4  KDE's advanced file manager, web b
ii  libarts1c2a   1.5.0-3aRts sound system core components
ii  libc6 2.3.5-11   GNU C Library: Shared libraries an
ii  libgcc1   1:4.0.2-6  GCC support library
ii  libice6   6.9.0.dfsg.1-3 Inter-Client Exchange library
ii  libjpeg-progs 6b-11  Programs for manipulating JPEG fil
ii  libkonq4  4:3.5.0-4  core libraries for Konqueror
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libqt3-mt 3:3.3.5-3  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-3 X Window System Session Management
ii  libstdc++64.0.2-6The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-3 X Window System protocol client li
ii  libxext6  6.9.0.dfsg.1-3 X Window System miscellaneous exte
ii  python2.3.5-3An interactive high-level object-o
ii  zlib1g1:1.2.3-9  compression library - runtime

Versions of packages konq-plugins recommends:
ii  akregator  4:3.5.0-4 RSS feed aggregator for KDE
ii  ark4:3.5.0-3 graphical archiving tool for KDE
ii  imagemagick6:6.2.4.5-0.5 Image manipulation programs

-- no debconf information

--- End Message ---
--- Begin Message ---
On Tue, Feb 28, 2006 at 04:24:04PM +0100, Grégoire Druant wrote:
> This bug seems now to be fixed.
> 
> Regards

  ok. 

  AFAICT this may also be the case if you don't have any unrar on your
system. In that case, the menu entry is not available.

  closing the bug

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature
--- End Message ---


Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 350678 http://bugs.kde.org/125798
Bug#350678: ksayit: Crashes with "terminate called after throwing an instance 
of 'QString'" error.
Noted your statement that Bug has been forwarded to http://bugs.kde.org/125798.

> usertag 350678 =
There were no usertags set.
Usertags are now: .
> usertag 350678 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Re: konq-plugins: endless loop when trying to zip without having zip installed

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> #Fixed in kde 3.4
> close 319773 4:3.4.0
Bug#319773: konq-plugins: endless loop when trying to zip without having zip 
installed
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.4.0, send any further explanations to [EMAIL 
PROTECTED]

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#353120: vimpart is not part of kde anymore

2006-04-18 Thread Pierre HABOUZIT
# vimpart is not built in kde 3.5 anymore
close 255311 4:3.5.0
close 353120 4:3.5.0
thanks

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature


Bug#342253: kicker-applets: System Monitor doesn't properly handle transparency

2006-04-18 Thread Pierre HABOUZIT
# maybe fixed in 3.5.0, it's KDE bug 108879
close 342253 4:3.5.1
thanks


-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature


Processed: vimpart is not part of kde anymore

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # vimpart is not built in kde 3.5 anymore
> close 255311 4:3.5.0
Bug#255311: vimpart: fails to embed
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.5.0, send any further explanations to Ben 
Burton <[EMAIL PROTECTED]>

> close 353120 4:3.5.0
Bug#353120: vimpart: please correct package description wrt KDevelop
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.5.0, send any further explanations to Ivan 
Kohler <[EMAIL PROTECTED]>

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: Re: kicker-applets: System Monitor doesn't properly handle transparency

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # maybe fixed in 3.5.0, it's KDE bug 108879
> close 342253 4:3.5.1
Bug#342253: kicker-applets: System Monitor doesn't properly handle transparency
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.5.1, send any further explanations to Marc 
Haber <[EMAIL PROTECTED]>

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: kcmlinuz is not shipped anymore

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # kcmlinuz is not shipped anymore
> close 175383 4:3.5.0
Bug#175383: kcmlinuz: Problems with kcmlinuz and kernel-source-2.4.20
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.5.0, send any further explanations to Petra 
Malik <[EMAIL PROTECTED]>

> close 121818 4:3.5.0
Bug#121818: kcmlinuz: Crashes when I try to load a config file
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.5.0, send any further explanations to Ross 
Boylan <[EMAIL PROTECTED]>

> close 125836 4:3.5.0
Bug#125836: kcmlinuz: work together with kernel-package
'close' is deprecated; see http://www.debian.org/Bugs/Developer#closing.
Bug marked as fixed in version 4:3.5.0, send any further explanations to 
dominique devriese <[EMAIL PROTECTED]>

> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#315057: marked as done (ksysv crashes)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 13:10:36 +0200
with message-id <[EMAIL PROTECTED]>
and subject line ksysv crashes
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: ksysv
Version: 4:3.4.0-0pre2
Severity: important


ksysv crashes

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

Versions of packages ksysv depends on:
ii  kdelibs44:3.4.1-1core libraries for all KDE applica
ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries an
ii  libgcc1 1:4.0.0-9GCC support library
ii  libqt3c102-mt   3:3.3.4-3Qt GUI Library (Threaded runtime v
ii  libstdc++5  1:3.3.6-6The GNU Standard C++ Library v3

ksysv recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
  no information from user given after almost a year, looks like #326872
that is fixed.  closing

On Mon, Jun 20, 2005 at 12:22:26PM +, michael pfromm wrote:
> Package: ksysv
> Version: 4:3.4.0-0pre2
> Severity: important
> 
> 
> ksysv crashes
> 
> -- System Information:
> Debian Release: testing/unstable
>   APT prefers unstable
>   APT policy: (700, 'unstable'), (600, 'testing')
> Architecture: i386 (i686)
> Shell:  /bin/sh linked to /bin/bash
> Kernel: Linux 2.6.11-kanotix-11
> Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
> 
> Versions of packages ksysv depends on:
> ii  kdelibs44:3.4.1-1core libraries for all KDE 
> applica
> ii  libc6   2.3.2.ds1-22 GNU C Library: Shared libraries 
> an
> ii  libgcc1 1:4.0.0-9GCC support library
> ii  libqt3c102-mt   3:3.3.4-3Qt GUI Library (Threaded runtime 
> v
> ii  libstdc++5  1:3.3.6-6The GNU Standard C++ Library v3
> 
> ksysv recommends no packages.
> 
> -- no debconf information
> 
> 

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature
--- End Message ---


Bug#306847: marked as done (kcron: i purged some packages in aptitude.)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 13:08:46 +0200
with message-id <[EMAIL PROTECTED]>
and subject line kcron: i purged some packages in aptitude.
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kcron
Version: 4:3.3.2-1
Severity: important

i purged some packages in aptitude. then this thing apeard.


-- System Information:
Debian Release: 3.1
  APT prefers testing
  APT policy: (600, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.4.29
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)


--- End Message ---
--- Begin Message ---
  no user informations since ages, void report. closing

On Thu, Apr 28, 2005 at 11:20:54PM +0200, root wrote:
> Package: kcron
> Version: 4:3.3.2-1
> Severity: important
> 
> i purged some packages in aptitude. then this thing apeard.
> 
> 
> -- System Information:
> Debian Release: 3.1
>   APT prefers testing
>   APT policy: (600, 'testing')
> Architecture: i386 (i686)
> Kernel: Linux 2.4.29
> Locale: [EMAIL PROTECTED], [EMAIL PROTECTED] (charmap=ISO-8859-15)
> 
> 
> 

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature
--- End Message ---


Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 255036 http://bugs.kde.org/125801
Bug#255036: kpackage: RESULT=130
Noted your statement that Bug has been forwarded to http://bugs.kde.org/125801.

> usertag 255036 =
There were no usertags set.
Usertags are now: .
> usertag 255036 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: setting package to kcron kdat kdeadmin kdeadmin-dbg kdeadmin-doc-html kdeadmin-kfile-plugins knetworkconf kpackage ksysv kuser lilo-config secpolicy ...

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.17
> package kcron kdat kdeadmin kdeadmin-dbg kdeadmin-doc-html 
> kdeadmin-kfile-plugins knetworkconf kpackage ksysv kuser lilo-config secpolicy
Ignoring bugs not assigned to: kcron secpolicy kdat lilo-config kpackage 
kdeadmin-kfile-plugins ksysv kuser kdeadmin-dbg kdeadmin kdeadmin-doc-html 
knetworkconf

> tags 358296 + pending
Bug#358296: kpackage: Breaks sources.list
There were no tags set.
Tags added: pending

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#315181: marked as done (kscreensaver fails to start screensaver when locking the screen)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 13:53:51 +0200
with message-id <[EMAIL PROTECTED]>
and subject line kscreensaver fails to start screensaver when locking the screen
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kscreensaver
Version: 4:3.4.0-0pre1
Severity: important


I recently upgraded to sarge from woody.  all of kde is installed as are
xscreensaver and xscreensaver-nognome and xscreensaver gl.
A screensaver will start, or the screen will lock, however, If I go to
lock screen or enable locking in the screensaver under the control
center,  all I get is a password dialog and no screensaver.  In other
words you can see everything on the desktop.

--- End Message ---
--- Begin Message ---
On Mon, Jun 20, 2005 at 05:17:54PM -0700, Michal Palczewski wrote:
> Package: kscreensaver
> Version: 4:3.4.0-0pre1
> Severity: important

  bug is unreproducible with recent and non-experimental versions of
KDE. no news from submitter since almost a year. closing the bug.
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature
--- End Message ---


Bug#313515: marked as done (Missing .desktop files for latest screensavers)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 13:48:14 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Missing .desktop files for latest screensavers
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: kscreensaver-xsavers
Version: 4:3.4.1-1

Some of the latest hacks in the xscreensaver package do not have 
.desktop files in the kscreensaver-xsavers package.


I believe we are missing: boing, boxfit, carousel, fiberlamp, fliptext, 
and substrate.

--Daniel Nelson


$ dpkg -s kscreensaver-xsavers
Package: kscreensaver-xsavers
Status: install ok installed
Priority: optional
Section: kde
Installed-Size: 1808
Maintainer: Debian Qt/KDE Maintainers 
Architecture: i386
Source: kdeartwork
Version: 4:3.4.1-1
Replaces: kdeartwork-screensaver (<= 3.1.0-1), kscreensaver (<< 4:3.3.0)
Depends: kdelibs4 (>= 4:3.4.1-1), libc6 (>= 2.3.2.ds1-21), libgcc1 (>= 
1:3.4.1-3), libqt3c102-mt (>= 3:3.3.4), libstdc++5 (>= 1:3.3.4-1), 
libx11-6 | xlibs (>> 4.1.0), libxt6 | xlibs (>> 4.1.0), kdebase-bin, 
xscreensaver-nognome | xscreensaver

Recommends: kwin, kscreensaver, xscreensaver-gl
Conflicts: kdeartwork-screensaver (<= 3.1.0-1)
Description: KDE hooks for standard xscreensavers
 This package allows a smooth integration of the standard xscreensavers
 into KDE. With this package installed you can select and/or configure
 the standard xscreensavers through the Appearances and Themes section of
 the KDE Control Centre.
 .
 Note that this package does not actually contain any screensavers itself.
 For the additional screensavers shipped with KDE, see the separate package
 kscreensaver.
 .
 This package is part of KDE, and a component of the KDE artwork module.
 See the 'kde' and 'kdeartwork' packages for more information.


--- End Message ---
--- Begin Message ---
Package: kscreensaver-xsavers
Version 4:3.5.2

On Mon, Jun 13, 2005 at 11:48:51PM -0600, Torham wrote:
> Package: kscreensaver-xsavers
> Version: 4:3.4.1-1
> 
> Some of the latest hacks in the xscreensaver package do not have 
> .desktop files in the kscreensaver-xsavers package.
> 
> I believe we are missing: boing, boxfit, carousel, fiberlamp, fliptext, 
> and substrate.

  those are now present, at least in kde 3.5.2

-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


signature.asc
Description: Digital signature
--- End Message ---


Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 358296 http://bugs.kde.org/show_bug.cgi?id=125800
Bug#358296: kpackage: Breaks sources.list
Noted your statement that Bug has been forwarded to 
http://bugs.kde.org/show_bug.cgi?id=125800.

> usertag 358296 =
There were no usertags set.
Usertags are now: .
> usertag 358296 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: reassign 361421 to kwin

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> # Automatically generated email from bts, devscripts version 2.9.17
> reassign 361421 kwin
Bug#361421: kde: alt+tab functionality lost
Bug reassigned from package `kde' to `kwin'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 354851 http://bugs.kde.org/show_bug.cgi?id=125802
Bug#354851: ksysv can't be closed
Noted your statement that Bug has been forwarded to 
http://bugs.kde.org/show_bug.cgi?id=125802.

> usertag 354851 =
There were no usertags set.
Usertags are now: .
> usertag 354851 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#363320: czech spell checking via ispell not working correctly when the utf8 encoding is set

2006-04-18 Thread Ales Kozumplik
Package: kate
Version: 3.5.1-1

when writing a czech text in kate with the utf8 encoding selected, spell 
checking misbehaves

for example, I open a new docuemnt and write "letiště" (the czech 
for "airport"), then i do tools/spell checking (language: czech), it stops 
with only half of the word selected stating "unknown word" (there really is 
no "leti" in czech).

when switching the encoding to the iso8852-2, spelling works fine.

other (maybe) related packages versions:
ispell  3.1.20.0-4.3
iczech  20040229-4

Linux: 2.6.15-1-k7 #2 Mon Mar 6 15:42:39 UTC 2006 i686 GNU/Linux
Debian: testing

best regards,
Ales Kozumplik



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was [EMAIL PROTECTED]).
> forwarded 248890 http://bugs.kde.org/show_bug.cgi?id=82009
Bug#248890: kde locale settings don't integrate with system locale
Bug#279908: amarok: doesn't interpret standard locale variables
Forwarded-to-address changed from http://bugs.kde.org/86752 to 
http://bugs.kde.org/show_bug.cgi?id=82009.

> usertag 248890 =
Usertags were: bzRes-duplicate bzStatus-resolved.
Usertags are now: .
> usertag 248890 + bzStatus-new
There were no usertags set.
Usertags are now: bzStatus-new.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#358660: kopete crashing in yahoo_get_profile_url()

2006-04-18 Thread Bob Tanner
Package: kopete
Version: 4:3.5.2-1
Followup-For: Bug #358660

Similar (same?) issue with yahoo_get_profile_url(), backtrace attached.

(no debugging symbols found)
Using host libthread_db library "/lib/tls/libthread_db.so.1".
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1510442784 (LWP 19948)]
[KCrash handler]
#5  0xa6c0b76a in internalLatin1ToUnicode (
str=0x18 , len=0xafb34674, maxlen=4294967295)
at tools/qstring.cpp:1189
#6  0xa6c0d4f9 in QString::fromLatin1 (
chars=0x18 , len=-1) at tools/qstring.cpp:5923
#7  0xa70127df in KURL (this=0xafb346f0, url=0x0, encoding_hint=0)
at kurl.cpp:474
#8  0xa585c445 in YahooSession::_gotBuddyIconReceiver ()
   from /usr/lib/kde3/kopete_yahoo.so
#9  0xa585c502 in ext_yahoo_got_buddyicon ()
   from /usr/lib/kde3/kopete_yahoo.so
#10 0xa5885891 in yahoo_get_profile_url () from /usr/lib/kde3/kopete_yahoo.so
#11 0x0001 in ?? ()
#12 0x08f4d6f8 in ?? ()
#13 0x096faba8 in ?? ()
#14 0x0018 in ?? ()
#15 0x in ?? ()

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'oldstable'), (500, 'testing'), (500, 
'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages kopete depends on:
ii  kdelibs4c2a 4:3.5.2-2+b1 core libraries for all KDE applica
ii  libacl1 2.2.36-1 Access control list shared library
ii  libart-2.0-22.3.17-1 Library of functions for 2D graphi
ii  libattr12.4.32-1 Extended attribute shared library
ii  libaudio2   1.7-8The Network Audio System (NAS). (s
ii  libc6   2.3.6-7  GNU C Library: Shared libraries
ii  libfam0 2.7.0-9  Client library to control the FAM 
ii  libfontconfig1  2.3.2-5.1generic font configuration library
ii  libfreetype62.1.10-3 FreeType 2 font engine, shared lib
ii  libgadu31:1.6+20060215-1 Gadu-Gadu protocol library - runti
ii  libgcc1 1:4.1.0-1GCC support library
ii  libglib2.0-02.10.2-1 The GLib library of C routines
ii  libice6 1:1.0.0-2X11 Inter-Client Exchange library
ii  libidn110.5.18-2 GNU libidn library, implementation
ii  libjpeg62   6b-12The Independent JPEG Group's JPEG 
ii  libmeanwhile1   1.0.2-2  open implementation of the Lotus S
ii  libpcre36.4-1.1  Perl 5 Compatible Regular Expressi
ii  libpng12-0  1.2.8rel-5.1 PNG library - runtime
ii  libqt3-mt   3:3.3.6-1Qt GUI Library (Threaded runtime v
ii  libsm6  1:1.0.0-3X11 Session Management library
ii  libstdc++6  4.1.0-1  The GNU Standard C++ Library v3
ii  libx11-62:1.0.0-6X11 client-side library
ii  libxcursor1 1.1.5.2-3X cursor management library
ii  libxext61:1.0.0-3X11 miscellaneous extension librar
ii  libxft2 2.1.8.2-6FreeType-based font drawing librar
ii  libxi6  1:1.0.0-3X11 Input extension library
ii  libxinerama11:1.0.1-2X11 Xinerama extension library
ii  libxml2 2.6.23.dfsg.2-3  GNOME XML library
ii  libxrandr2  2:1.1.0.2-3  X11 RandR extension library
ii  libxrender1 1:0.9.0.2-3  X Rendering Extension client libra
ii  libxslt1.1  1.1.15-5 XSLT processing library - runtime 
ii  libxss1 1:1.0.1-3X11 Screen Saver extension library
ii  libxt6  1:1.0.0-3X11 toolkit intrinsics library
ii  zlib1g  1:1.2.3-11   compression library - runtime

Versions of packages kopete recommends:
ii  qca-tls   1.0-3  TLS plugin for the Qt Cryptographi

-- no debconf information


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



Bug#362972: dcop ?

2006-04-18 Thread Steve M. Robbins
On Tue, Apr 18, 2006 at 08:35:54AM +0200, Sune Vuorela wrote:
> On Tuesday 18 April 2006 01:39, Steve M. Robbins wrote:
> 
> > Wow.  That's perfect.  How did you find that nugget of
> > information?
> 
> Most kde applications have a dcop interface.

OK.  But how does one find that out?  Look at the code?  Is it just
part of the "kde culture" that one should pick up by hanging out long
enough?

But more importantly, how did you discover that juk responds to
"Player stop", etc?  Where is that information documented?

-Steve




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



Bug#362972: dcop ?

2006-04-18 Thread Pierre Habouzit
Le Mar 18 Avril 2006 16:16, Steve M. Robbins a écrit :
> On Tue, Apr 18, 2006 at 08:35:54AM +0200, Sune Vuorela wrote:
> > On Tuesday 18 April 2006 01:39, Steve M. Robbins wrote:
> > > Wow.  That's perfect.  How did you find that nugget of
> > > information?
> >
> > Most kde applications have a dcop interface.
>
> OK.  But how does one find that out?  Look at the code?  Is it just
> part of the "kde culture" that one should pick up by hanging out long
> enough?

kdcop is of help, but it's mostly kde culture here ;)

> But more importantly, how did you discover that juk responds to
> "Player stop", etc?  Where is that information documented?

kdcop can tell you. else in console,

dcop $application

lists all the commands/slots of commands that exists.
and then it's incremental search. but kdcop has a nice view for that 
purpose.
-- 
·O·  Pierre Habouzit
··O[EMAIL PROTECTED]
OOOhttp://www.madism.org


pgp48jjgHNkoH.pgp
Description: PGP signature


Bug#363320: Use aspell instead

2006-04-18 Thread Miroslav Kure
Hi,

ispell has no reasonable support for UTF-8, please use aspell instead.

-- 
Miroslav Kure


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



Bug#363360: korn: never use tls option not displayed when saved

2006-04-18 Thread JF Lalande
Package: korn
Version: 4:3.5.2-1
Severity: minor


When selections "Never use TLS" option for an account of korn, the option is 
saved (it 
works). But when re-opening the option dialogs, the option is not well selected 
(the 
option "use TLS if possible" is selected instead the one which have been 
previously 
saved). So the user have to re-select "never use TLS" again to keep the option.

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

Versions of packages korn depends on:
ii  kdebase-kio-plugins   4:3.5.1-1  core I/O slaves for KDE
ii  kdelibs4c2a   4:3.5.2-2+b1   core libraries for all KDE applica
ii  kdepim-kio-plugins4:3.4.3-1  KDE pim I/O Slaves
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libice6   6.9.0.dfsg.1-6 Inter-Client Exchange library
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-6 X Window System Session Management
ii  libstdc++64.1.0-1The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-6 X Window System protocol client li
ii  libxext6  6.9.0.dfsg.1-6 X Window System miscellaneous exte
ii  zlib1g1:1.2.3-11 compression library - runtime

korn recommends no packages.

-- no debconf information


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



Bug#363357: Please rebuild kwin with this patch http://bugs.kde.org/124807

2006-04-18 Thread Rohan Dhruva
Package: kwin
Version: 4:3.5.2-1
Severity: wishlist

The bug described in http://bugs.kde.org/124807 is pretty irritating, and 
hampers 
kde experience. The bug has been fixed in kde svn, but if any developer has 
time, 
please rebuild kwin with the patch listed there, applied. The direct link to 
the 
patch is -- http://bugs.kde.org/124807#c12 
Thanks,
Rohan

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16-1-686
Locale: LANG=en_IN, LC_CTYPE=en_IN (charmap=UTF-8)

Versions of packages kwin depends on:
ii  kdelibs4c2a   4:3.5.2-2+b1   core libraries for all KDE applica
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libaudio2 1.7-8  The Network Audio System (NAS). (s
ii  libc6 2.3.6-7GNU C Library: Shared libraries
ii  libfontconfig12.3.2-5.1  generic font configuration library
ii  libfreetype6  2.1.10-3   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.1.0-1  GCC support library
ii  libice6   1:1.0.0-2  X11 Inter-Client Exchange library
ii  libidn11  0.5.18-2   GNU libidn library, implementation
ii  libjpeg62 6b-12  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-5.1   PNG library - runtime
ii  libqt3-mt 3:3.3.6-1  Qt GUI Library (Threaded runtime v
ii  libsm61:1.0.0-3  X11 Session Management library
ii  libstdc++64.1.0-1The GNU Standard C++ Library v3
ii  libx11-6  2:1.0.0-6  X11 client-side library
ii  libxcomposite11:0.2.2.2-2X11 Composite extension library
ii  libxcursor1   1.1.5.2-3  X cursor management library
ii  libxdamage1   1:1.0.2.2-2X11 damaged region extension libra
ii  libxext6  1:1.0.0-3  X11 miscellaneous extension librar
ii  libxfixes31:3.0.1.2-2+b1 X11 miscellaneous 'fixes' extensio
ii  libxft2   2.1.8.2-6  FreeType-based font drawing librar
ii  libxi61:1.0.0-3  X11 Input extension library
ii  libxinerama1  1:1.0.1-2  X11 Xinerama extension library
ii  libxrandr22:1.1.0.2-3X11 RandR extension library
ii  libxrender1   1:0.9.0.2-3X Rendering Extension client libra
ii  libxt61:1.0.0-3  X11 toolkit intrinsics library
ii  zlib1g1:1.2.3-11 compression library - runtime

kwin recommends no packages.

-- no debconf information


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



Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user debian-qt-kde@lists.debian.org
Setting user to debian-qt-kde@lists.debian.org (was 
debian-qt-kde@lists.debian.org).
> forwarded 363357 http://bugs.kde.org/124807
Bug#363357: Please rebuild kwin with this patch http://bugs.kde.org/124807
Noted your statement that Bug has been forwarded to http://bugs.kde.org/124807.

> usertag 124807 + bzStatus-resolved
There were no usertags set.
Usertags are now: bzStatus-resolved.
> usertag 124807 + bzRes-fixed
Usertags were: bzStatus-resolved.
Usertags are now: bzRes-fixed bzStatus-resolved.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#317014: marked as done (kmail-dbg package?)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 20:08:18 +0200
with message-id <[EMAIL PROTECTED]>
and subject line kmail-dbg-package
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kmail
Version: 4:3.3.2-3
Severity: wishlist


To help stomp bugs it would be very helpful to have a kmail-dbg package.


-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable'), (500, 'testing'), (500, 'stable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.11-1-686
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages kmail depends on:
ii  kdelibs4 4:3.3.2-6.1 KDE core libraries
ii  libc62.3.2.ds1-22GNU C Library: Shared libraries an
ii  libgcc1  1:4.0.0-12  GCC support library
ii  libice6  4.3.0.dfsg.1-14 Inter-Client Exchange library
ii  libkcal2a4:3.3.2-3   KDE calendaring library
ii  libkdenetwork2   4:3.3.2-3   KDE Network library
ii  libkdepim1   4:3.3.2-3   KDE PIM library
ii  libkleopatra0a   4:3.3.2-3   KDE GnuPG interface libraries
ii  libkpimidentities1   4:3.3.2-3   KDE PIM user identity information 
ii  libksieve0   4:3.3.2-3   KDE mail/news message filtering li
ii  libmimelib1a 4:3.3.2-3   KDE mime library
ii  libpng12-0   1.2.8rel-1  PNG library - runtime
ii  libqt3c102-mt3:3.3.4-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-14 X Window System Session Management
ii  libstdc++5   1:3.3.6-7   The GNU Standard C++ Library v3
ii  libx11-6 4.3.0.dfsg.1-14 X Window System protocol client li
ii  libxext6 4.3.0.dfsg.1-14 X Window System miscellaneous exte
ii  perl 5.8.7-3 Larry Wall's Practical Extraction 
ii  xlibs4.3.0.dfsg.1-14 X Keyboard Extension (XKB) configu
ii  zlib1g   1:1.2.2-5   compression library - runtime

Versions of packages kmail recommends:
ii  kdebase-kio-plugins   4:3.3.2-1  KDE I/O Slaves
ii  kdepim-kio-plugins4:3.3.2-3  KDE pim I/O Slaves
ii  procmail  3.22-11Versatile e-mail processor

-- no debconf information

--- End Message ---
--- Begin Message ---
Version: 4:3.5.0-1

There is now kdepim-dbg to address this issue

/Sune


pgpfRVw1qlAE3.pgp
Description: PGP signature
--- End Message ---


Processed: your mail

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> user [EMAIL PROTECTED]
Setting user to [EMAIL PROTECTED] (was [EMAIL PROTECTED]).
> forwarded 292133 http://bugs.kde.org/17513
Bug#292133: kmail: archiving emails
Noted your statement that Bug has been forwarded to http://bugs.kde.org/17513.

> usertag 17513 + bzStatus-assigned
There were no usertags set.
Usertags are now: bzStatus-assigned.
> thanks
Stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#267636: marked as done (debian unstable: kdelibs-data clashes with korganizer. apt-system broken)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 21:32:23 +0200
with message-id <[EMAIL PROTECTED]>
and subject line debian unstable: kdelibs-data clashes with korganizer. 
apt-system broken
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---

Package: kdelibs-data
Package: korganizer

I was trying to do an apt-get upgrade last thursday and I got this 
message:


Preparing to replace korganizer 4:3.1.5-1.1 (using 
.../korganizer_4%3a3.2.3-1_i386.deb) ...

Unpacking replacement korganizer ...
dpkg: error processing 
/var/cache/apt/archives/korganizer_4%3a3.2.3-1_i386.deb (--unpack):
trying to overwrite `/etc/kde3/khotnewstuffrc', which is also in package 
kdelibs-bin

dpkg-deb: subprocess paste killed by signal (Broken pipe)
Errors were encountered while processing:
/var/cache/apt/archives/kdelibs-data_4%3a3.3.0-1_all.deb
/var/cache/apt/archives/korganizer_4%3a3.2.3-1_i386.deb
E: Sub-process /usr/bin/dpkg returned an error code (1)

Now, I am unable to do any upgrade or install of packages, apt-get -f 
install fails, and I am unable to run kmail, korganizer or kaddressbook.


Using knoppix 2.4.24





--- End Message ---
--- Begin Message ---
Somehow someone forgot closing this bug.

/Sune


pgpALnhf0xI02.pgp
Description: PGP signature
--- End Message ---


Bug#268333: marked as done (Cannot run korganizer : missing library libknewstuff.so.1)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 22:20:14 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Cannot run korganizer : missing library libknewstuff.so.1
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: korganizer
Version: 4:3.3.0-1
Severity: important

Launching korganizer gets the following answer :

korganizer: error while loading shared libraries: libknewstuff.so.1: cannot 
open shared object file: No such file or directory

This library is still in my 'locate' database, i.e. it has been removed today
when upgrading. The Debian search engine is off, so I can't find what
package it belongs to. I just upgraded kdepim and dependancies from 'testing'
archives (3.3.0-1). One package had to be removed.

Sorry I'm not helpful.

-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'testing')
Architecture: i386 (i686)
Kernel: Linux 2.6.5-1-686
Locale: [EMAIL PROTECTED], [EMAIL PROTECTED]

Versions of packages korganizer depends on:
ii  kdelibs4  4:3.3.0-1  KDE core libraries
ii  ktnef 4:3.3.0-1  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-4 Inter-Client Exchange library
ii  libidn11  0.5.2-3GNU libidn library, implementation
ii  libkcal2  4:3.3.0-1  KDE calendaring library
ii  libkdepim14:3.3.0-1  KDE PIM library
ii  libkgantt04:3.3.0-1  KDE gantt charting library
ii  libkpimexchange1  4:3.3.0-1  KDE PIM Exchange library
ii  libkpimidentities14:3.3.0-1  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-4 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-4 X Window System protocol client li
ii  libxext6  4.3.0.dfsg.1-4 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-4 X Window System client libraries m
ii  zlib1g1:1.2.1.1-5compression library - runtime

-- no debconf information

--- End Message ---
--- Begin Message ---
The missing file is in kdelibs4 in sarge and kdelibs4c2a in etch and sid. 
korganizer depends on kdelibs. 
This bug has been fixed before sarge release, but just not yet closed.

Closing it now.

/Sune


pgpMqE4JVHhV4.pgp
Description: PGP signature
--- End Message ---


Bug#341998: marked as done (Error compiling kdepim on Debian Sid)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 21:26:07 +0200
with message-id <[EMAIL PROTECTED]>
and subject line Error compiling kdepim on Debian Sid
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kdepim
Version: 3.4.2-2
Severity: important
Justification: fails to build from source


kdepim 3.4.2-2 cannot be built from source with
apt-get --compile kdepim
or
dpkg-buildpackage -b -uc

Error message:

/usr/src/kdepim-3.4.2/build-tree/kdepim-3.4.2/kresources/egroupware/xmlrpciface.h:162:
 error: no matching function for call to 'KXMLRPC::Server::call(const QString&, 
QValueList&, const QVariant&)'

All build dependencies asked by apt-get --compile is installed prior
restarting the compile process with dpkg-buildpackage. Some of the
dependencies may be broken.

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.14-sirius-20051122-1655
Locale: LANG=hu_HU, LC_CTYPE=hu_HU (charmap=ISO-8859-2)

--- End Message ---
--- Begin Message ---
Version: 4:3.5.2-1
stop

This should be fixed in the debian packages by now.

/Sune


pgpMvxAdo5mK0.pgp
Description: PGP signature
--- End Message ---


Bug#268943: korganizer crashes at start

2006-04-18 Thread Sune Vuorela
This bug is dated pre-sarge, so most likely this issue has been dealt with, 
but just not closed.

If this not occurs, please close the bug by mailing to 
[EMAIL PROTECTED]

If noone objects in a couple of weeks, I will close this bug.

/Sune


pgprgxUKBSRDM.pgp
Description: PGP signature


Bug#266138: marked as done (X-Face support in KMail)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 21:58:04 +0200
with message-id <[EMAIL PROTECTED]>
and subject line X-Face support in KMail
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kmail
Version: 4:3.2.3-1

This is a wishlist-level "bug".

There is a patch available at http://camaya.net to enable X-Face support in 
KMail. If the Debian package were to include that patch, it would be great! I 
believe there is a feature-freeze on KDE right now, so it could take a long 
time to get this functionality into vanilla KDE. Here is a direct link:
http://camaya.net/download/kmail-xface-br28319-v3.1.diff
-- 
Matt
Systems Administrator
Local Access Communications
360.330.5535


pgppvkyz1dAYI.pgp
Description: signature
--- End Message ---
--- Begin Message ---
This is is also in the current debian version in unstable

/Sune


pgp1NPx0VQvZa.pgp
Description: PGP signature
--- End Message ---


Bug#333446: marked as done (debian/rules references non-existent package libmimelib1c102)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 21:43:26 +0200
with message-id <[EMAIL PROTECTED]>
and subject line debian/rules references non-existent package libmimelib1c102
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: kdepim
Version: 4:3.4.2-2
Severity: minor

While doing a backport of the current SID KDE packages I noticed that kdepim's 
debian/rules file references the non-existent package libmimelib1c102, which 
as far as I can see never actually existed, or existed a long time ago. The 
corresponding package in Sarge is called libmimelib1a, and the SID package is 
libmimelib1c2, so I suspect this is an oversight.

The package actually builds fine...

Patrick
-- 
Patrick Dreker

GPG KeyID  : 0xFCC2F7A7 (Patrick Dreker)
Fingerprint: 7A21 FC7F 707A C498 F370  1008 7044 66DA FCC2 F7A7
Key available from keyservers

--- End Message ---
--- Begin Message ---
Version: 4:3.4.3-1
stop

This is fixed now

/Sune


pgpOe3sjXPEl4.pgp
Description: PGP signature
--- End Message ---


Bug#244633: kdepim: Latest packages crash with a sig11

2006-04-18 Thread Sune Vuorela
I have no problems with using gpg or gpgme on the latest sid versions (I also 
didn't have any problems in the earlier sid versions)

If the error is not more persistent, please close the bug with a mail to 
[EMAIL PROTECTED] 

If noone objects in the next couple of weeks, I will mark it as closed.


pgp1de9nme0rL.pgp
Description: PGP signature


Bug#266631: marked as done (korganizer: Flie conflict with kdelibs-bin)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 22:14:36 +0200
with message-id <[EMAIL PROTECTED]>
and subject line korganizer: Flie conflict with kdelibs-bin
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: korganizer
Version: 4:3.2.3-1
Severity: important

(Reading database ... 148074 files and directories currently installed.)
Preparing to replace korganizer 4:3.2.2-2 (using
.../korganizer_4%3a3.2.3-1_i386.deb) ...
Unpacking replacement korganizer ...
dpkg: error processing
/var/cache/apt/archives/korganizer_4%3a3.2.3-1_i386.deb (--unpack):
 trying to overwrite `/etc/kde3/khotnewstuffrc', which is also in
 package kdelibs-bin
 dpkg-deb: subprocess paste killed by signal (Broken pipe)
 Errors were encountered while processing:
  /var/cache/apt/archives/korganizer_4%3a3.2.3-1_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)


-- System Information:
Debian Release: 3.1
  APT prefers unstable
  APT policy: (500, 'unstable')
Architecture: i386 (i686)
Kernel: Linux 2.6.7
Locale: LANG=C, LC_CTYPE=en_US

Versions of packages korganizer depends on:
ii  kdelibs4 4:3.3.0-1   KDE core libraries
ii  libart-2.0-2 2.3.16-6Library of functions for 2D graphi
ii  libc62.3.2.ds1-16GNU C Library: Shared libraries an
ii  libfam0c102  2.7.0-5 client library to control the FAM 
ii  libgcc1  1:3.4.1-5   GCC support library
ii  libice6  4.3.0.dfsg.1-6  Inter-Client Exchange library
ii  libkcal2 4:3.2.92+3.3.0rc1-1 KDE calendaring library
ii  libkdepim1   4:3.2.92+3.3.0rc1-1 KDE PIM library
ii  libkdgantt0  4:3.2.3-1   KD's gantt charting library
ii  libkgantt0   4:3.2.3-1   KDE gantt charting library
ii  libkpimexchange1 4:3.2.3-1   KDE PIM Exchange library
ii  libpng12-0   1.2.5.0-7   PNG library - runtime
ii  libqt3c102-mt3:3.3.3-3   Qt GUI Library (Threaded runtime v
ii  libsm6   4.3.0.dfsg.1-6  X Window System Session Management
ii  libstdc++5   1: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-7 X Rendering Extension client libra
ii  xlibs4.3.0.dfsg.1-6  X Window System client libraries m
ii  zlib1g   1:1.2.1.1-5 compression library - runtime

-- no debconf information

--- End Message ---
--- Begin Message ---
This is not to the best of my knowledge and experience not existing any more.

 - closing this bug

/Sune


pgpjqcSMqRYLo.pgp
Description: PGP signature
--- End Message ---


Processed: cloning 325255, reassign -1 to qt4-qtconfig,qt3-qtconfig

2006-04-18 Thread Debian Bug Tracking System
Processing commands for [EMAIL PROTECTED]:

> clone 325255 -1
Bug#325255: dpkg: forgets to remove alternative links in /usr/bin/?
Bug 325255 cloned as bug 363420.

> reassign -1 qt4-qtconfig,qt3-qtconfig
Bug#363420: dpkg: forgets to remove alternative links in /usr/bin/?
Bug reassigned from package `classpath-tools' to `qt4-qtconfig,qt3-qtconfig'.

>
End of message, stopping processing here.

Please contact me if you need assistance.

Debian bug tracking system administrator
(administrator, Debian Bugs database)


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



Bug#362136: marked as done (ksynaptics: ftbfs on i386 sid)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 23:43:49 +0200
with message-id <[EMAIL PROTECTED]>
and subject line ksynaptics: ftbfs on i386 sid
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: ksynaptics
Severity: serious
Justification: no longer builds from source

ksynaptics doesn't build on i386 sid. Build typescript attached.

Greetings
Marc

-- 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.16.2-zgsrv
Locale: LANG=C, LC_CTYPE=de_DE (charmap=ISO-8859-1)


typescript.gz
Description: Binary data
--- End Message ---
--- Begin Message ---
Version: 4:3.5.2-2+b1

kdelibs4-dev has been binNMUed - ksynaptics builds nicely now.

/Sune


pgpRLPjLAiQN9.pgp
Description: PGP signature
--- End Message ---


Bug#359693: marked as done (ark: nsplugin crash when opening a spreadsheet.)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Tue, 18 Apr 2006 17:48:31 -0400
with message-id <[EMAIL PROTECTED]>
and subject line Bug#359693: mozilla-openoffice.org
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: ark
Version: 4:3.5.1-2
Severity: normal

  I opened a zip file containing an .xls file. When I tryied to open the
  file a crash appeared (find attached a stack dump), but the file
  opened anyway with openoffice.


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

Versions of packages ark depends on:
ii  kdelibs4c2a   4:3.5.1-2  core libraries for all KDE applica
ii  libacl1   2.2.35-1   Access control list shared library
ii  libart-2.0-2  2.3.17-1   Library of functions for 2D graphi
ii  libattr1  2.4.31-1   Extended attribute shared library
ii  libaudio2 1.7-5  The Network Audio System (NAS). (s
ii  libc6 2.3.6-3GNU C Library: Shared libraries an
ii  libfam0   2.7.0-9Client library to control the FAM 
ii  libfontconfig12.3.2-1.1  generic font configuration library
ii  libfreetype6  2.1.10-1   FreeType 2 font engine, shared lib
ii  libgcc1   1:4.0.3-1  GCC support library
ii  libice6   6.9.0.dfsg.1-4 Inter-Client Exchange library
ii  libidn11  0.5.18-2   GNU libidn library, implementation
ii  libjpeg62 6b-12  The Independent JPEG Group's JPEG 
ii  libpng12-01.2.8rel-5 PNG library - runtime
ii  libqt3-mt 3:3.3.5-4  Qt GUI Library (Threaded runtime v
ii  libsm66.9.0.dfsg.1-4 X Window System Session Management
ii  libstdc++64.0.3-1The GNU Standard C++ Library v3
ii  libx11-6  6.9.0.dfsg.1-4 X Window System protocol client li
ii  libxcursor1   1.1.3-1X cursor management library
ii  libxext6  6.9.0.dfsg.1-4 X Window System miscellaneous exte
ii  libxft2   2.1.8.2-3  FreeType-based font drawing librar
ii  libxi66.9.0.dfsg.1-4 X Window System Input extension li
ii  libxinerama1  6.9.0.dfsg.1-4 X Window System multi-head display
ii  libxrandr26.9.0.dfsg.1-4 X Window System Resize, Rotate and
ii  libxrender1   1:0.9.0.2-1X Rendering Extension client libra
ii  libxt66.9.0.dfsg.1-4 X Toolkit Intrinsics
ii  zlib1g1:1.2.3-11 compression library - runtime

Versions of packages ark recommends:
ii  arj   3.10.22-2  archiver for .arj files
ii  bzip2 1.0.3-2high-quality block-sorting file co
ii  ncompress 4.2.4-15   Original Lempel-Ziv compress/uncom
ii  unzip 5.52-7 De-archiver for .zip files
ii  zip   2.31-3 Archiver for .zip files
ii  zoo   2.10-17manipulate zoo archives

-- no debconf information
(no debugging symbols found)
Using host libthread_db library "/lib/tls/i686/cmov/libthread_db.so.1".
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
[Thread debugging using libthread_db enabled]
[New Thread -1232210240 (LWP 1478)]
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(no debugging symbols found)
(n

Bug#363432: Update (build)dependencies on xlibs-static-dev

2006-04-18 Thread Michael Biebl
Package: qt-x11-free
Severity: minor

With the recent upload of modular X, the library layout has been
changed. xlibs-static-dev is now only a dummy package which smooths the
upgrade to the new modular layout. Please update the build dependency of
qt-x11-free and the dependency of libqt3-mt-dev and replace
xlibs-static-dev with the actually needed dev package(s).

Cheers,
Michael

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)


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



Bug#363432: Acknowledgement (Update (build)dependencies on xlibs-static-dev)

2006-04-18 Thread Michael Biebl
I forgot to add that the dependency of libqt3-mt-dev on x-dev should
probably also be changed to something more appropriate. x-dev is also a
dummy package now for transitional purposes.

Regards,
Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#363438: kdebase: FTBFS because of build dependency on xlibs-static-pic

2006-04-18 Thread Michael Biebl
Package: kdebase
Version: 4:3.5.2-1
Severity: grave

With the recent upload of modular X, xlibs-static-pic has been removed
from the Xorg 7 packages. This makes kdebase FTBFS. The fix is simple,
just remove xlibs-static-pic from the build dependencies. 
I also can't see the reason why kdebase build-depends on xutils and
gsfonts-x11. The package builds fine without them in a clean pbuilder chroot. 
Could you please elaborate on why xutils and gsfonts-x11 are needed for 
building kdebase.

Cheers,
Michael

-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (500, 'unstable'), (300, 'experimental')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.16.7
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8)

Versions of packages kdebase depends on:
ii  kappfinder4:3.5.2-1  non-KDE application finder for KDE
ii  kate  4:3.5.2-1  advanced text editor for KDE
ii  kcontrol  4:3.5.2-1  control center for KDE
ii  kdebase-bin   4:3.5.2-1  core binaries for the KDE base mod
ii  kdebase-data  4:3.5.2-1  shared data files for the KDE base
ii  kdebase-kio-plugins   4:3.5.2-1  core I/O slaves for KDE
ii  kdepasswd 4:3.5.2-1  password changer for KDE
ii  kdeprint  4:3.5.2-1  print system for KDE
ii  kdesktop  4:3.5.2-1  miscellaneous binaries and files f
ii  kfind 4:3.5.2-1  file-find utility for KDE
ii  khelpcenter   4:3.5.2-1  help center for KDE
ii  kicker4:3.5.2-1  desktop panel for KDE
ii  klipper   4:3.5.2-1  clipboard utility for KDE
ii  kmenuedit 4:3.5.2-1  menu editor for KDE
ii  konqueror 4:3.5.2-1  KDE's advanced file manager, web b
ii  konqueror-nsplugins   4:3.5.2-1  Netscape plugin support for Konque
ii  konsole   4:3.5.2-1  X terminal emulator for KDE
ii  kpager4:3.5.2-1  desktop pager for KDE
ii  kpersonalizer 4:3.5.2-1  installation personalizer for KDE
ii  ksmserver 4:3.5.2-1  session manager for KDE
ii  ksplash   4:3.5.2-1  the KDE splash screen
ii  ksysguard 4:3.5.2-1  system guard for KDE
ii  ktip  4:3.5.2-1  useful tips for KDE
ii  kwin  4:3.5.2-1  the KDE window manager
ii  libkonq4  4:3.5.2-1  core libraries for Konqueror

Versions of packages kdebase recommends:
ii  kdm   4:3.5.2-1  X display manager for KDE

-- no debconf information


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



kdegraphics 4:3.5.2-1 MIGRATED to testing

2006-04-18 Thread Debian testing watch
FYI: The status of the kdegraphics source package
in Debian's testing distribution has changed.

  Previous version: 4:3.5.1-2
  Current version:  4:3.5.2-1

-- 
This email is automatically generated; [EMAIL PROTECTED] is responsible.
See http://people.debian.org/~henning/trille/ for more information.


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



Bug#363438: Acknowledgement (kdebase: FTBFS because of build dependency on xlibs-static-pic)

2006-04-18 Thread Michael Biebl
Also don't forget to add libxkbfile-dev to the build dependencies.
Otherwise kxkb is not built.

Cheers,
Michael

-- 
Why is it that all of the instruments seeking intelligent life in the
universe are pointed away from Earth?



signature.asc
Description: OpenPGP digital signature


Bug#361830: kde-core: No way to specify complex locale settings before KDE starts

2006-04-18 Thread Wouter Van Hemel
Package: kde-core
Version: 5:45
Followup-For: Bug #361830


Hello,

I don't think there's a way to set individual locale variables before KDE 
starts.

On my system, KDE is started by GDM via the regular 'kdestart' script. It 
doesn't read any dot-files such as dot.profile, dot.bash_profile, 
dot.bashrc. Although I can specify one variable (LANG, I suppose) in GDM 
itself, I prefer to have a more complex locale configuration.

Gnome runs dot.gnomerc in the user's $HOME, where locales can be set. It would 
be handy if there was a way to get KDE to read either 
the user's dot-files or source a dedicated script like Gnome does.


Thanks in advance,

  Wouter



PS: FWIW, my settings are nl_BE with LC_MESSAGES set to en_GB and date set to 
en_DK.ISO-8859-1 to get ISO-8601 dates (-MM-DD). 
Currently, it's not possible to set LC_TIME to en_DK from within KDE, nor would 
there be a reason to if the dot-files are read in 
somewhere along the KDE starting process.

PPS: Come to think of it, perhaps this should be discussed with login manager 
maintainers...

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

Versions of packages kde-core depends on:
ii  arts  1.5.2-1sound system from the official KDE
ii  fontconfig2.3.2-5.1  generic font configuration library
ii  kdebase   4:3.5.2-1  base components from the official 
ii  kdelibs   4:3.5.2-2  core libraries from the official K

kde-core recommends no packages.

-- no debconf information


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



Bug#342253: kicker-applets: System Monitor doesn't properly handle transparency

2006-04-18 Thread Marc Haber
On Tue, Apr 18, 2006 at 12:51:57PM +0200, Pierre HABOUZIT wrote:
> # maybe fixed in 3.5.0, it's KDE bug 108879

Looks this way, I have not seen system monitor misbehaving in some time.

Greetings
Marc


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


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



Bug#362972: marked as done (nice to have: an external interface for stop, skip to next, etc)

2006-04-18 Thread Debian Bug Tracking System
Your message dated Wed, 19 Apr 2006 08:10:58 +0200
with message-id <[EMAIL PROTECTED]>
and subject line close
has caused the attached Bug report to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what I am
talking about this indicates a serious mail system misconfiguration
somewhere.  Please contact me immediately.)

Debian bug tracking system administrator
(administrator, Debian Bugs database)

--- Begin Message ---
Package: juk
Version: 4:3.5.2-2
Severity: wishlist

It would be nice to have a way to hook up those special "Play",
"Stop", "Reverse" and "Forward" keys on my keyboard to juk.

The package "hotkeys", for example, can be configured to run
a command like "xmms --stop".  It would be nice if Juk had
a similar command-line interface.



-- System Information:
Debian Release: testing/unstable
  APT prefers unstable
  APT policy: (990, 'unstable')
Architecture: i386 (i686)
Shell:  /bin/sh linked to /bin/bash
Kernel: Linux 2.6.15-1-k7
Locale: LANG=C, LC_CTYPE=C (charmap=ANSI_X3.4-1968)

Versions of packages juk depends on:
ii  kdelibs4c2a  4:3.5.2-2+b1core libraries for all KDE applica
ii  libakode22.0-4   akode plugin for aRts
ii  libarts1c2a  1.5.2-1 aRts sound system core components
ii  libc62.3.6-7 GNU C Library: Shared libraries
ii  libgcc1  1:4.1.0-1   GCC support library
ii  libglib2.0-0 2.10.2-1The GLib library of C routines
ii  libgstreamer0.10-0   0.10.4-1Core GStreamer libraries and eleme
ii  libqt3-mt3:3.3.6-1   Qt GUI Library (Threaded runtime v
ii  libstdc++6   4.1.0-1 The GNU Standard C++ Library v3
ii  libtag1c2a   1.4-3   TagLib Audio Meta-Data Library
ii  libtunepimp-bin  0.4.2-3 libtunepimp simple tagging applica
ii  libtunepimp3 0.4.2-3 MusicBrainz tagging library and si
ii  libxml2  2.6.23.dfsg.2-3 GNOME XML library
ii  zlib1g   1:1.2.3-11  compression library - runtime

juk recommends no packages.

-- no debconf information

--- End Message ---
--- Begin Message ---
I think it is time to close this bug now.

Let us take further questions to the debian kde user maillist: 
debian-kde@lists.debian.org

/Sune


pgpCeWSWiPdjx.pgp
Description: PGP signature
--- End Message ---