Gentoo Archives: gentoo-commits

From: Andreas Sturmlechner <asturm@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/kscreenlocker/
Date: Sat, 01 Aug 2020 18:45:04
Message-Id: 1596304114.8ddf13d2893a90d774e9693f8f810662f664cfe4.asturm@gentoo
1 commit: 8ddf13d2893a90d774e9693f8f810662f664cfe4
2 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 1 17:48:34 2020 +0000
4 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 1 17:48:34 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=8ddf13d2
7
8 kde-plasma/kscreenlocker: Disable seccomp sandboxing in 5.19 too
9
10 If upstream dropped it in master for being problematic and ineffective,
11 then there's no reason to keep it in stable branch either.
12
13 Upstream commit f53b9b3275abd935fc81a60adcc38699f3ccec46
14
15 Package-Manager: Portage-3.0.1, Repoman-2.3.23
16 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
17
18 kde-plasma/kscreenlocker/kscreenlocker-5.19.49.9999.ebuild | 7 ++-----
19 1 file changed, 2 insertions(+), 5 deletions(-)
20
21 diff --git a/kde-plasma/kscreenlocker/kscreenlocker-5.19.49.9999.ebuild b/kde-plasma/kscreenlocker/kscreenlocker-5.19.49.9999.ebuild
22 index f78e062b13..adac48392d 100644
23 --- a/kde-plasma/kscreenlocker/kscreenlocker-5.19.49.9999.ebuild
24 +++ b/kde-plasma/kscreenlocker/kscreenlocker-5.19.49.9999.ebuild
25 @@ -15,9 +15,7 @@ DESCRIPTION="Library and components for secure lock screen architecture"
26 LICENSE="GPL-2" # TODO: CHECK
27 SLOT="5"
28 KEYWORDS=""
29 -IUSE="consolekit +pam seccomp"
30 -
31 -REQUIRED_USE="seccomp? ( pam )"
32 +IUSE="consolekit +pam"
33
34 RDEPEND="
35 dev-libs/wayland
36 @@ -49,7 +47,6 @@ RDEPEND="
37 x11-libs/xcb-util-keysyms
38 consolekit? ( sys-auth/consolekit )
39 pam? ( sys-libs/pam )
40 - seccomp? ( sys-libs/libseccomp )
41 "
42 DEPEND="${RDEPEND}
43 x11-base/xorg-proto
44 @@ -79,10 +76,10 @@ src_test() {
45
46 src_configure() {
47 local mycmakeargs=(
48 + -DCMAKE_DISABLE_FIND_PACKAGE_Seccomp=ON
49 $(cmake_use_find_package consolekit loginctl)
50 -DPAM_REQUIRED=$(usex pam)
51 $(cmake_use_find_package pam PAM)
52 - $(cmake_use_find_package seccomp Seccomp)
53 )
54 ecm_src_configure
55 }