Bug#792594: libqt5qml5 requires SSE2 on i386

2015-10-11 Thread Guillem Jover
Hi!

On Sun, 2015-10-11 at 14:10:20 -0300, Lisandro Damián Nicanor Pérez Meyer wrote:
> Uups! This kind of changes should now go to the 5.6 branch upstream. When I 
> tried to apply it to that branch I got:
> 
> $ patch -p1 < /tmp/qml-jit-on-sse2.patch 
> patching file src/qml/qml/v8/qv8engine.cpp
> Hunk #1 FAILED at 58.
> Hunk #2 succeeded at 123 (offset 2 lines).
> 1 out of 2 hunks FAILED -- saving rejects to file 
> src/qml/qml/v8/qv8engine.cpp.rej
> patching file src/qml/jit/qv4isel_masm.cpp
> Hunk #1 succeeded at 259 (offset 61 lines).
> patching file src/qml/jsruntime/qv4engine.cpp
> Hunk #1 succeeded at 218 (offset 35 lines).
> patching file tools/qmljs/qmljs.cpp
> patching file src/qml/jit/qv4isel_masm_p.h
> Hunk #1 succeeded at 53 (offset 11 lines).
> Hunk #2 succeeded at 66 (offset 11 lines).
> 
> I looked at src/qml/qml/v8/qv8engine.cpp and changed quite a lot.
> 
> I'm afraid I would need to take this into account to be able to upstream this 
> patch :-( Can you take a look at it?

It seems to me in the end it was a trivial reject, and I don't see
anything else obviously broken. Attached a new patch against the 5.6
branch, although I've not built nor tested it as I don't have an easy
way to do so. Sorry about that.

Thanks,
Guillem
From 0c66df34a5ca87fbb179fef53787f28afe1a71af Mon Sep 17 00:00:00 2001
From: Guillem Jover 
Date: Mon, 12 Oct 2015 01:45:37 +0200
Subject: [PATCH] Do not make lack of SSE2 support on x86-32 fatal

When an x86-32 CPU does not have SSE2 support (which is the case for
all AMD CPUs, and older Intel CPUs), fallback to use the interpreter,
otherwise use the JIT engine.

Even then, make the lack of SSE2 support on x86-32 fatal, when trying
to instantiate a JIT engine, which does require it.

Refactor the required CPU support check into a new private export
function to avoid duplicating the logic, and do so in a function
instead of a class member to avoid changing the class signatures.

Bug-Debian: https://bugs.debian.org/792594
---
 src/qml/jit/qv4isel_masm.cpp|  3 +++
 src/qml/jit/qv4isel_masm_p.h| 10 ++
 src/qml/jsruntime/qv4engine.cpp |  4 ++--
 src/qml/qml/v8/qv8engine.cpp|  7 ---
 tools/qmljs/qmljs.cpp   |  7 +++
 5 files changed, 18 insertions(+), 13 deletions(-)

diff --git a/src/qml/jit/qv4isel_masm.cpp b/src/qml/jit/qv4isel_masm.cpp
index 5dfd891..9e28b19 100644
--- a/src/qml/jit/qv4isel_masm.cpp
+++ b/src/qml/jit/qv4isel_masm.cpp
@@ -259,6 +259,9 @@ InstructionSelection::InstructionSelection(QQmlEnginePrivate *qmlEngine, QV4::Ex
 , compilationUnit(new CompilationUnit)
 , qmlEngine(qmlEngine)
 {
+if (!hasRequiredCpuSupport())
+qFatal("This program requires an X86 processor that supports SSE2 extension, at least a Pentium 4 or newer");
+
 compilationUnit->codeRefs.resize(module->functions.size());
 }
 
diff --git a/src/qml/jit/qv4isel_masm_p.h b/src/qml/jit/qv4isel_masm_p.h
index 29749f7..19b2d26 100644
--- a/src/qml/jit/qv4isel_masm_p.h
+++ b/src/qml/jit/qv4isel_masm_p.h
@@ -53,6 +53,7 @@
 
 #include 
 #include 
+#include 
 #include 
 #include 
 
@@ -65,6 +66,15 @@ QT_BEGIN_NAMESPACE
 namespace QV4 {
 namespace JIT {
 
+inline bool Q_QML_PRIVATE_EXPORT hasRequiredCpuSupport()
+{
+#ifdef Q_PROCESSOR_X86_32
+return qCpuHasFeature(SSE2);
+#else
+return true;
+#endif
+}
+
 class Q_QML_EXPORT InstructionSelection:
 protected IR::IRDecoder,
 public EvalInstructionSelection
diff --git a/src/qml/jsruntime/qv4engine.cpp b/src/qml/jsruntime/qv4engine.cpp
index 6fe14da..9354e36 100644
--- a/src/qml/jsruntime/qv4engine.cpp
+++ b/src/qml/jsruntime/qv4engine.cpp
@@ -218,8 +218,8 @@ ExecutionEngine::ExecutionEngine(EvalISelFactory *factory)
 if (!factory) {
 
 #ifdef V4_ENABLE_JIT
-static const bool forceMoth = !qgetenv("QV4_FORCE_INTERPRETER").isEmpty();
-if (forceMoth)
+static const bool useMoth = !qgetenv("QV4_FORCE_INTERPRETER").isEmpty() || !JIT::hasRequiredCpuSupport();
+if (useMoth)
 factory = new Moth::ISelFactory;
 else
 factory = new JIT::ISelFactory;
diff --git a/src/qml/qml/v8/qv8engine.cpp b/src/qml/qml/v8/qv8engine.cpp
index dae932e..c6d3a81 100644
--- a/src/qml/qml/v8/qv8engine.cpp
+++ b/src/qml/qml/v8/qv8engine.cpp
@@ -59,7 +59,6 @@
 #include 
 #include 
 #include 
-#include 
 
 #include 
 #include 
@@ -123,12 +122,6 @@ QV8Engine::QV8Engine(QJSEngine* qq)
 , m_xmlHttpRequestData(0)
 , m_listModelData(0)
 {
-#ifdef Q_PROCESSOR_X86_32
-if (!qCpuHasFeature(SSE2)) {
-qFatal("This program requires an X86 processor that supports SSE2 extension, at least a Pentium 4 or newer");
-}
-#endif
-
 QML_MEMORY_SCOPE_STRING("QV8Engine::QV8Engine");
 qMetaTypeId();
 qMetaTypeId >();
diff --git a/tools/qmljs/qmljs.cpp b/tools/qmljs/qmljs.cpp
index 132817f..dd7571a 100644
--- a/tools/qmljs/qmljs.cpp
+++ b/tools/qmljs/qmljs.cpp
@@ -140,11 +140,10 @@ int main(int argc, char *argv[])
 enum {
 

kbreakout_15.08.0-2_amd64.changes ACCEPTED into unstable

2015-10-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 11 Oct 2015 18:32:12 -0400
Source: kbreakout
Binary: kbreakout
Architecture: source amd64
Version: 4:15.08.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Scott Kitterman 
Description:
 kbreakout  - ball and paddle game
Closes: 801542
Changes:
 kbreakout (4:15.08.0-2) unstable; urgency=medium
 .
   * Team upload.
   * Change build-dep on libkdegames-dev to libkf5kdegames-dev to match the
 move to Kf5 (Closes: #801542)
 - Thanks to Peter Green for the bug report and the solution
Checksums-Sha1:
 52912f3feb7f17feb3d9d50559d17ffcc9b38951 2624 kbreakout_15.08.0-2.dsc
 6dab3737be917d8002fee51284e46d59696cc15d 8148 kbreakout_15.08.0-2.debian.tar.xz
 c04f97da9b32d10f6ae93fa0ca86838fe90168ce 1406910 kbreakout_15.08.0-2_amd64.deb
Checksums-Sha256:
 b5e6ba46c29d51580172d7c64d081a3f7f5541d49d5e049bc656ea89961167e2 2624 
kbreakout_15.08.0-2.dsc
 d607dec919477a01c0f54a9ba999a0dbd6592515f4812225d4214b2548916233 8148 
kbreakout_15.08.0-2.debian.tar.xz
 90dffb25a57b43d6a2efce538edb7735674e47fbc68209caee1d86ee908d09b8 1406910 
kbreakout_15.08.0-2_amd64.deb
Files:
 77b5e40bca1125062b485fed5881358a 2624 games optional kbreakout_15.08.0-2.dsc
 3204b6a8839b36ea2405618fe607a7bb 8148 games optional 
kbreakout_15.08.0-2.debian.tar.xz
 a1fe2c793f082f200e5d6884ba60657a 1406910 games optional 
kbreakout_15.08.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWGuavAAoJEHjX3vua1Zrx//QP/i7YI3sXc4Azd5pfTqdsThBN
prK6dFugtUvXr8zuJ2binhGtXYvn8b3NbwNIi4mcaX4Lw830AC79WOVGRQQkNdCZ
T3KQRnqRgm3a5DSU1laq66+fXb/cvZVxK9NEAYRpfOU6h1Sz8u0mMw3twBnHDvmt
qrsYyEo3BQsfi0iMMZDedBAbuj4xPhquBzLt8YP8GQNuE+u4HC7bT1I7PkPMynXa
fyUdibl8s92q6JWVZaSGgmGPLJ935TXS/SJcxtVmN9Vi4CADEnao2xOLxmAnYVrH
VebQAXp/ih2qRwpLIDw2XhKFoqOXvDzTqk9RkoEZwUo3CoXwDhK4grle/tqOZRA2
FKd5/gm0w5glDgrgK9tPKkjH7IRZM6HG7aXQunD/CVfICr0zeg/nPyfZrWL5mpDO
LmuoQa147paVJ3uavalNK29/GVdCcMKK4m/0Xv+KHBnPi68NAYATVVXPqOyXKjDe
VTayWw9Q46MSoPEgBI+01UAYR11GXc3eCKol2C/FKYN39hrW2Q5srBoz0ncCgLH9
J56GplOjZIbgkk4ATobdvg9msTyMXY4nBtOx926dwPWyDnkX230GiMoX3kokwTyP
eAMc0SseKTxRdu6PI90+5+BRRYy1NCqVGludo9qGJyaF/J7FjiYPVlcr8ddrOtKD
z/nFvs0FMNuqBAkILDJU
=zLja
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



kblackbox_15.08.0-2_amd64.changes ACCEPTED into unstable

2015-10-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 11 Oct 2015 18:42:00 -0400
Source: kblackbox
Binary: kblackbox
Architecture: source amd64
Version: 4:15.08.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Scott Kitterman 
Description:
 kblackbox  - Black Box puzzle game
Closes: 801512
Changes:
 kblackbox (4:15.08.0-2) unstable; urgency=medium
 .
   * Team upload.
   * Change build-dep on libkdegames-dev to libkf5kdegames-dev to match the
 move to Kf5 (Closes: #801512)
 - Thanks to Peter Green for the bug report and the solution
Checksums-Sha1:
 916ca6efcb47ffb1ae661d3f13b4f0467cd51c44 2512 kblackbox_15.08.0-2.dsc
 0b86856c130296cf5867f9bab02d04f4e7940be0 6452 kblackbox_15.08.0-2.debian.tar.xz
 20957ed1d6ec2c4c0f8771edc45d7840ae39ffb4 293730 kblackbox_15.08.0-2_amd64.deb
Checksums-Sha256:
 213870371314fa1d2f4b7c76c7e6f64f792ae9a3f2bcea143ecfe135f9906255 2512 
kblackbox_15.08.0-2.dsc
 52d109bf1cf50ac9255c54c5c1004223da689b636762cf54b049e53a3e78dbe6 6452 
kblackbox_15.08.0-2.debian.tar.xz
 e1486bbc28911fc1dc4e92eeef94f2ccb210f969f3c282f3452ff85426ffef71 293730 
kblackbox_15.08.0-2_amd64.deb
Files:
 10001c80eace086ded52a1f5deaa959b 2512 games optional kblackbox_15.08.0-2.dsc
 e7a0b5323851c0002466a3d820568c29 6452 games optional 
kblackbox_15.08.0-2.debian.tar.xz
 0ac9b0952f94ae4d8b81d96305647e0e 293730 games optional 
kblackbox_15.08.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWGueeAAoJEHjX3vua1ZrxAuMP/R+36JA/o2sJYv9eiuiYnrXZ
D5JnnPGqmuFaAvc1Od1Z8n/u0MpERxZf+oWuENSvYtMjsCLb8nL2ryOtN860dg42
oYyZp9tnZPcTh4be4DszqaxxXJilDKqp/AqaZn27jwbR0kASYrxX2wqB68ELKXhu
GdC+tL8eF2NuWVXrY6F8/mBH7PWvSrvgSUCtegUg39An1+Shbk97R6Ukzuum2n0/
okrE6sOXDj6Pf03oHjljzwGwZefVdx9U4wtiDPFMfbuqF+YY4MZ6JolKwE8z4brZ
KMhMdZVSSc3jgj2sGFq1VCgVm2Nkn71xR9UEcD3mvkYSQvhppLeC6c2XMIo0p6bz
hKgauLCV4/UPMjWq1jeQeFs6Kyya5p62dV7XQP4AkSHtH71r9GWtVfYntl0b1Tnu
nOzjeOUzVxDh5gQJYjFpZcwFv67hTJ6wyvME2i47rPAuZByDVGHu2VkkJ6TyRtzW
6eVnjxqJzkQ95cZScWLWp3Rn7As8LZy8GjF9nSoLeHiLyDAi9LRJVt0hzLMb0SqR
Bot7SAvVOq12kAsACuKg/m5jkH606MByBCt/xZci3IJft019TLR3/y/REuGbjs11
y4L4WpWU2G/SjR65GRZQBfUFeYc032qRff8Vg8jrTooRJjaKvQyAXfD3sBosVFbv
rUZ5aP9XPdxpdH1T+hpY
=+d3C
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Bug#801542: marked as done (kbreakout build-depends on libkdegames-dev (>= 4:14.12.2) which is no longer built.)

2015-10-11 Thread Debian Bug Tracking System
Your message dated Sun, 11 Oct 2015 23:22:14 +
with message-id 
and subject line Bug#801542: fixed in kbreakout 4:15.08.0-2
has caused the Debian Bug report #801542,
regarding kbreakout build-depends on libkdegames-dev (>= 4:14.12.2) which is no 
longer built.
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.)


-- 
801542: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801542
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: kbreakout
Version: 4:15.08.0-1
Severity: serious
Tags: patch

kbreakout build-depends on libkdegames-dev (>= 4:14.12.2) . libkdegames-dev is 
no longer build by the kdegames source package.

In raspbian stretch simply changing the build-dep to libkf5kdegames-dev 
resulted in a successful build, I assume it will in Debian too.
--- End Message ---
--- Begin Message ---
Source: kbreakout
Source-Version: 4:15.08.0-2

We believe that the bug you reported is fixed in the latest version of
kbreakout, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 801...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Scott Kitterman  (supplier of updated kbreakout package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 11 Oct 2015 18:32:12 -0400
Source: kbreakout
Binary: kbreakout
Architecture: source amd64
Version: 4:15.08.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Scott Kitterman 
Description:
 kbreakout  - ball and paddle game
Closes: 801542
Changes:
 kbreakout (4:15.08.0-2) unstable; urgency=medium
 .
   * Team upload.
   * Change build-dep on libkdegames-dev to libkf5kdegames-dev to match the
 move to Kf5 (Closes: #801542)
 - Thanks to Peter Green for the bug report and the solution
Checksums-Sha1:
 52912f3feb7f17feb3d9d50559d17ffcc9b38951 2624 kbreakout_15.08.0-2.dsc
 6dab3737be917d8002fee51284e46d59696cc15d 8148 kbreakout_15.08.0-2.debian.tar.xz
 c04f97da9b32d10f6ae93fa0ca86838fe90168ce 1406910 kbreakout_15.08.0-2_amd64.deb
Checksums-Sha256:
 b5e6ba46c29d51580172d7c64d081a3f7f5541d49d5e049bc656ea89961167e2 2624 
kbreakout_15.08.0-2.dsc
 d607dec919477a01c0f54a9ba999a0dbd6592515f4812225d4214b2548916233 8148 
kbreakout_15.08.0-2.debian.tar.xz
 90dffb25a57b43d6a2efce538edb7735674e47fbc68209caee1d86ee908d09b8 1406910 
kbreakout_15.08.0-2_amd64.deb
Files:
 77b5e40bca1125062b485fed5881358a 2624 games optional kbreakout_15.08.0-2.dsc
 3204b6a8839b36ea2405618fe607a7bb 8148 games optional 
kbreakout_15.08.0-2.debian.tar.xz
 a1fe2c793f082f200e5d6884ba60657a 1406910 games optional 
kbreakout_15.08.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWGuavAAoJEHjX3vua1Zrx//QP/i7YI3sXc4Azd5pfTqdsThBN
prK6dFugtUvXr8zuJ2binhGtXYvn8b3NbwNIi4mcaX4Lw830AC79WOVGRQQkNdCZ
T3KQRnqRgm3a5DSU1laq66+fXb/cvZVxK9NEAYRpfOU6h1Sz8u0mMw3twBnHDvmt
qrsYyEo3BQsfi0iMMZDedBAbuj4xPhquBzLt8YP8GQNuE+u4HC7bT1I7PkPMynXa
fyUdibl8s92q6JWVZaSGgmGPLJ935TXS/SJcxtVmN9Vi4CADEnao2xOLxmAnYVrH
VebQAXp/ih2qRwpLIDw2XhKFoqOXvDzTqk9RkoEZwUo3CoXwDhK4grle/tqOZRA2
FKd5/gm0w5glDgrgK9tPKkjH7IRZM6HG7aXQunD/CVfICr0zeg/nPyfZrWL5mpDO
LmuoQa147paVJ3uavalNK29/GVdCcMKK4m/0Xv+KHBnPi68NAYATVVXPqOyXKjDe
VTayWw9Q46MSoPEgBI+01UAYR11GXc3eCKol2C/FKYN39hrW2Q5srBoz0ncCgLH9
J56GplOjZIbgkk4ATobdvg9msTyMXY4nBtOx926dwPWyDnkX230GiMoX3kokwTyP
eAMc0SseKTxRdu6PI90+5+BRRYy1NCqVGludo9qGJyaF/J7FjiYPVlcr8ddrOtKD
z/nFvs0FMNuqBAkILDJU
=zLja
-END PGP SIGNATURE End Message ---


Bug#801512: marked as done (kblackbox build-depends on libkdegames-dev (>= 4:14.12.2) which is no longer built.)

2015-10-11 Thread Debian Bug Tracking System
Your message dated Sun, 11 Oct 2015 23:22:07 +
with message-id 
and subject line Bug#801512: fixed in kblackbox 4:15.08.0-2
has caused the Debian Bug report #801512,
regarding kblackbox build-depends on libkdegames-dev (>= 4:14.12.2) which is no 
longer built.
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.)


-- 
801512: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801512
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: kblackbox
Version: 4:15.08.0-1
Severity: serious
Tags: patch

kblackbox build-depends on libkdegames-dev (>= 4:14.12.2) . 
libkdegames-dev is no longer build by the kdegames source package.


In raspbian stretch simply changing the build-dep resulted in a 
successful build, I assume it will in Debian too.
--- End Message ---
--- Begin Message ---
Source: kblackbox
Source-Version: 4:15.08.0-2

We believe that the bug you reported is fixed in the latest version of
kblackbox, which is due to be installed in the Debian FTP archive.

A summary of the changes between this version and the previous one is
attached.

Thank you for reporting the bug, which will now be closed.  If you
have further comments please address them to 801...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Scott Kitterman  (supplier of updated kblackbox package)

(This message was generated automatically at their request; if you
believe that there is a problem with it please contact the archive
administrators by mailing ftpmas...@ftp-master.debian.org)


-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Sun, 11 Oct 2015 18:42:00 -0400
Source: kblackbox
Binary: kblackbox
Architecture: source amd64
Version: 4:15.08.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Scott Kitterman 
Description:
 kblackbox  - Black Box puzzle game
Closes: 801512
Changes:
 kblackbox (4:15.08.0-2) unstable; urgency=medium
 .
   * Team upload.
   * Change build-dep on libkdegames-dev to libkf5kdegames-dev to match the
 move to Kf5 (Closes: #801512)
 - Thanks to Peter Green for the bug report and the solution
Checksums-Sha1:
 916ca6efcb47ffb1ae661d3f13b4f0467cd51c44 2512 kblackbox_15.08.0-2.dsc
 0b86856c130296cf5867f9bab02d04f4e7940be0 6452 kblackbox_15.08.0-2.debian.tar.xz
 20957ed1d6ec2c4c0f8771edc45d7840ae39ffb4 293730 kblackbox_15.08.0-2_amd64.deb
Checksums-Sha256:
 213870371314fa1d2f4b7c76c7e6f64f792ae9a3f2bcea143ecfe135f9906255 2512 
kblackbox_15.08.0-2.dsc
 52d109bf1cf50ac9255c54c5c1004223da689b636762cf54b049e53a3e78dbe6 6452 
kblackbox_15.08.0-2.debian.tar.xz
 e1486bbc28911fc1dc4e92eeef94f2ccb210f969f3c282f3452ff85426ffef71 293730 
kblackbox_15.08.0-2_amd64.deb
Files:
 10001c80eace086ded52a1f5deaa959b 2512 games optional kblackbox_15.08.0-2.dsc
 e7a0b5323851c0002466a3d820568c29 6452 games optional 
kblackbox_15.08.0-2.debian.tar.xz
 0ac9b0952f94ae4d8b81d96305647e0e 293730 games optional 
kblackbox_15.08.0-2_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJWGueeAAoJEHjX3vua1ZrxAuMP/R+36JA/o2sJYv9eiuiYnrXZ
D5JnnPGqmuFaAvc1Od1Z8n/u0MpERxZf+oWuENSvYtMjsCLb8nL2ryOtN860dg42
oYyZp9tnZPcTh4be4DszqaxxXJilDKqp/AqaZn27jwbR0kASYrxX2wqB68ELKXhu
GdC+tL8eF2NuWVXrY6F8/mBH7PWvSrvgSUCtegUg39An1+Shbk97R6Ukzuum2n0/
okrE6sOXDj6Pf03oHjljzwGwZefVdx9U4wtiDPFMfbuqF+YY4MZ6JolKwE8z4brZ
KMhMdZVSSc3jgj2sGFq1VCgVm2Nkn71xR9UEcD3mvkYSQvhppLeC6c2XMIo0p6bz
hKgauLCV4/UPMjWq1jeQeFs6Kyya5p62dV7XQP4AkSHtH71r9GWtVfYntl0b1Tnu
nOzjeOUzVxDh5gQJYjFpZcwFv67hTJ6wyvME2i47rPAuZByDVGHu2VkkJ6TyRtzW
6eVnjxqJzkQ95cZScWLWp3Rn7As8LZy8GjF9nSoLeHiLyDAi9LRJVt0hzLMb0SqR
Bot7SAvVOq12kAsACuKg/m5jkH606MByBCt/xZci3IJft019TLR3/y/REuGbjs11
y4L4WpWU2G/SjR65GRZQBfUFeYc032qRff8Vg8jrTooRJjaKvQyAXfD3sBosVFbv
rUZ5aP9XPdxpdH1T+hpY
=+d3C
-END PGP SIGNATURE End Message ---


Processing of kblackbox_15.08.0-2_amd64.changes

2015-10-11 Thread Debian FTP Masters
kblackbox_15.08.0-2_amd64.changes uploaded successfully to localhost
along with the files:
  kblackbox_15.08.0-2.dsc
  kblackbox_15.08.0-2.debian.tar.xz
  kblackbox_15.08.0-2_amd64.deb

Greetings,

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



Processing of kbreakout_15.08.0-2_amd64.changes

2015-10-11 Thread Debian FTP Masters
kbreakout_15.08.0-2_amd64.changes uploaded successfully to localhost
along with the files:
  kbreakout_15.08.0-2.dsc
  kbreakout_15.08.0-2.debian.tar.xz
  kbreakout_15.08.0-2_amd64.deb

Greetings,

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



Processed: tagging 801512

2015-10-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 801512 + pending
Bug #801512 [kblackbox] kblackbox build-depends on libkdegames-dev (>= 
4:14.12.2) which is no longer built.
Added tag(s) pending.
> thanks
Stopping processing here.

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



Processed: tagging 801542

2015-10-11 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> tags 801542 + pending
Bug #801542 [kbreakout] kbreakout build-depends on libkdegames-dev (>= 
4:14.12.2) which is no longer built.
Added tag(s) pending.
> thanks
Stopping processing here.

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



Re: gl/gles on arm and qwtplot3d

2015-10-11 Thread Scott Kitterman
On Sunday, October 11, 2015 11:41:49 PM Gudjon I. Gudjonsson wrote:
> Hi list
> 
> My package qwtplot3d fails to compile on the arm architecture with the
> following error message:
> /usr/include/GL/glext.h:468:19: error: conflicting declaration 'typedef
> ptrdiff_t GLsizeiptr'
>  typedef ptrdiff_t GLsizeiptr;
> 
> The full buildlog can be found at:
> https://buildd.debian.org/status/fetch.php?pkg=qwtplot3d&arch=armel&ver=0.2.
> 7%2Bsvn191-9&stamp=1443154695
> 
> I guess I have to compile the package against gles instead of gl on arm but
> as far as I know that is difficult.
> 
> Does anyone know a solution to this or shall I exclude arm from the list of
> architectures?

The solution, as you suggest, is to use GLES.

Scott K



gl/gles on arm and qwtplot3d

2015-10-11 Thread Gudjon I. Gudjonsson
Hi list

My package qwtplot3d fails to compile on the arm architecture with the 
following error message:
/usr/include/GL/glext.h:468:19: error: conflicting declaration 'typedef 
ptrdiff_t GLsizeiptr'
 typedef ptrdiff_t GLsizeiptr;

The full buildlog can be found at:
https://buildd.debian.org/status/fetch.php?pkg=qwtplot3d&arch=armel&ver=0.2.7%2Bsvn191-9&stamp=1443154695

I guess I have to compile the package against gles instead of gl on arm but as 
far as I know that is difficult.

Does anyone know a solution to this or shall I exclude arm from the list of 
architectures?

Regards
Gudjon



Bug#801542: kbreakout build-depends on libkdegames-dev (>= 4:14.12.2) which is no longer built.

2015-10-11 Thread peter green

Package: kbreakout
Version: 4:15.08.0-1
Severity: serious
Tags: patch

kbreakout build-depends on libkdegames-dev (>= 4:14.12.2) . libkdegames-dev is 
no longer build by the kdegames source package.

In raspbian stretch simply changing the build-dep to libkf5kdegames-dev 
resulted in a successful build, I assume it will in Debian too.



Bug#801501: libqt5sql5: libQt5 segfault when computer resumes from standby

2015-10-11 Thread Xavier
On 11/10/2015 18:33, Lisandro Damián Nicanor Pérez Meyer wrote:
> Control: tag -1 moreinfo
> 
> On Saturday 10 October 2015 21:33:29 Xavier Guimard wrote: [snip]
> 
> Hi Xavier!
> 
>> When my laptop (MacBook AIr) resumes from standby, KDE crashes if
>> it was opened before standby. No problem when kdm is closed. If
>> session is closed but kdm open, sometimes it works fine,
>> sometimes not. Looking logs, I found each time the following line
>> in kern.log:
>> 
>> [  948.387826] kactivitymanage[1515]: segfault at 7f458c022cd0
>> ip 7f458695f1b1 sp 7ffd92065b18 error 4 in 
>> libQt5Sql.so.5.4.2[7f458694b000+3f000]]
>> 
>> I had a look at #796708, but patch seems not to be compliant
>> with testing/unstable version
> 
> You should probably not use kdm at this point. Please try again
> making sure your system is up to date and with sddm, and see if you
> can reproduce the bug.

Hi Lisandro,

same problem with sddm, but segfault occurs later (more than 1 minute
after resume). I found other logs:  when a KDE session is opened, _and
only in this case_, the screen flashes as soon the computer resumes.
nouveau/kwin seem involved:

Oct 11 23:05:40 mac-debian kernel: [  144.724915] nouveau
E[kwin_x11[1511]] fail set_domain
Oct 11 23:05:40 mac-debian kernel: [  144.724921] nouveau
E[kwin_x11[1511]] validating bo list
Oct 11 23:05:40 mac-debian kernel: [  144.724928] nouveau
E[kwin_x11[1511]] validate: -22
Oct 11 23:05:40 mac-debian kernel: [  144.762168] nouveau
E[kwin_x11[1511]] fail set_domain
Oct 11 23:05:40 mac-debian kernel: [  144.762176] nouveau
E[kwin_x11[1511]] validating bo list
Oct 11 23:05:40 mac-debian kernel: [  144.762183] nouveau
E[kwin_x11[1511]] validate: -22

Each group of 3 lines appears to correspond to a blink.

Note that before upgrade to testing, the computer worked perfectly.

Regards,
Xavier



Bug#800313: marked as done ([dolphin] dolphin ignores services available on /usr/share/kservices5/)

2015-10-11 Thread Debian Bug Tracking System
Your message dated Sun, 11 Oct 2015 21:09:59 +0200
with message-id <561ab407.9020...@gmail.com>
and subject line Done: [dolphin] dolphin ignores services available on 
/usr/share/kservices5/
has caused the Debian Bug report #800313,
regarding [dolphin] dolphin ignores services available on /usr/share/kservices5/
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.)


-- 
800313: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=800313
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---

Package: dolphin
Version: 4:15.08.1-1
Severity: normal

Dear maintainer,

"plasma5" version (4:15.08.1-1) of dolphin ignores services available on 
/usr/share/kservices5/


for example I have ark installed (4:15.08.1-1) and some files are 
present as a service


$ dpkg -L ark | grep kservices
/usr/share/kservices5
/usr/share/kservices5/ServiceMenus
/usr/share/kservices5/ServiceMenus/ark_servicemenu.desktop
/usr/share/kservices5/ServiceMenus/ark_addtoservicemenu.desktop
/usr/share/kservices5/ark_part.desktop
/usr/share/kservices5/kerfuffle_clilha.desktop
/usr/share/kservices5/kerfuffle_libxz.desktop
/usr/share/kservices5/kerfuffle_libbz2.desktop
/usr/share/kservices5/kerfuffle_libgz.desktop
/usr/share/kservices5/kerfuffle_clizip.desktop
/usr/share/kservices5/kerfuffle_cli7z.desktop
/usr/share/kservices5/kerfuffle_clirar.desktop
/usr/share/kservices5/kerfuffle_libarchive_readonly.desktop
/usr/share/kservices5/kerfuffle_libarchive.desktop

but contextual options like "extract here" and "compress to" are missing 
in the options of dolphin filemanager
--- End Message ---
--- Begin Message ---

Package: dolphin

this is a duplicate of bug #800080 and hopefully fixed in KF5.16--- End Message ---


Bug#792594: libqt5qml5 requires SSE2 on i386

2015-10-11 Thread Sune Vuorela
On Saturday 10 October 2015 15:21:19 Guillem Jover wrote:
> > [cla] 
> 
> I've read the CLA, and I don't think I can agree with point §3.1 which
> states:
> 
> «… under license terms of The Qt Company’s choosing including any Open
> Source Software license.»
> 
> Which to me implies an unfair advantage towards “The Qt Company” as


Hi Guillem and others reading along at home.

I fully understand your take against CLA's, and I kind of agree. What still 
made me sign the Qt Project CLA is the fact that there is also the slightly 
less advertised KDE Free Qt Foundation agreement between Trolltech/Nokia/Digia 
and KDE on the other side:

https://www.kde.org/community/whatiskde/kdefreeqtfoundation.php

 - in case Trolltech/Nokia/Digia/... stop developing open source Qt for X11 or 
successors of X11, KDE Free Qt Foundation gets the Qt sources under a specific 
BSD license. (The android code is also under this agreement)

The Qt Company (A Digia subcompany) does also sell commercial licenses of Qt 
to people who can't or won't live up to the lgpl/gpl requirements, and is how 
The Qt Company keeps the 100+ people working on and around Qt.

/Sune
-- 
I didn’t stop pretending when I became an adult, it’s just that when I was a 
kid I was pretending that I fit into the rules and structures of this world. 
And now that I’m an adult, I pretend that those rules and structures exist.
   - zefrank



Bug#792594: libqt5qml5 requires SSE2 on i386

2015-10-11 Thread Lisandro Damián Nicanor Pérez Meyer
Uups! This kind of changes should now go to the 5.6 branch upstream. When I 
tried to apply it to that branch I got:

$ patch -p1 < /tmp/qml-jit-on-sse2.patch 
patching file src/qml/qml/v8/qv8engine.cpp
Hunk #1 FAILED at 58.
Hunk #2 succeeded at 123 (offset 2 lines).
1 out of 2 hunks FAILED -- saving rejects to file 
src/qml/qml/v8/qv8engine.cpp.rej
patching file src/qml/jit/qv4isel_masm.cpp
Hunk #1 succeeded at 259 (offset 61 lines).
patching file src/qml/jsruntime/qv4engine.cpp
Hunk #1 succeeded at 218 (offset 35 lines).
patching file tools/qmljs/qmljs.cpp
patching file src/qml/jit/qv4isel_masm_p.h
Hunk #1 succeeded at 53 (offset 11 lines).
Hunk #2 succeeded at 66 (offset 11 lines).

I looked at src/qml/qml/v8/qv8engine.cpp and changed quite a lot.

I'm afraid I would need to take this into account to be able to upstream this 
patch :-( Can you take a look at it?

JFTR the upstream repo is git://code.qt.io/qt/qtdeclarative.git branch 5.6.

Thanks!

-- 
17: Cual es la funcion inicial de un antivirus
* Desarrollar virus para vender el producto
Damian Nadales
http://mx.grulic.org.ar/lurker/message/20080307.141449.a70fb2fc.es.html

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Re: Bug#792594: libqt5qml5 requires SSE2 on i386

2015-10-11 Thread Lisandro Damián Nicanor Pérez Meyer
On Saturday 10 October 2015 15:21:19 Guillem Jover wrote:
> Hi!
> 
> On Fri, 2015-10-09 at 21:09:32 -0300, Lisandro Damián Nicanor Pérez Meyer 
wrote:
> > Hi Guillem! The patch really looks nice, thanks for it!
> 
> Thanks! I've reworked it a bit, to make it nicer, 

Indeed, and I really appreciate the long description too.

> although I'm not
> sure what are the Qt conventions all around so upstream might not
> entirely like it.

I'll keep you informed in case upstream has something to say.
 
> Even though the cpu check logic is now abstracted, it kind of "leaks"
> through the fatal error message, and upstream might want it protected
> around a Q_PROCESSOR_X86_32 conditional perhaps, or that one
> abstracted as well, dunno.

I can add this as a comment to the patch later.

> > But we really need to
> > upstream this and in order to achieve this we need you to either push it
> > trough Qt's gerrit instance and accept the CLA in the process (*please*
> > read below) or license the patch under a BSD-like license.
> > 
> > CLA: the CLA is available in [cla]. **Please** note that, as stated in the
> > link, you still retain copyright over your contributions.
> > 
> > [cla] 
> 
> I've read the CLA, and I don't think I can agree with point §3.1 which
> states:
> 
> «… under license terms of The Qt Company’s choosing including any Open
> Source Software license.»
> 
> Which to me implies an unfair advantage towards “The Qt Company” as
> they might be able to choose a non-FLOSS license, but not other people
> downloading the code.
>
> So given this I'd rather license the code as
> something like MIT or BSD-3. Which would not remove the unfairness,
> as the bulk of the code is LGPL and they can relicense the entire
> thing but not other people, but at least I'm not participating in it.
 
I do respect your position, but please allow me to say that "unfair" might be 
too much considering they put quite a lot of resources including the 
infrastructure for the whole project, the CI and quite a lot of development 
time.

But as I said, I do respect your position and thank you a lot for still trying 
to help :)

> > BSD: in case you don't want to agree with the CLA you can still put the
> > patch under a BSD-like license. In this case we are able to push the
> > patch upstreams ourselves, but if corrections are needed we need to act
> > as proxies between you and upstream's gerrit instance [cr], thus possibly
> > adding noise to the system.
> Sorry about that, but also having to register into another web site
> seems like a bit of a drag. :)

Believe me that *I do* agree with you in that one ;)
 
> > Finally the patch would need a longer description of it's intended
> > purpose.
> 
> I've expanded on it a bit, let me know if it's not enough. I've also
> retested it, and at least the plasmashell keeps starting and working,
> like with the previous patch.

Fantastic! Thank you a lot Guillem, I'll now push it upstream and see how it 
goes :)

Regards, Lisandro.

-- 
La ciencia sin la religión es renga, la religión sin la ciencia es ciega.
 Albert Einstein

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#801501: libqt5sql5: libQt5 segfault when computer resumes from standby

2015-10-11 Thread Lisandro Damián Nicanor Pérez Meyer
On Sunday 11 October 2015 13:33:07 Lisandro Damián Nicanor Pérez Meyer wrote:
> Control: tag -1 moreinfo
[snip]
> You should probably not use kdm at this point. Please try again making sure
> your system is up to date and with sddm, and see if you can reproduce the
> bug.

If you want to keep using kdm I would also need a backtrace of the crashing 
app. The problem might be the app making libqtsql5 to crash.

-- 
Why should I care about my chatter from yesterday?
Nothing prevents me from becoming wiser.
  Konrad Adenauer, former German chancellor.
  http://lwn.net/SubscriberLink/397422/60a270d48f933c67/

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Bug#801501: libqt5sql5: libQt5 segfault when computer resumes from standby

2015-10-11 Thread Lisandro Damián Nicanor Pérez Meyer
Control: tag -1 moreinfo

On Saturday 10 October 2015 21:33:29 Xavier Guimard wrote:
[snip]

Hi Xavier!

> When my laptop (MacBook AIr) resumes from standby, KDE crashes if it was
> opened before standby. No problem when kdm is closed. If session is
> closed but kdm open, sometimes it works fine, sometimes not.
> Looking logs, I found each time the following line in kern.log:
> 
> [  948.387826] kactivitymanage[1515]: segfault at 7f458c022cd0 ip
> 7f458695f1b1 sp 7ffd92065b18 error 4 in
> libQt5Sql.so.5.4.2[7f458694b000+3f000]]
> 
> I had a look at #796708, but patch seems not to be compliant with
> testing/unstable version

You should probably not use kdm at this point. Please try again making sure 
your system is up to date and with sddm, and see if you can reproduce the bug.


Kinds regards, Lisandro.

-- 
This end should point toward the ground if you want to go to space.
If it starts pointing toward space you are having a bad problem
and you will not get to space today.
  http://xkcd.com/1133/

Lisandro Damián Nicanor Pérez Meyer
http://perezmeyer.com.ar/
http://perezmeyer.blogspot.com/


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


Processed: Re: Bug#801501: libqt5sql5: libQt5 segfault when computer resumes from standby

2015-10-11 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 moreinfo
Bug #801501 [libqt5sql5] libqt5sql5: libQt5 segfault when computer resumes from 
standby
Added tag(s) moreinfo.

-- 
801501: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801501
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Processed: Re: Bug#801501: libqt5sql5: libQt5 segfault when computer resumes from standby

2015-10-11 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 moreinfo
Bug #801501 [libqt5sql5] libqt5sql5: libQt5 segfault when computer resumes from 
standby
Ignoring request to alter tags of bug #801501 to the same tags previously set

-- 
801501: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=801501
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems



Bug#801512: kblackbox build-depends on libkdegames-dev (>= 4:14.12.2) which is no longer built.

2015-10-11 Thread peter green

Package: kblackbox
Version: 4:15.08.0-1
Severity: serious
Tags: patch

kblackbox build-depends on libkdegames-dev (>= 4:14.12.2) . 
libkdegames-dev is no longer build by the kdegames source package.


In raspbian stretch simply changing the build-dep resulted in a 
successful build, I assume it will in Debian too.




Failure: chroot-installation_stretch_install_kde-full_upgrade_to_sid_aptdpkg_first/80

2015-10-11 Thread jenkins
See 
https://jenkins.debian.net/job/chroot-installation_stretch_install_kde-full_upgrade_to_sid_aptdpkg_first/80//console
 or just 
https://jenkins.debian.net/job/chroot-installation_stretch_install_kde-full_upgrade_to_sid_aptdpkg_first/80/
 for more information.

Failure: chroot-installation_stretch_install_kde-full/78

2015-10-11 Thread jenkins
See 
https://jenkins.debian.net/job/chroot-installation_stretch_install_kde-full/78//console
 or just 
https://jenkins.debian.net/job/chroot-installation_stretch_install_kde-full/78/ 
for more information.

Bug#801501: libqt5sql5: libQt5 segfault when computer resumes from standby

2015-10-11 Thread Xavier Guimard
Package: libqt5sql5
Version: 5.4.2+dfsg-9
Severity: normal

Hi all,

When my laptop (MacBook AIr) resumes from standby, KDE crashes if it was
opened before standby. No problem when kdm is closed. If session is
closed but kdm open, sometimes it works fine, sometimes not.
Looking logs, I found each time the following line in kern.log:

[  948.387826] kactivitymanage[1515]: segfault at 7f458c022cd0 ip
7f458695f1b1 sp 7ffd92065b18 error 4 in
libQt5Sql.so.5.4.2[7f458694b000+3f000]]

