URI: 
       tapp-emulation/qemu-openrc: Add 0.7.0 - parlay - yet another gentoo overlay
  HTML git clone https://git.parazyd.org/parlay
   DIR Log
   DIR Files
   DIR Refs
   DIR README
       ---
   DIR commit 02b5bcb584bec0beb8fe3f488c931dea50ab3744
   DIR parent f109edf8514d6dee1e4f505bce76ce548039a0e8
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Tue, 18 Jun 2019 16:22:56 +0200
       
       app-emulation/qemu-openrc: Add 0.7.0
       
       Diffstat:
         A app-emulation/qemu-openrc/Manifest  |       1 +
         A app-emulation/qemu-openrc/metadata… |       9 +++++++++
         A app-emulation/qemu-openrc/qemu-ope… |      30 ++++++++++++++++++++++++++++++
       
       3 files changed, 40 insertions(+), 0 deletions(-)
       ---
   DIR diff --git a/app-emulation/qemu-openrc/Manifest b/app-emulation/qemu-openrc/Manifest
       t@@ -0,0 +1 @@
       +DIST v0.7.0.tar.gz 7847 BLAKE2B 22a7af20d6d392485884b759ad6019504c79d2a37d29dc6a7ab78f70fb0a7ea799e41ddb037d7d1b019b8433f6064087f7ee04e868e0e08a4dc85a0355d1e81a SHA512 c5284f5c095874a49263546d0fbb925f49a01efa9eec8102ea054a334606144dd9480ab2333f2b42d4163677000816bf9f5b6d313faf231bd4b8cc55c9ed9bc6
   DIR diff --git a/app-emulation/qemu-openrc/metadata.xml b/app-emulation/qemu-openrc/metadata.xml
       t@@ -0,0 +1,9 @@
       +<?xml version="1.0" encoding="UTF-8"?>
       +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
       +<pkgmetadata>
       +<maintainer type="person">
       +<email>parazyd@dyne.org</email>
       +</maintainer>
       +<longdescription lang="en">
       +</longdescription>
       +</pkgmetadata>
   DIR diff --git a/app-emulation/qemu-openrc/qemu-openrc-0.7.0-r3.ebuild b/app-emulation/qemu-openrc/qemu-openrc-0.7.0-r3.ebuild
       t@@ -0,0 +1,30 @@
       +# Copyright 1999-2019 Gentoo Authors
       +# Distributed under the terms of the GNU General Public License v2
       +
       +EAPI=7
       +
       +inherit user
       +
       +DESCRIPTION="OpenRC init script for QEMU/KVM"
       +HOMEPAGE="https://github.com/jirutka/qemu-openrc"
       +
       +SRC_URI="https://github.com/jirutka/${PN}/archive/v${PV}.tar.gz"
       +LICENSE="MIT"
       +SLOT=0
       +KEYWORDS="~amd64 ~x86"
       +
       +RDEPEND="
       +        app-emulation/qemu
       +        net-misc/socat"
       +
       +src_install() {
       +        dobin qemush
       +        newinitd qemu.initd qemu
       +        newconfd qemu.confd qemu
       +        dodoc README.adoc
       +}
       +
       +pkg_setup() {
       +        enewgroup qemu
       +        enewuser qemu -1 -1 /var/lib/qemu qemu,kvm
       +}