Bug#974108: libkf5eventviews: FTBFS with qrand undefined

2020-11-09 Thread Norbert Preining
On Tue, 10 Nov 2020, Norbert Preining wrote:
> /build/libkf5eventviews-20.08.2/src/prefs.cpp:968:25: error: 'qrand' was not 
> declared in this scope; did you mean 'srand'?
>   968 | QColor col = QColor(qrand() % 256, qrand() % 256, qrand() % 256);
>   | ^
>   | srand

The failing code comes from Debian patch to keep ABI, but there are two bugs:
- first, qglobal.h needs included

--- a/src/prefs.cpp
+++ b/src/prefs.cpp
@@ -33,6 +33,9 @@
 
 #include 
 #include 
+
+#include 
+
 using namespace EventViews;
 
 QSet iconArrayToSet(const QByteArray &array)



- second, the deprecation need to be adjusted

--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -66,7 +66,7 @@ ecm_setup_version(PROJECT VARIABLE_PREFI
 ### Targets ###
 
 
-add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050f00)
+add_definitions(-DQT_DISABLE_DEPRECATED_BEFORE=0x050100)
 add_definitions(-DKF_DISABLE_DEPRECATED_BEFORE_AND_AT=0x054800)
 
 add_definitions(-DQT_NO_FOREACH)


With that I think it compiles.

Best

Norbert

--
PREINING Norbert  https://www.preining.info
Accelia Inc. + IFMGA ProGuide + TU Wien + JAIST + TeX Live + Debian Dev
GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0 ACF0 6CAC A448 860C DC13



Bug#974101: python3-pyside2.qtgui: not co-installable with libqt5qui5-gles

2020-11-09 Thread Abdur Rehman
Package: python3-pyside2.qtgui
Version: 5.15.0-5
Severity: normal

Hi,

python3-pyside2.qtgui has following dependencies
libqt5gui5 (>= 5.14), libqt5gui5 (>= 5.15.1) | libqt5gui5-gles (>= 5.15.1)

Because of this, if we install libqt5gui5-gles and then try to install
python3-pyside2.qtgui, following error is observed:
libqt5gui5-gles : Conflicts: libqt5gui5 but 5.15.1+dfsg-2 is to be installed

A similar bug is already there for python3-pyqt5
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=948112

-- System Information:
Debian Release: bullseye/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: arm64 (aarch64)

Kernel: Linux 5.4.0-52-generic (SMP w/12 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=C, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: unable to detect

Versions of packages python3-pyside2.qtgui depends on:
ii  libc6   2.31-3
ii  libgcc-s1   10.2.0-13
pn  libpyside2-py3-5.15 
ii  libqt5core5a5.15.1+dfsg-2
ii  libqt5gui5-gles 5.15.1+dfsg-2
pn  libshiboken2-py3-5.15   
ii  libstdc++6  10.2.0-13
ii  python3 3.8.6-1
pn  python3-pyside2.qtcore  

python3-pyside2.qtgui recommends no packages.

python3-pyside2.qtgui suggests no packages.

--
Abdur Rehman



Bug#973933: sddm: auth:sddm-helper exited with 1

2020-11-09 Thread Norbert Preining
Hi Ariel,

On Mon, 09 Nov 2020, Ariel Molinuevo wrote:
> I'm sure I didn't select a wayland session because I had the auto login set
> to Openbox.

That might be messed up. -1 has a bug so it doesn't recognize the saved
session, that means it auto-selects the top-most in the list. If that
fails, the login fails.

This bug is fixed in -2, but you might need to select manually the
correct session.

Best

Norbert

--
PREINING Norbert  https://www.preining.info
Accelia Inc. + IFMGA ProGuide + TU Wien + JAIST + TeX Live + Debian Dev
GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0 ACF0 6CAC A448 860C DC13



Bug#973933: sddm: auth:sddm-helper exited with 1

2020-11-09 Thread Ariel Molinuevo
Hi Norbert,

I'm sure I didn't select a wayland session because I had the auto login set
to Openbox.

I can gladly give you any other information you may need.

Regards.

Ariel

El lun., 9 nov. 2020 a las 20:54, Norbert Preining ()
escribió:

> tags 973933 - confirmed
> tags 973933 + moreinfo
> severity 973933 normal
> thanks
>
> Hi Ariel,
>
> can you please look into whether maybe a wrong session was selected (in
> particular wayland) and thus failures happened. This is a bug in sddm
> which is fixed in -2, but you need to manually select the correct
> session.
>
> For now I set this to unconfirmed, moreinfo, and lower severity
> accordingly.
>
> Thanks
>
> Norbert
>
> --
> PREINING Norbert  https://www.preining.info
> Accelia Inc. + IFMGA ProGuide + TU Wien + JAIST + TeX Live + Debian Dev
> GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0 ACF0 6CAC A448 860C DC13
>


Bug#974108: libkf5eventviews: FTBFS with qrand undefined

2020-11-09 Thread Norbert Preining
Source: libkf5eventviews
Version: 4:20.08.2-2
Severity: serious
Tags: ftbfs
Justification: fails to build from source (but built successfully in the past)

Hi

some changes in Qt seem to have triggered FTBFS here, as it fails with
/build/libkf5eventviews-20.08.2/src/prefs.cpp: In member function 'void 
EventViews::Prefs::createNewColor(QColor&, int)':
/build/libkf5eventviews-20.08.2/src/prefs.cpp:968:25: error: 'qrand' was not 
declared in this scope; did you mean 'srand'?
  968 | QColor col = QColor(qrand() % 256, qrand() % 256, qrand() % 256);
  | ^
  | srand

qrand is defined in qglobal.h with

/*
  Reentrant versions of basic rand() functions for random number generation
*/
#if QT_DEPRECATED_SINCE(5, 15)
Q_CORE_EXPORT QT_DEPRECATED_VERSION_X_5_15("use QRandomGenerator instead") void 
qsrand(uint seed);
Q_CORE_EXPORT QT_DEPRECATED_VERSION_X_5_15("use QRandomGenerator instead") int 
qrand();
#endif

so it seems that the deprecation has actually disabled the function.

Best

Norbert



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

Kernel: Linux 5.9.6+ (SMP w/8 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_WARN, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), 
LANGUAGE=en_US:en
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)



Bug#974091: qtbase5-examples: not co-installable with libqt5qui5-gles on arm64

2020-11-09 Thread ABDUR REHMAN
Package: qtbase5-examples
Version: 5.15.1+dfsg-2
Severity: normal

Hi,

qtbase5-examples depends on libqt5opengl5, which in arm64 has following
dependencies:
libqt5gui5 (>= 5.1.0), libqt5gui5 (>= 5.12.5) | libqt5gui5-gles (>= 5.12.5)

Because of this, if we install libqt5gui5-gles and then try to install
qtbase5-examples, following error is observed:
libqt5gui5-gles : Conflicts: libqt5gui5 but 5.15.1+dfsg-2 is to be installed

Looking at the source, there are 9 examples that use `QT += opengl`.
In build artifacts, libQt5OpenGL.so.5 is linked into 3 of the built
qtbase5-examples executables, namely sub-attaq, boxes and chip.

Is it possible to have a -gles version for libqt5opengl5? Or alternately
have the examples that are using the deprecated Qt OpenGL module, removed from
the build?

-- System Information:
Debian Release: bullseye/sid
  APT prefers testing
  APT policy: (500, 'testing')
Architecture: arm64 (aarch64)

Kernel: Linux 5.4.0-52-generic (SMP w/12 CPU threads)
Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE, 
TAINT_UNSIGNED_MODULE
Locale: LANG=C, LC_CTYPE=C.UTF-8 (charmap=UTF-8), LANGUAGE not set
Shell: /bin/sh linked to /bin/dash
Init: unable to detect

Versions of packages qtbase5-examples depends on:
ii  libc6 2.31-3
ii  libgl11.3.2-1
ii  libqt5concurrent5 5.15.1+dfsg-2
ii  libqt5core5a [qtbase-abi-5-15-1]  5.15.1+dfsg-2
ii  libqt5dbus5   5.15.1+dfsg-2
ii  libqt5gui55.15.1+dfsg-2
ii  libqt5network55.15.1+dfsg-2
ii  libqt5opengl5 5.15.1+dfsg-2
ii  libqt5printsupport5   5.15.1+dfsg-2
ii  libqt5sql55.15.1+dfsg-2
ii  libqt5test5   5.15.1+dfsg-2
ii  libqt5widgets55.15.1+dfsg-2
ii  libqt5xml55.15.1+dfsg-2
ii  libstdc++610.2.0-13

qtbase5-examples recommends no packages.

qtbase5-examples suggests no packages.

--
Abdur Rehman



Processed: Re: sddm: auth:sddm-helper exited with 1

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

> tags 973933 - confirmed
Bug #973933 [sddm] sddm: auth:sddm-helper exited with 1
Removed tag(s) confirmed.
> tags 973933 + moreinfo
Bug #973933 [sddm] sddm: auth:sddm-helper exited with 1
Added tag(s) moreinfo.
> severity 973933 normal
Bug #973933 [sddm] sddm: auth:sddm-helper exited with 1
Severity set to 'normal' from 'grave'
> thanks
Stopping processing here.

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



Bug#973933: sddm: auth:sddm-helper exited with 1

2020-11-09 Thread Norbert Preining
tags 973933 - confirmed
tags 973933 + moreinfo
severity 973933 normal
thanks

Hi Ariel,

can you please look into whether maybe a wrong session was selected (in
particular wayland) and thus failures happened. This is a bug in sddm
which is fixed in -2, but you need to manually select the correct
session.

For now I set this to unconfirmed, moreinfo, and lower severity
accordingly.

Thanks

Norbert

--
PREINING Norbert  https://www.preining.info
Accelia Inc. + IFMGA ProGuide + TU Wien + JAIST + TeX Live + Debian Dev
GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0 ACF0 6CAC A448 860C DC13



Bug#973933: turns out it was wayland that crashed

2020-11-09 Thread Diederik de Haas
It turns out that the wayland plasma session got selected and that crashed. 
This is possibly/probably fixed with the -2 upload which happened a couple of 
hours ago.
Manually selecting the 'normal' plasma session and then I could log in.

OP: Can you check whether the wayland session was (automatically) selected for 
you too? And if so, does the problem still occur when you select the 'normal' 
plasma session?

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


Processed: touch /etc/environment didn't help

2020-11-09 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 confirmed
Bug #973933 [sddm] sddm: auth:sddm-helper exited with 1
Added tag(s) confirmed.

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



Bug#973933: touch /etc/environment didn't help

2020-11-09 Thread Diederik de Haas
Control: tag -1 confirmed

Did a 'touch /etc/environment' and restarted sddm.service, but the problem 
remained. Output is the same as in my previous message, minus the pam_env 
error line.
Usually from within KDE, I can get a backtrace (DrKonqi?) easily, but that 
won't work in this case as I can't login to KDE.
If you can provide me with the needed steps to do it without logging in, I'd 
be happy to provide that info.

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


