From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 5239D15803E for ; Tue, 2 Jan 2024 19:47:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 8CF082BC03D; Tue, 2 Jan 2024 19:47:20 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 727BA2BC03D for ; Tue, 2 Jan 2024 19:47:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 87915342FF8 for ; Tue, 2 Jan 2024 19:47:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id EEC501300 for ; Tue, 2 Jan 2024 19:47:17 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1704224819.a54d83defaf0a95e4470350f4f008e6b99bd45cc.asturm@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: kde-plasma/plasma-workspace/ X-VCS-Repository: proj/kde X-VCS-Files: kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild X-VCS-Directories: kde-plasma/plasma-workspace/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: a54d83defaf0a95e4470350f4f008e6b99bd45cc X-VCS-Branch: master Date: Tue, 2 Jan 2024 19:47:17 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 4113faf5-bed9-4f7b-9872-e6cd3ccc3968 X-Archives-Hash: c977c946e0b6e36f65d482bfad27dfac commit: a54d83defaf0a95e4470350f4f008e6b99bd45cc Author: Andreas Sturmlechner gentoo org> AuthorDate: Tue Jan 2 19:15:54 2024 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Tue Jan 2 19:46:59 2024 +0000 URL: https://gitweb.gentoo.org/proj/kde.git/commit/?id=a54d83de kde-plasma/plasma-workspace: Fix IUSE systemd Thanks-to: Stefan Schmid Closes: https://bugs.gentoo.org/921224 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild b/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild index 5ad54e4ae3..81af89c0e5 100644 --- a/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild +++ b/kde-plasma/plasma-workspace/plasma-workspace-9999.ebuild @@ -186,7 +186,7 @@ src_prepare() { fi # TODO: try to get a build switch upstreamed - if use systemd; then + if ! use systemd; then sed -e "s/^pkg_check_modules.*SYSTEMD/#&/" -i CMakeLists.txt || die fi }