Bug#847064: KGPG does not start
Package: kgpg Version: 4:4.14.2-1 Justification: renders package unusable Severity: grave When i try to start KGPG i can see the following messages in the console: $ kgpg QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. Regards Karsten -- System Information: Debian Release: 8.6 APT prefers proposed-updates APT policy: (500, 'proposed-updates'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.16.0-4-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Init: systemd (via /run/systemd/system) Versions of packages kgpg depends on: ii gnupg1.4.18-7+deb8u3 ii gnupg2 2.0.26-6+deb8u1 ii kde-runtime 4:4.14.2-2 ii kdepim-runtime 4:4.14.2-3 ii libakonadi-contact4 4:4.14.2-2+deb8u2 ii libakonadi-kde4 4:4.14.2-2+deb8u2 ii libc62.19-18+deb8u6 ii libkabc4 4:4.14.2-2+deb8u2 ii libkdecore5 4:4.14.2-5+deb8u1 ii libkdeui54:4.14.2-5+deb8u1 ii libkio5 4:4.14.2-5+deb8u1 ii libkpimutils44:4.14.2-2+deb8u2 ii libqt4-dbus 4:4.8.6+git64-g5dc8b2b+dfsg-3+deb8u1 ii libqtcore4 4:4.8.6+git64-g5dc8b2b+dfsg-3+deb8u1 ii libqtgui44:4.8.6+git64-g5dc8b2b+dfsg-3+deb8u1 ii libsolid44:4.14.2-5+deb8u1 ii libstdc++6 4.9.2-10 kgpg recommends no packages. kgpg suggests no packages. -- no debconf information
Bug#846996: Unable to compile with g++-6
Control: tags -1 confirmed upstream Hi Thomas, On Sun, Dec 04, 2016 at 09:34:27PM +0100, Thomas Viehweger wrote: > Trying to compile lxqt-panel with g++-6 and qtbase5-dev_5.7.1 results in the > following errors: > > /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h: In function ‘uint > qCountTrailingZeroBits(quint16)’: > /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h:630:32: error: > ‘__builtin_ctzs’ was not declared in this scope > return v ? __builtin_ctzs(v) : 16U; > ^ > /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h: In function ‘uint > qCountLeadingZeroBits(quint16)’: > /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h:693:32: error: > ‘__builtin_clzs’ was not declared in this scope > return v ? __builtin_clzs(v) : 16U; > ^ > > This is because g++ removed __builtin_clzs and __builtin_ctzs. There is a potential fix for this at https://codereview.qt-project.org/175542, but unfortunately it needs some more work. I have just asked the upstream author about the status, if he does not reply in a few days, I will write my own patch and add it to the next Debian upload. -- Dmitry Shachnev signature.asc Description: PGP signature
Processed: Re: Bug#846996: Unable to compile with g++-6
Processing control commands: > tags -1 confirmed upstream Bug #846996 [qtbase5-dev] Unable to compile with g++-6 Added tag(s) upstream and confirmed. -- 846996: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=846996 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Bug#847085: qtcreator: GNOME Software catalog entry missing
Package: qtcreator Version: 4.1.0-4 Severity: normal The Qt Creator package cannot be found and/or installed using GNOME Software because the qtcreator.desktop file contained in the package is missing a "Comment" section that is required by AppStream to generate correct metadata. https://appstream.debian.org/sid/main/issues/qtcreator.html [Test Case] 1. Open the GNOME Software application. 2. Type "Qt Creator" into the search bar.
Re: Bug#840652: any status on this?
Hey, > You need to give libkleo a full get rid of boost shared_ptr to get things to > work. It should just be an advanced search/replace job. And this is abi- > changing. > > I saw this: > +template std::shared_ptr > make_shared_ptr(boost::shared_ptr& ptr) > +{ > +return std::shared_ptr(ptr.get(), [ptr](T*) mutable > {ptr.reset();}); > +} > > and I got quite worried. I at least need to read up a bit on how exactly a > reference is captured into a lambda to say if it is quite good, or > incredibly dangerous. Is it captured by reference or by copy ? The latter > is good. the first is quite bad. I copied this snipset from stackoverflow: http://stackoverflow.com/questions/12314967/cohabitation-of-boostshared-ptr-and-stdshared-ptr#comment28669000_12315035 So far thsi version works, if there are no weak_ptrs created for the new created shared_ptr. Best Regards, sandro signature.asc Description: This is a digitally signed message part.
Bug#846996: Unable to compile with g++-6
Hi Dmitry, >> Trying to compile lxqt-panel with g++-6 and qtbase5-dev_5.7.1 results in the >> following errors: >> >> /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h: In function ‘uint >> qCountTrailingZeroBits(quint16)’: >> /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h:630:32: error: >> ‘__builtin_ctzs’ was not declared in this scope >> return v ? __builtin_ctzs(v) : 16U; >> ^ >> /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h: In function ‘uint >> qCountLeadingZeroBits(quint16)’: >> /usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h:693:32: error: >> ‘__builtin_clzs’ was not declared in this scope >> return v ? __builtin_clzs(v) : 16U; >> ^ >> >> This is because g++ removed __builtin_clzs and __builtin_ctzs. > There is a potential fix for this at https://codereview.qt-project.org/175542, > but unfortunately it needs some more work. > > I have just asked the upstream author about the status, if he does not reply > in a few days, I will write my own patch and add it to the next Debian upload. according to Uroš Bizjak it should be sufficient to use return __tzcnt_u16(v); instead of return v ? __tzcnt_u16(v) : 16U; I haven't checked it...
Bug#847064: KGPG does not start
Control: tag -1 + unreproducible moreinfo Control: severity -1 normal ¡Hola Karsten! About the subject, if your kgpg is already configured kgpg starts as a systemtray icon. Please check that. El 2016-12-05 a las 10:59 +0100, Karsten Malcher escribió: Package: kgpg Version: 4:4.14.2-1 Justification: renders package unusable Severity: grave As a general rule, do not set a grave severity without checking that the issue is only present for you. When i try to start KGPG i can see the following messages in the console: $ kgpg QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. QDBusConnection: session D-Bus connection created before QCoreApplication. Application may misbehave. This message isn't important, you can safely ignore it. Happy hacking, -- "Debugging is twice as hard as writing the code in the first place. Therefore, if you write the code as cleverly as possible, you are–by definition–not smart enough to debug it." -- Brian Kernighan Saludos /\/\ /\ >< `/ signature.asc Description: PGP signature
Processed: Re: Bug#847064: KGPG does not start
Processing control commands: > tag -1 + unreproducible moreinfo Bug #847064 [kgpg] KGPG does not start Added tag(s) moreinfo and unreproducible. > severity -1 normal Bug #847064 [kgpg] KGPG does not start Severity set to 'normal' from 'grave' -- 847064: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=847064 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems
Pushing 9.0.0 to unstable
Hi team, what about pushing 9.0.0 to unstable ? There was one grave but trivial bug I introduced in 9.0.0~exp1 (#843727) that was fixed the same day it was raised and is now pending upload, and miscellaneous other fixes and improvements. Also I’ve worked with Maximiliano to get Debian themed SDDM packages ready. They depend on desktop-base >= 9.0.0~ so the upload would be welcome to let these new packages land. The last major part missing for Stretch I’m still working on is the Plymouth theme, but il will take more days to be ready. Here’s the changelog from svn : * Fix detection of update-initramfs. (Closes: #843727) * Include GRUB text/background colors in the theme pack / alternatives system. (Closes: #606383) * Additional wallpaper and lockscreen ratios for Soft Waves theme. * Remove Moreblue theme from Lenny. * Add theme pack support Joy/Spacefun themes. * Use dash instead of bash for postinst * Generate all GRUB bitmaps from SVG at build time instead of versioning them. * Stop shipping SDDM breeze-based theme, now in plasma-workspace. Cheers, --Aurélien
Failure: chroot-installation_sid_install_kde-full/1313
See https://jenkins.debian.net/job/chroot-installation_sid_install_kde-full/1313//console or just https://jenkins.debian.net/job/chroot-installation_sid_install_kde-full/1313/ for more information.
Failure: chroot-installation_sid_install_kde/1411
See https://jenkins.debian.net/job/chroot-installation_sid_install_kde/1411//console or just https://jenkins.debian.net/job/chroot-installation_sid_install_kde/1411/ for more information.
Failure: chroot-installation_sid_install_qt4/719
See https://jenkins.debian.net/job/chroot-installation_sid_install_qt4/719//console or just https://jenkins.debian.net/job/chroot-installation_sid_install_qt4/719/ for more information.
Failure: chroot-installation_sid_install_qt5/727
See https://jenkins.debian.net/job/chroot-installation_sid_install_qt5/727//console or just https://jenkins.debian.net/job/chroot-installation_sid_install_qt5/727/ for more information.