kdeconnect_20.08.3-1_amd64.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 09 Nov 2020 23:17:30 +0100
Source: kdeconnect
Architecture: source
Version: 20.08.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Aurélien COUDERC 
Changes:
 kdeconnect (20.08.3-1) unstable; urgency=medium
 .
   * New upstream release (20.08.3).
   * Add patch to fix Python interpreter location in Debian for the Nautilus
 extension.
   * Add lintian overrides:
 - Missing manpage for kdeconnect-app, it has no command line arguments.
 - desktop-entry-limited-to-environments, kdeconnect is really only working
   in Plasma.
   * Add myself to the uploaders.
Checksums-Sha1:
 edae880839bc9adb5d18eba7d2455d8532dfa63e 2998 kdeconnect_20.08.3-1.dsc
 eb94ccf48db4b9cbd067a94fd89d2cc5758ca3e2 420232 kdeconnect_20.08.3.orig.tar.xz
 4fbdb83592983e3867cd59c4cfaae185901586c6 488 kdeconnect_20.08.3.orig.tar.xz.asc
 2982fa4792abc459ebf0ac0538cac5e65c9bf15b 9876 
kdeconnect_20.08.3-1.debian.tar.xz
 9eeccbb88148c98b3a842871d396c78ace354fdd 23743 
kdeconnect_20.08.3-1_amd64.buildinfo
Checksums-Sha256:
 3f1cd6f505943fb934b3bb6503937629ca5ce3711c62fb8d29365bacc1335bd0 2998 
kdeconnect_20.08.3-1.dsc
 3300d9abdb7d62cf7046636cb2840f4437dfe5efa68c5db7824a531c907a2074 420232 
kdeconnect_20.08.3.orig.tar.xz
 647ab257248dd5f2e26eccc9a0fca043396ece71557efcba697ff998d9252ac1 488 
kdeconnect_20.08.3.orig.tar.xz.asc
 5798cad1c598539030126c124c0e82c0556a042cf0d8e6976d208a2259a684d1 9876 
kdeconnect_20.08.3-1.debian.tar.xz
 8e71cd715616d9e362d2e48af4aa99c0b93e423d31e9286b03a04c63b9a17aa6 23743 
kdeconnect_20.08.3-1_amd64.buildinfo
Files:
 f4e053b47a0b44d24e9422123a699db4 2998 kde optional kdeconnect_20.08.3-1.dsc
 771f23dcaecf0d525ef1893c7637eb78 420232 kde optional 
kdeconnect_20.08.3.orig.tar.xz
 ed63edee27e85e4ff6fed4a67635c0ef 488 kde optional 
kdeconnect_20.08.3.orig.tar.xz.asc
 82ccc11379e2205fa7890e0483eda0ca 9876 kde optional 
kdeconnect_20.08.3-1.debian.tar.xz
 ce43de24a47351cd704212c62b3789d6 23743 kde optional 
kdeconnect_20.08.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEIW//QAAaDgcOKDsfcaflM/KRoyQFAl+pwN4THGNvdWNvdWZA
ZGViaWFuLm9yZwAKCRBxp+Uz8pGjJEMiEACoJfz0ZvCEjKEhncFL98s8WcxAv1CN
PoXHrWa2Sz0ZVFKoBdeBrYmHkjT7/TMLYdj8UmwRbJD9b2D4fhD9rv6M/g862IRM
/8HEz4mM7K6eoWy02AZf+eZRT6r21Kjb7urOSU32t4wqPmjNo9t3Bpn+Kt6POva4
sTrJ4qW81uZZ4UVO7Wp3xIPaZy453JLQnOcNwF1BLECu/aV+Rywa59shu7sCgle+
WX7/96ddznBxtFAyXMazDgjYBpm88iA7JHER+vdNNr0dXDaEYZ4rJkczknRiThNG
Iolve+L76q3PK7fARNMF3cVEN8aJ+9y3RyOwsGXvyCPfhebGNoB0DHeTWMNE3bEE
DytcgQnzsEIC64G42IiQXWnrb9tehspBrJUqcWGb0/t3144R/aDwjX+qIgv00u71
z5xD/J7CRTDvhiGuTkiH82LciAIAai3UllGPxd6u7/30+r7if7xhykf3SqZ6hsJ4
yC2GayLGl/3MhMa4/1nOJFR2pQdMOiW1qEVzqczGwuLz/T/bTizN8g2rJES+SkpK
4y4u/9z7R5W9aSeS3fwQK9I1AX/rXM4kbVAjd11FnLmh4FZAuzSBjXRtQTB7JRD9
hVck3tKgOEtB7+Yetw2bWn+nUwheDL7ilPx4n76iA6S7BCWBL5nCdP2Cc49lTmbd
wLb0J9eOo6dzWg==
=Azwq
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of kdeconnect_20.08.3-1_amd64.changes

2020-11-09 Thread Debian FTP Masters
kdeconnect_20.08.3-1_amd64.changes uploaded successfully to localhost
along with the files:
  kdeconnect_20.08.3-1.dsc
  kdeconnect_20.08.3.orig.tar.xz
  kdeconnect_20.08.3.orig.tar.xz.asc
  kdeconnect_20.08.3-1.debian.tar.xz
  kdeconnect_20.08.3-1_amd64.buildinfo

Greetings,

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



Bug#973933: sddm: Unable to open env file: /etc/environment: No such file or directory

2020-11-09 Thread Diederik de Haas
Package: sddm
Version: 0.19.0-1
Followup-For: Bug #973933

