Processing of calligra_3.1.0+dfsg-3_source.changes

2018-09-05 Thread Debian FTP Masters
calligra_3.1.0+dfsg-3_source.changes uploaded successfully to localhost
along with the files:
  calligra_3.1.0+dfsg-3.dsc
  calligra_3.1.0+dfsg-3.debian.tar.xz
  calligra_3.1.0+dfsg-3_source.buildinfo

Greetings,

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



Bug#907013: marked as done (calligra FTBFS, missing QT includes.)

2018-09-05 Thread Debian Bug Tracking System
Your message dated Wed, 05 Sep 2018 07:04:16 +
with message-id 
and subject line Bug#907013: fixed in calligra 1:3.1.0+dfsg-3
has caused the Debian Bug report #907013,
regarding calligra FTBFS, missing QT includes.
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.)


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

Package: calligra
Version: 3.1.0+dfsg-2
Severity: serious
Tags: patch

Looks like calligra recently started to FTBFS, I first saw this in raspbian but 
it is also happening on the reproducible builds test infrastructure, so it's 
not raspbian specific.

http://buildd.raspbian.org/status/fetch.php?pkg=calligra&arch=armhf&ver=1%3A3.1.0%2Bdfsg-2%2Bb5&stamp=1534965502
https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/calligra.html


/<>/calligra-3.1.0+dfsg/libs/widgets/KoPageLayoutWidget.cpp:157:33: 
error: invalid use of incomplete type 'class QButtonGroup'
  Q_ASSERT(d->orientationGroup->button( layout.orientation ));
  ^~
In file included from 
/usr/include/arm-linux-gnueabihf/qt5/QtWidgets/qradiobutton.h:44,
  from 
/usr/include/arm-linux-gnueabihf/qt5/QtWidgets/QRadioButton:1,
  from 
/<>/calligra-3.1.0+dfsg/obj-arm-linux-gnueabihf/libs/widgets/ui_KoPageLayoutWidget.h:22,
  from 
/<>/calligra-3.1.0+dfsg/libs/widgets/KoPageLayoutWidget.cpp:22:
/usr/include/arm-linux-gnueabihf/qt5/QtWidgets/qabstractbutton.h:53:7: note: 
forward declaration of 'class QButtonGroup'
  class QButtonGroup;


I presume this was triggered by a new version of one or more qt libraries.

The FTBFS can be fixed by explicitly adding includes for the incomplete types.

Debdiff attatched, no intent to NMU.

diff -Nru calligra-3.1.0+dfsg/debian/changelog 
calligra-3.1.0+dfsg/debian/changelog
--- calligra-3.1.0+dfsg/debian/changelog2018-03-09 08:37:57.0 
+
+++ calligra-3.1.0+dfsg/debian/changelog2018-08-22 20:34:52.0 
+
@@ -1,3 +1,9 @@
+calligra (1:3.1.0+dfsg-2+rpi1) buster-staging; urgency=medium
+
+  * Add missing qt includes.
+
+ -- Peter Michael Green   Wed, 22 Aug 2018 20:34:52 
+
+
 calligra (1:3.1.0+dfsg-2) unstable; urgency=medium
 
   * Team upload.
diff -Nru calligra-3.1.0+dfsg/debian/patches/add-missing-includes.patch 
calligra-3.1.0+dfsg/debian/patches/add-missing-includes.patch
--- calligra-3.1.0+dfsg/debian/patches/add-missing-includes.patch   
1970-01-01 00:00:00.0 +
+++ calligra-3.1.0+dfsg/debian/patches/add-missing-includes.patch   
2018-08-22 20:34:52.0 +
@@ -0,0 +1,102 @@
+Description:  Add missing qt includes.
+Author: Peter Michael Green 
+Last-Update: 2018-08-22
+
+Index: calligra-3.1.0+dfsg/libs/widgets/KoPageLayoutWidget.cpp
+===
+--- calligra-3.1.0+dfsg.orig/libs/widgets/KoPageLayoutWidget.cpp
 calligra-3.1.0+dfsg/libs/widgets/KoPageLayoutWidget.cpp