I had a look at #796708, but patch seems not to be compliant with
testing/unstable version

Best regards,
Xavier

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

Kernel: Linux 4.2.0-1-amd64 (SMP w/2 CPU cores)
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages libqt5sql5 depends on:
ii  libc62.19-22
ii  libqt5core5a [qtbase-abi-5-4-2]  5.4.2+dfsg-9
ii  libstdc++6   5.2.1-21

Versions of packages libqt5sql5 recommends:
ii  libqt5sql5-sqlite  5.4.2+dfsg-9

libqt5sql5 suggests no packages.

-- no debconf information



kcontacts_15.08.0-1_amd64.changes ACCEPTED into experimental, experimental

2015-10-11 Thread Debian FTP Masters


Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA256

Format: 1.8
Date: Tue, 08 Sep 2015 14:56:19 +0200
Source: kcontacts
Binary: libkf5contacts-dev libkf5contacts-data libkf5contacts5 
libkf5contacts-dbg
Architecture: source all amd64
Version: 15.08.0-1
Distribution: experimental
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Maximiliano Curia 
Description:
 libkf5contacts-data - data files for kcontacts
 libkf5contacts-dbg - debug symbols for kcontacts
 libkf5contacts-dev - development files for kcontacts
 libkf5contacts5 - address book API for KDE frameworks
