commit:     949df73785abb771c4fcd39daafcf5e97aa76fac
Author:     William Hubbs <williamh <AT> gentoo <DOT> org>
AuthorDate: Wed Oct  6 16:49:19 2021 +0000
Commit:     William Hubbs <williamh <AT> gentoo <DOT> org>
CommitDate: Wed Oct  6 16:49:45 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=949df737

app-emulation/runc: remove old

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: William Hubbs <williamh <AT> gentoo.org>

 app-emulation/runc/Manifest          |  2 -
 app-emulation/runc/runc-1.0.0.ebuild | 78 ------------------------------------
 app-emulation/runc/runc-1.0.1.ebuild | 78 ------------------------------------
 3 files changed, 158 deletions(-)

diff --git a/app-emulation/runc/Manifest b/app-emulation/runc/Manifest
index 398b1f10e34..3bbb8a65700 100644
--- a/app-emulation/runc/Manifest
+++ b/app-emulation/runc/Manifest
@@ -1,3 +1 @@
-DIST runc-1.0.0.tar.gz 2366170 BLAKE2B 
1b6455cd45bc51b92c12b3293037446da62957d441124e9b76fd44ce92329e0eb2fde2ef71c6519fc4d58bcbd4ef580f64d71753a6fc06f3f6e347de170bd9c3
 SHA512 
8ddad1e031237c07b6cab5cfe5bdb7b11bf98d5d1064ec06845f36da073fe65a0facc6a28ba5daff71cdcb50cfd5d1cd25e97385b4eddb35b287113c2771365c
-DIST runc-1.0.1.tar.gz 2371417 BLAKE2B 
2c037c9105bf08131de2dc54d74c982a2fbbcab79ed8b7b0fdcd1b577a38c2aa42dc6c1ce01c934dfc66a2927ce650a87e7ca2001586ca4d3c542e63a582f26a
 SHA512 
c5db1016f438cd4883d1f9b36414e9c8b1fe9dfcb53dfebd1130cea3cb9bf78615a765715f4dd587cf8cc603b69951a5871adc33870cfeef2e63521d1ceccf39
 DIST runc-1.0.2.tar.gz 2374156 BLAKE2B 
526520adb7127e46e7258de75e66a15a5aac216a2a2fcb91f4d9c5da393892242c4d93c5f5483ab111bf29eed7d8f0c8c138ae83a22809d72802a981dcda0395
 SHA512 
434abd6d7ad2508c2272b627d8aeeb28ecd8461899bff463e7d2c7abbc0f0cbb2e0bafbfe81fc534fad506b1acb4bda3e05639ecd908bc9d0d2e9356f1e56e26

