Gentoo Archives: gentoo-commits

From: Aaron Bauman <bman@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/
Date: Tue, 22 May 2018 23:06:22
Message-Id: 1527030368.a7d5d482ce1df9920ce0e34e5735ba2ea88107d0.bman@gentoo
1 commit: a7d5d482ce1df9920ce0e34e5735ba2ea88107d0
2 Author: Aaron Bauman <bman <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 22 23:05:48 2018 +0000
4 Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
5 CommitDate: Tue May 22 23:06:08 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7d5d482
7
8 app-emulation/spice-vdagent: drop vulnerable
9
10 Bug: https://bugs.gentoo.org/650020
11 Package-Manager: Portage-2.3.38, Repoman-2.3.9
12
13 .../spice-vdagent/spice-vdagent-0.17.0.ebuild | 63 ----------------------
14 1 file changed, 63 deletions(-)
15
16 diff --git a/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild b/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild
17 deleted file mode 100644
18 index 92f797d2746..00000000000
19 --- a/app-emulation/spice-vdagent/spice-vdagent-0.17.0.ebuild
20 +++ /dev/null
21 @@ -1,63 +0,0 @@
22 -# Copyright 1999-2017 Gentoo Foundation
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=6
26 -
27 -inherit linux-info
28 -
29 -DESCRIPTION="SPICE VD Linux Guest Agent"
30 -HOMEPAGE="https://www.spice-space.org/"
31 -SRC_URI="https://www.spice-space.org/download/releases/${P}.tar.bz2"
32 -
33 -LICENSE="LGPL-2.1"
34 -SLOT="0"
35 -KEYWORDS="amd64 x86"
36 -IUSE="+consolekit selinux systemd"
37 -
38 -CDEPEND="
39 - >=app-emulation/spice-protocol-0.12.8
40 - media-libs/alsa-lib
41 - >=x11-libs/libpciaccess-0.10
42 - x11-libs/libXfixes
43 - x11-libs/libXrandr
44 - x11-libs/libX11
45 - x11-libs/libXinerama
46 - consolekit? ( sys-auth/consolekit sys-apps/dbus )
47 - systemd? ( sys-apps/systemd )"
48 -DEPEND="${CDEPEND}
49 - virtual/pkgconfig"
50 -RDEPEND="${CDEPEND}
51 - selinux? ( sec-policy/selinux-vdagent )"
52 -
53 -CONFIG_CHECK="~INPUT_UINPUT ~VIRTIO_CONSOLE"
54 -ERROR_INPUT_UINPUT="User level input support (INPUT_UINPUT) is required"
55 -ERROR_VIRTIO_CONSOLE="VirtIO console/serial device support (VIRTIO_CONSOLE) is required"
56 -
57 -PATCHES=( "${FILESDIR}"/${PN}-0.17.0-add-missing-stub-function.patch )
58 -
59 -src_configure() {
60 - local opt=()
61 - if use consolekit; then
62 - opt+=( --with-session-info=console-kit )
63 - elif use systemd; then
64 - opt+=( --with-session-info=systemd )
65 - else
66 - opt+=( --with-session-info=none )
67 - fi
68 -
69 - econf \
70 - --with-init-script=systemd \
71 - --localstatedir="${EPREFIX}"/var \
72 - "${opt[@]}"
73 -}
74 -
75 -src_install() {
76 - default
77 -
78 - cd "${ED}" && rmdir -p var/run/spice-vdagentd || die
79 -
80 - keepdir /var/log/spice-vdagentd
81 -
82 - newinitd "${FILESDIR}/${PN}.initd-3" "${PN}"
83 - newconfd "${FILESDIR}/${PN}.confd-2" "${PN}"
84 -}