Changes:
 kcontacts (15.08.0-1) experimental; urgency=medium
 .
   * Initial Debian release.
   * Update symbols files.
Checksums-Sha1:
 2f729eec4cb5dcdc17a40fedaa2bde430e856b12 2435 kcontacts_15.08.0-1.dsc
 ee1ad9ab75c9aa158180fd4ac31616486c71ad94 135148 kcontacts_15.08.0.orig.tar.xz
 34e11b07ee580c9a9913f53f2a5bd49a459dbe21 7740 kcontacts_15.08.0-1.debian.tar.xz
 c1e92ee223d11376c0354dd75ed74dcb5df18855 32852 
libkf5contacts-data_15.08.0-1_all.deb
 74b06a3d793f57f0f623f6ae724bb56246c9d764 3012586 
libkf5contacts-dbg_15.08.0-1_amd64.deb
 6bc3f80d8b2a92b6f1c304bf5527cd0e58cdc333 25190 
libkf5contacts-dev_15.08.0-1_amd64.deb
 769450ccf2d353956d4dc2dcb37e048daa349c0e 150674 
libkf5contacts5_15.08.0-1_amd64.deb
Checksums-Sha256:
 e2ea636b3d9b2b7ed5c331be1e743bf378c2447b3e2410cc5a131a28dff8e7f0 2435 
