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 6D5A3138359 for ; Sun, 4 Oct 2020 15:20:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id BB026E0975; Sun, 4 Oct 2020 15:20: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 93336E0975 for ; Sun, 4 Oct 2020 15:20:04 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 367FF335D0F for ; Sun, 4 Oct 2020 15:20:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EFC8389 for ; Sun, 4 Oct 2020 15:20:01 +0000 (UTC) From: "Mikle Kolyada" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" Message-ID: <1601824753.3a5fc14368622495bc47c49bbece2c9b6941b306.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/spice-vdagent/metadata.xml app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild app-emulation/spice-vdagent/spice-vdagent-0.20.0.ebuild X-VCS-Directories: app-emulation/spice-vdagent/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: 3a5fc14368622495bc47c49bbece2c9b6941b306 X-VCS-Branch: master Date: Sun, 4 Oct 2020 15:20: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: 79ea20bc-1346-40e5-8eba-f7af4bc9d5af X-Archives-Hash: 2211d49017508d947acd59b33566ebf2 commit: 3a5fc14368622495bc47c49bbece2c9b6941b306 Author: Mikle Kolyada gentoo org> AuthorDate: Sun Oct 4 15:19:13 2020 +0000 Commit: Mikle Kolyada gentoo org> CommitDate: Sun Oct 4 15:19:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a5fc143 app-emulation/spice-vdagent: remove consolekit support Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Mikle Kolyada gentoo.org> app-emulation/spice-vdagent/metadata.xml | 3 --- app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild | 7 ++----- app-emulation/spice-vdagent/spice-vdagent-0.20.0.ebuild | 7 ++----- 3 files changed, 4 insertions(+), 13 deletions(-) diff --git a/app-emulation/spice-vdagent/metadata.xml b/app-emulation/spice-vdagent/metadata.xml index 9099ec28e6d..121cd46cb5e 100644 --- a/app-emulation/spice-vdagent/metadata.xml +++ b/app-emulation/spice-vdagent/metadata.xml @@ -5,7 +5,4 @@ virtualization@gentoo.org Gentoo Virtualization Project - - Use sys-auth/consolekit to determine the master vdagentd in case of multiple running vdagentds (highly recommended) - diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild index 2f8904baec3..81ddd00bd63 100644 --- a/app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild +++ b/app-emulation/spice-vdagent/spice-vdagent-0.19.0-r1.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="amd64 x86" -IUSE="consolekit gtk selinux systemd" +IUSE="gtk selinux systemd" CDEPEND=" dev-libs/glib:2 @@ -24,7 +24,6 @@ CDEPEND=" x11-libs/libXrandr x11-libs/libX11 x11-libs/libXinerama - consolekit? ( sys-auth/consolekit sys-apps/dbus ) gtk? ( x11-libs/gtk+:3 ) systemd? ( sys-apps/systemd )" DEPEND="${CDEPEND} @@ -38,9 +37,7 @@ ERROR_VIRTIO_CONSOLE="VirtIO console/serial device support (VIRTIO_CONSOLE) is r src_configure() { local opt=() - if use consolekit; then - opt+=( --with-session-info=console-kit ) - elif use systemd; then + if use systemd; then opt+=( --with-session-info=systemd ) else opt+=( --with-session-info=none ) diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.20.0.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.20.0.ebuild index 2cac3817d76..3365574e5bb 100644 --- a/app-emulation/spice-vdagent/spice-vdagent-0.20.0.ebuild +++ b/app-emulation/spice-vdagent/spice-vdagent-0.20.0.ebuild @@ -12,7 +12,7 @@ SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.bz2" LICENSE="LGPL-2.1" SLOT="0" KEYWORDS="~amd64 ~x86" -IUSE="consolekit gtk selinux systemd" +IUSE="gtk selinux systemd" CDEPEND=" dev-libs/glib:2 @@ -24,7 +24,6 @@ CDEPEND=" x11-libs/libXrandr x11-libs/libX11 x11-libs/libXinerama - consolekit? ( sys-auth/consolekit sys-apps/dbus ) gtk? ( x11-libs/gtk+:3 ) systemd? ( sys-apps/systemd )" DEPEND="${CDEPEND} @@ -38,9 +37,7 @@ ERROR_VIRTIO_CONSOLE="VirtIO console/serial device support (VIRTIO_CONSOLE) is r src_configure() { local opt=() - if use consolekit; then - opt+=( --with-session-info=console-kit ) - elif use systemd; then + if use systemd; then opt+=( --with-session-info=systemd ) else opt+=( --with-session-info=none )