* [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/files/
@ 2017-12-12 17:08 Matthias Maier
0 siblings, 0 replies; 3+ messages in thread
From: Matthias Maier @ 2017-12-12 17:08 UTC (permalink / raw
To: gentoo-commits
commit: f098518c00c7fd57dd1e70452350525324246256
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Sun Nov 19 12:51:03 2017 +0000
Commit: Matthias Maier <tamiko <AT> gentoo <DOT> org>
CommitDate: Tue Dec 12 17:05:34 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f098518c
app-emulation/spice-vdagent: remove unused init file
Signed-off-by: Matthias Maier <tamiko <AT> gentoo.org>
.../spice-vdagent/files/spice-vdagent.initd-2 | 60 ----------------------
1 file changed, 60 deletions(-)
diff --git a/app-emulation/spice-vdagent/files/spice-vdagent.initd-2 b/app-emulation/spice-vdagent/files/spice-vdagent.initd-2
deleted file mode 100644
index a3194d5c185..00000000000
--- a/app-emulation/spice-vdagent/files/spice-vdagent.initd-2
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- after dbus
-}
-
-PIDFILE="/var/run/spice-vdagentd/spice-vdagentd.pid"
-
-start() {
- PORT="${PORT:-/dev/virtio-ports/com.redhat.spice.0}"
- DEVICE="${DEVICE:-/dev/uinput}"
-
- ebegin "Checking for required modules and devices"
-
- if [[ ! -d /sys/module/uinput ]]; then
- modprobe -q uinput
- fi
-
- if [[ ! -d /sys/module/uinput ]]; then
- eerror "Module 'uinput' not loaded or not enabled in the kernel"
- eend 1
- return 1
- fi
-
- if [[ ! -c "${PORT}" ]] ; then
- eerror "Required virtio port does not exist. Make sure you"
- eerror "started the virtual machine with appropriate parameters."
- eend 1
- return 1
- fi
- eend 0
-
- if [[ ! -c ${DEVICE} && -c /dev/input/uinput ]]; then
- DEVICE=/dev/input/uinput
- fi
-
- # recreate the directory since /var/run may reside on a ramdisk
- mkdir -p /var/run/spice-vdagentd
-
- # cleanup stalled socket
- rm -f /var/run/spice-vdagentd/spice-vdagent-sock
-
- ebegin "Starting spice VD agent daemon"
- start-stop-daemon \
- --start \
- --pidfile "${PIDFILE}" \
- --exec /usr/sbin/spice-vdagentd \
- -- -u "${DEVICE}" ${SPICE_VDAGENT_ARGS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping spice VD agent daemon"
- start-stop-daemon \
- --stop \
- --pidfile "${PIDFILE}"
- eend $?
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/files/
@ 2018-05-25 12:42 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2018-05-25 12:42 UTC (permalink / raw
To: gentoo-commits
commit: 2f71e22bb7a6ec4a410c5d07d03ed2dd85b324ce
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Thu May 24 17:43:41 2018 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Fri May 25 12:42:20 2018 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f71e22b
app-emulation/spice-vdagent: remove unused patch
Closes: https://github.com/gentoo/gentoo/pull/8564
...pice-vdagent-0.17.0-add-missing-stub-function.patch | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/app-emulation/spice-vdagent/files/spice-vdagent-0.17.0-add-missing-stub-function.patch b/app-emulation/spice-vdagent/files/spice-vdagent-0.17.0-add-missing-stub-function.patch
deleted file mode 100644
index 1d68ed53565..00000000000
--- a/app-emulation/spice-vdagent/files/spice-vdagent-0.17.0-add-missing-stub-function.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-Add missing stub function to prevent underlinking error.
-Patch provided by Pat Erley
-See also: https://bugs.gentoo.org/show_bug.cgi?id=585994
-
---- a/src/dummy-session-info.c
-+++ b/src/dummy-session-info.c
-@@ -50,6 +50,11 @@
- return FALSE;
- }
-
-+gboolean session_info_session_is_locked(struct session_info *ck)
-+{
-+ return FALSE;
-+}
-+
- gboolean session_info_is_user(struct session_info *si)
- {
- return TRUE;
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/files/
@ 2020-06-11 22:42 Aaron Bauman
0 siblings, 0 replies; 3+ messages in thread
From: Aaron Bauman @ 2020-06-11 22:42 UTC (permalink / raw
To: gentoo-commits
commit: 52dc19140bb3d60c42bfc59025979217a38bc691
Author: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail <DOT> com>
AuthorDate: Tue Jun 9 18:25:22 2020 +0000
Commit: Aaron Bauman <bman <AT> gentoo <DOT> org>
CommitDate: Thu Jun 11 22:41:41 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52dc1914
app-emulation/spice-vdagent: remove unused file
Package-Manager: Portage-2.3.100, Repoman-2.3.22
Signed-off-by: Michael Mair-Keimberger <m.mairkeimberger <AT> gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16146
Signed-off-by: Aaron Bauman <bman <AT> gentoo.org>
.../spice-vdagent/files/spice-vdagent.initd-3 | 60 ----------------------
1 file changed, 60 deletions(-)
diff --git a/app-emulation/spice-vdagent/files/spice-vdagent.initd-3 b/app-emulation/spice-vdagent/files/spice-vdagent.initd-3
deleted file mode 100644
index 255051192b1..00000000000
--- a/app-emulation/spice-vdagent/files/spice-vdagent.initd-3
+++ /dev/null
@@ -1,60 +0,0 @@
-#!/sbin/openrc-run
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-depend() {
- after dbus
-}
-
-PIDFILE="/var/run/spice-vdagentd/spice-vdagentd.pid"
-
-start() {
- PORT="${PORT:-/dev/virtio-ports/com.redhat.spice.0}"
- DEVICE="${DEVICE:-/dev/uinput}"
-
- ebegin "Checking for required modules and devices"
-
- if [ ! -d /sys/module/uinput ]; then
- modprobe -q uinput
- fi
-
- if [ ! -d /sys/module/uinput ]; then
- eerror "Module 'uinput' not loaded or not enabled in the kernel"
- eend 1
- return 1
- fi
-
- if [ ! -c "${PORT}" ] ; then
- eerror "Required virtio port does not exist. Make sure you"
- eerror "started the virtual machine with appropriate parameters."
- eend 1
- return 1
- fi
- eend 0
-
- if [ ! -c ${DEVICE} -a -c /dev/input/uinput ]; then
- DEVICE=/dev/input/uinput
- fi
-
- # recreate the directory since /var/run may reside on a ramdisk
- mkdir -p /var/run/spice-vdagentd
-
- # cleanup stalled socket
- rm -f /var/run/spice-vdagentd/spice-vdagent-sock
-
- ebegin "Starting spice VD agent daemon"
- start-stop-daemon \
- --start \
- --pidfile "${PIDFILE}" \
- --exec /usr/sbin/spice-vdagentd \
- -- -u "${DEVICE}" ${SPICE_VDAGENT_ARGS}
- eend $?
-}
-
-stop() {
- ebegin "Stopping spice VD agent daemon"
- start-stop-daemon \
- --stop \
- --pidfile "${PIDFILE}"
- eend $?
-}
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2020-06-11 22:42 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-12-12 17:08 [gentoo-commits] repo/gentoo:master commit in: app-emulation/spice-vdagent/files/ Matthias Maier
-- strict thread matches above, loose matches on Subject: below --
2018-05-25 12:42 Aaron Bauman
2020-06-11 22:42 Aaron Bauman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox