summaryrefslogtreecommitdiff
path: root/app-emulation/runv/runv-0.7.0.ebuild
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
committerV3n3RiX <venerix@redcorelinux.org>2018-07-14 20:56:41 +0100
commitd87262dd706fec50cd150aab3e93883b6337466d (patch)
tree246b44c33ad7a57550430b0a60fa0df86a3c9e68 /app-emulation/runv/runv-0.7.0.ebuild
parent71bc00c87bba1ce31de0dac6c3b7fd1aee6917fc (diff)
gentoo resync : 14.07.2018
Diffstat (limited to 'app-emulation/runv/runv-0.7.0.ebuild')
-rw-r--r--app-emulation/runv/runv-0.7.0.ebuild45
1 files changed, 0 insertions, 45 deletions
diff --git a/app-emulation/runv/runv-0.7.0.ebuild b/app-emulation/runv/runv-0.7.0.ebuild
deleted file mode 100644
index 3df1bcf0df82..000000000000
--- a/app-emulation/runv/runv-0.7.0.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="github.com/hyperhq/runv"
-
-inherit autotools golang-vcs-snapshot
-
-DESCRIPTION="Hypervisor-based Runtime for OCI"
-HOMEPAGE="https://github.com/hyperhq/runv"
-SRC_URI="https://github.com/hyperhq/runv/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="libvirt xen"
-
-RDEPEND="libvirt? ( >=app-emulation/libvirt-1.2.2 )
- xen? ( app-emulation/xen )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- pushd src/github.com/hyperhq/runv/ || die
- default
- eautoreconf
- popd
-}
-
-src_configure() {
- local myeconfargs=( $(use_with libvirt)
- $(use_with xen) )
- pushd src/github.com/hyperhq/runv/ || die
- econf "${myeconfargs[@]}"
- popd
-}
-
-src_compile() {
- GOPATH="${S}:$(get_golibdir_gopath)" emake -C src/github.com/hyperhq/runv/
-}
-
-src_install() {
- dodoc src/${EGO_PN}/README.md
- dobin src/${EGO_PN}/runv
-}