Bug#586175: qt: crash of debug application

2010-06-16 Thread Ulrich Van Den Hekke
Package: qt4-dev-tools
Version: 4:4.6.3-1
Severity: important
File: qt

This bug is not present on previous version of Qt.

On a 64 bit architecture (i don't have the problem on 32bit). When i compile 
this
simple program. At the execition the program halt with "SIGSEGV" if i compile 
the
program with -Os or with CONFIG += debug, or both

.Pro file
SOURCES = testutils.cpp
CONFIG += qtestlib
CONFIG += debug
#QMAKE_CXXFLAGS_RELEASE = "-Os"

.Cpp file

#include 


class TestUtils : public QObject
{
Q_OBJECT
private slots:
void initTestCase();

void test();

void cleanupTestCase();
private:

};

void TestUtils::initTestCase()
{
}

void TestUtils::test()
{

}   


   



   
void TestUtils::cleanupTestCase()   


   
{   


   



   
}   


   



   
QTEST_MAIN(TestUtils)   


   



   
#include "testutils.moc" 


I have another problem to (Segmentation fault on 64bit) with another application
but i don't find the way to reproduce the other problem.

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

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

Versions of packages qt4-dev-tools depends on:
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libgcc1   1:4.4.4-1  GCC support library
ii  libpng12-01.2.43-1   PNG library - runtime
ii  libqt4-dbus   4:4.6.3-1  Qt 4 D-Bus module
ii  libqt4-help   4:4.6.3-1  Qt 4 help module
ii  libqt4-network4:4.6.3-1  Qt 4 network module
ii  libqt4-sql4:4.6.3-1  Qt 4 SQL module
ii  libqt4-sql-sqlite 4:4.6.3-1  Qt 4 SQLite 3 database driver
ii  libqt4-webkit 4:4.6.3-1  Qt 4 WebKit module
ii  libqt4-xml4:4.6.3-1  Qt 4 XML module
ii  libqt4-xmlpatterns4:4.6.3-1  Qt 4 XML patterns module
ii  libqtcore44:4.6.3-1  Qt 4 core module
ii  libqtgui4 4:4.6.3-1  Qt 4 GUI module
ii  libstdc++64.4.4-1The GNU Standard C++ Library v3
ii  libx

Bug#586166: libqt4-dev: moc autoinclude fix ignore dot in directories

2010-06-16 Thread David Fries

Package: libqt4-dev
Version: 4:4.6.2-4
Severity: normal
Tags: patch

*** Please type your report below this line ***

A period in the path of a file given to the moc generator should not
be used to determine if it is a header file or a source file,
currently it can. This causes problem with build generators like cmake
that use absolute paths and projects that use extension-less header
files, because if there is a period anyplace in the path it will fail.
This is a problem because directories outside of the source repository
can influence the build, even though it might be working on another
system or mysteriously fail after the source was moved.

See the bug report for more details.

http://bugreports.qt.nokia.com/browse/QTBUG-11369

It has been merged upstream, and here is the commit entry in the 4.6
qt git tree.
http://qt.gitorious.org/qt/qt/commit/78e74249014b152b93dae07bf194b16769016ad0

and a copy of the patch.

--- src/tools/moc/main.cpp.orig 2010-05-13 19:29:29.645663823 -0500
+++ src/tools/moc/main.cpp  2010-05-13 19:30:37.950162304 -0500
@@ -359,11 +359,9 @@ int runMoc(int _argc, char **_argv)
 
 
 if (autoInclude) {
+int spos = filename.lastIndexOf(QDir::separator().toLatin1());
 int ppos = filename.lastIndexOf('.');
-moc.noInclude = (ppos >= 0
- && tolower(filename[ppos + 1]) != 'h'
- && tolower(filename[ppos + 1]) != 
QDir::separator().toLatin1()
-);
+moc.noInclude = ppos > spos && ppos >= 0 && tolower(filename[ppos + 
1]) != 'h';
 }
 if (moc.includeFiles.isEmpty()) {
 if (moc.includePath.isEmpty()) {

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

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

Versions of packages libqt4-dev depends on:
ii  libc6   2.10.2-9 Embedded GNU C Library: Shared lib
ii  libgcc1 1:4.4.4-1GCC support library
ii  libqt4-assistant4:4.6.2-4Qt 4 assistant module
ii  libqt4-dbus 4:4.6.2-4Qt 4 D-Bus module
ii  libqt4-designer 4:4.6.2-4Qt 4 designer module
ii  libqt4-help 4:4.6.2-4Qt 4 help module
ii  libqt4-multimedia   4:4.6.2-4Qt 4 Multimedia module
ii  libqt4-network  4:4.6.2-4Qt 4 network module
ii  libqt4-qt3support   4:4.6.2-4Qt 3 compatibility library for Qt 
ii  libqt4-script   4:4.6.2-4Qt 4 script module
ii  libqt4-scripttools  4:4.6.2-4Qt 4 script tools module
ii  libqt4-sql  4:4.6.2-4Qt 4 SQL module
ii  libqt4-svg  4:4.6.2-4Qt 4 SVG module
ii  libqt4-test 4:4.6.2-4Qt 4 test module
ii  libqt4-webkit   4:4.6.2-4Qt 4 WebKit module
ii  libqt4-xml  4:4.6.2-4Qt 4 XML module
ii  libqt4-xmlpatterns  4:4.6.2-4Qt 4 XML patterns module
ii  libqtcore4  4:4.6.2-4Qt 4 core module
ii  libqtgui4   4:4.6.2-4Qt 4 GUI module
ii  libstdc++6  4.4.4-1  The GNU Standard C++ Library v3
ii  qt4-qmake   4:4.6.2-4Qt 4 qmake Makefile generator tool
ii  zlib1g  1:1.2.3.4.dfsg-3 compression library - runtime

Versions of packages libqt4-dev recommends:
ii  libqt4-opengl-dev 4:4.6.2-4  Qt 4 OpenGL library development fi

Versions of packages libqt4-dev suggests:
pn  firebird2.1-dev(no description available)
ii  libmysqlclient15-dev [ 5.0.51a-24+lenny1 MySQL database development files
ii  libpq-dev  8.4.4-1   header files for libpq5 (PostgreSQ
pn  libsqlite0-dev (no description available)
ii  libsqlite3-dev 3.6.23.1-2SQLite 3 development files
ii  qt4-dev-tools  4:4.6.2-4 Qt 4 development tools
ii  qt4-doc4:4.6.2-4 Qt 4 API documentation
pn  unixodbc-dev   (no description available)

-- 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/20100616234420.ga23...@spacedout.fries.net



Processed: Re: Bug#585646: konqueror: does not display html

2010-06-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 585646 normal
Bug #585646 [konqueror] konqueror: does not display html
Severity set to 'normal' from 'grave'

> tags 585646 unreproducible
Bug #585646 [konqueror] konqueror: does not display html
Ignoring request to alter tags of bug #585646 to the same tags previously set
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
585646: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=585646
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.127672243619345.transcr...@bugs.debian.org



Bug#585646: konqueror: does not display html

2010-06-16 Thread Modestas Vainius
severity 585646 normal
tags 585646 unreproducible
thanks

Hello,

On trečiadienis 16 Birželis 2010 21:32:17 Michal Suchanek wrote:
> > 
> > Your system is misconfigured and likely half-upgraded. You have "5.0.4"
> > as debian version but you seem to run some sort of
> > stable/testing/unstable mix. This is not supported. Please choose one
> > flavour and dist-upgrade fully to it. This is one of the reasons why
> > severity of the bug was downgraded.
> 
> AFAICT the konqueror dependencies are installed from testing (or
> unstable in the case of kde libs which I tried to upgrade to 4.4 for
> the test).

At very least your base system is outdated. Failure is weird and points 
towards problem with base installation. You are free to use whatever you 
believe is OK, but we cannot support every weird mix out there. Sorry.


-- 
Modestas Vainius 


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


Bug#585646: konqueror: does not display html

2010-06-16 Thread Michal Suchanek
On 14 June 2010 20:22, Modestas Vainius  wrote:
> Hello,
>
> On šeštadienis 12 Birželis 2010 20:44:26 Michal Suchanek wrote:
>
>> For me konquerror does not display HTML pages. It says this in
>> the window:
>
>> The requested operation could not be completed
>> Unexpected Program Termination
>> Details of the Request:
>> URL: http://www.debian.org
>> Protocol: http
>> Date and Time: Saturday 12 June 2010 19:41
>
> This probably means that /usr/lib/kde4/kio_http.so does not load.
>
>> and logs this on the console:
>>
>> $ konqueror http://www.debian.org
>> konqueror(30235)/kdecore (KLibrary) findLibraryInternal: plugins should
>> not have a 'lib' prefix: "libkhtmlpart.so"
>> konqueror(30235)/kdecore (KLibrary) findLibraryInternal: plugins should
>> not have a 'lib' prefix: "libkhtmlpart.so"
>> konqueror(30235)/kdecore (KLibrary) kde4Factory: The library
>> "/usr/lib/kde4/libkhtmlpart.so" does not offer a qt_plugin_instance
>> function.
>>
>> I upgraded from 4.3 to 4.4 but the problem persists.
>
> These warnings are not critical at all and they should not be the reason of
> the failures.
>
>>
>> -- System Information:
>> Debian Release: 5.0.4
>>   APT prefers stable
>>   APT policy: (990, 'stable'), (500, 'testing'), (300, 'unstable'), (295,
>> 'experimental'), (290, 'stable-i386'), (280, 'testing-i386'), (270,
>> 'unstable-i386'), (150, 'experimental-i386'), (70, 'oldstable'), (65,
>> 'oldstable-i386') Architecture: amd64 (x86_64)
>
> Your system is misconfigured and likely half-upgraded. You have "5.0.4" as
> debian version but you seem to run some sort of stable/testing/unstable mix.
> This is not supported. Please choose one flavour and dist-upgrade fully to it.
> This is one of the reasons why severity of the bug was downgraded.

AFAICT the konqueror dependencies are installed from testing (or
unstable in the case of kde libs which I tried to upgrade to 4.4 for
the test).

I don't see this as a misconfiguration.

Thanks

Michal



--
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/aanlktilofmbb90p-wt-kzvwvou3txiygxbchtjbvu...@mail.gmail.com



Bug#585841: kmix seems to not see my soundcard anymore

2010-06-16 Thread 7C492C5B491362F1

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Interim solution:

# aptitude purge pulseaudio libpulsecore5

to remove pulseaudio.  It seems to be the factor
that prevents your alsa devices from showing up
on KDE.  Once pulseaudio is purged,

$ kdmctl suicide

and log back in.

-BEGIN PGP SIGNATURE-
Version: GnuPG (Private)

iJ4EAREKAAYFAkwZFdMACgkQdd6wzlZ3pIo2JAH/UWE676P0xUwHC1+gIMHDRYXX
bdYBNhhbViHX30cTtHamq+3Clv40Uh0kkll9Ji66eOJIHQS9Gc/lBvDVE86yiQIA
lWenoUHxb4qH5x1ENsJAlAKy9+0ij/nbZI+6VnJnMWs95n+ovO4yxBrC+6wCVPjr
v1IGbRyaJbVtSLUFRKq/Xw==
=Y0Zd
-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
Archive: http://lists.debian.org/4c1915ee.1010...@hackinfotech.org



Bug#583951: workaround

2010-06-16 Thread Iker Salmón San Millán
like the same problem with multimedia players relatinated with libva1, a
simple workaround is linking the library:

ln -s /usr/lib/libva.so.1.0.1 /usr/lib/libva-0.31.0.6.so.1


http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586016


Processed: Re: Bug#586112: plasma-desktop: Fails to automount USB cardreader

2010-06-16 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forcemerge 586080 586112
Bug#586080: plasma-desktop: CD/DVD fails to automount
Bug#586112: plasma-desktop: Fails to automount USB cardreader
Forcibly Merged 586080 586112.

> tags 586080 - squeeze
Bug #586080 [plasma-desktop] plasma-desktop: CD/DVD fails to automount
Bug #586112 [plasma-desktop] plasma-desktop: Fails to automount USB cardreader
Removed tag(s) squeeze.
Removed tag(s) squeeze.
> thanks
Stopping processing here.

Please contact me if you need assistance.
-- 
586080: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586080
586112: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=586112
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems


-- 
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/handler.s.c.12767000385545.transcr...@bugs.debian.org



Bug#586080: Bug#586112: plasma-desktop: Fails to automount USB cardreader

2010-06-16 Thread Modestas Vainius
forcemerge 586080 586112
tags 586080 - squeeze
thanks

Hello,

On trečiadienis 16 Birželis 2010 17:14:09 MH wrote:
> After update to most recent KDE packages (testing), USB cardreader fails to
> automount. Can be manually mounted, sometimes requires system reboot.

What do you have in mind with automount? How did you setup it in KDE? And this 
breakage is new compared to which version? 4.4.3?

P.S. Let's keep this in one bug (#586080). 

-- 
Modestas Vainius 


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


Bug#582844: unusable KNetAttach launcher

2010-06-16 Thread John Lindgren

On 06/16/2010 08:38 AM, Sune Vuorela wrote:
> ...

kdebase-runtime contains stuff that any kde app can expect to have around. So
no.

I have added OnlyShowIn=KDE; to the desktop file, so that it is only shown in
KDE. I will mark this bug as fixed with that upload


That works.  I still think KNetAttach should not be needed as a 
dependency of a code profiling program such as KCachegrind, but hey, 
that's why I don't use KDE. :)


-- John



--
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/4c18dd6f.9030...@tds.net



Bug#586112: plasma-desktop: Fails to automount USB cardreader

2010-06-16 Thread MH
Package: plasma-desktop
Version: 4:4.4.4-1
Severity: normal
Tags: squeeze

After update to most recent KDE packages (testing), USB cardreader fails to 
automount. Can be manually mounted, sometimes requires system reboot.

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

Kernel: Linux 2.6.32-15-phenom (SMP w/4 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 plasma-desktop depends on:
ii  kdebase-runtime   4:4.4.4-1  runtime components from the offici
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libkdecore5   4:4.4.4-1  the KDE Platform Core Library
ii  libkdeui5 4:4.4.4-1  the KDE Platform User Interface Li
ii  libkephal44:4.4.4-1  API for easier handling of multihe
ii  libkfile4 4:4.4.4-1  the File Selection Dialog Library 
ii  libkio5   4:4.4.4-1  the Network-enabled File Managemen
ii  libktexteditor4   4:4.4.4-1  the KTextEditor interfaces for the
ii  libkutils44:4.4.4-1  various utility classes for the KD
ii  libkworkspace44:4.4.4-1  library for the kdebase workspace
ii  libplasma34:4.4.4-1  the Plasma Library for the KDE Pla
ii  libplasmagenericshell44:4.4.4-1  shared elements for all the plasma
ii  libqt4-dbus   4:4.6.3-1  Qt 4 D-Bus module
ii  libqt4-script 4:4.6.3-1  Qt 4 script module
ii  libqt4-xml4:4.6.3-1  Qt 4 XML module
ii  libqtcore44:4.6.3-1  Qt 4 core module
ii  libqtgui4 4:4.6.3-1  Qt 4 GUI module
ii  libsolid4 4:4.4.4-1  Solid Library for KDE Platform
ii  libsolidcontrol4  4:4.4.4-1  library for Solid based network ma
ii  libstdc++64.4.4-1The GNU Standard C++ Library v3
ii  libtaskmanager4a  4:4.4.4-1  library which provides task manage
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxext6  2:1.1.1-3  X11 miscellaneous extension librar
ii  plasma-widgets-workspace  4:4.4.4-1  KDE 4 base workspace Plasma widget

Versions of packages plasma-desktop recommends:
ii  kdebase-workspace 4:4.4.4-1  base workspace components from the

plasma-desktop 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/20100616141409.3695.852.report...@localhost.localdomain



Bug#582844: split

2010-06-16 Thread Sune Vuorela
On Tuesday 15 June 2010 14:52:05 Carlo Stemberger wrote:
> retitle 582844 kdebase-runtime: please split knetattach in a new package
> severity 582844 wishlist
> thanks
> 
> No, the executable file is present: /usr/lib/kde4/libexec/knetattach
> 
> Anyway:
> 1) the standard PATH environment variable doesn't include this path, so
> it is not possible to start the program by clicking the icon

It is possible. In KDE.

> 2) I use some KDE packages that have kdebase-runtime as dependency, but
> I'd like not to install knetattach (I don't need it)

kdebase-runtime contains stuff that any kde app can expect to have around. So 
no.

I have added OnlyShowIn=KDE; to the desktop file, so that it is only shown in 
KDE. I will mark this bug as fixed with that upload

> So, please split knetattach into a new binary package, if it's possible.
> 
> Thank you!
> 
> Carlo

-- 
Man, how could I boot the pin?

The point is that from Mac 2000 and from the file menu within Windows you 
can't boot from the prompt for cancelling a URL.



-- 
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/201006161438.30617.s...@vuorela.dk



Les Catégories et sous catégories de kaddressbook

2010-06-16 Thread Philippe Laneres
Bonjour,

je suis sous

Linux vulcain 2.6.32-trunk-amd64 #1 SMP Sun Jan 10 22:40:40 UTC 2010 x86_64 
GNU/Linux

Debian test

la version de kaddressbook qui fonctionne : 4:4.3.4-1 OK

La version de kaddressbook : 4:4.4.4-1 KO

C'est une vraie catastrophe elle ne contient plus les filtres avec les 
catégories et sous catégories

Cordialement
Philippe Laneres



--
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/201006161414.59966.philippe.lane...@free.fr



Bug#585097: marked as done (kde-standard: change update-notifier-kde from depends to recommends)

2010-06-16 Thread Debian Bug Tracking System
Your message dated Wed, 16 Jun 2010 09:43:06 +
with message-id 
and subject line Bug#585097: fixed in meta-kde 5:63
has caused the Debian Bug report #585097,
regarding kde-standard: change update-notifier-kde from depends to recommends
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 this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact ow...@bugs.debian.org
immediately.)


-- 
585097: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=585097
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: kde-standard
Version: 5:62
Severity: normal


kde-standard recommends freespacenotifier and network-manager-kde.
update-notifier-kde should also have the status of "recommends", not "depends".
Indeed, these are all quite *invasive* background daemons that should not
be imposed on kde-standard users. The current situation forced me
to uninstall the kde-standard meta-package and to manually select
many of its components.

Note that these daemons may break other standard Debian system functionality
(network-manager breaks standard wpa-suppleant usage, update-notifier breaks
other packages making use of motd, for example).

Also, but this is a matter of (good) taste, such daemons "smell" of
Microsoft Windows practices, not standard unix-like administration.
Let users choose this if they wish, perhaps through another metapackage.

Thank you.

Alan

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

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

Versions of packages kde-standard depends on:
ii  akregator 4:4.4.4-1  RSS/Atom feed aggregator for KDE
ii  ark   4:4.4.4-1  archive utility for KDE 4
ii  dragonplayer  4:4.4.4-1  simple KDE video player
ii  gwenview  4:4.4.4-1  image viewer for KDE 4
ii  hal   0.5.14-2   Hardware Abstraction Layer
ii  juk   4:4.4.4-1  music jukebox for KDE
ii  kaddressbook  4:4.4.4-1  KDE address book
ii  kate  4:4.4.4-1  KDE 4 Advanced Text Editor
ii  kcalc 4:4.4.4-1  calculator for KDE 4
ii  kde-plasma-desktop5:62   the KDE Plasma Desktop and minimal
ii  kde-plasma-netbook5:62   the KDE Plasma Netbook and minimal
ii  kdeplasma-addons  4:4.4.4-1  addons for KDE 4 Plasma - metapack
ii  khelpcenter4  4:4.4.4-1  Help Center for KDE 4
ii  kmail 4:4.4.4-1  KDE Email client
ii  kmix  4:4.4.4-1  volume control and mixer for KDE
ii  knotes4:4.4.4-1  KDE sticky notes
ii  kopete4:4.4.4-1  instant messenger for KDE 4
ii  korganizer4:4.4.4-1  KDE personal organizer
ii  kscreensaver  4:4.4.4-1  Additional screensavers released w
ii  ksnapshot 4:4.4.4-1  screen capture tool for KDE 4
ii  kwalletmanager4:4.4.4-1  secure password wallet manager for
ii  okular4:4.4.4-1  document viewer for KDE 4
ii  plasma-desktopthemes-artwork  4:4.4.4-1  desktop themes for KDE
ii  polkit-kde-1  0.95.1-2   KDE dialogs for PolicyKit
ii  sweeper   4:4.4.4-1  history and temporary file cleaner
pn  update-notifier-kde(no description available)

Versions of packages kde-standard recommends:
pn  freespacenotifier  (no description available)
ii  konq-plugins  4:4.4.0-2  plugins for Konqueror, the KDE fil
pn  network-manager-kde(no description available)

Versions of packages kde-standard suggests:
pn  kde-l10n   (no description available)
ii  kde-plasma-desktop5:62   the KDE Plasma Desktop and minimal
ii  kde-plasma-netbook5:62   the KDE Plasma Netbook and minimal


--- End Message ---
--- Begin Message ---
Source: meta-kde
Source-Version: 5:63

We believe that the bug you reported is fixed in the latest version of
meta-kde, which is due to be installed in the Debian FTP archive:

kde-full_63_all.deb
  to main/m/meta-kde/kde-full_63_all.deb
kde-plasma-desktop_63_all.deb
  to main/m/meta-kde/kde-plasma-desktop_63_all.deb
kde-plasma-netbook_63_all.deb
  to main/m/meta-kde/kde-plasma-netbook_63_all.deb
kde-sc-dev-latest_4.4.4+5.63_all.deb
  to main/m/meta-kde/kde-sc-dev-latest_4.4.4+5.63_all.deb
kde-standard_63_all.deb
  to main/m/meta-kde/kde

meta-kde_63_amd64.changes ACCEPTED

2010-06-16 Thread Archive Administrator



Accepted:
kde-full_63_all.deb
  to main/m/meta-kde/kde-full_63_all.deb
kde-plasma-desktop_63_all.deb
  to main/m/meta-kde/kde-plasma-desktop_63_all.deb
kde-plasma-netbook_63_all.deb
  to main/m/meta-kde/kde-plasma-netbook_63_all.deb
kde-sc-dev-latest_4.4.4+5.63_all.deb
  to main/m/meta-kde/kde-sc-dev-latest_4.4.4+5.63_all.deb
kde-standard_63_all.deb
  to main/m/meta-kde/kde-standard_63_all.deb
kdebase_63_all.deb
  to main/m/meta-kde/kdebase_63_all.deb
meta-kde_63.dsc
  to main/m/meta-kde/meta-kde_63.dsc
meta-kde_63.tar.gz
  to main/m/meta-kde/meta-kde_63.tar.gz


Override entries for your package:
kde-full_63_all.deb - optional kde
kde-plasma-desktop_63_all.deb - optional kde
kde-plasma-netbook_63_all.deb - optional kde
kde-sc-dev-latest_4.4.4+5.63_all.deb - optional kde
kde-standard_63_all.deb - optional kde
kdebase_63_all.deb - optional kde
meta-kde_63.dsc - source x11

Announcing to debian-devel-chan...@lists.debian.org
Closing bugs: 585097 


Thank you for your contribution to Debian.


-- 
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/e1oop9g-0008ox...@ries.debian.org



Bug#586080: plasma-desktop: CD/DVD fails to automount

2010-06-16 Thread MH
Package: plasma-desktop
Version: 4:4.4.4-1
Severity: normal
Tags: squeeze

After updating to latest KDE4 in testing CD/DVD no longer automounts. Can 
manually mount, read, write eject.

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

Kernel: Linux 2.6.32-15-phenom (SMP w/4 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 plasma-desktop depends on:
ii  kdebase-runtime   4:4.4.4-1  runtime components from the offici
ii  libc6 2.11.1-3   Embedded GNU C Library: Shared lib
ii  libkdecore5   4:4.4.4-1  the KDE Platform Core Library
ii  libkdeui5 4:4.4.4-1  the KDE Platform User Interface Li
ii  libkephal44:4.4.4-1  API for easier handling of multihe
ii  libkfile4 4:4.4.4-1  the File Selection Dialog Library 
ii  libkio5   4:4.4.4-1  the Network-enabled File Managemen
ii  libktexteditor4   4:4.4.4-1  the KTextEditor interfaces for the
ii  libkutils44:4.4.4-1  various utility classes for the KD
ii  libkworkspace44:4.4.4-1  library for the kdebase workspace
ii  libplasma34:4.4.4-1  the Plasma Library for the KDE Pla
ii  libplasmagenericshell44:4.4.4-1  shared elements for all the plasma
ii  libqt4-dbus   4:4.6.3-1  Qt 4 D-Bus module
ii  libqt4-script 4:4.6.3-1  Qt 4 script module
ii  libqt4-xml4:4.6.3-1  Qt 4 XML module
ii  libqtcore44:4.6.3-1  Qt 4 core module
ii  libqtgui4 4:4.6.3-1  Qt 4 GUI module
ii  libsolid4 4:4.4.4-1  Solid Library for KDE Platform
ii  libsolidcontrol4  4:4.4.4-1  library for Solid based network ma
ii  libstdc++64.4.4-1The GNU Standard C++ Library v3
ii  libtaskmanager4a  4:4.4.4-1  library which provides task manage
ii  libx11-6  2:1.3.3-3  X11 client-side library
ii  libxext6  2:1.1.1-3  X11 miscellaneous extension librar
ii  plasma-widgets-workspace  4:4.4.4-1  KDE 4 base workspace Plasma widget

Versions of packages plasma-desktop recommends:
ii  kdebase-workspace 4:4.4.4-1  base workspace components from the

plasma-desktop 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/20100616091657.2786.42542.report...@localhost.localdomain



Processing of meta-kde_63_amd64.changes

2010-06-16 Thread Archive Administrator
meta-kde_63_amd64.changes uploaded successfully to localhost
along with the files:
  meta-kde_63.dsc
  meta-kde_63.tar.gz
  kde-sc-dev-latest_4.4.4+5.63_all.deb
  kdebase_63_all.deb
  kde-plasma-desktop_63_all.deb
  kde-plasma-netbook_63_all.deb
  kde-standard_63_all.deb
  kde-full_63_all.deb

Greetings,

Your Debian queue daemon (running on host ries.debian.org)


-- 
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/e1oookb-0005xs...@ries.debian.org