Got a very big upgrade (hadn't started my Sid system for several days), which 
included sddm and after a reboot I got the sddm login screen.
But after giving my credentials, I got thrown back to the login screen.
'systemctl status sddm.service' told me:
Unable to open env file: /etc/environment: No such file or directory


● sddm.service - Simple Desktop Display Manager
 Loaded: loaded (/lib/systemd/system/sddm.service; enabled; vendor preset: 
enabled)
 Active: active (running) since Mon 2020-11-09 23:14:48 CET; 8min ago
   Docs: man:sddm(1)
 man:sddm.conf(5)
   Main PID: 3641 (sddm)
  Tasks: 27 (limit: 77031)
 Memory: 35.6M
 CGroup: /system.slice/sddm.service
 ├─3641 /usr/bin/sddm
 └─3854 /usr/lib/xorg/Xorg -nolisten tcp -auth 
/var/run/sddm/{a330fe19-b614-4bb4-9329-d7d6240b8ca7} -background none -noreset 
-displayfd 18 -seat seat0 vt7

nov 09 23:15:58 bagend sddm[3641]: Socket server started.
nov 09 23:15:58 bagend sddm[3641]: Loading theme configuration from 
"/usr/share/sddm/themes/debian-maui/theme.conf"
nov 09 23:15:58 bagend sddm[3641]: Greeter starting...
nov 09 23:15:58 bagend sddm-helper[3885]: [PAM] Starting...
nov 09 23:15:58 bagend sddm-helper[3885]: [PAM] Authenticating...
nov 09 23:15:58 bagend sddm-helper[3885]: [PAM] returning.
nov 09 23:15:58 bagend sddm-helper[3885]: pam_unix(sddm-greeter:session): 
session opened for user sddm by (uid=0)
nov 09 23:15:58 bagend sddm-helper[3885]: pam_env(sddm-greeter:session): Unable 
to open env file: /etc/environment: No such file or directory
nov 09 23:15:58 bagend sddm[3641]: Greeter session started successfully
nov 09 23:15:58 bagend sddm[3641]: Message received from greeter: Connect

I indeed do not have that file (I do have /etc/environment.d/90qt-a11y.conf), 
but that shouldn't make sddm crash.
Downgrading sddm and sddm-theme-debian-maui to the testing version
(0.18.1-1) made me able to login again.
After sending this bug report, I'll try to see whether a 'touch
/etc/environment' would fix the problem as well.
Anyway, it shouldn't have crashed on it imo.

Notable difference with OP is that I use KDE as my DE.

Cheers,
  Diederik

-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'unstable'), (500, 'testing'), 
(101, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 5.9.0-1-amd64 (SMP w/16 CPU threads)
Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages sddm depends on:
ii  adduser 3.118
ii  debconf [debconf-2.0]   1.5.74
ii  libc6   2.31-4
ii  libgcc-s1   10.2.0-16
ii  libpam0g1.3.1-5
ii  libqt5core5a5.15.1+dfsg-2
ii  libqt5dbus5 5.15.1+dfsg-2
ii  libqt5gui5  5.15.1+dfsg-2
ii  libqt5network5  5.15.1+dfsg-2
ii  libqt5qml5  5.15.1+dfsg-3
ii  libqt5quick55.15.1+dfsg-3
ii  libstdc++6  10.2.0-16
ii  libsystemd0 246.6-2
ii  libxcb-xkb1 1.14-2
ii  libxcb1 1.14-2
ii  qml-module-qtquick2 5.15.1+dfsg-3
ii  x11-common  1:7.7+21
ii  xauth   1:1.0.10-1
ii  xserver-xorg [xserver]  1:7.7+21

Versions of packages sddm recommends:
pn  haveged  
ii  libpam-systemd   246.6-2
ii  sddm-theme-debian-maui [sddm-theme]  0.19.0-1

Versions of packages sddm suggests:
ii  libpam-kwallet5   5.19.5-3
pn  qtvirtualkeyboard-plugin  

-- debconf information:
  sddm/daemon_name: /usr/bin/sddm
* shared/default-x-display-manager: sddm


Processed: severity of 974026 is wishlist

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

> severity 974026 wishlist
Bug #974026 [sddm] allow configuration of /usr/share/sddm/scripts/Xsetup
Severity set to 'wishlist' from 'normal'
> thanks
Stopping processing here.

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



plasma-workspace_5.19.5-4_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Nov 2020 05:57:59 +0900
Source: plasma-workspace
Architecture: source
Version: 4:5.19.5-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 974054
Changes:
 plasma-workspace (4:5.19.5-4) unstable; urgency=medium
 .
   [ Debian Qt/KDE Maintainers ]
   * Add missing Breaks/Replaces against p-desktop-data (Closes: #974054)
Checksums-Sha1:
 5167eb47f5a2de54e41922ff813d1ac590ecf412 4803 plasma-workspace_5.19.5-4.dsc
 c65363839ad9dbad08fbcd49724b6059d4a96d80 47184 
plasma-workspace_5.19.5-4.debian.tar.xz
 73c015172540acdf55beb4535c6346d01fe34027 32674 
plasma-workspace_5.19.5-4_source.buildinfo
Checksums-Sha256:
 7a5c40b43977865403d22a26c5cd66ee49b4777c175f73fd6161fbd864ec243f 4803 
plasma-workspace_5.19.5-4.dsc
 40e057d10191e6a9562d63885efcd394b0d39c1f43b1ff23c425b90f78ed0b36 47184 
plasma-workspace_5.19.5-4.debian.tar.xz
 9ae8ed87e275ac7e0f2721ca165cda5af7a5a43fe014bd59b6b18064e05b45fa 32674 
plasma-workspace_5.19.5-4_source.buildinfo
Files:
 a6fd3b92f55ce55923f9729705d12c41 4803 kde optional 
plasma-workspace_5.19.5-4.dsc
 3666f9332644a2a5e9af200ec7bc29e9 47184 kde optional 
plasma-workspace_5.19.5-4.debian.tar.xz
 5fa1479d8980517325ce966c44b5be9e 32674 kde optional 
plasma-workspace_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+ps6MACgkQ2A4JsIcU
AGb7Awf/auoh0v78AsyR7Dl8pbPeW6Kye1KMebVCLIxovsBTUL4Epm8vrkSyK7uZ
q6MyJnJshMuhfJUzzbY5v8plGDSFuVxZI67aSPeBhUBcGp4PWLHzFhQQe924UbpB
VJOw4VUM6jaG3mWHyEYOh5oApjmxwVrjcqqzIf6XGt9voTKjDWsNm0dRRIO+sVVO
sJfHH3tEJIxx5WHL3Ns5PNQUqGcZbvhReGEEjmR0PFBR3hzNCObKT/vlep2iHFIS
ewJoHyIBXOyQka16+NW1EFo5GeLUslHh3IJAymE0Uci38owUMURf5RM5XYrzKgQD
VavikPSVgrK5wdWC9soP5M0q0V0oRA==
=Agyl
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of plasma-workspace_5.19.5-4_source.changes

2020-11-09 Thread Debian FTP Masters
plasma-workspace_5.19.5-4_source.changes uploaded successfully to localhost
along with the files:
  plasma-workspace_5.19.5-4.dsc
  plasma-workspace_5.19.5-4.debian.tar.xz
  plasma-workspace_5.19.5-4_source.buildinfo

Greetings,

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



Bug#974054: marked as done (plasma-workspace{,-data}: missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19))

2020-11-09 Thread Debian Bug Tracking System
Your message dated Mon, 09 Nov 2020 22:05:16 +
with message-id 
and subject line Bug#974054: fixed in plasma-workspace 4:5.19.5-4
has caused the Debian Bug report #974054,
regarding plasma-workspace{,-data}: missing Breaks+Replaces: 
plasma-desktop-data (<< 4:5.19)
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.)


-- 
974054: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974054
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: plasma-workspace-data
Version: 4:5.19.5-3
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' 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/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

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

  Preparing to unpack .../plasma-workspace-data_4%3a5.19.5-3_all.deb ...
  Unpacking plasma-workspace-data (4:5.19.5-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/plasma-workspace-data_4%3a5.19.5-3_all.deb (--unpack):
   trying to overwrite 
'/usr/share/doc/HTML/ca/kcontrol/translations/index.cache.bz2', which is also 
in package plasma-desktop-data 4:5.14.5.1-1
  dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/plasma-workspace-data_4%3a5.19.5-3_all.deb


cheers,

Andreas


plasma-desktop-data=4:5.14.5.1-1_plasma-workspace-data=4:5.19.5-3.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: plasma-workspace
Source-Version: 4:5.19.5-4
Done: Norbert Preining 

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

Debian distribution maintenance software
pp.
Norbert Preining  (supplier of updated plasma-workspace 
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: Tue, 10 Nov 2020 05:57:59 +0900
Source: plasma-workspace
Architecture: source
Version: 4:5.19.5-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 974054
Changes:
 plasma-workspace (4:5.19.5-4) unstable; urgency=medium
 .
   [ Debian Qt/KDE Maintainers ]
   * Add missing Breaks/Replaces against p-desktop-data (Closes: #974054)
Checksums-Sha1:
 5167eb47f5a2de54e41922ff813d1ac590ecf412 4803 plasma-workspace_5.19.5-4.dsc
 c65363839ad9dbad08fbcd49724b6059d4a96d80 47184 
plasma-workspace_5.19.5-4.debian.tar.xz
 73c015172540acdf55beb4535c6346d01fe34027 32674 
plasma-workspace_5.19.5-4_source.buildinfo
Checksums-Sha256:
 7a5c40b43977865403d22a26c5cd66ee49b4777c175f73fd6161fbd864ec243f 4803 
plasma-workspace_5.19.5-4.dsc
 40e057d10191e6a9562d63885efcd394b0d39c1f43b1ff23c425b90f78ed0b36 47184 
plasma-workspace_5.19.5-4.debian.tar.xz
 9ae8ed87e275ac7e0f2721ca165cda5af7a5a43fe014bd59b6b18064e05b45fa 32674 
plasma-workspace_5.19.5-4_source.buildinfo
Files:
 a6fd3b92f55ce55923f9729705d12c41 4803 kde optional 
plasma-workspace_5.19.5-4.dsc
 3666f9332644a2a5e9af200ec7bc29e9 47184 kde optional 
plasma-workspace_5.19.5-4.debian.tar.xz
 5fa1479d8980517325ce966c44b5be9e 32674 kde optional 
plasma-workspace_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+ps6MACgkQ2A4JsIcU
AGb7Awf/auoh0v78AsyR7Dl8pbPeW6Kye1KMebVCLIxovsBTUL4Epm8vrkSyK7uZ
q6MyJnJshMuhfJUzzbY5v8plGDSFuVxZI67aSPeBhUBcGp4PWLHzFhQQe924UbpB
VJOw4VUM6jaG3mWHyEYOh5oApjmxwVrjcqqzIf6XGt9voTKjDWsNm0dRRIO+sVVO
sJfHH3tEJIxx5WHL3Ns5PNQUqGcZbvhReGEEjmR0PFBR3hzNCObKT/vlep2iHFIS
ewJoHyIBXOyQka16+NW1EFo5GeLUslHh3IJAymE0Uci38owUMURf5RM5XYrzKgQD
VavikPSVgrK5wdWC9soP5M0q0V0oRA==
=Agyl
-END PGP SIGNATURE End Message ---


print-manager_20.08.3-1_amd64.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 09 Nov 2020 18:10:05 +0100
Source: print-manager
Architecture: source
Version: 4:20.08.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Aurélien COUDERC 
Changes:
 print-manager (4:20.08.3-1) unstable; urgency=medium
 .
   * New upstream release (20.08.3).
   * Update the build dependencies according to the upstream build system:
 - bump KF packages to 5.72.0
   * Add new/missing runtime dependencies:
 - Depend on QML module QtQuick Controls 2.
 - Recommend smbclient for support of printers shared via SMB.
   * Adapt to lintian tags renames / removals.
   * Review copyright information.
   * Borrow minimal upstream signing key from k3b.
   * Refresh upstream metadata.
   * Add Rules-Requires-Root: no to control file.
   * Bump debhelper compatibility level to 13.
   * Add myself to the uploaders.
Checksums-Sha1:
 1f5cff6f8a9708206daffda0090a160ea31dfd39 3004 print-manager_20.08.3-1.dsc
 d55328e174eb35a6709e603679ffdd13e68d25b9 258776 
print-manager_20.08.3.orig.tar.xz
 d88412308cfc9a746e693fb20470cc3605df9c97 488 
print-manager_20.08.3.orig.tar.xz.asc
 740b5f880ae46258e2f7a3df0a928c7a825b3184 11744 
print-manager_20.08.3-1.debian.tar.xz
 06550a144b0f283e91d03319581b1b4b4092ed13 23490 
print-manager_20.08.3-1_amd64.buildinfo
Checksums-Sha256:
 ad4b05071be65e0af39590334e08e3278936b4118584ca0f303c9a63299e09dc 3004 
print-manager_20.08.3-1.dsc
 1f1d0af2083fb38d99c20594e8b75843fc6e5141706dffb14b8ffc5fef4bd4a2 258776 
print-manager_20.08.3.orig.tar.xz
 c00394b92a41e8cf07c5f2978153a29135da0247f4925c1795c1728bd9157497 488 
print-manager_20.08.3.orig.tar.xz.asc
 b70262d295073722279d52fe7a182f941559ac1092902ca34d5ea3908bc28131 11744 
print-manager_20.08.3-1.debian.tar.xz
 ae575773b32682c9dddcf6f07ed7c6e4302f12f02b2ac62fbd034f036e226ac9 23490 
print-manager_20.08.3-1_amd64.buildinfo
Files:
 bc8843ea8adaa435cb07a7a0c51e27bc 3004 kde optional print-manager_20.08.3-1.dsc
 eabc8414c1f3e72205dcf3bde4cbdf8f 258776 kde optional 
print-manager_20.08.3.orig.tar.xz
 d4ba63d86ecd9d3e17e12a8ad2eef324 488 kde optional 
print-manager_20.08.3.orig.tar.xz.asc
 d4e9acc6d8d33dabf3c2c1eb8daf8b33 11744 kde optional 
print-manager_20.08.3-1.debian.tar.xz
 f91a79ab1a1db1bf72e237ea42f7b27c 23490 kde optional 
print-manager_20.08.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEIW//QAAaDgcOKDsfcaflM/KRoyQFAl+peEkTHGNvdWNvdWZA
ZGViaWFuLm9yZwAKCRBxp+Uz8pGjJPywEADf8C1JK8b5/kufoFts8O3pSMs21h0H
IbWxlZjZZtWByOA04A4FGznsw00VUZf5oB7OzFYKP4QmQ/nv+7GkPTKSMQJsw2YA
HRcPRFhNdScRwdhXgGwtKgCYn+2a46i7wucc9NbVw9LiUTdw4ZUACZwNGLal25oI
L03z4UDo+wVC3SAsfytEA2IVWkPXY50wONjzDG27HokGaILHpgjycHSEocGhRXW6
29fK55Q9f4FaHx/H7T3KBbyHVMg20c4dXctA+uNogySzXP1ym4MUu6Opq+YuA9Fn
aYNi8wQ2Uz+04IXGnVFB2lWubh5CThxWMIcSSzL53aJtK8M2dblKzjpYiLdGFwdz
uU2RXfxVH/lJW1R9I04/gQQMysmant3g5A1GpkTitfDX4PPBvDkVaDJwNq0GA6L+
aXm03sjWs+bcc2uhJ/vTNZJtf44Q8eF7nI7360ENHs4kwKihzZpIJZDCajSKaW6A
rTQt2eVfECQ9XnenfYmlq6C6NfMjnazL4IVVt0hifM/LPETWjcE1y1fHgISJ2HCm
W6KLvugpB+ZCMlrNUnKZYFO8Is0VAtanbUnDn92ZJ/uJjMFYuhQyghOKTPKGrpa8
bfCmV1QS1zpq6hkrbwDckn9tt5+X7AqyCGmrm1O2BixsP9aYxpCFdFL5rWUcR6AZ
gjEg9ZZJdsFwVA==
=4PJM
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of print-manager_20.08.3-1_amd64.changes

2020-11-09 Thread Debian FTP Masters
print-manager_20.08.3-1_amd64.changes uploaded successfully to localhost
along with the files:
  print-manager_20.08.3-1.dsc
  print-manager_20.08.3.orig.tar.xz
  print-manager_20.08.3.orig.tar.xz.asc
  print-manager_20.08.3-1.debian.tar.xz
  print-manager_20.08.3-1_amd64.buildinfo

Greetings,

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



Processed: Bug#974054 marked as pending in plasma-workspace

2020-11-09 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #974054 [plasma-workspace-data] plasma-workspace{,-data}: missing 
Breaks+Replaces: plasma-desktop-data (<< 4:5.19)
Ignoring request to alter tags of bug #974054 to the same tags previously set

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



Bug#974026: On upgrade, sddm clobbers /usr/share/sddm/scripts/Xsetup

2020-11-09 Thread Norbert Preining
retitle 974026 allow configuration of /usr/share/sddm/scripts/Xsetup
severity 974026 whishlist
thanks

Hi Alain,

On Mon, 09 Nov 2020, Alain Knaff wrote:
> sddm contains a file /usr/share/sddm/scripts/Xsetup intended to be
...
> However, on package upgrade this file gets overwritten, losing user's
> customization.

Files under /usr should **never** be changed with user configuration,
because they will be overwritten, full stop.

> Shouldn't this be declared as a "config" file in the debian package, so
> that its content is not lost on upgrade? (debian/conffiles)

That is not possible. It would need to be moved to /etc and either
symlinked or somehow included differently.

Retitle according to intended purpose.

Best

Norbert

--
PREINING Norbert  https://www.preining.info
Accelia Inc. + IFMGA ProGuide + TU Wien + JAIST + TeX Live + Debian Dev
GPG: 0x860CDC13   fp: F7D8 A928 26E3 16A1 9FA0 ACF0 6CAC A448 860C DC13



kdecoration_5.19.5-4_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Nov 2020 05:32:39 +0900
Source: kdecoration
Architecture: source
Version: 4:5.19.5-4
Distribution: unstable
Urgency: high
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 974019
Changes:
 kdecoration (4:5.19.5-4) unstable; urgency=high
 .
   [ Norbert Preining ]
   * Tighten breaks against kwin packages to ensure synced install
 (Closes: #974019).
Checksums-Sha1:
 5cd441488da1eebd1514e4b1f7705bbb4962555c 2340 kdecoration_5.19.5-4.dsc
 36ff59a860aa84291f766f218f528ffc49fa2783 16044 
kdecoration_5.19.5-4.debian.tar.xz
 9e936f9b039dd34a21c32844174d467e647688d5 11241 
kdecoration_5.19.5-4_source.buildinfo
Checksums-Sha256:
 9b678464525333edef2a3afc40fba98bdf58d39e94dfc684ec6d630b125d2ebd 2340 
kdecoration_5.19.5-4.dsc
 e246d03a800e97eec4996fc42cc2e2f000c71848cb0b831c266738c39d509a1b 16044 
kdecoration_5.19.5-4.debian.tar.xz
 ab75c955db9e70241d16d097b76e864159d1ebbd6d095aaf7512280a1c9d0f51 11241 
kdecoration_5.19.5-4_source.buildinfo
Files:
 a763578fb1f5f27ee7e6c1f56e73e85b 2340 libs optional kdecoration_5.19.5-4.dsc
 5f13e8dfc0a36407e1761558f85e1984 16044 libs optional 
kdecoration_5.19.5-4.debian.tar.xz
 c18b30ac9510b01bdd186baceac6dde3 11241 libs optional 
kdecoration_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+pqfgACgkQ2A4JsIcU
AGZToAf9HNTnzfRK+c1HBIoEW29hVu8P5M6uSbFqc4qiInYE8uqPF1pIaicAE+By
f8QNPRITiQYV1rwRi2rx9sb1GbwIrfOXlSjqdFI2ZZyKdsVSA5R47rRhzMcKycHM
ZDOA/j1rwLhSjwbW7Ze1jJHVg5C9XUF8Rsfvw/7vDfMg/EwWrqq0XdSE5L8tCfoi
RMtbxWHQSs4jO1WTzcJqoRPbx65c85gjwuHgrwFJ0vCB4U5CEPXxnuzW7zRapNsp
68PjSZDPyU5cBXCw2Pv8thaUuIhK2dkgJ/ghyAuKGd6wNDsbG8sPYwuxpqLAayLg
m7tU1jBNEi9UJtSTtPlTRDbGoQsZrQ==
=ex4l
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processed (with 1 error): Re: Bug#974026: On upgrade, sddm clobbers /usr/share/sddm/scripts/Xsetup

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

> retitle 974026 allow configuration of /usr/share/sddm/scripts/Xsetup
Bug #974026 [sddm] On upgrade, sddm clobbers /usr/share/sddm/scripts/Xsetup
Changed Bug title to 'allow configuration of /usr/share/sddm/scripts/Xsetup' 
from 'On upgrade, sddm clobbers /usr/share/sddm/scripts/Xsetup'.
> severity 974026 whishlist
Severity level `whishlist' is not known.
Recognized are: critical, grave, serious, important, normal, minor, wishlist, 
fixed.

> thanks
Stopping processing here.

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



Processing of kdecoration_5.19.5-4_source.changes

2020-11-09 Thread Debian FTP Masters
kdecoration_5.19.5-4_source.changes uploaded successfully to localhost
along with the files:
  kdecoration_5.19.5-4.dsc
  kdecoration_5.19.5-4.debian.tar.xz
  kdecoration_5.19.5-4_source.buildinfo

Greetings,

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



Bug#974019: marked as done (libkf5screen7: Desktop no more handled)

2020-11-09 Thread Debian Bug Tracking System
Your message dated Mon, 09 Nov 2020 21:03:52 +
with message-id 
and subject line Bug#974019: fixed in kdecoration 4:5.19.5-4
has caused the Debian Bug report #974019,
regarding libkf5screen7: Desktop no more handled
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.)


-- 
974019: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974019
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: libkf5screen7
Version: 4:5.19.5-3
Severity: important


Hello.

This morning I applied my daily upgrade process. it only impacted a few
packages. But at system restart, once logged-in KDE, there aren't any
decorations anymore on windows. I can still launch some of the windows
using keyboard shortcuts, but they all get placed to 0,0, overlapping
the previous one.

Alt-Tab doesn't work anymore. Not only that but windows cannot be moved
with the combi ALT+Mouse. Clicking in a window doesn't give it focus.
couldn't see my plasmoids, change desktop, open menus on de root window.

Here is what got upgraded :

Upgrade: openssl:amd64 (1.1.1g-1, 1.1.1h-1), python3:amd64 (3.8.2-3, 3.8.6-1), 
libkdecorations2-5v5:amd64 (4:5.17.5-2, 4:5.19.5-3), libopenvdb7.1:amd64 
(7.1.0-2, 7.1.0-2+b1), libxnvctrl0:amd64 (450.66-1, 450.80.02-1), idle3:amd64 
(3.8.2-3, 3.8.6-1), python3-minimal:amd64 (3.8.2-3, 3.8.6-1), 
libdatetime-timezone-perl:amd64 (1:2.43-1+2020d, 1:2.44-1+2020d), 
libpython3-stdlib:amd64 (3.8.2-3, 3.8.6-1), libkf5screen-bin:amd64 (4:5.17.5-3, 
4:5.19.5-3), libkf5screen7:amd64 (4:5.17.5-3, 4:5.19.5-3), idle:amd64 (3.8.2-3, 
3.8.6-1), libssl1.1:amd64 (1.1.1g-1, 1.1.1h-1)


At first I thought that libkdecorations2-5v5 was the culprit but its
description indicates that it's an example. I included information for
both packages just to be sure.


-- System Information:
Debian Release: bullseye/sid
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.9.0-1-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_USER
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE=fr
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libkdecorations2-5v5 depends on:
ii  libc6 2.31-4
ii  libkdecorations2private7  4:5.19.5-3
ii  libkf5i18n5   5.74.0-3
ii  libqt5core5a  5.15.1+dfsg-2
ii  libqt5gui55.15.1+dfsg-2
ii  libstdc++610.2.0-16

libkdecorations2-5v5 recommends no packages.

libkdecorations2-5v5 suggests no packages.

-- no debconf information


-- System Information:
Debian Release: bullseye/sid
  APT prefers testing
  APT policy: (500, 'testing'), (100, 'unstable')
Architecture: amd64 (x86_64)

Kernel: Linux 5.9.0-1-amd64 (SMP w/4 CPU threads)
Kernel taint flags: TAINT_USER
Locale: LANG=fr_FR.UTF-8, LC_CTYPE=fr_FR.UTF-8 (charmap=UTF-8), LANGUAGE=fr
Shell: /bin/sh linked to /bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages libkf5screen7 depends on:
ii  libc6 2.31-4
ii  libqt5core5a  5.15.1+dfsg-2
ii  libqt5dbus5   5.15.1+dfsg-2
ii  libqt5gui55.15.1+dfsg-2
ii  libqt5x11extras5  5.15.1-2
ii  libstdc++610.2.0-16

libkf5screen7 recommends no packages.

libkf5screen7 suggests no packages.

-- no debconf informationA
--- End Message ---
--- Begin Message ---
Source: kdecoration
Source-Version: 4:5.19.5-4
Done: Norbert Preining 

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

Debian distribution maintenance software
pp.
Norbert Preining  (supplier of updated kdecoration 
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: Tue, 10 Nov 2020 05:32:39 +0900
Source: kdecoration
Architecture: source
Version: 4:5.19.5-4
Distribution: unstable
Urgency: high
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 974019
Changes:
 kdecoration (4:5.19.5-4) unstable; urgency=high
 .
   [ Norbert Preining ]
   * Tighten breaks against kw

sddm_0.19.0-2_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Nov 2020 04:38:45 +0900
Source: sddm
Architecture: source
Version: 0.19.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 973907
Changes:
 sddm (0.19.0-2) unstable; urgency=medium
 .
   [ Norbert Preining ]
   * Disable 07_fix-desktop-session-env-var.diff imported from Ubuntu
 (Closes: #973907)
   * Add upstream's d/p/upstream-2f034906d-use-only-basename-of-session to
 use only the basename of the session file as session name.
Checksums-Sha1:
 d90a35c60fb3ea8945dcd5ec8a6a7828e6fc2107 2383 sddm_0.19.0-2.dsc
 043e5f576ced27f27a5bbc75d519d23ea1ab9313 58300 sddm_0.19.0-2.debian.tar.xz
 e8d40114f83085b7a0455dcedf91ff6ef9f9d8bc 13627 sddm_0.19.0-2_source.buildinfo
Checksums-Sha256:
 2b99d803924a327943ab6ab5e87d2b904cb8fa3f53805733daaa0cf14b10af59 2383 
sddm_0.19.0-2.dsc
 3e269a0edfd10d24529df1e6cc3425d1b0cb0ebd9405d3aa47cb0cb4910553a2 58300 
sddm_0.19.0-2.debian.tar.xz
 06d353ea7cc46258f7549873a7d8634fbeb805f71214dd6890d79230dbf6687d 13627 
sddm_0.19.0-2_source.buildinfo
Files:
 68cadb7f3d7ff4b50ad38a610684424f 2383 kde optional sddm_0.19.0-2.dsc
 b5a86d0011712eaabcf53ed2214f7a8d 58300 kde optional sddm_0.19.0-2.debian.tar.xz
 ba95cfe70d0fe2b40b96f8f5223a6021 13627 kde optional 
sddm_0.19.0-2_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+poB8ACgkQ2A4JsIcU
AGaLTwf9G7olOwULE3i49ObHgZ+2MIyR6vlyeiTtUqu99bb9RsGA0pVyJT/eseE8
emaaFqfTJiiSE0fgngTOoRSnE3kSgve2kg76/b97YfzXgmlFBSuV92+42PvX08nA
EpU3XUCXzz9tMqu0Tp25ljrFAP9S/9VGeuhVHfTzR8ln659E/mV6wvN9WVvvQTCG
fz+coBgXs/1PhZTpSsahm2i4dllLIHFnWf3t8fCDwtUTQ1En7bE5tp9DE6ruB03S
U5UfdZVsYdeSDkHSlxCyy2k1nLTjPDLE7WS3jUPFogUQ6Jh6B43r0iGyW0ulrGVu
M8bfEJpUcRFjxZAD7VZP7ud/xRnu9w==
=QfFH
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processed: Bug#974054 marked as pending in plasma-workspace

2020-11-09 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #974054 [plasma-workspace-data] plasma-workspace{,-data}: missing 
Breaks+Replaces: plasma-desktop-data (<< 4:5.19)
Added tag(s) pending.

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



plasma-vault_5.19.5-4_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Nov 2020 04:25:13 +0900
Source: plasma-vault
Architecture: source
Version: 5.19.5-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Changes:
 plasma-vault (5.19.5-4) unstable; urgency=medium
 .
   [ Scarlett Moore ]
   * Fix dependency version for ksysguard build dep.
Checksums-Sha1:
 7fe2006171394426c8442df8f7362c998d65d922 2486 plasma-vault_5.19.5-4.dsc
 4bd7e3d0e96ca7f8eb026284f6dc967ea2554c88 11584 
plasma-vault_5.19.5-4.debian.tar.xz
 ea522a631c0f61d185bb2404fbb11bbcd230deee 26722 
plasma-vault_5.19.5-4_source.buildinfo
Checksums-Sha256:
 d16c1eb3f601de897534a5f92cc665f84b4c23c532ec1ddb3f77e206d21d56fa 2486 
plasma-vault_5.19.5-4.dsc
 d0fffb6e848b023a7575e05033fabf15da8526f0ab887b236d42a4419923716c 11584 
plasma-vault_5.19.5-4.debian.tar.xz
 2230a278bd76e8cd1f554ddb77c9a6c9c2d0a8909b1f75cb2be1e00093ac2506 26722 
plasma-vault_5.19.5-4_source.buildinfo
Files:
 ac6562eab6ce5f915933b0d0b533aee0 2486 kde optional plasma-vault_5.19.5-4.dsc
 dee3c555a14fa3a351638ea9f78cbe52 11584 kde optional 
plasma-vault_5.19.5-4.debian.tar.xz
 c28daea0036b0f37bb08acf9f9a328b2 26722 kde optional 
plasma-vault_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+pnaYACgkQ2A4JsIcU
AGa8kggAtAuV9oGt3LiBJwNk5517qcYnBdc1yuq3iYOvk5jM5oI64hDrSGE6keTb
hQC5YFODITwmg/f33qDQy5rK1kuKUdfjVXvplmXZvkO8X2XYxxuZIoZJCWcH8KSm
wbwoxXwBkkrHKKo5qE+TcXuq0o1Y7w2mniPw13kmMrIvIQHINH2n5XH7xVgno7Qx
/Kp7ubgVADkxWwZdVdtUtp6/Naz547R3uj32HyGCLeRxGDcC4XaYvlSx8VwpUn6L
Bhveqhx1Yylu3LJz93S6H6cB6lIp3GaK7Qa0dZrYXbatBX5GOlvqmXlVdSatmMg9
yYCz2XyO0ziJWGhPaJNHMfId2wksdA==
=Gyht
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



oxygen_5.19.5-4_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Nov 2020 04:49:11 +0900
Source: oxygen
Architecture: source
Version: 4:5.19.5-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 974052
Changes:
 oxygen (4:5.19.5-4) unstable; urgency=medium
 .
   [ Scarlett Moore ]
   * Fix "missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19)"
Add Breaks/Replaces to plasma-desktop-data. (Closes: #974052)
Checksums-Sha1:
 14c772644bbbc4eda8295c848d1be46cdcc91608 2814 oxygen_5.19.5-4.dsc
 8cbe349a5ac4210eeb539f9c6fdd32b4c04a778c 15440 oxygen_5.19.5-4.debian.tar.xz
 e9acf38c1b157ae7ac6fc6f609e988b96e7600d8 23869 oxygen_5.19.5-4_source.buildinfo
Checksums-Sha256:
 2cf4499ea9151e40b3f579a4a938bb55d20cb5c35b29087f2484f07081891d64 2814 
oxygen_5.19.5-4.dsc
 7693659339a002db16aa30de2f066f5509e648a078eef91dc3f1c228e7197d2f 15440 
oxygen_5.19.5-4.debian.tar.xz
 d0a8fa1be60acda6526e7ec3581c64dffac848c7153bde9211f0c7c869a26df3 23869 
oxygen_5.19.5-4_source.buildinfo
Files:
 a1ce62aa3220f734c1936a292110c1d8 2814 kde optional oxygen_5.19.5-4.dsc
 fefa030ad29f1dddc5a110f8e6c20527 15440 kde optional 
oxygen_5.19.5-4.debian.tar.xz
 f2af6d0c2028b8895c345641965f77ea 23869 kde optional 
oxygen_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+ppJ0ACgkQ2A4JsIcU
AGY9eAf/cNrA0NJmHKZTCJHo12dlikK/Bn2Aux7hqaQ5AOY+7vTwbtFt7DCd9wlq
LXEVXGutipTY+U5ljSZwH/TNVb9r2NbmxPYx4O/eHJbh2f/J/jgBKNWDs47aenzr
K77+KmphazCYoj/yrq7cyilX6HR1SwUpemf8I1aVkWIhqICB8+Sh+wJy83HRDxDo
tQKe6cgvKqiAnCVJtB03xrU+2GoQf8c/yB3GKozOiAc85tCL0/4WhfAICT6NvUrb
wkf1kjc8NIWJBq3LBm+XjmC0LcjMNLhBeBVoGXUfAQie2Itm+RliJYjyUDOfUKwf
j+E/pz4LP6NS/p6OWTF0U3dIK6m7QQ==
=oHwL
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



kscreenlocker_5.19.5-4_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Tue, 10 Nov 2020 04:24:00 +0900
Source: kscreenlocker
Architecture: source
Version: 5.19.5-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Changes:
 kscreenlocker (5.19.5-4) unstable; urgency=medium
 .
   [ Scarlett Moore ]
   * Revert libexec changes as is has adverse effects. This applies
 to library helpers.
Checksums-Sha1:
 1a2c8acc9964e8dbe081c7fb3371faf48a91e11f 2866 kscreenlocker_5.19.5-4.dsc
 91e2cf6526f4d6cbd5e4966951cf4d6685b1285d 14692 
kscreenlocker_5.19.5-4.debian.tar.xz
 2197a07de48d12d99b32fc36ff5a113a8713d36d 24685 
kscreenlocker_5.19.5-4_source.buildinfo
Checksums-Sha256:
 29b6349af9be484ba09369c35e301ebab2232d488dd6c8f82a4ea0533a26ec24 2866 
kscreenlocker_5.19.5-4.dsc
 efdb7ef0c37d92d009cb61fad0c1e2bf8ef358a6a07604c3dd7b2f10a5970f48 14692 
kscreenlocker_5.19.5-4.debian.tar.xz
 b6ab0b66c9357b748f714500e9717eb2684bd11f8069d5072ad22019b79dabee 24685 
kscreenlocker_5.19.5-4_source.buildinfo
Files:
 55fdede69bf0b1d85949da3816c9b5a8 2866 libs optional kscreenlocker_5.19.5-4.dsc
 c7d5c88e41c3a56d3e902cadf3d893e2 14692 libs optional 
kscreenlocker_5.19.5-4.debian.tar.xz
 415dbe2a283cdd19e32bcb8dbd4f6a47 24685 libs optional 
kscreenlocker_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+pnagACgkQ2A4JsIcU
AGY9PAgAoXQkC7emAYFH7hB1/P2vNo2Cw1koYaNKH67GFt7834fPOIbaqSROJgrF
+RZTHS5N9/a9JYTWjICjWDKkUiWf2tM9/R3sdxEtEbGXrUH4WOPuzW+CCW/5Z/dt
W7jaq01yXrWjGYoR31/iiKhCw1dIoY0w1Mt8Tr4FLXCXaTy0NQjlIdlan7iN6Czd
ZxqKCaJxqKabjQR0C/NpKD4bn8m0Gs/r53YMD3uzTkawDHcZQjzxoU1iI9eSUic9
MVKNEtEC5ca2O+5SsBY495KQ+TEvYKxzryV5ab7i8RQVHQjALafPxdudIdj1JoCj
l+6yoEgJwWgDYPv30XpsRoVrvcm0zQ==
=24Ky
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of sddm_0.19.0-2_source.changes

2020-11-09 Thread Debian FTP Masters
sddm_0.19.0-2_source.changes uploaded successfully to localhost
along with the files:
  sddm_0.19.0-2.dsc
  sddm_0.19.0-2.debian.tar.xz
  sddm_0.19.0-2_source.buildinfo

Greetings,

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



Processing of oxygen_5.19.5-4_source.changes

2020-11-09 Thread Debian FTP Masters
oxygen_5.19.5-4_source.changes uploaded successfully to localhost
along with the files:
  oxygen_5.19.5-4.dsc
  oxygen_5.19.5-4.debian.tar.xz
  oxygen_5.19.5-4_source.buildinfo

Greetings,

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



Bug#973907: marked as done (sddm 0.19.0-1 doesnt remeber last session)

2020-11-09 Thread Debian Bug Tracking System
Your message dated Mon, 09 Nov 2020 20:45:34 +
with message-id 
and subject line Bug#973907: fixed in sddm 0.19.0-2
has caused the Debian Bug report #973907,
regarding sddm 0.19.0-1 doesnt remeber last session
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.)


-- 
973907: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=973907
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: sddm
Version: 0.19.0-1
Severity: important

Dear Maintainer,

*** Reporter, please consider answering these questions, where appropriate ***

   * What led up to the situation?
upgrading sddm

   * What exactly did you do (or not do) that was effective (or
 ineffective)?
reboot and login, now 3 times

   * What was the outcome of this action?
in my case i thought that plasma would pop up, but fluxbox appears

   * What outcome did you expect instead?
i would like to see a plasma-session (last-session) with out choosing it after
every reboot/logout and not the first in the line (fluxbox in my case)



-- System Information:
Debian Release: bullseye/sid
  APT prefers unstable-debug
  APT policy: (500, 'unstable-debug'), (500, 'buildd-unstable'), (500, 
'unstable'), (1, 'experimental')
Architecture: amd64 (x86_64)

Kernel: Linux 5.9.6-towo.1-siduction-amd64 (SMP w/4 CPU threads; PREEMPT)
Kernel taint flags: TAINT_WARN, TAINT_CRAP, TAINT_OOT_MODULE
Locale: LANG=de_DE.UTF-8, LC_CTYPE=de_DE.UTF-8 (charmap=UTF-8), LANGUAGE=de
Shell: /bin/sh linked to /usr/bin/dash
Init: systemd (via /run/systemd/system)
LSM: AppArmor: enabled

Versions of packages sddm depends on:
ii  adduser 3.118
ii  debconf [debconf-2.0]   1.5.74
ii  libc6   2.31-4
ii  libgcc-s1   10.2.0-16
ii  libpam0g1.3.1-5
ii  libqt5core5a5.15.1+dfsg-2
ii  libqt5dbus5 5.15.1+dfsg-2
ii  libqt5gui5  5.15.1+dfsg-2
ii  libqt5network5  5.15.1+dfsg-2
ii  libqt5qml5  5.15.1+dfsg-3
ii  libqt5quick55.15.1+dfsg-3
ii  libstdc++6  10.2.0-16
ii  libsystemd0 246.6-2
ii  libxcb-xkb1 1.14-2
ii  libxcb1 1.14-2
ii  qml-module-qtquick2 5.15.1+dfsg-3
ii  x11-common  1:7.7+21
ii  xauth   1:1.0.10-1
ii  xserver-xorg [xserver]  1:7.7+21

Versions of packages sddm recommends:
ii  haveged1.9.8-4
ii  libpam-systemd 246.6-2
ii  sddm-theme-2001 [sddm-theme]   1.1
ii  sddm-theme-debian-elarun [sddm-theme]  0.19.0-1
ii  sddm-theme-patience [sddm-theme]   2018.3.0-1

Versions of packages sddm suggests:
ii  libpam-kwallet5   5.20.2-1~np1
pn  qtvirtualkeyboard-plugin  

-- debconf information:
  sddm/daemon_name: /usr/bin/sddm
* shared/default-x-display-manager: sddm
--- End Message ---
--- Begin Message ---
Source: sddm
Source-Version: 0.19.0-2
Done: Norbert Preining 

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

Debian distribution maintenance software
pp.
Norbert Preining  (supplier of updated sddm 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: Tue, 10 Nov 2020 04:38:45 +0900
Source: sddm
Architecture: source
Version: 0.19.0-2
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 973907
Changes:
 sddm (0.19.0-2) unstable; urgency=medium
 .
   [ Norbert Preining ]
   * Disable 07_fix-desktop-session-env-var.diff imported from Ubuntu
 (Closes: #973907)
   * Add upstream's d/p/upstream-2f034906d-use-only-basename-of-session to
 use only the basename of the session file as session name.
Checksums-Sha1:
 d90a35c60fb3ea8945dcd5ec8a6a7828e6fc2107 2383 sddm_0.19.0-2.dsc
 043e5f576ced27f27a5bbc75d519d23ea1ab9313 58300 sddm_0.19.0-2.debian.tar.xz
 e8d40114f83085b7a0455dcedf91ff6ef9f9d8bc 13627 sddm_0.19.0-2_source.buildinfo
Checksums-Sha256:
 2b99d803924a327943ab6ab5e87d2b904cb8fa3f53805733daaa0cf14b10af59 2383 
sddm_0.19.0-2.dsc
 3e269a0edfd10d24529df1e6cc3425

Bug#974052: marked as done (kde-style-oxygen-qt5: missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19))

2020-11-09 Thread Debian Bug Tracking System
Your message dated Mon, 09 Nov 2020 20:43:57 +
with message-id 
and subject line Bug#974052: fixed in oxygen 4:5.19.5-4
has caused the Debian Bug report #974052,
regarding kde-style-oxygen-qt5: missing Breaks+Replaces: plasma-desktop-data 
(<< 4:5.19)
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.)


-- 
974052: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974052
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: kde-style-oxygen-qt5
Version: 4:5.19.5-3
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' 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/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

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

  Preparing to unpack .../kde-style-oxygen-qt5_4%3a5.19.5-3_amd64.deb ...
  Unpacking kde-style-oxygen-qt5 (4:5.19.5-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/kde-style-oxygen-qt5_4%3a5.19.5-3_amd64.deb (--unpack):
   trying to overwrite '/usr/share/color-schemes/Oxygen.colors', which is also 
in package plasma-desktop-data 4:5.14.5.1-1
  dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/kde-style-oxygen-qt5_4%3a5.19.5-3_amd64.deb


cheers,

Andreas


plasma-desktop-data=4:5.14.5.1-1_kde-style-oxygen-qt5=4:5.19.5-3.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: oxygen
Source-Version: 4:5.19.5-4
Done: Norbert Preining 

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

Debian distribution maintenance software
pp.
Norbert Preining  (supplier of updated oxygen 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: Tue, 10 Nov 2020 04:49:11 +0900
Source: oxygen
Architecture: source
Version: 4:5.19.5-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Norbert Preining 
Closes: 974052
Changes:
 oxygen (4:5.19.5-4) unstable; urgency=medium
 .
   [ Scarlett Moore ]
   * Fix "missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19)"
Add Breaks/Replaces to plasma-desktop-data. (Closes: #974052)
Checksums-Sha1:
 14c772644bbbc4eda8295c848d1be46cdcc91608 2814 oxygen_5.19.5-4.dsc
 8cbe349a5ac4210eeb539f9c6fdd32b4c04a778c 15440 oxygen_5.19.5-4.debian.tar.xz
 e9acf38c1b157ae7ac6fc6f609e988b96e7600d8 23869 oxygen_5.19.5-4_source.buildinfo
Checksums-Sha256:
 2cf4499ea9151e40b3f579a4a938bb55d20cb5c35b29087f2484f07081891d64 2814 
oxygen_5.19.5-4.dsc
 7693659339a002db16aa30de2f066f5509e648a078eef91dc3f1c228e7197d2f 15440 
oxygen_5.19.5-4.debian.tar.xz
 d0a8fa1be60acda6526e7ec3581c64dffac848c7153bde9211f0c7c869a26df3 23869 
oxygen_5.19.5-4_source.buildinfo
Files:
 a1ce62aa3220f734c1936a292110c1d8 2814 kde optional oxygen_5.19.5-4.dsc
 fefa030ad29f1dddc5a110f8e6c20527 15440 kde optional 
oxygen_5.19.5-4.debian.tar.xz
 f2af6d0c2028b8895c345641965f77ea 23869 kde optional 
oxygen_5.19.5-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQEzBAEBCgAdFiEE68ws0vrA2voQX53I2A4JsIcUAGYFAl+ppJ0ACgkQ2A4JsIcU
AGY9eAf/cNrA0NJmHKZTCJHo12dlikK/Bn2Aux7hqaQ5AOY+7vTwbtFt7DCd9wlq
LXEVXGutipTY+U5ljSZwH/TNVb9r2NbmxPYx4O/eHJbh2f/J/jgBKNWDs47aenzr
K77+KmphazCYoj/yrq7cyilX6HR1SwUpemf8I1aVkWIhqICB8+Sh+wJy83HRDxDo
tQKe6cgvKqiAnCVJtB03xrU+2GoQf8c/yB3GKozOiAc85tCL0/4WhfAICT6NvUrb
wkf1kjc8NIWJBq3LBm+XjmC0LcjMNLhBeBVoGXUfAQie2Itm+RliJYjyUDOfUKwf
j+E/pz4LP6NS/p6OWTF0U3dIK6m7QQ==
=oHwL
-END PGP SIGNATURE End Message ---


Processed: your mail

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

> reassign #974019 libkdecorations2-5v5 4:5.19.5-3
Bug #974019 [libkf5screen7] libkf5screen7: Desktop no more handled
Bug reassigned from package 'libkf5screen7' to 'libkdecorations2-5v5'.
No longer marked as found in versions libkscreen/4:5.19.5-3.
Ignoring request to alter fixed versions of bug #974019 to the same values 
previously set
Bug #974019 [libkdecorations2-5v5] libkf5screen7: Desktop no more handled
Marked as found in versions kdecoration/4:5.19.5-3.
> quit
Stopping processing here.

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



Processed: Bug#974052 marked as pending in oxygen

2020-11-09 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #974052 [kde-style-oxygen-qt5] kde-style-oxygen-qt5: missing 
Breaks+Replaces: plasma-desktop-data (<< 4:5.19)
Ignoring request to alter tags of bug #974052 to the same tags previously set

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



Processing of plasma-vault_5.19.5-4_source.changes

2020-11-09 Thread Debian FTP Masters
plasma-vault_5.19.5-4_source.changes uploaded successfully to localhost
along with the files:
  plasma-vault_5.19.5-4.dsc
  plasma-vault_5.19.5-4.debian.tar.xz
  plasma-vault_5.19.5-4_source.buildinfo

Greetings,

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



Processing of kscreenlocker_5.19.5-4_source.changes

2020-11-09 Thread Debian FTP Masters
kscreenlocker_5.19.5-4_source.changes uploaded successfully to localhost
along with the files:
  kscreenlocker_5.19.5-4.dsc
  kscreenlocker_5.19.5-4.debian.tar.xz
  kscreenlocker_5.19.5-4_source.buildinfo

Greetings,

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



Re: ffmpeg dev question

2020-11-09 Thread Sebastian Ramacher
On 2020-11-09 17:53:52 +0100, Jérôme Bardot wrote:
> Hello pretty new on cross compilation.
> and i want to know if ffmpegs devs lib are build with cross compilation 
> prefix ?
> 
> Something like specify here :
> - https://ffmpeg.org/platform.html#Cross-compilation-for-Windows-with-Linux-1
> 
> Also i want to use it in qt creator.

While cross-compiling is supported, the target needs to be a valid
Debian architecture. So in theory, you could patch dpkg to support such
a Windows target, build enough of the archive with a cross-compiler to
satisfy all the build dependencies and then build ffmpeg. But then you'd
end up with some debs and I'm not sure if that's what you want.

If you just want ffmpeg built for Windows, I'd follow the upstream guide
and ignore the Debian package.

Cheers
-- 
Sebastian Ramacher


signature.asc
Description: PGP signature


Bug#973659: qtdeclarative5-dev-tools: qmlcachegen segfaults on hppa

2020-11-09 Thread Dmitry Shachnev
On Sat, Nov 07, 2020 at 06:07:02PM -0500, John David Anglin wrote:
> That's what I was afraid of.  If these assumptions are localized, it would
> help if you could point them out.

I can't point them out :(

But I can suggest you to contact upstream (via the mailing list or via
bugreports.qt.io) and ask them where such code may be present.

I only found one old bug report and it was fixed:
https://bugreports.qt.io/browse/QTBUG-44268

--
Dmitry Shachnev


signature.asc
Description: PGP signature


Bug#974019: libkf5screen7: Desktop no more handled

2020-11-09 Thread Gerald - Kaamos Creations
Ran into the same issue as described above.


Thanks Victor,

your workaround did the job for me.



signond_8.60-4_source.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 09 Nov 2020 17:42:11 +0100
Source: signond
Architecture: source
Version: 8.60-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Closes: 974049
Changes:
 signond (8.60-4) unstable; urgency=medium
 .
   * Team upload.
   * signon-plugins-dev: bump to 8.60~ the version of the signond-dev
 breaks/replaces. (Closes: #974049)
Checksums-Sha1:
 7e5ac0e60611367aeec87567f8de345315a67b8e 2862 signond_8.60-4.dsc
 a5bdbeb771fa739e914109362ebe19d5c50d355d 17364 signond_8.60-4.debian.tar.xz
 d492f01f93f9eca14cb9cc46f5f93ce9ee2d1903 12417 signond_8.60-4_source.buildinfo
Checksums-Sha256:
 4e1970808a3518f817553acd6aa7e77383d467aa1435ccc7d6324577d892d6ee 2862 
signond_8.60-4.dsc
 0ff62a419f9ecbde0b286bebe421ee2b9cc38a2a241793f5e22c02fd3f1b4122 17364 
signond_8.60-4.debian.tar.xz
 011506657d6673a00937474db12166990d5facc5c36a8f43887ffafb621783db 12417 
signond_8.60-4_source.buildinfo
Files:
 e33a86c6c240d8995d696a4cbc697845 2862 utils optional signond_8.60-4.dsc
 93d89f6067609db053f54d2c035565e9 17364 utils optional 
signond_8.60-4.debian.tar.xz
 3fb5110de0a881be91c41be4e36236a5 12417 utils optional 
signond_8.60-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAl+pcZUACgkQLRkciEOx
P009AA/9GO0sgWzevVBRQvf3IfgwGAhVjRQWImz+dTCpqx5GjXDWu0tMbrdW9UBy
8fJVy3EV33gqMiH/iBql1tU2ZPCtqd5zvtgoo2dDPYq72vHO5XgMuNwg00hYAsTp
WjLIuzc8KaR4wUH8tgi+F/vqucG8DADSP7k/wcK2EGPgy8dNuQm1o7zQkqqhsYvT
OFxxgsS8YxCt3nWSJvldwqpYICyijJbLSZgBgkhP9+FS4scRNsmQUL9NqM94EDjB
JQNtT1XOQnKj0TtS2s08pXQiIWd1OUAGroVKE/4hWqHxBZW6JiUUvszONNcwGMwN
zmQEDnNrCOlw9/yZxj39wLeqXyl5LHgRgkP7OzLCHiaCnf5b4mq6Y4CLzsORqRZC
G6977fFDigpT6teFZTrA7rsVgD8fpppX5gFIP2e8AmNVmabxzcxBpXypK8ngJsqM
WtaFoiuYTt/M/ZURMXnIQujZfVdJHouchQMvtZL/l4B+r7MmSB34g3xbrWMcz3fC
Tb/P1XilWgTWZ0asNAqjHJ/HcfbKXjs+iyhpYoekrl8364PaSkx8CV73nrl3eNJH
bf6+5Tifgk++zujG8NX7sJwsBw8L2tn4Tdvv4cxSoQuDJjAZEVwpNPUyRN2kPbtE
vhKzmcozq8kXM2UZkO7+2dDt3i7uGb1MwakFK6ToPE5ox7UC6Hs=
=Xij7
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



ffmpeg dev question

2020-11-09 Thread Jérôme Bardot
Hello pretty new on cross compilation.
and i want to know if ffmpegs devs lib are build with cross compilation prefix ?

Something like specify here :
- https://ffmpeg.org/platform.html#Cross-compilation-for-Windows-with-Linux-1

Also i want to use it in qt creator.

Thx



Bug#974049: marked as done (signon-plugins-dev: missing Breaks+Replaces: signond-dev (<< 8.60))

2020-11-09 Thread Debian Bug Tracking System
Your message dated Mon, 09 Nov 2020 17:07:31 +
with message-id 
and subject line Bug#974049: fixed in signond 8.60-4
has caused the Debian Bug report #974049,
regarding signon-plugins-dev: missing Breaks+Replaces: signond-dev (<< 8.60)
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.)


-- 
974049: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=974049
Debian Bug Tracking System
Contact ow...@bugs.debian.org with problems
--- Begin Message ---
Package: signon-plugins-dev
Version: 8.60-3
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' 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/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

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

  Preparing to unpack .../signon-plugins-dev_8.60-3_amd64.deb ...
  Unpacking signon-plugins-dev:amd64 (8.60-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/signon-plugins-dev_8.60-3_amd64.deb (--unpack):
   trying to overwrite '/usr/lib/x86_64-linux-gnu/libsignon-plugins-common.so', 
which is also in package signond-dev 8.59-2+b1
  Errors were encountered while processing:
   /var/cache/apt/archives/signon-plugins-dev_8.60-3_amd64.deb


cheers,

Andreas


signond-dev=8.59-2+b1_signon-plugins-dev=8.60-3.log.gz
Description: application/gzip
--- End Message ---
--- Begin Message ---
Source: signond
Source-Version: 8.60-4
Done: Pino Toscano 

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

Debian distribution maintenance software
pp.
Pino Toscano  (supplier of updated signond 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: Mon, 09 Nov 2020 17:42:11 +0100
Source: signond
Architecture: source
Version: 8.60-4
Distribution: unstable
Urgency: medium
Maintainer: Debian Qt/KDE Maintainers 
Changed-By: Pino Toscano 
Closes: 974049
Changes:
 signond (8.60-4) unstable; urgency=medium
 .
   * Team upload.
   * signon-plugins-dev: bump to 8.60~ the version of the signond-dev
 breaks/replaces. (Closes: #974049)
Checksums-Sha1:
 7e5ac0e60611367aeec87567f8de345315a67b8e 2862 signond_8.60-4.dsc
 a5bdbeb771fa739e914109362ebe19d5c50d355d 17364 signond_8.60-4.debian.tar.xz
 d492f01f93f9eca14cb9cc46f5f93ce9ee2d1903 12417 signond_8.60-4_source.buildinfo
Checksums-Sha256:
 4e1970808a3518f817553acd6aa7e77383d467aa1435ccc7d6324577d892d6ee 2862 
signond_8.60-4.dsc
 0ff62a419f9ecbde0b286bebe421ee2b9cc38a2a241793f5e22c02fd3f1b4122 17364 
signond_8.60-4.debian.tar.xz
 011506657d6673a00937474db12166990d5facc5c36a8f43887ffafb621783db 12417 
signond_8.60-4_source.buildinfo
Files:
 e33a86c6c240d8995d696a4cbc697845 2862 utils optional signond_8.60-4.dsc
 93d89f6067609db053f54d2c035565e9 17364 utils optional 
signond_8.60-4.debian.tar.xz
 3fb5110de0a881be91c41be4e36236a5 12417 utils optional 
signond_8.60-4_source.buildinfo

-BEGIN PGP SIGNATURE-

iQIzBAEBCgAdFiEEXyqfuC+mweEHcAcHLRkciEOxP00FAl+pcZUACgkQLRkciEOx
P009AA/9GO0sgWzevVBRQvf3IfgwGAhVjRQWImz+dTCpqx5GjXDWu0tMbrdW9UBy
8fJVy3EV33gqMiH/iBql1tU2ZPCtqd5zvtgoo2dDPYq72vHO5XgMuNwg00hYAsTp
WjLIuzc8KaR4wUH8tgi+F/vqucG8DADSP7k/wcK2EGPgy8dNuQm1o7zQkqqhsYvT
OFxxgsS8YxCt3nWSJvldwqpYICyijJbLSZgBgkhP9+FS4scRNsmQUL9NqM94EDjB
JQNtT1XOQnKj0TtS2s08pXQiIWd1OUAGroVKE/4hWqHxBZW6JiUUvszONNcwGMwN
zmQEDnNrCOlw9/yZxj39wLeqXyl5LHgRgkP7OzLCHiaCnf5b4mq6Y4CLzsORqRZC
G6977fFDigpT6teFZTrA7rsVgD8fpppX5gFIP2e8AmNVmabxzcxBpXypK8ngJsqM
WtaFoiuYTt/M/ZURMXnIQujZfVdJHouchQMvtZL/l4B+r7MmSB34g3xbrWMcz3fC
Tb/P1XilWgTWZ0asNAqjHJ/HcfbKXjs+iyhpYoekrl8364PaSkx8CV73nrl3eNJH
bf6+5Tifgk++zujG8NX7sJwsBw8L2tn4Tdvv4cxSoQuDJjAZEVwpNPUyRN2kPbtE
vhKzmcozq8kXM2UZkO7+2dDt3i7uGb1MwakFK6ToPE5ox7UC6Hs=
=Xij7
-END PGP SIGNATURE End Message ---


Processing of signond_8.60-4_source.changes

2020-11-09 Thread Debian FTP Masters
signond_8.60-4_source.changes uploaded successfully to localhost
along with the files:
  signond_8.60-4.dsc
  signond_8.60-4.debian.tar.xz
  signond_8.60-4_source.buildinfo

Greetings,

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



Processed: tagging 974049

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

> tags 974049 + pending
Bug #974049 [signon-plugins-dev] signon-plugins-dev: missing Breaks+Replaces: 
signond-dev (<< 8.60)
Added tag(s) pending.
> thanks
Stopping processing here.

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



Bug#974019: libkf5screen7: Desktop no more handled

2020-11-09 Thread Francois Mescam

I've the same bug.

After downgrade libkdecorations2-5v5:amd64 to 4:5.17.5-2, 
libkf5screen-bin:amd64 to 4:5.17.5-3 and libkf5screen7:amd64 to 
4:5.17.5-3 i.e. to the previous version, kde works well.


I do'nt know more precisely if only one package is responsible for the 
problem.



Regards

--
Francois Mescam



Processed: Bug#974052 marked as pending in oxygen

2020-11-09 Thread Debian Bug Tracking System
Processing control commands:

> tag -1 pending
Bug #974052 [kde-style-oxygen-qt5] kde-style-oxygen-qt5: missing 
Breaks+Replaces: plasma-desktop-data (<< 4:5.19)
Added tag(s) pending.

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



Bug#974054: plasma-workspace-data: missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19)

2020-11-09 Thread Andreas Beckmann
Followup-For: Bug #974054
Control: retitle -1 plasma-workspace{,-data}: missing Breaks+Replaces: 
plasma-desktop-data (<< 4:5.19)

There is also:

  Preparing to unpack .../plasma-workspace_4%3a5.19.5-3_amd64.deb ...
  Unpacking plasma-workspace (4:5.19.5-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/plasma-workspace_4%3a5.19.5-3_amd64.deb (--unpack):
   trying to overwrite '/usr/share/kservices5/kcm_translations.desktop', which 
is also in package plasma-desktop-data 4:5.14.5.1-1
  dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/plasma-workspace_4%3a5.19.5-3_amd64.deb


Andreas



Processed: Re: plasma-workspace-data: missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19)

2020-11-09 Thread Debian Bug Tracking System
Processing control commands:

> retitle -1 plasma-workspace{,-data}: missing Breaks+Replaces: 
> plasma-desktop-data (<< 4:5.19)
Bug #974054 [plasma-workspace-data] plasma-workspace-data: missing 
Breaks+Replaces: plasma-desktop-data (<< 4:5.19)
Changed Bug title to 'plasma-workspace{,-data}: missing Breaks+Replaces: 
plasma-desktop-data (<< 4:5.19)' from 'plasma-workspace-data: missing 
Breaks+Replaces: plasma-desktop-data (<< 4:5.19)'.

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



Bug#974054: plasma-workspace-data: missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19)

2020-11-09 Thread Andreas Beckmann
Package: plasma-workspace-data
Version: 4:5.19.5-3
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' 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/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

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

  Preparing to unpack .../plasma-workspace-data_4%3a5.19.5-3_all.deb ...
  Unpacking plasma-workspace-data (4:5.19.5-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/plasma-workspace-data_4%3a5.19.5-3_all.deb (--unpack):
   trying to overwrite 
'/usr/share/doc/HTML/ca/kcontrol/translations/index.cache.bz2', which is also 
in package plasma-desktop-data 4:5.14.5.1-1
  dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/plasma-workspace-data_4%3a5.19.5-3_all.deb


cheers,

Andreas


plasma-desktop-data=4:5.14.5.1-1_plasma-workspace-data=4:5.19.5-3.log.gz
Description: application/gzip


Bug#974052: kde-style-oxygen-qt5: missing Breaks+Replaces: plasma-desktop-data (<< 4:5.19)

2020-11-09 Thread Andreas Beckmann
Package: kde-style-oxygen-qt5
Version: 4:5.19.5-3
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' 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/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

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

  Preparing to unpack .../kde-style-oxygen-qt5_4%3a5.19.5-3_amd64.deb ...
  Unpacking kde-style-oxygen-qt5 (4:5.19.5-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/kde-style-oxygen-qt5_4%3a5.19.5-3_amd64.deb (--unpack):
   trying to overwrite '/usr/share/color-schemes/Oxygen.colors', which is also 
in package plasma-desktop-data 4:5.14.5.1-1
  dpkg-deb: error: paste subprocess was killed by signal (Broken pipe)
  Errors were encountered while processing:
   /var/cache/apt/archives/kde-style-oxygen-qt5_4%3a5.19.5-3_amd64.deb


cheers,

Andreas


plasma-desktop-data=4:5.14.5.1-1_kde-style-oxygen-qt5=4:5.19.5-3.log.gz
Description: application/gzip


Bug#974049: signon-plugins-dev: missing Breaks+Replaces: signond-dev (<< 8.60)

2020-11-09 Thread Andreas Beckmann
Package: signon-plugins-dev
Version: 8.60-3
Severity: serious
User: debian...@lists.debian.org
Usertags: piuparts

Hi,

during a test with piuparts I noticed your package fails to upgrade from
'testing'.
It installed fine in 'testing', then the upgrade to 'sid' 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/ch-relationships.html#overwriting-files-and-replacing-packages-replaces

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

  Preparing to unpack .../signon-plugins-dev_8.60-3_amd64.deb ...
  Unpacking signon-plugins-dev:amd64 (8.60-3) ...
  dpkg: error processing archive 
/var/cache/apt/archives/signon-plugins-dev_8.60-3_amd64.deb (--unpack):
   trying to overwrite '/usr/lib/x86_64-linux-gnu/libsignon-plugins-common.so', 
which is also in package signond-dev 8.59-2+b1
  Errors were encountered while processing:
   /var/cache/apt/archives/signon-plugins-dev_8.60-3_amd64.deb


cheers,

Andreas


signond-dev=8.59-2+b1_signon-plugins-dev=8.60-3.log.gz
Description: application/gzip


kate_20.08.3-1_amd64.changes ACCEPTED into unstable

2020-11-09 Thread Debian FTP Masters



Accepted:

-BEGIN PGP SIGNED MESSAGE-
Hash: SHA512

Format: 1.8
Date: Mon, 09 Nov 2020 11:24:55 +0100
Source: kate
Architecture: source
Version: 4:20.08.3-1
Distribution: unstable
Urgency: medium
Maintainer: Debian/Kubuntu Qt/KDE Maintainers 
Changed-By: Aurélien COUDERC 
Changes:
 kate (4:20.08.3-1) unstable; urgency=medium
 .
   * Team upload.
   * Use more concise URL for upstream Bug-Database metadata.
   * New upstream release (20.08.3).
Checksums-Sha1:
 03c475b73023d82679b9fad740ba221d78c61d93 3206 kate_20.08.3-1.dsc
 25d4616bce8f4b7ee7cd4675bb1327885889e16f 5853216 kate_20.08.3.orig.tar.xz
 fe0f0e510eb51b95076daea5ba84d9158d12374f 488 kate_20.08.3.orig.tar.xz.asc
 12fc3fd6f82850035a99c4dee705bc3fd04463a4 16000 kate_20.08.3-1.debian.tar.xz
 b01bbf609e1d0aab965428e20ad80637caee90a6 24231 kate_20.08.3-1_amd64.buildinfo
Checksums-Sha256:
 24b691b8487d473eefba45b71e20c6c8f467062bb97a5a9cb98a350aec8fd9f5 3206 
kate_20.08.3-1.dsc
 e9b7a9b11ae54a387b5a6d6f4253f9da7f63972fe2928d7fa280d969638dfdd4 5853216 
kate_20.08.3.orig.tar.xz
 cef7253be1633529a9db44e1ae5a12d96eeaf8f11f2e0fedac768fe6f4acf06f 488 
kate_20.08.3.orig.tar.xz.asc
 5c57909862a9202de188e3ba87696e0daed9ff843b81b8378af6911df2764d4b 16000 
kate_20.08.3-1.debian.tar.xz
 1a077c28c6b9df710f11953ec3546e6f6b7fd9dfd64383a770adebd82c087545 24231 
kate_20.08.3-1_amd64.buildinfo
Files:
 fe2bd82c5b5a24d777665c82af783837 3206 kde optional kate_20.08.3-1.dsc
 56af7c5109b860e0af8850cb85bb0384 5853216 kde optional kate_20.08.3.orig.tar.xz
 2cff5081b9fa3e6118362c92d98390e8 488 kde optional kate_20.08.3.orig.tar.xz.asc
 e68e9b1fbf24036173f8911e6ea4d1dd 16000 kde optional 
kate_20.08.3-1.debian.tar.xz
 a16c9841cd2dd46692d4dd557ccdaff6 24231 kde optional 
kate_20.08.3-1_amd64.buildinfo

-BEGIN PGP SIGNATURE-

iQJHBAEBCgAxFiEEIW//QAAaDgcOKDsfcaflM/KRoyQFAl+pGgITHGNvdWNvdWZA
ZGViaWFuLm9yZwAKCRBxp+Uz8pGjJNQ6D/4pWs6BVbzFYLxav5tVXNCmxWqU6ve6
LJ8/TzH7lAEPDzjENxllzW6SVukUjcaeMXDCuV/+CTC0xRph/oTaFS136XrhCDtf
wVp89doTWpjw5GAZhirtNLBUV3cWZjAEsfVTs/g2Lcr8gqBe3u9DbgDEh6BX3VVS
v7vt4aBXQSRZ0E+GBX0IW0rVM5ZuyUGfrM1/mNEvubO0yi9zcwDgQKHv5vC2jyEM
em0ZBZuaxJhW8+B5eVNn06YBCSyIP8wiOIGGZlorl+ZYDA2NFalroStX/jNUY+g6
uvsZCpx4g6eu0XY1DwyTWYjMKVvlZWpTdzRQ9lkKoDaa9vlgvW2lqI/m6X6NJNQK
CpVv0hrGNkWXo8MDDWgSTj1MVCP/IuegrOMio+RAzxXKZvkMMN4B2bfbA+H3qAls
T+R14mf7da5RVKBQFU4ajZ++G3V606V3ZA/y0kTPs3XLl12400xXoUWqZRXr5DN3
O29/jFvOCtuPEzcTq/tNZpG1UMH6LhOE/CzKBdzd7tgf77mpfd3XD2/KblvCNCg2
Qf720PaVKMS4c7w/YNyuKaiCvJW3mhHcZNUB4UV+IcBWwGysqqRd+07Zugq5kYkO
C6HvlhHL3vhr5VTakeEIXJko2/NwUhIW09wbloHJZp5CdHg5kCmrKz/V/T418EU5
Q1rca4t/AaMTeQ==
=4B3H
-END PGP SIGNATURE-


Thank you for your contribution to Debian.



Processing of kate_20.08.3-1_amd64.changes

2020-11-09 Thread Debian FTP Masters
kate_20.08.3-1_amd64.changes uploaded successfully to localhost
along with the files:
  kate_20.08.3-1.dsc
  kate_20.08.3.orig.tar.xz
  kate_20.08.3.orig.tar.xz.asc
  kate_20.08.3-1.debian.tar.xz
  kate_20.08.3-1_amd64.buildinfo

Greetings,

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



Bug#974026: On upgrade, sddm clobbers /usr/share/sddm/scripts/Xsetup

2020-11-09 Thread Alain Knaff
Package: sddm
Version: 0.18.0-1+deb10u1

Hi,

sddm contains a file /usr/share/sddm/scripts/Xsetup intended to be
customized... such as for setting up a displayLink hub.

Indeed, as shipped the file is empty, except for the hashbang line and a
single line comment ("Xsetup - run as root before the login dialog
appears"). Obviously intended to receive user-supplied customizations.

However, on package upgrade this file gets overwritten, losing user's
customization.

Shouldn't this be declared as a "config" file in the debian package, so
that its content is not lost on upgrade? (debian/conffiles)

Thanks,

Alain