Accepting request 364802 from KDE:Frameworks5
Update to 5.5.5 OBS-URL: https://build.opensuse.org/request/show/364802 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/kscreenlocker?expand=0&rev=5
This commit is contained in:
commit
f80c4363bb
@ -1,39 +0,0 @@
|
|||||||
From fae65f1cdd6446042b31ccd0eafd7a4c0b6623e3 Mon Sep 17 00:00:00 2001
|
|
||||||
From: =?UTF-8?q?Martin=20Gr=C3=A4=C3=9Flin?= <mgraesslin@kde.org>
|
|
||||||
Date: Fri, 5 Feb 2016 10:30:19 +0100
|
|
||||||
Subject: [PATCH 1/1] [greeter] Dont quit when last window closes
|
|
||||||
|
|
||||||
Qt allows to have no screens. If all XRandR screens are disconnected
|
|
||||||
there are also no QScreens. This is from an X11 perspective wrong, but
|
|
||||||
we have to deal with it. No QScreens means that all views are destroyed
|
|
||||||
and no new ones are created. Thus all windows close and the greeter
|
|
||||||
exited successfully which in turn unlocked the screen.
|
|
||||||
|
|
||||||
This change ensures that the greeter doesn't exit when all windows close.
|
|
||||||
|
|
||||||
Funnily this was not a problem with the well known issue of Qt
|
|
||||||
crashing when all screens are disconnected. The lock screen handles
|
|
||||||
crashes gracefully and just restarts or more likely Qt also crashes
|
|
||||||
the application using KSld and thus taking down the complete session.
|
|
||||||
|
|
||||||
BUG: 358125
|
|
||||||
FIXED-IN: 5.5.5
|
|
||||||
---
|
|
||||||
greeter/main.cpp | 1 +
|
|
||||||
1 file changed, 1 insertion(+)
|
|
||||||
|
|
||||||
diff --git a/greeter/main.cpp b/greeter/main.cpp
|
|
||||||
index e4e679e..5625d36 100644
|
|
||||||
--- a/greeter/main.cpp
|
|
||||||
+++ b/greeter/main.cpp
|
|
||||||
@@ -59,6 +59,7 @@ int main(int argc, char* argv[])
|
|
||||||
qputenv("QT_IM_MODULE", QByteArrayLiteral("compose"));
|
|
||||||
}
|
|
||||||
ScreenLocker::UnlockApp app(argc, argv);
|
|
||||||
+ app.setQuitOnLastWindowClosed(false);
|
|
||||||
QCoreApplication::setApplicationName(QStringLiteral("kscreenlocker_greet"));
|
|
||||||
QCoreApplication::setApplicationVersion(QStringLiteral("0.1"));
|
|
||||||
QCoreApplication::setOrganizationDomain(QStringLiteral("kde.org"));
|
|
||||||
--
|
|
||||||
2.6.2
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:39c3a4272b6f53b26c27054f5efb54c0e88ebb6d6aea3f8a541dc5bc8b1b25a3
|
|
||||||
size 98204
|
|
3
kscreenlocker-5.5.5.tar.xz
Normal file
3
kscreenlocker-5.5.5.tar.xz
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:7cad8630831094dc1cde7d828df750191eb032c908a6bccc6d5d83b15a235803
|
||||||
|
size 98400
|
@ -1,8 +1,17 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Mar 1 17:32:29 UTC 2016 - hrvoje.senjan@gmail.com
|
||||||
|
|
||||||
|
- Update to 5.5.5 (boo#968966)
|
||||||
|
* Bugfix release
|
||||||
|
* For more details please see:
|
||||||
|
https://www.kde.org/announcements/plasma-5.5.5.php
|
||||||
|
- Drop upstreamed 0001-greeter-Dont-quit-when-last-window-closes.patch
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Feb 9 15:58:56 UTC 2016 - hrvoje.senjan@gmail.com
|
Tue Feb 9 15:58:56 UTC 2016 - hrvoje.senjan@gmail.com
|
||||||
|
|
||||||
- Added 0001-greeter-Dont-quit-when-last-window-closes.patch
|
- Added 0001-greeter-Dont-quit-when-last-window-closes.patch
|
||||||
(boo#964548, kde#358125)
|
(CVE-2016-2312, boo#964548, kde#358125)
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Tue Jan 26 22:20:10 UTC 2016 - hrvoje.senjan@gmail.com
|
Tue Jan 26 22:20:10 UTC 2016 - hrvoje.senjan@gmail.com
|
||||||
|
@ -18,7 +18,7 @@
|
|||||||
|
|
||||||
%bcond_without lang
|
%bcond_without lang
|
||||||
Name: kscreenlocker
|
Name: kscreenlocker
|
||||||
Version: 5.5.4
|
Version: 5.5.5
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Library and components for secure lock screen architecture
|
Summary: Library and components for secure lock screen architecture
|
||||||
License: GPL-2.0+
|
License: GPL-2.0+
|
||||||
@ -27,8 +27,6 @@ Url: https://projects.kde.org/kscreenlocker
|
|||||||
Source: %{name}-%{version}.tar.xz
|
Source: %{name}-%{version}.tar.xz
|
||||||
# PATCH-FIX-OPENSUSE fix-wayland-version-requirement.diff -- Changes wayland requirement from 1.3 to 1.2.1
|
# PATCH-FIX-OPENSUSE fix-wayland-version-requirement.diff -- Changes wayland requirement from 1.3 to 1.2.1
|
||||||
Patch0: fix-wayland-version-requirement.diff
|
Patch0: fix-wayland-version-requirement.diff
|
||||||
# PATCH-FIX-UPSTREAM 0001-greeter-Dont-quit-when-last-window-closes.patch
|
|
||||||
Patch1: 0001-greeter-Dont-quit-when-last-window-closes.patch
|
|
||||||
BuildRequires: cmake >= 2.8.12
|
BuildRequires: cmake >= 2.8.12
|
||||||
BuildRequires: extra-cmake-modules >= 1.8.0
|
BuildRequires: extra-cmake-modules >= 1.8.0
|
||||||
BuildRequires: kf5-filesystem
|
BuildRequires: kf5-filesystem
|
||||||
@ -90,7 +88,6 @@ Development files for Library and components for secure lock screen architecture
|
|||||||
# SLE12 has a patched 1.2.1 wayland with all features KDE needs from up to 1.7.0
|
# SLE12 has a patched 1.2.1 wayland with all features KDE needs from up to 1.7.0
|
||||||
%patch0 -p1
|
%patch0 -p1
|
||||||
%endif
|
%endif
|
||||||
%patch1 -p1
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%cmake_kf5 -d build -- -DKDE4_COMMON_PAM_SERVICE=xdm -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5
|
%cmake_kf5 -d build -- -DKDE4_COMMON_PAM_SERVICE=xdm -DCMAKE_INSTALL_LOCALEDIR=share/locale/kf5
|
||||||
|
Loading…
Reference in New Issue
Block a user