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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id DE864138359 for ; Sun, 5 Jul 2020 22:58:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F2FB1E0849; Sun, 5 Jul 2020 22:58:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DDA8EE0849 for ; Sun, 5 Jul 2020 22:58:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 9EF0E34EF3F for ; Sun, 5 Jul 2020 22:58:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8C6EB21D for ; Sun, 5 Jul 2020 22:58:01 +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: <1593989874.5502b5ca8ca7a360f729914cb0bf8d96b80cc201.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-meta/ X-VCS-Repository: repo/gentoo X-VCS-Files: kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild X-VCS-Directories: kde-plasma/plasma-meta/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 5502b5ca8ca7a360f729914cb0bf8d96b80cc201 X-VCS-Branch: master Date: Sun, 5 Jul 2020 22:58:01 +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: 37aae2d5-4c93-43be-bf22-97f1e604e6e1 X-Archives-Hash: 05e5e58fa4523ac8eefe3d860ad7cd33 commit: 5502b5ca8ca7a360f729914cb0bf8d96b80cc201 Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Jul 5 22:57:28 2020 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Jul 5 22:57:54 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5502b5ca kde-plasma/plasma-meta: Fix pkg_postinst exit condition Package-Manager: Portage-2.3.103, Repoman-2.3.23 Signed-off-by: Andreas Sturmlechner gentoo.org> kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild | 2 +- kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild b/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild index 21f98aa79e0..6cec1857bb3 100644 --- a/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-5.18.5.ebuild @@ -84,7 +84,7 @@ RDEPEND=" pkg_postinst() { has_version sys-auth/consolekit || return - use elogind || use systemd && return + use elogind || use systemd || return ewarn "An existing installation of sys-auth/consolekit was detected even though" ewarn "${PN} was configured with USE $(usex elogind elogind systemd)." ewarn "There can only be one session manager at runtime, otherwise random issues" diff --git a/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild b/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild index 08348f24712..4fea36bac72 100644 --- a/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild +++ b/kde-plasma/plasma-meta/plasma-meta-5.19.2.ebuild @@ -85,7 +85,7 @@ RDEPEND=" pkg_postinst() { has_version sys-auth/consolekit || return - use elogind || use systemd && return + use elogind || use systemd || return ewarn "An existing installation of sys-auth/consolekit was detected even though" ewarn "${PN} was configured with USE $(usex elogind elogind systemd)." ewarn "There can only be one session manager at runtime, otherwise random issues"