kcontacts_15.08.0-1.dsc
 08743ed1cc1c20c80818d357f55d397e163d2d8f05945c94306291527520a5e8 135148 
kcontacts_15.08.0.orig.tar.xz
 81f73964e5b579d8db839921da436a2f34748c5ddccc66ea130c661f9341e7a6 7740 
kcontacts_15.08.0-1.debian.tar.xz
 f60b7dbb47adb8504142b21e9800745f2c48dd7fc838295617c284880b0b7f8c 32852 
libkf5contacts-data_15.08.0-1_all.deb
 5b471f41110863b06751486b86b1feb690016a69166602973e76ec6d351d62f3 3012586 
libkf5contacts-dbg_15.08.0-1_amd64.deb
 3b928e806d9c49e4584253d2171d55c9f893519f57d91db78092fda606b0a213 25190 
libkf5contacts-dev_15.08.0-1_amd64.deb
 2b640816f23cb87d429b8155444c45c4f4848f659d619ebcc7409fb1e9c214cd 150674 
libkf5contacts5_15.08.0-1_amd64.deb
Files:
 14cbf4af79d61210ecccd51861db26ee 2435 libs optional kcontacts_15.08.0-1.dsc
 6a3f58cf5456203b90b993ea4f71025d 135148 libs optional 