+@@ -22,6 +22,7 @@
+ #include 
+ 
+ #include 
++#include 
+ 
+ class Q_DECL_HIDDEN KoPageLayoutWidget::Private
+ {
+Index: calligra-3.1.0+dfsg/libs/widgets/KoCsvImportDialog.cpp
+===
+--- calligra-3.1.0+dfsg.orig/libs/widgets/KoCsvImportDialog.cpp
 calligra-3.1.0+dfsg/libs/widgets/KoCsvImportDialog.cpp
+@@ -37,6 +37,8 @@
+ 
+ #include "ui_KoCsvImportDialog.h"
+ 
++#include 
++
+ class KoCsvImportWidget : public QWidget, public Ui::KoCsvImportWidget
+ {
+ Q_OBJECT
+Index: calligra-3.1.0+dfsg/plugins/chartshape/dialogs/TableEditorDialog.cpp
+===
+--- calligra-3.1.0+dfsg.orig/plugins/chartshape/dialogs/TableEditorDialog.cpp
 calligra-3.1.0+dfsg/plugins/chartshape/dialogs/TableEditorDialog.cpp
+@@ -33,6 +33,7 @@
+ #include "ChartTableView.h"
+ #include "ChartDebug.h"
+ 
++#include 
+ 
+ using namespace KoChart;
+ 
+Index: calligra-3.1.0+dfsg/words/part/dialogs/KWRunAroundProperties.cpp
+===
+--- calligra-3.1.0+dfsg.orig/words/part/dialogs/KWRunAroundProperties.cpp
 calligra-3.1.0+dfsg/words/part/dialogs/KWRunAroundProperties.cpp
+@@ -28,6 +28,8 @@
+ 
+ #include 
+ 
++#include 
++
+ KWRunAroundProperties::KWRunAroundProperties(FrameConfigSharedState *state)
+ : m_state(state)
+ {
+Index: calligra-3.1.0+dfsg/words/part/dialogs/KWAnchoringProperties.cpp
+===
+--- calligr

calligra_3.1.0+dfsg-3_source.changes ACCEPTED into unstable

2018-09-05 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Wed, 05 Sep 2018 08:39:20 +0200
Source: calligra
Binary: calligra karbon calligra-reports-web-element calligrasheets 
calligrasheets-data calligrawords calligrawords-data calligrastage 
calligrastage-data calligra-libs calligra-data okular-backend-odp 
okular-backend-odt calligra-gemini calligra-gemini-data calligra-l10n-bs 
calligra-l10n-ca calligra-l10n-cavalencia calligra-l10n-cs calligra-l10n-da 
calligra-l10n-de calligra-l10n-el calligra-l10n-engb calligra-l10n-es 
calligra-l10n-et calligra-l10n-fi calligra-l10n-fr calligra-l10n-gl 
calligra-l10n-hu calligra-l10n-it calligra-l10n-ja calligra-l10n-kk 
calligra-l10n-nb calligra-l10n-nl calligra-l10n-pl calligra-l10n-pt 
calligra-l10n-ptbr calligra-l10n-ru calligra-l10n-sk calligra-l10n-sv 
calligra-l10n-tr calligra-l10n-uk calligra-l10n-zhcn calligra-l10n-zhtw
Architecture: source
Version: 1:3.1.0+dfsg-3
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Description:
 calligra   - extensive productivity and creative suite
 calligra-data - common shared data for the Calligra Suite
 calligra-gemini - unified interface for stage and words
 calligra-gemini-data - Calligra Gemini - data files
 calligra-l10n-bs - dummy empty package
 calligra-l10n-ca - dummy empty package
 calligra-l10n-cavalencia - dummy empty package
 calligra-l10n-cs - dummy empty package
 calligra-l10n-da - dummy empty package
 calligra-l10n-de - dummy empty package
 calligra-l10n-el - dummy empty package
 calligra-l10n-engb - dummy empty package
 calligra-l10n-es - dummy empty package
 calligra-l10n-et - dummy empty package
 calligra-l10n-fi - dummy empty package
 calligra-l10n-fr - dummy empty package
 calligra-l10n-gl - dummy empty package
 calligra-l10n-hu - dummy empty package
 calligra-l10n-it - dummy empty package
 calligra-l10n-ja - dummy empty package
 calligra-l10n-kk - dummy empty package
 calligra-l10n-nb - dummy empty package
 calligra-l10n-nl - dummy empty package
 calligra-l10n-pl - dummy empty package
 calligra-l10n-pt - dummy empty package
 calligra-l10n-ptbr - dummy empty package
 calligra-l10n-ru - dummy empty package
 calligra-l10n-sk - dummy empty package
 calligra-l10n-sv - dummy empty package
 calligra-l10n-tr - dummy empty package
 calligra-l10n-uk - dummy empty package
 calligra-l10n-zhcn - dummy empty package
 calligra-l10n-zhtw - dummy empty package
 calligra-libs - common libraries and binaries for the Calligra Suite
 calligra-reports-web-element - transitional dummy package for 
libkreport3-plugin-web
 calligrasheets - spreadsheet for the Calligra Suite
 calligrasheets-data - data files for Sheets spreadsheet
 calligrastage - presentation program for the Calligra Suite
 calligrastage-data - data files for Calligra Stage
 calligrawords - word processor for the Calligra Suite
 calligrawords-data - data files for Words word processor
 karbon - vector graphics application for the Calligra Suite
 okular-backend-odp - Okular backend for ODP documents
 okular-backend-odt - Okular backend for ODT documents
Closes: 907013
Changes:
 calligra (1:3.1.0+dfsg-3) unstable; urgency=medium
 .
   * Team upload.
   * Update Vcs-* fields.
   * Bump Standards-Version to 4.2.1, no changes required.
   * Update few things in README.source.
   * Backport upstream commits a7ebecb9fbee2190e649c44ed53f1299013baa30, and
 ee83e0f2c251072e47a2799619cdc79efe67e651 to fix build with Qt >= 5.11;
 patches upstream_Fix-build-with-Qt-5.11-missing-headers.patch, and
 upstream_Fix-compilation-with-Qt-5.11-missing-include.patch.
 (Closes: #907013)
Checksums-Sha1:
 e83d7dd1d2b5e975d159aca25c6536a4cd22eb32 6671 calligra_3.1.0+dfsg-3.dsc
 94a2faad8811502f180d75c93e4059a84993240a 38144 
calligra_3.1.0+dfsg-3.debian.tar.xz
 91ef71b013b4b546194046ce22f47ff393580e20 27003 
calligra_3.1.0+dfsg-3_source.buildinfo
Checksums-Sha256:
 67bb11899b18a8905f2f08305276e52589f160ebf4981af4e7d2378f4196c233 6671 
calligra_3.1.0+dfsg-3.dsc
 6f2ec69d1abcf2085a7704e1d8589a88564b521198345a3bb7255c1fed3a8c92 38144 
calligra_3.1.0+dfsg-3.debian.tar.xz
 cb44840ccc35caccb5ea1caf71b3a3ae42a5386137891096191d15b30d3d07b1 27003 
calligra_3.1.0+dfsg-3_source.buildinfo
Files:
 f70ffbd37e89fa0d251d604ef57d4604 6671 kde optional calligra_3.1.0+dfsg-3.dsc
 41611ae0965ba253dc72aa58cca37f20 38144 kde optional 
calligra_3.1.0+dfsg-3.debian.tar.xz
 ffcfe404b5f5e3e0c93c24769e842193 27003 kde optional 
calligra_3.1.0+dfsg-3_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAluPel0ACgkQLRkciEOx
P02B/RAAn5rR5USFeHNj5gfrAYyjipw8JYOHdM7XBzYU0qib5Ve45j2nmTIfXboI
cfcChd7xwYMWjxzvLjJPD+SLXqlPg2e7RfMEN6SaSbwbCb1fI8u2SzxGTIjbxoyk
w8t/oKCjDF0uwofn1XgGDfou3yle1PIrZnOL9H7XG/3XLXSfoRD2BJql6Xwfpet/
tytJEWaTXTrkUTMQyg5kf/GIM7VQXLtEmUVo8PkSy53qOc5RHw6Xrq8RkaqoJF0E
IEesfDe25mEMbYaUBpbPDa+3dn8QKYkvFna7GDXK3vjF+bp2j4GvT1JHpHV7wyRY
FeVBGzxSoLMTh1BtdTPoWdeUZMpyQ2sPxEmx

Bug#908035: libkpimpkpass5: fails to upgrade from 'sid' - trying to overwrite /usr/share/mime/packages/application-vnd-apple-pkpass.xml

2018-09-05 Thread Andreas Beckmann
Package: libkpimpkpass5
Version: 18.07.90-1
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'sid' to 'experimental'.
It installed fine in 'sid', then the upgrade to 'experimental' fails
because it tries to overwrite other packages files without declaring a
Breaks+Replaces relation.

See policy 7.6 at
https://www.debian.org/doc/debian-policy/#overwriting-files-and-replacing-packages-replaces

>From the attached log (scroll to the bottom...):

  Preparing to unpack .../libkpimpkpass5_18.07.90-1_amd64.deb ...
  Unpacking libkpimpkpass5:amd64 (18.07.90-1) ...
  dpkg: error processing archive 
/var/cache/apt/archives/libkpimpkpass5_18.07.90-1_amd64.deb (--unpack):
   trying to overwrite 
'/usr/share/mime/packages/application-vnd-apple-pkpass.xml', which is also in 
package kdepim-addons:amd64 17.12.3-2
  Errors were encountered while processing:
   /var/cache/apt/archives/libkpimpkpass5_18.07.90-1_amd64.deb


cheers,

Andreas


kdepim-addons=17.12.3-2_libkpimpkpass5=18.07.90-1.log.gz
Description: application/gzip


Bug#908043: plasma-desktop: Plasma-desktop loads with black screen

2018-09-05 Thread MH
Package: plasma-desktop
Version: 4:5.8.6-1
Severity: grave
Justification: renders package unusable

Dear Maintainer,

When PC is connected to AVR via HDMI, plasma-desktop loads with a black screen. 
Apparently, it queries the EDID of the connected TV, which is 4k. Previously,
SDDM did the same thing. The AVR is limited to 1920x1080 input. Creating an 
xorg.conf file using NVidia Settings solve the issue for SDDM, but that file
seems to be ignored by plasma-desktop. The desktop still responds to keyboard
input, but is otherwise unusable. This situation also exists under Buster.

IMO the problem is not with the AVR, which needs to passthrough EDID so
monitors with lesser resolutions are correctly detected. Plasma-desktop
should not requery for EDID but should accept the same settings as SDDM.
Or maybe this is an issue with Xserver?

-- System Information:
Debian Release: 9.5
  APT prefers stable-updates
  APT policy: (500, 'stable-updates'), (500, 'stable')
Architecture: amd64 (x86_64)

Kernel: Linux 4.9.0-8-amd64 (SMP w/4 CPU cores)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages plasma-desktop depends on:
ii  breeze   4:5.8.5-2
ii  kactivitymanagerd5.8.4-1
ii  kde-cli-tools4:5.8.4-2
ii  kded55.28.0-1
ii  kio  5.28.0-2
ii  libc62.24-11+deb9u3
ii  libcanberra0 0.30-3
ii  libfontconfig1   2.11.0-6.7+b1
ii  libgcc1  1:6.3.0-18+deb9u1
ii  libkf5activities55.28.0-1
ii  libkf5activitiesstats1   5.28.0-1
ii  libkf5archive5   5.28.0-2
ii  libkf5auth5  5.28.0-2
ii  libkf5baloo5 5.28.0-2
ii  libkf5bookmarks5 5.28.0-1
ii  libkf5codecs55.28.0-1+b2
ii  libkf5completion55.28.0-1
ii  libkf5configcore55.28.0-2
ii  libkf5configgui5 5.28.0-2
ii  libkf5configwidgets5 5.28.0-2
ii  libkf5coreaddons55.28.0-2
ii  libkf5dbusaddons55.28.0-1
ii  libkf5emoticons-bin  5.28.0-1
ii  libkf5emoticons5 5.28.0-1
ii  libkf5globalaccel5   5.28.0-1
ii  libkf5guiaddons5 5.28.0-1
ii  libkf5i18n5  5.28.0-2
ii  libkf5iconthemes55.28.0-2
ii  libkf5itemmodels55.28.0-2
ii  libkf5itemviews5 5.28.0-1
ii  libkf5jobwidgets55.28.0-2
ii  libkf5kcmutils5  5.28.0-2
ii  libkf5kdelibs4support5   5.28.0-1
ii  libkf5kiocore5   5.28.0-2
ii  libkf5kiofilewidgets55.28.0-2
ii  libkf5kiowidgets55.28.0-2
ii  libkf5newstuff5  5.28.0-1
ii  libkf5notifications5 5.28.0-1
ii  libkf5notifyconfig5  5.28.0-1
ii  libkf5parts5 5.28.0-1
ii  libkf5people55.28.0-1
ii  libkf5peoplewidgets5 5.28.0-1
ii  libkf5plasma55.28.0-2
ii  libkf5plasmaquick5   5.28.0-2
ii  libkf5quickaddons5   5.28.0-1
ii  libkf5runner55.28.0-1
ii  libkf5service-bin5.28.0-1
ii  libkf5service5   5.28.0-1
ii  libkf5solid5 5.28.0-3
ii  libkf5sonnetui5  5.28.0-2
ii  libkf5wallet-bin 5.28.0-3
ii  libkf5wallet55.28.0-3
ii  libkf5widgetsaddons5 5.28.0-3
ii  libkf5windowsystem5  5.28.0-2
ii  libkf5xmlgui55.28.0-1
ii  libkfontinst54:5.8.6-1
ii  libkfontinstui5  4:5.8.6-1
ii  libkworkspace5-5 4:5.8.6-2.1+deb9u1
ii  libpackagekitqt5-0   0.9.6-1
ii  libphonon4qt5-4  4:4.9.0-4
ii  libpulse-mainloop-glib0  10.0-1+deb9u1
ii  libpulse010.0-1+deb9u1
ii  libqt5concurrent55.7.1+dfsg-3+b1
ii  libqt5core5a 5.7.1+dfsg-3+b1
ii  libqt5dbus5  5.7.1+dfsg-3+b1
ii  libqt5gui5   5.7.1+dfsg-3+b1
ii  libqt5network5   5.7.1+dfsg-3+b1
ii  libqt5printsupport5

Re: Bug#908043: plasma-desktop: Plasma-desktop loads with black screen

2018-09-05 Thread Martin Steigerwald
severity 908043 important
tags 908043 upstream
thanks

Dear MH.

This looks like an upstream bug. I recommend you report this to  
upstream bugtracker¹ in case not already done so. Please report back the 
link to the upstream bug report. By doing so you help the small Debian 
Qt/KDE team.


Severity of this bug is in no way grave as what you reported only 
happens in a special use case, while the package just works fine for the 
majority of users. It may be grave to you, but that is not what is meant 
with "grave" severity in Debian. Instead this is what bug severity 
"important" is for².

[1] https://bugs.kde.org

[2] see https://www.debian.org/Bugs/Developer#severities
(especially description for "important")

Thanks,
Martin

MH - 05.09.18, 14:58:
> Package: plasma-desktop
> Version: 4:5.8.6-1
> Severity: grave
> Justification: renders package unusable
> 
> Dear Maintainer,
> 
> When PC is connected to AVR via HDMI, plasma-desktop loads with a
> black screen. Apparently, it queries the EDID of the connected TV,
> which is 4k. Previously, SDDM did the same thing. The AVR is limited
> to 1920x1080 input. Creating an xorg.conf file using NVidia Settings
> solve the issue for SDDM, but that file seems to be ignored by
> plasma-desktop. The desktop still responds to keyboard input, but is
> otherwise unusable. This situation also exists under Buster.
> 
> IMO the problem is not with the AVR, which needs to passthrough EDID
> so monitors with lesser resolutions are correctly detected.
> Plasma-desktop should not requery for EDID but should accept the same
> settings as SDDM. Or maybe this is an issue with Xserver?
> 
> -- System Information:
> Debian Release: 9.5
>   APT prefers stable-updates
>   APT policy: (500, 'stable-updates'), (500, 'stable')
> Architecture: amd64 (x86_64)
> 
> Kernel: Linux 4.9.0-8-amd64 (SMP w/4 CPU cores)
> Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8),
> LANGUAGE=en_US:en (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash
> Init: systemd (via /run/systemd/system)
> 
> Versions of packages plasma-desktop depends on:
> ii  breeze   4:5.8.5-2
> ii  kactivitymanagerd5.8.4-1
> ii  kde-cli-tools4:5.8.4-2
> ii  kded55.28.0-1
> ii  kio  5.28.0-2
> ii  libc62.24-11+deb9u3
> ii  libcanberra0 0.30-3
> ii  libfontconfig1   2.11.0-6.7+b1
> ii  libgcc1  1:6.3.0-18+deb9u1
> ii  libkf5activities55.28.0-1
> ii  libkf5activitiesstats1   5.28.0-1
> ii  libkf5archive5   5.28.0-2
> ii  libkf5auth5  5.28.0-2
> ii  libkf5baloo5 5.28.0-2
> ii  libkf5bookmarks5 5.28.0-1
> ii  libkf5codecs55.28.0-1+b2
> ii  libkf5completion55.28.0-1
> ii  libkf5configcore55.28.0-2
> ii  libkf5configgui5 5.28.0-2
> ii  libkf5configwidgets5 5.28.0-2
> ii  libkf5coreaddons55.28.0-2
> ii  libkf5dbusaddons55.28.0-1
> ii  libkf5emoticons-bin  5.28.0-1
> ii  libkf5emoticons5 5.28.0-1
> ii  libkf5globalaccel5   5.28.0-1
> ii  libkf5guiaddons5 5.28.0-1
> ii  libkf5i18n5  5.28.0-2
> ii  libkf5iconthemes55.28.0-2
> ii  libkf5itemmodels55.28.0-2
> ii  libkf5itemviews5 5.28.0-1
> ii  libkf5jobwidgets55.28.0-2
> ii  libkf5kcmutils5  5.28.0-2
> ii  libkf5kdelibs4support5   5.28.0-1
> ii  libkf5kiocore5   5.28.0-2
> ii  libkf5kiofilewidgets55.28.0-2
> ii  libkf5kiowidgets55.28.0-2
> ii  libkf5newstuff5  5.28.0-1
> ii  libkf5notifications5 5.28.0-1
> ii  libkf5notifyconfig5  5.28.0-1
> ii  libkf5parts5 5.28.0-1
> ii  libkf5people55.28.0-1
> ii  libkf5peoplewidgets5 5.28.0-1
> ii  libkf5plasma55.28.0-2
> ii  libkf5plasmaquick5   5.28.0-2
> ii  libkf5quickaddons5   5.28.0-1
> ii  libkf5runner55.28.0-1
> ii  libkf5service-bin5.28.0-1
> ii  libkf5service5   5.28.0-1
> ii  libkf5solid5 5.28.0-3
> ii  libkf5sonnetui5  5.28.0-2
> ii  libkf5wallet-bin 5.28.0-3
> ii  libkf5wallet5  

Processed: Re: Bug#908043: plasma-desktop: Plasma-desktop loads with black screen

2018-09-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 908043 important
Bug #908043 [plasma-desktop] plasma-desktop: Plasma-desktop loads with black 
screen
Severity set to 'important' from 'grave'
> tags 908043 upstream
Bug #908043 [plasma-desktop] plasma-desktop: Plasma-desktop loads with black 
screen
Added tag(s) upstream.
> thanks
Stopping processing here.

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



Processed: bug 900997 is forwarded to https://bugs.kde.org/show_bug.cgi?id=397125

2018-09-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> forwarded 900997 https://bugs.kde.org/show_bug.cgi?id=397125
Bug #900997 [print-manager] [print-manager] sends password to remote cups server
Set Bug forwarded-to-address to 'https://bugs.kde.org/show_bug.cgi?id=397125'.
> thanks
Stopping processing here.

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



Processed: Re: kwayland: flaky autopkgtest: kwayland-testPlasmaWindowModel Exception: SIGPIPE

2018-09-05 Thread Debian Bug Tracking System
Processing control commands:

> reassign -1 src:kwayland 4:5.47.0-1
Bug #903314 [src:plasma-framework] kwayland: flaky autopkgtest: 
kwayland-testPlasmaWindowModel Exception: SIGPIPE
Bug reassigned from package 'src:plasma-framework' to 'src:kwayland'.
No longer marked as found in versions plasma-framework/4:5.47.0-1.
Ignoring request to alter fixed versions of bug #903314 to the same values 
previously set
Bug #903314 [src:kwayland] kwayland: flaky autopkgtest: 
kwayland-testPlasmaWindowModel Exception: SIGPIPE
Marked as found in versions kwayland/4:5.47.0-1.

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



Bug#903314: kwayland: flaky autopkgtest: kwayland-testPlasmaWindowModel Exception: SIGPIPE

2018-09-05 Thread Paul Gevers
Control: reassign -1 src:kwayland 4:5.47.0-1

On Sun, 8 Jul 2018 20:13:14 +0200 Paul Gevers  wrote:
> Source: plasma-framework

This was obviously wrong. Reassigning to the right package.

Paul



signature.asc
Description: OpenPGP digital signature


Bug#908079: Buster: No window title bars in KDE?

2018-09-05 Thread local10
Package: kde-standard   
Version: 5:102

Am experiencing a weird issue in KDE after installing kde-standard package: all 
apps I tried (e.g. Konsole, Konqueror, Firefox) open and their windows do not 
have title bars. Thus, there is no (obvious) way to maximize, minimize, move, 
resize or even close the window.

Tried LXDE and LXQT, both work work as expected, with properly working widows, 
etc.

Any ideas? Thanks



Bug#908084: Please use different names for the Wayland and Xorg session

2018-09-05 Thread Michael Biebl
Package: plasma-workspace-wayland
Version: 4:5.13.4-1
Severity: normal

Hi,

/usr/share/wayland-sessions/plasmawayland.desktop
and
/usr/share/xsessions/plasma.desktop

both contain

Name=Plasma
Comment=Plasma by KDE

When using a display manager like gdm, which shows both X and Wayland
sessions, you are not able to distinguish the two Plasma sessions.

Please consider using a different name (like "Plasma on Wayland") for
the wayland session.





-- System Information:
Debian Release: buster/sid
  APT prefers unstable
  APT policy: (500, 'unstable'), (500, 'stable'), (200, 'experimental')
Architecture: amd64 (x86_64)
Foreign Architectures: i386

Kernel: Linux 4.9.0-7-amd64 (SMP w/4 CPU cores)
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), 
LANGUAGE=de_DE.UTF-8 (charmap=UTF-8)
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)

Versions of packages plasma-workspace-wayland depends on:
ii  kwayland-integration  5.13.4-1
ii  kwin-wayland  4:5.13.4-1
ii  plasma-workspace  4:5.13.4-1
ii  qtwayland55.11.1-2

plasma-workspace-wayland recommends no packages.

plasma-workspace-wayland suggests no packages.

-- no debconf information

-- debsums errors found:
debsums: changed file /usr/share/wayland-sessions/plasmawayland.desktop (from 
plasma-workspace-wayland package)



Processed: severity 908079 important

2018-09-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> severity 908079 important
Bug #908079 [kde-standard] Buster: No window title bars in KDE?
Severity set to 'important' from 'normal'
>
End of message, stopping processing here.

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



Bug#908095: Buster: Kwrite crashes while opening a file

2018-09-05 Thread local10
Package: kwrite 
Version: 4:18.04.0-1
Severity: important

Kwrite crashes while opening a file, kwrite was able to open this file in 
Wheezy consistently without any issues.

Thanks


Executable: kwrite PID: 9355 Signal: Segmentation fault (11) Time: 9/6/18 
01:31:20

Application: KWrite (kwrite), signal: Segmentation fault
Using host libthread_db library "/lib/x86_64-linux-gnu/libthread_db.so.1".
[Current thread is 1 (Thread 0x7f16e4810500 (LWP 9355))]

Thread 5 (Thread 0x7f16da747700 (LWP 9359)):
#0  0x7f16e9f7be6c in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#1  0x7f16db60a90b in ?? () from /usr/lib/x86_64-linux-gnu/dri/r600_dri.so
#2  0x7f16db60a637 in ?? () from /usr/lib/x86_64-linux-gnu/dri/r600_dri.so
#3  0x7f16e9f75f2a in start_thread () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#4  0x7f16eb7e0edf in clone () from /lib/x86_64-linux-gnu/libc.so.6

Thread 4 (Thread 0x7f16db089700 (LWP 9358)):
#0  0x7f16e9f7be6c in pthread_cond_wait@@GLIBC_2.3.2 () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#1  0x7f16db60a90b in ?? () from /usr/lib/x86_64-linux-gnu/dri/r600_dri.so
#2  0x7f16db60a637 in ?? () from /usr/lib/x86_64-linux-gnu/dri/r600_dri.so
#3  0x7f16e9f75f2a in start_thread () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#4  0x7f16eb7e0edf in clone () from /lib/x86_64-linux-gnu/libc.so.6

Thread 3 (Thread 0x7f16e21f6700 (LWP 9357)):
#0  0x7f16eb7d6739 in poll () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7f16e8c22439 in ?? () from /lib/x86_64-linux-gnu/libglib-2.0.so.0
#2  0x7f16e8c2254c in g_main_context_iteration () from 
/lib/x86_64-linux-gnu/libglib-2.0.so.0
#3  0x7f16ebce623b in 
QEventDispatcherGlib::processEvents(QFlags) () 
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#4  0x7f16ebc9324b in 
QEventLoop::exec(QFlags) () from 
/lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f16ebae2176 in QThread::exec() () from 
/lib/x86_64-linux-gnu/libQt5Core.so.5
#6  0x7f16ea4ed545 in ?? () from /lib/x86_64-linux-gnu/libQt5DBus.so.5
#7  0x7f16ebaebd47 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#8  0x7f16e9f75f2a in start_thread () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#9  0x7f16eb7e0edf in clone () from /lib/x86_64-linux-gnu/libc.so.6

Thread 2 (Thread 0x7f16e315e700 (LWP 9356)):
#0  0x7f16eb7d6739 in poll () from /lib/x86_64-linux-gnu/libc.so.6
#1  0x7f16e7a43cf7 in ?? () from /lib/x86_64-linux-gnu/libxcb.so.1
#2  0x7f16e7a4590a in xcb_wait_for_event () from 
/lib/x86_64-linux-gnu/libxcb.so.1
#3  0x7f16e4528159 in ?? () from /lib/x86_64-linux-gnu/libQt5XcbQpa.so.5
#4  0x7f16ebaebd47 in ?? () from /lib/x86_64-linux-gnu/libQt5Core.so.5
#5  0x7f16e9f75f2a in start_thread () from 
/lib/x86_64-linux-gnu/libpthread.so.0
#6  0x7f16eb7e0edf in clone () from /lib/x86_64-linux-gnu/libc.so.6

Thread 1 (Thread 0x7f16e4810500 (LWP 9355)):
[KCrash Handler]
#6  0x7f16ec106376 in ?? () from /lib/x86_64-linux-gnu/libQt5Gui.so.5
#7  0x7f16ec10f05f in QTextEngine::itemize() const () from 
/lib/x86_64-linux-gnu/libQt5Gui.so.5
#8  0x7f16ec11799c in QTextLayout::beginLayout() () from 
/lib/x86_64-linux-gnu/libQt5Gui.so.5
#9  0x7f16ed14e3c6 in ?? () from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#10 0x7f16ed153881 in ?? () from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#11 0x7f16ed154b21 in ?? () from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#12 0x7f16ed19af2a in ?? () from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#13 0x7f16ed19b214 in ?? () from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#14 0x7f16ed185196 in KTextEditor::ViewPrivate::updateView(bool) () from 
/lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#15 0x7f16ed0f772c in KTextEditor::DocumentPrivate::updateConfig() () from 
/lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#16 0x7f16ed1d9dbd in KateDocumentConfig::updateConfig() () from 
/lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#17 0x7f16ed1d372b in KateDocumentConfig::setEncoding(QString const&) () 
from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#18 0x7f16ed112afe in KateBuffer::openFile(QString const&, bool) () from 
/lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#19 0x7f16ed109e2f in KTextEditor::DocumentPrivate::openFile() () from 
/lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#20 0x7f16ecf5da21 in ?? () from /lib/x86_64-linux-gnu/libKF5Parts.so.5
#21 0x7f16ecf5e9b6 in KParts::ReadOnlyPart::openUrl(QUrl const&) () from 
/lib/x86_64-linux-gnu/libKF5Parts.so.5
#22 0x7f16ed0fe4d1 in KTextEditor::DocumentPrivate::openUrl(QUrl const&) () 
from /lib/x86_64-linux-gnu/libKF5TextEditor.so.5
#23 0x5590a44f0dea in ?? ()
#24 0x5590a44f3148 in ?? ()
#25 0x5590a44f32e2 in ?? ()
#26 0x7f16ebcbd7bb in QMetaObject::activate(QObject*, int, int, void**) () 
from /lib/x86_64-linux-gnu/libQt5Core.so.5
#27 0x7f16ec5e6ef2 in QAction::triggered(bool) () from 
/lib/x86_64-linux-gn

Processed: reassign 908079 kde-plasma-desktop 5:102

2018-09-05 Thread Debian Bug Tracking System
Processing commands for cont...@bugs.debian.org:

> reassign 908079 kde-plasma-desktop 5:102
Bug #908079 [kde-standard] Buster: No window title bars in KDE?
Bug reassigned from package 'kde-standard' to 'kde-plasma-desktop'.
No longer marked as found in versions meta-kde/5:102.
Ignoring request to alter fixed versions of bug #908079 to the same values 
previously set
Bug #908079 [kde-plasma-desktop] Buster: No window title bars in KDE?
Marked as found in versions meta-kde/5:102.
> severity 908079 important
Bug #908079 [kde-plasma-desktop] Buster: No window title bars in KDE?
Ignoring request to change severity of Bug 908079 to the same value.
>
End of message, stopping processing here.

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



Bug#897385: marked as done (Existence of Dropbox plugin is not documented)

2018-09-05 Thread Debian Bug Tracking System
Your message dated Thu, 06 Sep 2018 06:19:37 +
with message-id 
and subject line Bug#897385: fixed in dolphin-plugins 4:18.08.0-1
has caused the Debian Bug report #897385,
regarding Existence of Dropbox plugin is not documented
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.)


-- 
897385: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=897385
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: src:dolphin-plugins
Version: 4:18.04.0-1
Severity: minor

Dear maintainers,

The dolphin-plugins package provides a Dropbox integration plugin[1],
which works well but isn't documented in e.g. the package description.
This makes it fairly difficult to find.

Because Dropbox is not technically a VCS, perhaps it would also make
sense to split it into a separate package for better searchability.

Best,
James

[1]: https://packages.debian.org/sid/amd64/dolphin-plugins/filelist
--- End Message ---
--- Begin Message ---
Source: dolphin-plugins
Source-Version: 4:18.08.0-1

We believe that the bug you reported is fixed in the latest version of
dolphin-plugins, 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 897...@bugs.debian.org,
and the maintainer will reopen the bug report if appropriate.

Debian distribution maintenance software
pp.
Pino Toscano  (supplier of updated dolphin-plugins 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: SHA512

Format: 1.8
Date: Thu, 06 Sep 2018 07:59:30 +0200
Source: dolphin-plugins
Binary: dolphin-plugins kdesdk-dolphin-plugins
Architecture: source
Version: 4:18.08.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Description:
 dolphin-plugins - plugins for Dolphin
 kdesdk-dolphin-plugins - transitional dummy package for dolphin-plugins
Closes: 897385
Changes:
 dolphin-plugins (4:18.08.0-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Pino Toscano ]
   * New upstream release.
   * Improve the description, so non VCS plugins (like Dropbox, the only one)
 are mentioned too. (Closes: #897385)
   * Bump the libdolphinvcs-dev build dependency to >= 4:18.08.0~, to be sure
 to use the latest dolphin.
   * Remove empty line at the end of changelog.
   * Bump Standards-Version to 4.2.1, no changes required.
 .
   [ Sandro Knauß ]
   * New upstream release (18.04.1).
Checksums-Sha1:
 ad9816e6c9754151498b3e6820ab7d8c29e9b1d5 2755 dolphin-plugins_18.08.0-1.dsc
 ad39f557b4d30e07fac04c541ee7506545c4cd9a 193080 
dolphin-plugins_18.08.0.orig.tar.xz
 ecba5144bf19767fb348ccf65cd8e8c5c13ab9bd 774 
dolphin-plugins_18.08.0.orig.tar.xz.asc
 b4792648d500e84efe2246bb8ee06543eadaa7fb 9628 
dolphin-plugins_18.08.0-1.debian.tar.xz
 c713f3f3e73f71c13de48471da3a54993dc93d25 22717 
dolphin-plugins_18.08.0-1_source.buildinfo
Checksums-Sha256:
 0735f436ded3d0804c843a6e79b5075f042610678aa8fd3d2f60d62429e0174b 2755 
dolphin-plugins_18.08.0-1.dsc
 3bea72ffe16aac221e2ffa2f91c910b78912dca557aba4866204aa3ed85c26c9 193080 
dolphin-plugins_18.08.0.orig.tar.xz
 300181f73c276003b9a60de80880e2d6177a295b5dde50a5aaa2a03d84c2acfa 774 
dolphin-plugins_18.08.0.orig.tar.xz.asc
 beb0a20118374d384a60ec9fb53848acca097b7354b66432ce3f68e90fd7b9dc 9628 
dolphin-plugins_18.08.0-1.debian.tar.xz
 20d43cd2509abbb37d7123778059654f1fbc688a5a4acc33e4a02357a8d1d70b 22717 
dolphin-plugins_18.08.0-1_source.buildinfo
Files:
 5d46a15b57393a63f4690fb3d0166875 2755 kde optional 
dolphin-plugins_18.08.0-1.dsc
 898477ec482c80eeda7784fd57bf1fe4 193080 kde optional 
dolphin-plugins_18.08.0.orig.tar.xz
 3b1628bae34ed41e99b6e870661e6242 774 kde optional 
dolphin-plugins_18.08.0.orig.tar.xz.asc
 d9d27bd2ab287d844b83797442cc4350 9628 kde optional 
dolphin-plugins_18.08.0-1.debian.tar.xz
 0b3e8e978b97414b185bb76e1cd54b0d 22717 kde optional 
dolphin-plugins_18.08.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAluQwmQACgkQLRkciEOx
P02Iqg/+JLxnpRTYmNRDsk8qHiikS6sssaOinEym4VqShC7vGtDG0lZO0mJtkRdt
z/g2dfiwIIf9oQsWRSqJTvfWf5+FtQG7lW2sC+SW+XmgwOMg15Lizmn8vt3yO6Np
PFm28qDLjc9sl3swncHODweH/ZbW4cbDbaqqIIwcvt9OD3y0MLrfmHavqKztpdkB
E1FcHy+nOMpikm1ghfGiqYkFtTzTU9UE9V7ZZgupKZlIQE0850H9t9vLovf4AcSf
VyY1RlYOqs0VdL9AW98F/sG+aR6yu32PPs/Um

Processing of dolphin_18.08.0-1_source.changes

2018-09-05 Thread Debian FTP Masters
dolphin_18.08.0-1_source.changes uploaded successfully to localhost
along with the files:
  dolphin_18.08.0-1.dsc
  dolphin_18.08.0.orig.tar.xz
  dolphin_18.08.0.orig.tar.xz.asc
  dolphin_18.08.0-1.debian.tar.xz
  dolphin_18.08.0-1_source.buildinfo

Greetings,

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



Processing of baloo-widgets_18.08.0-1_source.changes

2018-09-05 Thread Debian FTP Masters
baloo-widgets_18.08.0-1_source.changes uploaded successfully to localhost
along with the files:
  baloo-widgets_18.08.0-1.dsc
  baloo-widgets_18.08.0.orig.tar.xz
  baloo-widgets_18.08.0.orig.tar.xz.asc
  baloo-widgets_18.08.0-1.debian.tar.xz
  baloo-widgets_18.08.0-1_source.buildinfo

Greetings,

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



Processing of dolphin-plugins_18.08.0-1_source.changes

2018-09-05 Thread Debian FTP Masters
dolphin-plugins_18.08.0-1_source.changes uploaded successfully to localhost
along with the files:
  dolphin-plugins_18.08.0-1.dsc
  dolphin-plugins_18.08.0.orig.tar.xz
  dolphin-plugins_18.08.0.orig.tar.xz.asc
  dolphin-plugins_18.08.0-1.debian.tar.xz
  dolphin-plugins_18.08.0-1_source.buildinfo

Greetings,

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



baloo-widgets_18.08.0-1_source.changes ACCEPTED into unstable

2018-09-05 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 06 Sep 2018 07:53:51 +0200
Source: baloo-widgets
Binary: libkf5baloowidgets-bin libkf5baloowidgets-dev libkf5baloowidgets5
Architecture: source
Version: 4:18.08.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Description:
 libkf5baloowidgets-bin - Wigets for use with Baloo - binaries
 libkf5baloowidgets-dev - Development headers for developing applications with 
Baloo
 libkf5baloowidgets5 - Wigets for use with Baloo
Changes:
 baloo-widgets (4:18.08.0-1) unstable; urgency=medium
 .
   * Team upload.
   * New upstream release.
   * Switch Vcs-* fields to salsa.debian.org.
   * Bump the versions of some of the build dependencies according to the
 upstream build system:
 - Qt packages to >= 5.8.0
 - Frameworks packages to >= 5.43.0
   * Bump the debhelper compatibility to 11:
 - bump the debhelper build dependency to 11~
 - bump compat to 11
   * Small touches to copyright file.
   * Update install files.
   * Update symbols file.
   * Bump Standards-Version to 4.2.1, no changes required.
Checksums-Sha1:
 9094c6f65fd862ce4029c3b73af9df1369b89d38 2731 baloo-widgets_18.08.0-1.dsc
 c54e250f96e146cbfa874fb6a6d2302aab216cef 244668 
baloo-widgets_18.08.0.orig.tar.xz
 3fe11d89f38c0367776f0e2426cddd936af52fca 774 
baloo-widgets_18.08.0.orig.tar.xz.asc
 4a94c110fd2fd000baf204e88aa6bc74c849adb8 10544 
baloo-widgets_18.08.0-1.debian.tar.xz
 11f4e7b773b0f4da9f6637cbe539926b8a32591e 19198 
baloo-widgets_18.08.0-1_source.buildinfo
Checksums-Sha256:
 b91ec33999a575d053fbd75411c866be1e8ddda3de54a6a601047ebacd0fe582 2731 
baloo-widgets_18.08.0-1.dsc
 4903d58bf747e5d2898c750f179bb5539eaabcd77fbbc7a70a18dd752aaad408 244668 
baloo-widgets_18.08.0.orig.tar.xz
 61ad2c0b1acb62fd25cbc04ef35ded7a6f575dcfd44fd6a5e82fa8df27d54b96 774 
baloo-widgets_18.08.0.orig.tar.xz.asc
 e28ff6d36453750b0ba0edf6aa8bf130b7972b7ec0a8dfc90cda28e59414cd99 10544 
baloo-widgets_18.08.0-1.debian.tar.xz
 5a0f5ac2faaa2bc760290851e439aa63fd24396d8b2517c541c00afad05d11b9 19198 
baloo-widgets_18.08.0-1_source.buildinfo
Files:
 e4d37fb5adc86fde03d079933dbe399a 2731 libs optional baloo-widgets_18.08.0-1.dsc
 5d27fce69637836b315c9d6baf30da14 244668 libs optional 
baloo-widgets_18.08.0.orig.tar.xz
 111e5c297410bd4bf7a4aef12f0d1ea2 774 libs optional 
baloo-widgets_18.08.0.orig.tar.xz.asc
 482fc25df0fba36a2a8c96a8442d315c 10544 libs optional 
baloo-widgets_18.08.0-1.debian.tar.xz
 263223d84053211498baf4f2ef4c84a5 19198 libs optional 
baloo-widgets_18.08.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAluQwTIACgkQLRkciEOx
P038FBAAkYneZ9pIohiKUTgW6kogadeEfySq5ZMhN8J6HoX4uL++QJyKVXwTK8u/
tkAWAyUcPMmidx1Ieyhjo15Hd2JuPJpnQE0shJfvcVY6mI0REhXY0mV+n0kpGrdd
Dcl/qpgM5YVTAycW+/zFpj0S4ZrTbiZWnOGiXzOey3ksXBgC159gYHczvHP5fM4Y
ck407WRroYtn6SkFT/e8fg2w+6Ze/10N11hiNkUZURQLxNgSkU+k71xO2Ij4In+V
nFsv6IE0ZnfN/VgjlSGfmrRyIPhDmmv47RE+FbQwyOh7u0Ph++/XUL6BomOA/c6U
Fz64x2R3SEiYIv3mOba0nUWvuwzm5UEDclBl5MbDfnR9hyACiWPz5HEdTUtZ4C8c
xACNsQJDTeFS0sHllPRfdw/s3dxnugmtyrc1KXXCldcPRKkDhITtbnYF8dK8W55i
knPnImSKFWj48WRZNSK03tXtGyV899O5iczEEwQizxRU7hP7F2hKB4+eZKVD0noI
46rRTKJi9OAoEJqT3JQJB4FLy76YPHhjeptjBNp6DDh58aEZIGWjCM+pgCqDcG1F
zW/0yuhgstGrMat3lEOolfDZkg7466A4ZNtYXDwBLrU2sOaA9lOahP+C+iutgLx5
FKfVLHBJYoboIIih6IzCsbeR9K+wSwvBpZLqAD+jAvvdJTxQvx0=
=VdUl
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



dolphin_18.08.0-1_source.changes ACCEPTED into unstable

2018-09-05 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 06 Sep 2018 07:56:14 +0200
Source: dolphin
Binary: dolphin dolphin-dev libdolphinvcs-dev libdolphinvcs5
Architecture: source
Version: 4:18.08.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Description:
 dolphin- file manager
 dolphin-dev - file manager - development files
 libdolphinvcs-dev - library to show version control in Dolphin - development 
files
 libdolphinvcs5 - library to show version control in Dolphin
Changes:
 dolphin (4:18.08.0-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Sandro Knauß ]
   * New upstream release (18.04.1).
   * Update build-deps and deps with the info from cmake
   * Update copyright file for new upstream.
 .
   [ Pino Toscano ]
   * New upstream release.
   * Bump the libkf5baloowidgets-dev build dependency to >= 18.08.0, as
 indicated by the upstream build system
   * Bump Standards-Version to 4.2.1, no changes required.
Checksums-Sha1:
 504dd293967a17e0fbce97a519939bc7e503858f 3423 dolphin_18.08.0-1.dsc
 b38d5e8ae0209cec9b198e5f832f9ad690461041 4859048 dolphin_18.08.0.orig.tar.xz
 1fbbff4da4ef5be7cee73bcbcda481e034de1e08 774 dolphin_18.08.0.orig.tar.xz.asc
 2545b923bada1f8e07704d2b8a7d796a856055cd 69820 dolphin_18.08.0-1.debian.tar.xz
 1e02cee03de4051d8b21bee18d00c9f74a251a55 22793 
dolphin_18.08.0-1_source.buildinfo
Checksums-Sha256:
 aad011f9051205822bd7d13ae7c771fba607a07417909938b81559df0b86c7ec 3423 
dolphin_18.08.0-1.dsc
 5efb4c5dc304a6d179915b6553ad0f5232dc4e6b38a9d4dbd80a72a5351e6fe4 4859048 
dolphin_18.08.0.orig.tar.xz
 10521976378bdc5cc1446620311bb7af25d1e7f726e608b3211b314115f3a497 774 
dolphin_18.08.0.orig.tar.xz.asc
 360977336fe3dec1cdf05567524b1a5370961c91ec0c8ad8a18c2b9d0df8dc70 69820 
dolphin_18.08.0-1.debian.tar.xz
 49ba2ac942c9aaa158fa5a753e0fe524ad8e3382942b1f7698b27a2929b9bc71 22793 
dolphin_18.08.0-1_source.buildinfo
Files:
 d156caa8adec21186453d19d38f6fed6 3423 kde optional dolphin_18.08.0-1.dsc
 645ecbd2896ef47ac5ce7a7f1fd3b738 4859048 kde optional 
dolphin_18.08.0.orig.tar.xz
 4af37c908cc59d5fa1c2e075cc042cf3 774 kde optional 
dolphin_18.08.0.orig.tar.xz.asc
 b574eee62f05b04b34b5e3c715241e63 69820 kde optional 
dolphin_18.08.0-1.debian.tar.xz
 b70f286511d5bd93f6912e60a7d9e7b8 22793 kde optional 
dolphin_18.08.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAluQwaQACgkQLRkciEOx
P02R2hAAmKco9uEYKWICJGzWrOTNAVQ77lEDikBGa9bZK+K+TBxly8wxt2yT5gyo
vxgXMESDWtv4hH+j8xl6TJUPYz4kNhCMQs19zezYmI97fJ4iFPmGzEjAR3I8nqPk
Ggpfr3ueFhK/6uFfCWsBUUKY4HIxaJ+3qhR/EgvzBZIEHd4A+/WItoKvgaE4qreB
YNkCjpdkk5LBlST20qStYXrDhH2K2RUc8aBOc6S4Oc5v2v0qR54hrxUgwmbsbzr1
c2mVEpXm6rR2SEiWQ3UDLfPVet1EmButquLJLWZLD1/JjSVo8BE4UNQJDlQWZ11/
4wIIf4WbnwE6tm+zBFJkBcNiIGIwW7sahU720B+elXC2vJbbCepDPhRzABxhOj0e
C3uPk8QrBzKoQR3VCSIab43AXjQIHbb6ssmfmrx8go/TAigUWbUpoo5awT1d3syk
h3xuw807B1xOEIkstCbTFOR+xfPGdlb1rK1amTiNWRY7qdomzf7lHrR14xi6iKKD
4jYPYKZF+Dst2W+iPYOcty3lwWTDCeIHGk6xahTfzLMgcKF/kWgREqiZqfgNfwYO
/SR2A5djKEYG/kBUITJLay6DyYxrNlT4qYtgO6boyA+6IDrAMEvoenuELF7wdWci
IzGHcoadytQuWaVxcktlPIyFVBuqyUL0OZ84irHQOwM9e3l18qs=
=mHDF
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



dolphin-plugins_18.08.0-1_source.changes ACCEPTED into unstable

2018-09-05 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Thu, 06 Sep 2018 07:59:30 +0200
Source: dolphin-plugins
Binary: dolphin-plugins kdesdk-dolphin-plugins
Architecture: source
Version: 4:18.08.0-1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Description:
 dolphin-plugins - plugins for Dolphin
 kdesdk-dolphin-plugins - transitional dummy package for dolphin-plugins
Closes: 897385
Changes:
 dolphin-plugins (4:18.08.0-1) unstable; urgency=medium
 .
   * Team upload.
 .
   [ Pino Toscano ]
   * New upstream release.
   * Improve the description, so non VCS plugins (like Dropbox, the only one)
 are mentioned too. (Closes: #897385)
   * Bump the libdolphinvcs-dev build dependency to >= 4:18.08.0~, to be sure
 to use the latest dolphin.
   * Remove empty line at the end of changelog.
   * Bump Standards-Version to 4.2.1, no changes required.
 .
   [ Sandro Knauß ]
   * New upstream release (18.04.1).
Checksums-Sha1:
 ad9816e6c9754151498b3e6820ab7d8c29e9b1d5 2755 dolphin-plugins_18.08.0-1.dsc
 ad39f557b4d30e07fac04c541ee7506545c4cd9a 193080 
dolphin-plugins_18.08.0.orig.tar.xz
 ecba5144bf19767fb348ccf65cd8e8c5c13ab9bd 774 
dolphin-plugins_18.08.0.orig.tar.xz.asc
 b4792648d500e84efe2246bb8ee06543eadaa7fb 9628 
dolphin-plugins_18.08.0-1.debian.tar.xz
 c713f3f3e73f71c13de48471da3a54993dc93d25 22717 
dolphin-plugins_18.08.0-1_source.buildinfo
Checksums-Sha256:
 0735f436ded3d0804c843a6e79b5075f042610678aa8fd3d2f60d62429e0174b 2755 
dolphin-plugins_18.08.0-1.dsc
 3bea72ffe16aac221e2ffa2f91c910b78912dca557aba4866204aa3ed85c26c9 193080 
dolphin-plugins_18.08.0.orig.tar.xz
 300181f73c276003b9a60de80880e2d6177a295b5dde50a5aaa2a03d84c2acfa 774 
dolphin-plugins_18.08.0.orig.tar.xz.asc
 beb0a20118374d384a60ec9fb53848acca097b7354b66432ce3f68e90fd7b9dc 9628 
dolphin-plugins_18.08.0-1.debian.tar.xz
 20d43cd2509abbb37d7123778059654f1fbc688a5a4acc33e4a02357a8d1d70b 22717 
dolphin-plugins_18.08.0-1_source.buildinfo
Files:
 5d46a15b57393a63f4690fb3d0166875 2755 kde optional 
dolphin-plugins_18.08.0-1.dsc
 898477ec482c80eeda7784fd57bf1fe4 193080 kde optional 
dolphin-plugins_18.08.0.orig.tar.xz
 3b1628bae34ed41e99b6e870661e6242 774 kde optional 
dolphin-plugins_18.08.0.orig.tar.xz.asc
 d9d27bd2ab287d844b83797442cc4350 9628 kde optional 
dolphin-plugins_18.08.0-1.debian.tar.xz
 0b3e8e978b97414b185bb76e1cd54b0d 22717 kde optional 
dolphin-plugins_18.08.0-1_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAluQwmQACgkQLRkciEOx
P02Iqg/+JLxnpRTYmNRDsk8qHiikS6sssaOinEym4VqShC7vGtDG0lZO0mJtkRdt
z/g2dfiwIIf9oQsWRSqJTvfWf5+FtQG7lW2sC+SW+XmgwOMg15Lizmn8vt3yO6Np
PFm28qDLjc9sl3swncHODweH/ZbW4cbDbaqqIIwcvt9OD3y0MLrfmHavqKztpdkB
E1FcHy+nOMpikm1ghfGiqYkFtTzTU9UE9V7ZZgupKZlIQE0850H9t9vLovf4AcSf
VyY1RlYOqs0VdL9AW98F/sG+aR6yu32PPs/UmzkDMncaJ/bih+sZFIuoV+Jm4W19
qt7S+gDTPgxfETaj2PMo462XJSKlCe7x11D6V4SRZ0JX69Ha4Vm7ZSkfIIIMFpFC
2Qzrxb4cTwMbSCBFVISnD7yI2eEYaxdm9VQwB1K+CW3qm4ROSRrjWA31dnJU8iHD
aHVr6F8DHDGuPQjsgsEV0MN0dqzP63L+QQNwmakAC5PAmNrZEKjNURcknqnf1NHc
lUUvo0vlyXbB04nDbWkjTD5FLmO8BW0H00cC+nZR2PIH+9vLx9I38JWp7usMkiVZ
F0fVy4ki6He3wz6XHfqPzBX1X3YDVd59KAnLjxe4v6S93vDP2LmhuAEKwWLAo6Q5
Qw38yu7RXKoel4pra3ggrjLmsAE2QVeYW4T4SSI2qz8PC71iQSI=
=jGPM
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of kio-extras_18.08.0-1_source.changes

2018-09-05 Thread Debian FTP Masters
kio-extras_18.08.0-1_source.changes uploaded successfully to localhost
along with the files:
  kio-extras_18.08.0-1.dsc
  kio-extras_18.08.0.orig.tar.xz
  kio-extras_18.08.0.orig.tar.xz.asc
  kio-extras_18.08.0-1.debian.tar.xz
  kio-extras_18.08.0-1_source.buildinfo

Greetings,

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