qemu-agent: dropped, port is unmaintained

This commit is contained in:
Juergen Daubert 2021-02-02 11:52:50 +01:00
parent 0e6e1e5ca8
commit f08e84e9c5
4 changed files with 0 additions and 87 deletions

View File

@ -1,13 +0,0 @@
drwxr-xr-x root/root etc/
drwxr-xr-x root/root etc/qemu/
-rwxr-xr-x root/root etc/qemu/fsfreeze-hook
drwxrwxr-x root/root etc/qemu/fsfreeze-hook.d/
-rwxrwxr-x root/root etc/qemu/fsfreeze-hook.d/mysql-flush.sh.sample
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/qemu-agent
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/qemu-ga
drwxr-xr-x root/root var/
drwxr-xr-x root/root var/run/
drwxr-xr-x root/root var/run/qemu-ga/

View File

@ -1,6 +0,0 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/RDYd/B/dv+W+xwliwLobQbopqwbpLmRwwS9a6RvGH1OJX1mGsvXPGqiiqRTe+nj2lbIQNxiPyPmOSIZabAtkwk=
SHA256 (Pkgfile) = 252393833d581947744f0b1fecbcb5070e2b85f75dc5ef6457adf5eaa999a449
SHA256 (.footprint) = a566f5bb873ec4d8ece7da5b5039290e71d5e74d3cb753d6e34d2a519ee5fa41
SHA256 (qemu-5.2.0.tar.xz) = cb18d889b628fbe637672b0326789d9b0e3b8027e0445b936537c78549df17bc
SHA256 (qemu-agent) = 0b1a5f7a115434d9692c0a8dd9f6c4eec7211efb5d0f9d837462dbe72e6e5c37

View File

@ -1,33 +0,0 @@
# Description: Guest agent for qemu virtual guests
# URL: http://www.qemu-project.org/
# Maintainer: Thomas Penteker, tek at serverop dot de
# Depends on: libsdl glib xorg-libpixman
name=qemu-agent
version=5.2.0
release=1
source=(http://wiki.qemu-project.org/download/qemu-$version.tar.xz qemu-agent)
build() {
cd qemu-$version
./configure --prefix=/usr \
--cc="${CC:=gcc}" \
--host-cc="${CC:=gcc}" \
--sysconfdir=/etc \
--disable-docs \
--libexecdir=/usr/lib/qemu \
--disable-gtk \
--python=/usr/bin/python3 \
--target-list=x86_64-linux-user,i386-linux-user,i386-softmmu,x86_64-softmmu \
--enable-guest-agent
# fix include issues with nspr
make ${MAKEFLAGS:=} qemu-ga
install -D -m 755 build/qga/qemu-ga $PKG/usr/bin/qemu-ga
install -d -m 755 $PKG/etc/qemu
install scripts/qemu-guest-agent/fsfreeze-hook $PKG/etc/qemu
cp -a scripts/qemu-guest-agent/fsfreeze-hook.d $PKG/etc/qemu
install -D -m 755 $SRC/qemu-agent $PKG/etc/rc.d/qemu-agent
install -d -m 755 $PKG/var/run/qemu-ga
}

View File

@ -1,35 +0,0 @@
#!/bin/sh
#
# /etc/rc.d/qemu-agent: start/stop qemu-ga daemon
#
SSD=/sbin/start-stop-daemon
PROG=/usr/bin/qemu-ga
PID=/var/run/qemu-ga.pid
case $1 in
start)
$SSD --start --pidfile $PID --background --exec $PROG -- -t /var/run/qemu-ga
;;
stop)
$SSD --stop --retry 10 --pidfile $PID
;;
restart)
$0 stop
$0 start
;;
status)
$SSD --status --pidfile $PID
case $? in
0) echo "$PROG is running with pid $(cat $PID)" ;;
1) echo "$PROG is not running but the pid file $PID exists" ;;
3) echo "$PROG is not running" ;;
4) echo "Unable to determine the program status" ;;
esac
;;
*)
echo "usage: $0 [start|stop|restart|status]"
;;
esac
# End of file