Processed: reassign 258668 to kdelibs4, merging 258668 253127
Processing commands for [EMAIL PROTECTED]: > # Automatically generated email from bts, devscripts version 2.7.95.1 > reassign 258668 kdelibs4 Bug#258668: Icon directory /usr/share/icons/hicolor/ group 48x48/stock/text not valid Bug reassigned from package `hicolor-icon-theme' to `kdelibs4'. > merge 258668 253127 Bug#253127: kdebase: kdecore (KIconLoader): WARNING: Icon directory group is not valid Bug#258668: Icon directory /usr/share/icons/hicolor/ group 48x48/stock/text not valid Bug#241283: hicolor-icon-theme: does not include all dirs referenced Bug#254863: index.theme specifies "Context=Stock", which is not in the spec, and causes kde to give warnings about incorrect dirs... Merged 241283 253127 254863 258668. > End of message, stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database)
Bug#258357: Acknowledgement (ICQ fails to login due to protocol bug. doesn't affect gaim or licq. fixed in kopete CVS)
Okay, Looks like the severity of this bug can be downgraded. ICQ's started working again, so it can probably hit 'wishlist' status, (ie, it'd be nice if kopete wasn't so strict about the protocol, which is the cause of the disconnect). Thanks Andrew 'ashridah' Pilley On Fri, 2004-07-09 at 11:48, Debian Bug Tracking System wrote: > Thank you for the problem report you have sent regarding Debian. > This is an automatically generated reply, to let you know your message has > been received. It is being forwarded to the package maintainers and other > interested parties for their attention; they will reply in due course. > > Your message has been sent to the package maintainer(s): > Debian Qt/KDE Maintainers > > If you wish to submit further information on your problem, please send > it to [EMAIL PROTECTED] (and *not* to > [EMAIL PROTECTED]). > > Please do not reply to the address at the top of this message, > unless you wish to report a problem with the Bug-tracking system. > > Debian bug tracking system administrator > (administrator, Debian Bugs database) -- Is there any sanity or light left in this shrivelled husk of a world? There was, but we had to trade it in for the internet.
Bug#244608: Simple workaround found on bugs.kde.org
Here is a workaround for the compiler-bug http://bugs.kde.org/show_bug.cgi?id=80497 --- Additional Comment #28 From Stanislav Karchebny 2004-05-16 06:35 ---
Processed: Crashes on *every* first login after bootup
Processing commands for [EMAIL PROTECTED]: > package kicker Ignoring bugs not assigned to: kicker > retitle 257439 Crashes on first login after bootup Bug#257439: kicker: Crashes on login, but not every time Changed Bug title. > thanks Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database)
Bug#257439: Crashes on *every* first login after bootup
package kicker retitle 257439 Crashes on first login after bootup thanks It really crashes on *every* first login after bootup.
kde 3.2.3
Hi, I'm running Debian unstable. Since a few weeks, I wanted to make an update, but there are still some unsolved package dependencies. Can you tell me, what to do? There are some kde 3.2.3 packages and I've lots 3.2.2 Packages which are are not in a newer version available. Should I wait for the 3.2.3 Version? If so, how long will it take until these packages are available? What can you propose me? Thank you Matthias -- Matthias Warmbold. Email: [EMAIL PROTECTED] GPG-Key fingerprint = 9F59 BD52 B9A9 BC38 3E97 7D54 E3EA 2234 0BA3 39D5
Bug#247821: This no longer happens after the last dist-upgrade
Whatever caused this has disappeared. Wierd...
Bug#258938: If fam has hung KDE fails to startup
Package: kde Version: 4:3.1.2 Severity: important If FAM has hung (which happens after the most recent dist-upgrade) KDE fails to start. There are no error messages and no diagnostics. It hangs on the "initializing system devices phase". Restarting fam fixes it. -- System Information: Debian Release: testing/unstable APT prefers testing APT policy: (500, 'testing') Architecture: i386 (i686) Kernel: Linux 2.4.20p4full Locale: LANG=C, LC_CTYPE=C Versions of packages kde depends on: ii kde-amusements4:3.1.2The K Desktop Environment (Games a ii kde-core 4:3.1.2The K Desktop Environment (Core) ii kdeaddons 4:3.2.2-1 add-on plugins and applets provide ii kdeadmin 4:3.2.2-1 KDE Administration tools metapacka ii kdeartwork4:3.2.2-1 themes, styles and more from the o ii kdegraphics 4:3.2.2-1 KDE Graphics metapackage ii kdemultimedia 4:3.2.2-1 KDE Multimedia metapackage ii kdenetwork4:3.2.2-1 KDE Network metapackage ii kdepim4:3.2.2-2 KDE Personal Information Managemen ii kdeutils 4:3.2.2-2 KDE Utilities metapackage ii quanta1:3.2.2-1 web development environment for KD -- no debconf information
kdenonbeta/kdedebian/kapture/libkapture
CVS commit by mornfall: Make it possible to (un)install packages using a context menu in ListTreeWidget. TODO: Generalize, make the menu customizable (by client code). This may or may not be enough for what clee wants. At least very first version. M +29 -0 listtreewidget.cpp 1.28 M +5 -0 listtreewidget.h 1.18 --- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.27:1.28 @@ -1,4 +1,6 @@ // -*- Mode: C++; c-basic-offset: 4; -*- // includes {{{ +#include + #include #include @@ -154,4 +156,7 @@ ListTreeWidget::ListTreeWidget (QWidget connect (this, SIGNAL (collapsed (QListViewItem *)), SLOT (nodeClosed (QListViewItem *))); +connect (this, SIGNAL (contextMenuRequested (QListViewItem *, const QPoint +&, int)), this, SLOT (contextMenu (QListViewItem *, const +QPoint &, int))); m_tip = new ListTreeWidgetTooltip (viewport (), this); } @@ -260,4 +265,28 @@ void ListTreeWidget::forwardSelectionCha } /* }}} */ +void ListTreeWidget::contextMenu (QListViewItem *it, const QPoint &p, int c) +{ +std::cerr << "ListTreeWidget::contextMenu (p);" << std::endl; +m_itemWithMenu = dynamic_cast (it) -> m_treeNode; +QPopupMenu *m = new QPopupMenu (this); +m -> insertItem ("Install", this, SLOT (contextInstall ())); +m -> insertItem ("Uninstall", this, SLOT (contextUninstall ())); +m -> exec (p); +delete m; +} + +void ListTreeWidget::contextInstall (void) +{ +PkgCElemPtr p = pkgCElem (**m_itemWithMenu); +if (p) +PkgManager::install (*p); +} + +void ListTreeWidget::contextUninstall (void) +{ +PkgCElemPtr p = pkgCElem (**m_itemWithMenu); +if (p) +PkgManager::uninstall (*p); +} void ListTreeWidgetTooltip::maybeTip (const QPoint &p) --- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.h #1.17:1.18 @@ -29,4 +29,5 @@ namespace kapture { class KListViewItemCustom; class ListTreeWidgetTooltip; +class ListTreeWidgetItem; // class ListTreeWidget{{{ @@ -48,7 +49,11 @@ namespace kapture { void nodeOpened (QListViewItem *); void nodeClosed (QListViewItem *); +void contextMenu (QListViewItem *, const QPoint &, int); +void contextInstall (); +void contextUninstall (); protected: std::set m_open; ListTreeWidgetTooltip *m_tip; +ListTreeWidgetItem *m_itemWithMenu; }; /* }}} */
kdenonbeta/kdedebian/kapture/libkapture
CVS commit by mornfall: Add keep to the ListTreeWidget context menu. Fix progresswidget minimal height. M +8 -0 listtreewidget.cpp 1.29 M +1 -0 listtreewidget.h 1.19 M +2 -2 progresswidgetui.ui 1.4 --- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.28:1.29 @@ -272,4 +272,5 @@ void ListTreeWidget::contextMenu (QListV m -> insertItem ("Install", this, SLOT (contextInstall ())); m -> insertItem ("Uninstall", this, SLOT (contextUninstall ())); +m -> insertItem ("Keep", this, SLOT (contextKeep ())); m -> exec (p); delete m; @@ -289,4 +290,11 @@ void ListTreeWidget::contextUninstall (v PkgManager::uninstall (*p); } +void ListTreeWidget::contextKeep (void) +{ +PkgCElemPtr p = pkgCElem (**m_itemWithMenu); +if (p) +PkgManager::keep (*p); +} + void ListTreeWidgetTooltip::maybeTip (const QPoint &p) --- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.h #1.18:1.19 @@ -52,4 +52,5 @@ namespace kapture { void contextInstall (); void contextUninstall (); +void contextKeep (); protected: std::set m_open; --- kdenonbeta/kdedebian/kapture/libkapture/progresswidgetui.ui #1.3:1.4 @@ -10,5 +10,5 @@ 0 522 -375 +275 @@ -116,5 +116,5 @@ 500 -250 +150
kdenonbeta/kdedebian/kapture/libkapture
CVS commit by mornfall: The context menu is now context-sensitive. Installing anything but packages makes little sense. I might add "install all" for sections, will see... M +5 -3 listtreewidget.cpp 1.30 --- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.29:1.30 @@ -270,7 +270,9 @@ void ListTreeWidget::contextMenu (QListV m_itemWithMenu = dynamic_cast (it) -> m_treeNode; QPopupMenu *m = new QPopupMenu (this); +if (pkgCElem (**m_itemWithMenu)) { m -> insertItem ("Install", this, SLOT (contextInstall ())); m -> insertItem ("Uninstall", this, SLOT (contextUninstall ())); m -> insertItem ("Keep", this, SLOT (contextKeep ())); +} m -> exec (p); delete m;
kdenonbeta/kdedebian/kapture
CVS commit by mornfall: Fix a crasher in ListTreeWidget::contextMenu (). Alsoa slight format change in libcapture/filters.h. M +2 -1 libcapture/filters.h 1.19 M +4 -0 libkapture/listtreewidget.cpp 1.31 --- kdenonbeta/kdedebian/kapture/libcapture/filters.h #1.18:1.19 @@ -38,5 +38,6 @@ namespace capture { -/* FilterGrouper - base class for all filtering groupers {{{ */ +// FilterGrouper - base class for all filtering groupers {{{ +// -- class FilterGrouper : public Grouper { --- kdenonbeta/kdedebian/kapture/libkapture/listtreewidget.cpp #1.30:1.31 @@ -268,5 +268,9 @@ void ListTreeWidget::contextMenu (QListV { std::cerr << "ListTreeWidget::contextMenu (p);" << std::endl; +if (! it) +return; m_itemWithMenu = dynamic_cast (it) -> m_treeNode; +if (! m_itemWithMenu) +return; QPopupMenu *m = new QPopupMenu (this); if (pkgCElem (**m_itemWithMenu)) {
The Massive July 12 Update
I am writing to thank you for fixing the problem of the disappearing style widgets in KDE. I actually purged KDE and re-installed to get them back once, only to have them disappear again a week later. Thanks for the fix. Hawaiian Astronomical Society: http://www.hawastsoc.org HAS Deepsky Atlas: http://www.hawastsoc.org/deepsky
Fixed in NMU of meta-kde-extras 4:3.1.2-0.1
tag 227839 + fixed quit This message was generated automatically in response to a non-maintainer upload. The .changes file follows. -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Format: 1.7 Date: Sat, 26 Jun 2004 23:36:14 +0200 Source: meta-kde-extras Binary: kde-devel-extras kde-extras Architecture: source all Version: 4:3.1.2-0.1 Distribution: unstable Urgency: low Maintainer: Debian Qt/KDE Maintainers Changed-By: Andreas Barth <[EMAIL PROTECTED]> Description: kde-devel-extras - The K Desktop Environment (extra development files) kde-extras - The K Desktop Environment (extras) Closes: 227839 Changes: meta-kde-extras (4:3.1.2-0.1) unstable; urgency=low . * NMU * remove recommends on cdbakeoven, klineakconfig, ksetisaver, slicker (not in main). Closes: #227839 Files: c1a6a1a8598ba18b07f123e093d61c3a 622 kde optional meta-kde-extras_3.1.2-0.1.dsc ff6faba820c8bbedac16aba873cfd070 7359 kde optional meta-kde-extras_3.1.2-0.1.tar.gz cbb3346fb493c0c6ce3e54cc78701bd5 7326 kde optional kde-devel-extras_3.1.2-0.1_all.deb 8a5266426a2bc4ea8b5a21d7908cfa4d 7708 kde optional kde-extras_3.1.2-0.1_all.deb -BEGIN PGP SIGNATURE- Version: GnuPG v1.2.3 (GNU/Linux) iD8DBQFA3e0ymdOZoew2oYURAklbAKCr3r5ag7mMXCobHVHLC4s9Yoat6QCfZRrn 3dknfcQ8jmSr/FBPiBQviPY= =m7ah -END PGP SIGNATURE-
Processing of meta-kde-extras_3.1.2-0.1_i386.changes
meta-kde-extras_3.1.2-0.1_i386.changes uploaded successfully to localhost along with the files: meta-kde-extras_3.1.2-0.1.dsc meta-kde-extras_3.1.2-0.1.tar.gz kde-devel-extras_3.1.2-0.1_all.deb kde-extras_3.1.2-0.1_all.deb Greetings, Your Debian queue daemon
Processed: Fixed in NMU of meta-kde-extras 4:3.1.2-0.1
Processing commands for [EMAIL PROTECTED]: > tag 227839 + fixed Bug#227839: kde-extras (main) Recommends ksetisaver (contrib) Tags were: sid sarge Tags added: fixed > quit Stopping processing here. Please contact me if you need assistance. Debian bug tracking system administrator (administrator, Debian Bugs database)
meta-kde-extras_3.1.2-0.1_i386.changes ACCEPTED
Accepted: kde-devel-extras_3.1.2-0.1_all.deb to pool/main/m/meta-kde-extras/kde-devel-extras_3.1.2-0.1_all.deb kde-extras_3.1.2-0.1_all.deb to pool/main/m/meta-kde-extras/kde-extras_3.1.2-0.1_all.deb meta-kde-extras_3.1.2-0.1.dsc to pool/main/m/meta-kde-extras/meta-kde-extras_3.1.2-0.1.dsc meta-kde-extras_3.1.2-0.1.tar.gz to pool/main/m/meta-kde-extras/meta-kde-extras_3.1.2-0.1.tar.gz Announcing to debian-devel-changes@lists.debian.org Setting bugs to severity fixed: 227839 Thank you for your contribution to Debian.