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 740D41382C5 for ; Tue, 22 May 2018 23:06:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60D93E09C0; Tue, 22 May 2018 23:06:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 34946E09C0 for ; Tue, 22 May 2018 23:06:20 +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 30176335C9A for ; Tue, 22 May 2018 23:06:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5777B37 for ; Tue, 22 May 2018 23:06:17 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1527030368.a7d5d482ce1df9920ce0e34e5735ba2ea88107d0.bman@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/spice-vdagent-0.17.0.ebuild X-VCS-Directories: app-emulation/spice-vdagent/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: a7d5d482ce1df9920ce0e34e5735ba2ea88107d0 X-VCS-Branch: master Date: Tue, 22 May 2018 23:06: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-Archives-Salt: 1d67991c-eaca-4b4f-8c98-289401631fc3 X-Archives-Hash: afbe91f25a6a8cf67b0cd685cb06425d commit: a7d5d482ce1df9920ce0e34e5735ba2ea88107d0 Author: Aaron Bauman gentoo org> AuthorDate: Tue May 22 23:05:48 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Tue May 22 23:06:08 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7d5d482 app-emulation/spice-vdagent: drop vulnerable Bug: https://bugs.gentoo.org/650020 Package-Manager: Portage-2.3.38, Repoman-2.3.9 .../spice-vdagent/spice-vdagent-0.17.0.ebuild | 63 ---------------------- 1 file changed, 63 deletions(-) diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild deleted file mode 100644 index 92f797d2746..00000000000 --- a/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit linux-info - -DESCRIPTION="SPICE VD Linux Guest Agent" -HOMEPAGE="https://www.spice-space.org/" -SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.bz2" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="+consolekit selinux systemd" - -CDEPEND=" - >=app-emulation/spice-protocol-0.12.8 - media-libs/alsa-lib - >=x11-libs/libpciaccess-0.10 - x11-libs/libXfixes - x11-libs/libXrandr - x11-libs/libX11 - x11-libs/libXinerama - consolekit? ( sys-auth/consolekit sys-apps/dbus ) - systemd? ( sys-apps/systemd )" -DEPEND="${CDEPEND} - virtual/pkgconfig" -RDEPEND="${CDEPEND} - selinux? ( sec-policy/selinux-vdagent )" - -CONFIG_CHECK="~INPUT_UINPUT ~VIRTIO_CONSOLE" -ERROR_INPUT_UINPUT="User level input support (INPUT_UINPUT) is required" -ERROR_VIRTIO_CONSOLE="VirtIO console/serial device support (VIRTIO_CONSOLE) is required" - -PATCHES=( "${FILESDIR}"/${PN}-0.17.0-add-missing-stub-function.patch ) - -src_configure() { - local opt=() - if use consolekit; then - opt+=( --with-session-info=console-kit ) - elif use systemd; then - opt+=( --with-session-info=systemd ) - else - opt+=( --with-session-info=none ) - fi - - econf \ - --with-init-script=systemd \ - --localstatedir="${EPREFIX}"/var \ - "${opt[@]}" -} - -src_install() { - default - - cd "${ED}" && rmdir -p var/run/spice-vdagentd || die - - keepdir /var/log/spice-vdagentd - - newinitd "${FILESDIR}/${PN}.initd-3" "${PN}" - newconfd "${FILESDIR}/${PN}.confd-2" "${PN}" -}