Fwd: Re: Bug#834131: Video support still not working

2016-12-18 Thread Martin Steigerwald
Forwarding to Qt/KDE maintainers list as it may be read more closely.

Also asking on #debian-qt-kde channel may yield quicker results.

Ciao,
Martin

--  Weitergeleitete Nachricht  --

Betreff: Re: Bug#834131: Video support still not working
Datum: Sonntag, 18. Dezember 2016, 13:53:34 CET
Von: Steve M. Robbins 
An: Simon Frei , pkg-kde-t...@lists.alioth.debian.org
MartinKopie:  Steigerwald 

On Sunday, December 18, 2016 2:49:42 PM CST Simon Frei wrote:

> [...] upstream has dropped QTmultimedia for video handling and uses
> QtAV (which in turn is based of ffmpeg). Unfortunately QtAV is not yet
> in debian (https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=737016),
> however upstream provides debian packaging already, which worked almost
> fine for me (buildep without -nc flag resulted in an error). This will
> take effect in the upcoming 5.4.0 release due at the end of this month.

Thanks for the heads-up on the change to QtAV.

Question for the KDE maintainers: the RFP for QtAV is fairly old, which makes 
me wonder if there is any issue (technical or legal) that stands in the way of 
packaging it.  ??

Thanks,
-Steve

-
-- 
Martin



Bug#848602: Depends: nodejs-legacy

2016-12-18 Thread Ben Longbons
Package: libkf5purpose-bin
Version: 1.1-3
Severity: serious
Justification: Policy 10.1

Dear Maintainer,

Per CTTE decree, packages may not depend on nodejs-legacy. It exists
solely for compatibility with non-Debian packages that are unaware of
the fact that someone else claimed the name 'node' many years before.

For details, see bug #614907 and
https://lists.debian.org/debian-devel-announce/2012/07/msg2.html

-Ben


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

