Gentoo Archives: gentoo-commits

From: Joonas Niilola <juippis@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/crun/
Date: Sat, 10 Apr 2021 07:45:39
Message-Id: 1618040205.58377a2ed254a4c5e2c13abfe16183ae3d8041f6.juippis@gentoo
1 commit: 58377a2ed254a4c5e2c13abfe16183ae3d8041f6
2 Author: Robert Günzler <r <AT> gnzler <DOT> io>
3 AuthorDate: Tue Mar 30 07:15:26 2021 +0000
4 Commit: Joonas Niilola <juippis <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 10 07:36:45 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58377a2e
7
8 app-emulation/crun: drop 1.16
9
10 Signed-off-by: Robert Günzler <r <AT> gnzler.io>
11 Closes: https://github.com/gentoo/gentoo/pull/20194
12 Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>
13
14 app-emulation/crun/Manifest | 1 -
15 app-emulation/crun/crun-0.16.ebuild | 61 -------------------------------------
16 2 files changed, 62 deletions(-)
17
18 diff --git a/app-emulation/crun/Manifest b/app-emulation/crun/Manifest
19 index d49ac8fea82..abbcd076323 100644
20 --- a/app-emulation/crun/Manifest
21 +++ b/app-emulation/crun/Manifest
22 @@ -1,3 +1,2 @@
23 -DIST crun-0.16.tar.gz 1370194 BLAKE2B c2a2450518226421b43d93597b38da80ca330cb3d8d9c259f323d49561e93dc3d003a25599eb8e918888dd824037c53bd0a07624c3154fa3778cc6dad37ac04b SHA512 f5a0d19c037af55478ee5f83b63d74277c8640f715b81a8233d3f1acd4cdfdad491e5c1f5beda04d0d7aa16693e9a004b0bde71343b082aa514ae76e5907d029
24 DIST crun-0.17.tar.gz 1385658 BLAKE2B 3d4c30989b9e79d02bf9a6c298daa8d0b5b6b8bfcfaca8ae9e27ad865762a32b6af2c8806586bba2ab94271446a93c34e8f2d465cc008c41bbe69e565556a1b1 SHA512 b095a3c4fca8ae683553805de468594e8dd891cc9911b56e8be7c429584e71fb40a364cf55a6a829950078a539d35308310f53f57b8fb40d483d394e91b20b01
25 DIST crun-0.18.tar.gz 1394857 BLAKE2B db4f0407aaf5e4c5b9069ad5ae6a76308665d91559d92bf370b964e0914f337a84af896f1c1e00184ef4b0625bd1c0f1e2fc3295074c7f5524c5359ce54ba6b4 SHA512 94610d9d4ef95a9be708c6cf8cc38587c9c3b847d9da5cf9dfa4a2eddddb7e6724e39ffb222ed5d6c61bad8374ae50dc9e92d95b6d03ce0b185d5123afeeca46
26
27 diff --git a/app-emulation/crun/crun-0.16.ebuild b/app-emulation/crun/crun-0.16.ebuild
28 deleted file mode 100644
29 index e4abbffbae1..00000000000
30 --- a/app-emulation/crun/crun-0.16.ebuild
31 +++ /dev/null
32 @@ -1,61 +0,0 @@
33 -# Copyright 2019-2021 Gentoo Authors
34 -# Distributed under the terms of the GNU General Public License v2
35 -
36 -EAPI=7
37 -
38 -PYTHON_COMPAT=( python3_{7..9} )
39 -
40 -inherit autotools python-any-r1
41 -
42 -DESCRIPTION="A fast and low-memory footprint OCI Container Runtime fully written in C"
43 -HOMEPAGE="https://github.com/containers/crun"
44 -SRC_URI="https://github.com/containers/${PN}/releases/download/${PV}/${P}.tar.gz"
45 -
46 -LICENSE="GPL-2+ LGPL-2.1+"
47 -SLOT="0"
48 -KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
49 -IUSE="+bpf +caps criu +seccomp systemd static-libs"
50 -
51 -DEPEND="
52 - sys-kernel/linux-headers
53 - >=dev-libs/yajl-2.0.0
54 - caps? ( sys-libs/libcap )
55 - criu? ( >=sys-process/criu-3.13 )
56 - seccomp? ( sys-libs/libseccomp )
57 - systemd? ( sys-apps/systemd:= )
58 -"
59 -RDEPEND="${DEPEND}"
60 -BDEPEND="
61 - ${PYTHON_DEPS}
62 -"
63 -
64 -# the crun test suite is comprehensive to the extent that tests will fail
65 -# within a sandbox environment, due to the nature of the privileges
66 -# required to create linux "containers".
67 -RESTRICT="test"
68 -
69 -DOCS=( README.md )
70 -
71 -src_configure() {
72 - local myeconfargs=(
73 - $(use_enable bpf)
74 - $(use_enable caps)
75 - $(use_enable criu)
76 - $(use_enable seccomp)
77 - $(use_enable systemd)
78 - $(usex static-libs '--enable-shared --enable-static' '--enable-shared --disable-static' '' '')
79 - )
80 -
81 - econf "${myeconfargs[@]}"
82 -}
83 -
84 -src_compile() {
85 - emake -C libocispec
86 - emake crun
87 -}
88 -
89 -src_install() {
90 - emake "DESTDIR=${D}" install-exec
91 - doman crun.1
92 - einstalldocs
93 -}