sys-apps/qemu-openrc: add 0.11.1

Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
This commit is contained in:
Aisha Tammy 2023-12-28 21:52:30 -05:00
parent 84c49d7ed6
commit 9684e5e39e
No known key found for this signature in database
GPG Key ID: D22D69390AF3D8F3
2 changed files with 33 additions and 0 deletions

View File

@ -1 +1,2 @@
DIST qemu-openrc-0.10.0.tar.gz 8367 BLAKE2B 34447e04c1a81fa13bddf2f4a742059beea6eeb0025ec32219ef3718a0ff62b98a3d0c39083068f52362eb6fe3eb105338febdd36ea696f144a6b2ce583b3441 SHA512 cdcf51dc59dbca96102c1b73032a726a44cb62c0c93a42adb9b6806609a0fa24bf8dde4814ed5010de63d54fde75f661bb9f5245d85e28de08cdba08d538c959
DIST qemu-openrc-0.11.1.tar.gz 8626 BLAKE2B 75436b7b280e197f1211d04d7f9c731f5246394fa861382e892f26ac61c314dc812950f2a73df568f2d11af3261c0952d7126ce2b5e3e0a992ed048e8eb3b15f SHA512 aae6eb14a22f3a452e8bc523609e52b0d41af0e4ea5abf1faaf5f78a53dd4ca8905ded3a0cdbe8835a37c3b8218e20f407f80ef050d35cf2e6eb380ada26db67

View File

@ -0,0 +1,32 @@
# Copyright 2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DESCRIPTION="OpenRC init script for QEMU/KVM"
HOMEPAGE="https://github.com/jirutka/qemu-openrc"
if [[ ${PV} == 9999 ]]; then
inherit git-r3
EGIT_REPO_URI="https://github.com/jirutka/qemu-openrc"
else
SRC_URI="https://github.com/jirutka/qemu-openrc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
KEYWORDS="~amd64"
fi
LICENSE="MIT"
SLOT="0"
RDEPEND="net-misc/socat"
PATCHES=( "${FILESDIR}/qemu-openrc-0.10.0-guest-agent.patch")
src_compile() {
:
}
src_install() {
newinitd qemu.initd qemu
newconfd qemu.confd qemu
dobin qemush
}