diff --git a/app-emulation/runc/runc-1.0.0.ebuild 
b/app-emulation/runc/runc-1.0.0.ebuild
deleted file mode 100644
index bda21966de7..00000000000
--- a/app-emulation/runc/runc-1.0.0.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit go-module linux-info
-
-# update on bump, look for https://github.com/docker\
-# docker-ce/blob/<docker ver OR 
branch>/components/engine/hack/dockerfile/install/runc.installer
-RUNC_COMMIT=84113eef6fc27af1b01b3181f31bbaf708715301
-CONFIG_CHECK="~USER_NS"
-
-DESCRIPTION="runc container cli tools"
-HOMEPAGE="http://runc.io";
-MY_PV="${PV/_/-}"
-SRC_URI="https://github.com/opencontainers/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0 BSD-2 BSD MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv ~x86"
-IUSE="apparmor hardened +kmem +seccomp test"
-
-DEPEND="seccomp? ( sys-libs/libseccomp )"
-
-RDEPEND="
-       ${DEPEND}
-       !app-emulation/docker-runc
-       apparmor? ( sys-libs/libapparmor )
-"
-
-BDEPEND="
-       dev-go/go-md2man
-       test? ( "${RDEPEND}" )
-"
-
-# tests need busybox binary, and portage namespace
-# sandboxing disabled: mount-sandbox pid-sandbox ipc-sandbox
-# majority of tests pass
-RESTRICT+=" test"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_compile() {
-       # Taken from app-emulation/docker-1.7.0-r1
-       export CGO_CFLAGS="-I${ESYSROOT}/usr/include"
-       export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')
-               -L${ESYSROOT}/usr/$(get_libdir)"
-
-       # build up optional flags
-       local options=(
-               $(usev apparmor)
-               $(usev seccomp)
-               $(usex kmem '' 'nokmem')
-       )
-
-       myemakeargs=(
-               BUILDTAGS="${options[*]}"
-               COMMIT="${RUNC_COMMIT}"
-       )
-
-       emake "${myemakeargs[@]}" runc man
-}
-
-src_install() {
-       myemakeargs+=(
-               PREFIX="${ED}/usr"
-               BINDIR="${ED}/usr/bin"
-               MANDIR="${ED}/usr/share/man"
-       )
-       emake "${myemakeargs[@]}" install install-man install-bash
-
-       local DOCS=( README.md PRINCIPLES.md docs/. )
-       einstalldocs
-}
-
-src_test() {
-       emake "${myemakeargs[@]}" localunittest
-}

diff --git a/app-emulation/runc/runc-1.0.1.ebuild 
b/app-emulation/runc/runc-1.0.1.ebuild
deleted file mode 100644
index 72c9a25fb77..00000000000
--- a/app-emulation/runc/runc-1.0.1.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit go-module linux-info
-
-# update on bump, look for https://github.com/docker\
-# docker-ce/blob/<docker ver OR 
branch>/components/engine/hack/dockerfile/install/runc.installer
-RUNC_COMMIT=4144b63817ebcc5b358fc2c8ef95f7cddd709aa7
-CONFIG_CHECK="~USER_NS"
-
-DESCRIPTION="runc container cli tools"
-HOMEPAGE="http://runc.io";
-MY_PV="${PV/_/-}"
-SRC_URI="https://github.com/opencontainers/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0 BSD-2 BSD MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
-IUSE="apparmor hardened +kmem +seccomp test"
-
-DEPEND="seccomp? ( sys-libs/libseccomp )"
-
-RDEPEND="
-       ${DEPEND}
-       !app-emulation/docker-runc
-       apparmor? ( sys-libs/libapparmor )
-"
-
-BDEPEND="
-       dev-go/go-md2man
-       test? ( "${RDEPEND}" )
-"
-
-# tests need busybox binary, and portage namespace
-# sandboxing disabled: mount-sandbox pid-sandbox ipc-sandbox
-# majority of tests pass
-RESTRICT+=" test"
-
-S="${WORKDIR}/${PN}-${MY_PV}"
-
-src_compile() {
-       # Taken from app-emulation/docker-1.7.0-r1
-       export CGO_CFLAGS="-I${ESYSROOT}/usr/include"
-       export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')
-               -L${ESYSROOT}/usr/$(get_libdir)"
-
-       # build up optional flags
-       local options=(
-               $(usev apparmor)
-               $(usev seccomp)
-               $(usex kmem '' 'nokmem')
-       )
-
-       myemakeargs=(
-               BUILDTAGS="${options[*]}"
-               COMMIT="${RUNC_COMMIT}"
-       )
-
-       emake "${myemakeargs[@]}" runc man
-}
-
-src_install() {
-       myemakeargs+=(
-               PREFIX="${ED}/usr"
-               BINDIR="${ED}/usr/bin"
-               MANDIR="${ED}/usr/share/man"
-       )
-       emake "${myemakeargs[@]}" install install-man install-bash
-
-       local DOCS=( README.md PRINCIPLES.md docs/. )
-       einstalldocs
-}
-
-src_test() {
-       emake "${myemakeargs[@]}" localunittest
-}

Reply via email to