Kernel: Linux 4.8.0-2-amd64 (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
Init: systemd (via /run/systemd/system)



Bug#846996: The mini-if is really not needed

2016-12-18 Thread Thomas Viehweger
I just tested with the following test program. The result is as expected:
#include 
#include 
#include 

int main(void)
{
printf("0 -> %d\n\n", 16U);
puts("__tzcnt_u16:");
printf("0x%x -> %d\n", 0, __tzcnt_u16(0));
for (uint16_t i = 1; i > 0; i <<= 1)
{
printf("0x%x -> %d\n", i, __tzcnt_u16(i));
}

puts("\n__lzcnt16:");
printf("0x%x -> %d\n", 0, __lzcnt16(0));
for (uint16_t i = 1; i > 0; i <<= 1)
{
printf("0x%x -> %d\n", i, __lzcnt16(i));
}

return 0;
}

g++ -march=native -o intrins intrinsictest.cpp
./intrins

Attached is the patch for
/usr/include/x86_64-linux-gnu/qt5/QtCore/qalgorithms.h
--- qalgorithms.h.orig	2016-12-18 15:57:30.279325472 +0100
+++ qalgorithms.h	2016-12-18 23:09:33.129324260 +0100
@@ -47,6 +47,10 @@ QT_WARNING_PUSH
 QT_WARNING_DISABLE_GCC("-Wdeprecated-declarations")
 QT_WARNING_DISABLE_CLANG("-Wdeprecated-declarations")
 
+#if defined(__BMI__) && defined(__LZCNT__) && !QT_HAS_BUILTIN(__builtin_ctzs)
+#  include 
+#endif
+
 /*
 Warning: The contents of QAlgorithmsPrivate is not a part of the public Qt API
 and may be changed from version to version or even be completely removed.
@@ -626,8 +630,10 @@ Q_DECL_RELAXED_CONSTEXPR inline uint qCo
 Q_DECL_RELAXED_CONSTEXPR inline uint qCountTrailingZeroBits(quint16 v) Q_DECL_NOTHROW
 {
 #if defined(Q_CC_GNU)
-#  if QT_HAS_BUILTIN(__builtin_ctzs) || (defined(__LZCNT__) && defined(__BMI__))
+#  if QT_HAS_BUILTIN(__builtin_ctzs)
 return v ? __builtin_ctzs(v) : 16U;
+#  elif (defined(__LZCNT__) && defined(__BMI__))
+return __tzcnt_u16(v);
 #  else
 return v ? __builtin_ctz(v) : 16U;
 #  endif
@@ -689,8 +695,10 @@ Q_DECL_RELAXED_CONSTEXPR inline uint qCo
 Q_DECL_RELAXED_CONSTEXPR inline uint qCountLeadingZeroBits(quint16 v) Q_DECL_NOTHROW
 {
 #if defined(Q_CC_GNU)
-#  if QT_HAS_BUILTIN(__builtin_clzs) || (defined(__LZCNT__) && defined(__BMI__))
+#  if QT_HAS_BUILTIN(__builtin_clzs)
 return v ? __builtin_clzs(v) : 16U;
+#  elif (defined(__LZCNT__) && defined(__BMI__))
+return __lzcnt16(v);
 #  else
 return v ? __builtin_clz(v)-16U : 16U;
 #  endif


Bug#848628: korganizer creates duplicate event categories

2016-12-18 Thread MH
Package: korganizer
Version: 4:16.04.3-2
Severity: normal

Dear Maintainer,

When adding a category tag to an event, the category is replicated in the 
category
drop down selection list. There was a previous bug report on this but it was
closed. I do not have the old bug report number.

System Information:
Debian Release: stretch/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.8.0-2-amd64 (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 /usr/bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages korganizer depends on:
ii  kdepim-runtime   4:16.04.2-2
ii  kf5-kdepimlibs-kio-plugins   4:16.04.2-2
ii  libc62.24-8
ii  libgcc1  1:6.2.1-5
ii  libkf5akonadicalendar5   16.04.2-2
ii  libkf5akonadicontact54:16.04.2-2
ii  libkf5akonadicore-bin4:16.04.3-3+b1
ii  libkf5akonadicore5   4:16.04.3-3+b1
ii  libkf5akonadimime5   4:16.04.2-2
ii  libkf5akonadinotes5  4:16.04.2-2
ii  libkf5akonadisearchpim5  16.04.3-1
ii  libkf5akonadiwidgets54:16.04.3-3+b1
ii  libkf5calendarcore5  4:16.04.2-1
ii  libkf5calendarsupport5   4:16.04.2-2
ii  libkf5calendarutils5 16.04.3-1
ii  libkf5codecs55.27.0-1
ii  libkf5completion55.27.0-1
ii  libkf5configcore55.27.0-1
ii  libkf5configgui5 5.27.0-1
ii  libkf5configwidgets5 5.27.0-1
ii  libkf5contacts5  16.04.2-1
ii  libkf5coreaddons55.27.0-1
ii  libkf5dbusaddons55.27.0-1
ii  libkf5eventviews54:16.04.2-2
ii  libkf5holidays5  16.04.2-1
ii  libkf5i18n5  5.27.0-2
ii  libkf5iconthemes55.27.0-1
ii  libkf5identitymanagement516.04.2-1
ii  libkf5incidenceeditor-bin16.04.2-2
ii  libkf5incidenceeditor5   16.04.2-2
ii  libkf5itemmodels55.27.0-1
ii  libkf5itemviews5 5.27.0-1
ii  libkf5jobwidgets55.27.0-1
ii  libkf5kcmutils5  5.27.0-1
ii  libkf5kdelibs4support5   5.27.0-1
ii  libkf5kdepimdbusinterfaces5  4:16.04.2-2
ii  libkf5kiocore5   5.27.0-2
ii  libkf5kiowidgets55.27.0-2
ii  libkf5kontactinterface5  16.04.2-1
ii  libkf5libkdepim-plugins  4:16.04.2-3
ii  libkf5libkdepim5 4:16.04.2-3
ii  libkf5mailcommon-plugins 4:16.04.2-2
ii  libkf5mailcommon54:16.04.2-2
ii  libkf5mailtransport5 16.04.2-3
ii  libkf5mime5  16.04.2-1
ii  libkf5newstuff5  5.27.0-1
ii  libkf5notifications5 5.27.0-1
ii  libkf5parts5 5.27.0-1
ii  libkf5pimcommon-plugins  4:16.04.2-2
ii  libkf5pimcommon5 4:16.04.2-2
ii  libkf5pimtextedit5   16.04.2-1
ii  libkf5service-bin5.27.0-1
ii  libkf5service5   5.27.0-1
ii  libkf5widgetsaddons5 5.27.0-1
ii  libkf5windowsystem5  5.27.0-1
ii  libkf5xmlgui55.27.0-1
ii  libphonon4qt5-4  4:4.9.0-4
ii  libqt5core5a 5.7.1~20161021+dfsg-6
ii  libqt5dbus5  5.7.1~20161021+dfsg-6
ii  libqt5gui5   5.7.1~20161021+dfsg-6
ii  libqt5widgets5   5.7.1~20161021+dfsg-6
ii  libstdc++6   6.2.1-5
ii  phonon4qt5   4:4.9.0-4

Versions of packages korganizer recommends:
ii  kdepim-doc  4:16.04.3-2

korganizer suggests no packages.

-- no debconf information



Still Failing: chroot-installation_sid_install_kde-full/1326

2016-12-18 Thread jenkins
See 
https://jenkins.debian.net/job/chroot-installation_sid_install_kde-full/1326//console
 or just 
https://jenkins.debian.net/job/chroot-installation_sid_install_kde-full/1326/ 
for more information.