kcontacts_15.08.0.orig.tar.xz
 6f71e4e3865c2329714bc2ed2475deed 7740 libs optional 
kcontacts_15.08.0-1.debian.tar.xz
 867ab9d7cb3a0e3ab78464f703d13031 32852 libs optional 
libkf5contacts-data_15.08.0-1_all.deb
 6f96af50cdf00666b1388cfd01c19701 3012586 debug extra 
libkf5contacts-dbg_15.08.0-1_amd64.deb
 77bbc75d3dc4b0a27bbd5cab1f603cc9 25190 libdevel optional 
libkf5contacts-dev_15.08.0-1_amd64.deb
 4cbc3ce3ce5a470913e63c245017da9d 150674 libs optional 
libkf5contacts5_15.08.0-1_amd64.deb

-BEGIN PGP SIGNATURE-
Version: GnuPG v1

iQIcBAEBCAAGBQJV7ueaAAoJEMcZdpmymyMqXfgP/1Vumhfp6u3a2MRrFkO/7HRQ
yC6ZFgmt/QjPgk6qhpoKnTd281hjSql5XPS6OyvrpRZLZ0lI/HP/1JEQ6+8xPOYq
v/XwU9TG6yg3nc9s56cHqVd4PbLT2jO/gxRpaDLtbXQfz5sDJCWDULRIurPMoUkx
WFmeGwR6z1Uf/vptMbfeAFxtFtQbE2U1dQ2pcmq8IFANCEtoJmKNUXeuuIN9tHfl
G0bdDM/XnVVmU7XdvXkspvvIV1RXTS5j4IRf8nKMwodPVtt/N1lgDYjq5Gew0R/v
hIFHhIA4OaQHZt/20f7JWJlC0CdEZqOGv7YQv9og1u4TZ7piR878DMIaOJ9RVaed
Tdzs3KQsjTxXVkHt/oHCNXI2C4JO+VWW4dE9vxmuLu3sL/XTPDBEOBVV25HliC1e
V3GiQAEBb2ShvLog79IieZmJjZ/2fAVL5mEuRWjD7aagSK2jsjsUpFE1P6uBe6yF
iEUmRpV+GsCQ54eP+Vok89qF/Ohev4GRKak3tnJii5KbQPvyg0WfJAJ3Keay3oJA
Yx0O3QOaV/R6vs4HKCWvngFZoshRs5jiJToHFzq0zIaGpUxiC7y5xWOMXJp7CQJu
m1JshGM2hcabZA/17d2Zk18yiNqjXTF8etXMq/nrXJQM+eelbXtqObk+BiXsYtFX
REgaSOzQQ55WsYYWmjMz
=Z9gJ
-END PGP SIGNATURE-


Thank you for your contribution to Debian.