public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Joonas Niilola" <juippis@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/crun/
Date: Wed, 20 Jan 2021 14:13:53 +0000 (UTC)	[thread overview]
Message-ID: <1611152022.a58b9ec95c97885957089cf3c50260967ab5f1f1.juippis@gentoo> (raw)

commit:     a58b9ec95c97885957089cf3c50260967ab5f1f1
Author:     Robert Günzler <r <AT> gnzler <DOT> io>
AuthorDate: Fri Nov 27 10:09:48 2020 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Wed Jan 20 14:13:42 2021 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58b9ec9

app-emulation/crun: Drop 0.14.1

Signed-off-by: Robert Günzler <r <AT> gnzler.io>
Closes: https://github.com/gentoo/gentoo/pull/18415
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 app-emulation/crun/Manifest           |  2 -
 app-emulation/crun/crun-0.14.1.ebuild | 79 -----------------------------------
 2 files changed, 81 deletions(-)

diff --git a/app-emulation/crun/Manifest b/app-emulation/crun/Manifest
index 58b2d2f32ab..c4fedb0663f 100644
--- a/app-emulation/crun/Manifest
+++ b/app-emulation/crun/Manifest
@@ -1,4 +1,2 @@
-DIST crun-0.14.1.tar.gz 1341891 BLAKE2B c20d5001161e298050ddca859fa78487fe3f8577ef0b06eb5515056f19ba4f981debeb684148de49111a0370b9bafb7f6454d65f7ecf087862c697a162c9b377 SHA512 420f1713653cbd17df83b2a63d163aaa41baf78115b093877a2241305e10b2ceeaf08ea6700658eca894729ff8a20cbc66f868d18d27fba3fbedf1a9993b122e
 DIST crun-0.15.tar.gz 1364861 BLAKE2B 7078e71229bae4bc663398891b21344abc3189c78a11e4feeae3236e1df4a2c5160cf26f2cc243d4c0898a642a779603d473d2c22ca2b67123c6ac4654fce4d7 SHA512 f9a9e94b6a9c5cff01fe93b1c3d5876a0794e6288b802cf579556e11411ca5d6e63cae3859aaa4df4bb600e2d27aa131872a93a92784b9b48f7885411d86f325
 DIST crun-0.16.tar.gz 1370194 BLAKE2B c2a2450518226421b43d93597b38da80ca330cb3d8d9c259f323d49561e93dc3d003a25599eb8e918888dd824037c53bd0a07624c3154fa3778cc6dad37ac04b SHA512 f5a0d19c037af55478ee5f83b63d74277c8640f715b81a8233d3f1acd4cdfdad491e5c1f5beda04d0d7aa16693e9a004b0bde71343b082aa514ae76e5907d029
-DIST libcrun.lds 257 BLAKE2B 00e7cdf3162ea0b7231dbb9037b192bcf5ffa83316e1aa60268560bc9fe8302be351c405861f9dfc06620ea64561a9226f58b7133039c0af1299dc4088b98272 SHA512 0e9b836c79ee4ad7ff33c592eca8ff41f38aed588f2f5a2416bed82efa819cd4c61ad65a2dfd11a37838a19d950688b1d5adb3b75841963dbb589536e8a867f7

diff --git a/app-emulation/crun/crun-0.14.1.ebuild b/app-emulation/crun/crun-0.14.1.ebuild
deleted file mode 100644
index 651d5f88be8..00000000000
--- a/app-emulation/crun/crun-0.14.1.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 2019-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit autotools python-any-r1
-
-DESCRIPTION="A fast and low-memory footprint OCI Container Runtime fully written in C"
-HOMEPAGE="https://github.com/containers/crun"
-SRC_URI="https://github.com/containers/${PN}/releases/download/${PV}/${P}.tar.gz
-	https://github.com/containers/${PN}/raw/${PV}/libcrun.lds"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-IUSE="bpf +caps man seccomp systemd static-libs"
-
-DEPEND="
-	dev-libs/yajl
-	caps? ( sys-libs/libcap )
-	seccomp? ( sys-libs/libseccomp )
-	systemd? ( sys-apps/systemd:= )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-	${PYTHON_DEPS}
-	man? ( dev-go/go-md2man )
-"
-
-# the crun test suite is comprehensive to the extent that tests will fail
-# within a sandbox environment, due to the nature of the privileges
-# required to create linux "containers".
-RESTRICT="test"
-
-DOCS=( README.md )
-
-src_unpack() {
-	# dont' try to unpack the .lds file
-	MY_A=( ${A[@]/libcrun.lds} )
-	unpack ${MY_A}
-}
-
-src_prepare() {
-	default
-	eautoreconf
-	cp -v "${DISTDIR}"/libcrun.lds "${S}"/ || die "libcrun.lds could not be copied"
-}
-
-src_configure() {
-	local myeconfargs=(
-		--disable-criu \
-		$(use_enable bpf) \
-		$(use_enable caps) \
-		$(use_enable seccomp) \
-		$(use_enable systemd) \
-		$(usex static-libs '--enabled-shared  --enabled-static' '--enable-shared --disable-static' '' '')
-	)
-
-	econf "${myeconfargs[@]}"
-}
-
-src_compile() {
-	emake -C libocispec
-	emake crun
-	if use man ; then
-		emake generate-man
-	fi
-}
-
-src_install() {
-	emake "DESTDIR=${D}" install-exec
-	if use man ; then
-		emake "DESTDIR=${D}" install-man
-	fi
-
-	einstalldocs
-}


             reply	other threads:[~2021-01-20 14:14 UTC|newest]

Thread overview: 30+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-20 14:13 Joonas Niilola [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-12-01 18:02 [gentoo-commits] repo/gentoo:master commit in: app-emulation/crun/ Joonas Niilola
2021-12-01 18:02 Joonas Niilola
2021-12-01 18:02 Joonas Niilola
2021-11-04 18:39 Georgy Yakovlev
2021-08-04  9:36 Georgy Yakovlev
2021-07-20  0:47 Georgy Yakovlev
2021-07-19  6:25 Agostino Sarubbo
2021-05-05  6:42 Joonas Niilola
2021-05-05  6:42 Joonas Niilola
2021-04-10  7:45 Joonas Niilola
2021-04-10  7:45 Joonas Niilola
2021-02-02 13:08 Joonas Niilola
2021-02-02 13:08 Joonas Niilola
2021-02-02 13:08 Joonas Niilola
2021-01-20 14:13 Joonas Niilola
2021-01-20 14:13 Joonas Niilola
2020-10-07  9:29 Georgy Yakovlev
2020-10-06  1:17 Georgy Yakovlev
2020-09-23  1:14 Georgy Yakovlev
2020-08-29 22:45 Sam James
2020-08-05 12:19 Joonas Niilola
2020-08-05 12:19 Joonas Niilola
2020-08-05 12:19 Joonas Niilola
2020-06-02 11:13 Joonas Niilola
2020-06-02 11:13 Joonas Niilola
2019-11-24  0:55 Aaron Bauman
2019-11-19 12:47 Manuel Rüger
2019-11-02  9:37 Michał Górny
2019-10-30 13:35 Manuel Rüger

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1611152022.a58b9ec95c97885957089cf3c50260967ab5f1f1.juippis@gentoo \
    --to=juippis@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox