summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur Zamarin <arthurzam@gentoo.org>2024-05-17 12:10:21 +0300
committerArthur Zamarin <arthurzam@gentoo.org>2024-05-17 12:10:36 +0300
commitca5f46870dcab44b58a20029a41d252974410d9c (patch)
tree559e88942bfa1cb0f60e5d05d115265b57964b13 /app-emulation
parentdev-python/shapely: Stabilize 2.0.4-r1 amd64, #932057 (diff)
downloadgentoo-ca5f46870dcab44b58a20029a41d252974410d9c.tar.gz
gentoo-ca5f46870dcab44b58a20029a41d252974410d9c.tar.bz2
gentoo-ca5f46870dcab44b58a20029a41d252974410d9c.zip
app-emulation/runv: treeclean
Closes: https://bugs.gentoo.org/794913 Bug: https://bugs.gentoo.org/844607 Bug: https://bugs.gentoo.org/771072 Bug: https://bugs.gentoo.org/679348 Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'app-emulation')
-rw-r--r--app-emulation/runv/Manifest1
-rw-r--r--app-emulation/runv/metadata.xml12
-rw-r--r--app-emulation/runv/runv-0.7.0.ebuild45
3 files changed, 0 insertions, 58 deletions
diff --git a/app-emulation/runv/Manifest b/app-emulation/runv/Manifest
deleted file mode 100644
index e7d1ab0d7cd8..000000000000
--- a/app-emulation/runv/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST runv-0.7.0.tar.gz 1143867 BLAKE2B b425060493567470bdc886c75a4edd1333094cf3479a06b63286e4ba391d1a3bb82b7c3331a1455f0a2545bebe4c2397112cba3bfb5573a3a62e380dcd69d473 SHA512 1303d4ca99186d9f5c1db4257acecf1702546a084942cc4c51de8685c6841da45be72c78f32ab38e2addb80dc40fe4d022d0fcae7b7d6b6d62a30f434cea178c
diff --git a/app-emulation/runv/metadata.xml b/app-emulation/runv/metadata.xml
deleted file mode 100644
index 8187312886a3..000000000000
--- a/app-emulation/runv/metadata.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <use>
- <flag name="libvirt">Enable support for KVM via libvirt</flag>
- <flag name="xen">Enable support for the Xen Hypervisor</flag>
- </use>
- <upstream>
- <remote-id type="github">hyperhq/runv</remote-id>
- </upstream>
-</pkgmetadata>
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
-}