Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/crun/
Date: Sat, 02 Nov 2019 09:37:33
Message-Id: 1572687445.e5fa30b2eec2e4a007869baf0e4e5bd8791f7097.mgorny@gentoo
1 commit: e5fa30b2eec2e4a007869baf0e4e5bd8791f7097
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 2 09:35:49 2019 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 2 09:37:25 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5fa30b2
7
8 app-emulation/crun: [QA] Revert "new package ( 0.10.3 )"
9
10 This package has been introduced with CI warnings that were not resolved
11 since Wednesday.
12
13 Reverts: b818341b329017a792f721ff7b9576f843856945
14 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
15
16 app-emulation/crun/Manifest | 1 -
17 app-emulation/crun/crun-0.10.3.ebuild | 61 -----------------------------------
18 app-emulation/crun/metadata.xml | 31 ------------------
19 3 files changed, 93 deletions(-)
20
21 diff --git a/app-emulation/crun/Manifest b/app-emulation/crun/Manifest
22 deleted file mode 100644
23 index f666033e3b5..00000000000
24 --- a/app-emulation/crun/Manifest
25 +++ /dev/null
26 @@ -1 +0,0 @@
27 -DIST crun-0.10.3.tar.gz 1235071 BLAKE2B 98d3cc82c48d288b10ac7716bf0f8a8ce7757cc5cebb2ed10ea6272d46eb434a5fee32791dd5e8ae3bee040a9e48bd411e95494e70609117ec5dbbc2ea24bd8f SHA512 df39e911b0f3b80861c1820806ce9cd0f9772711f7caf246fb4824beb19ddc6e6a593881a239a0e27ecd3bae7d823dde6893930618b43cd84623b5bcd510e8ae
28
29 diff --git a/app-emulation/crun/crun-0.10.3.ebuild b/app-emulation/crun/crun-0.10.3.ebuild
30 deleted file mode 100644
31 index af85b6beb34..00000000000
32 --- a/app-emulation/crun/crun-0.10.3.ebuild
33 +++ /dev/null
34 @@ -1,61 +0,0 @@
35 -# Copyright 2019 Gentoo Authors
36 -# Distributed under the terms of the GNU General Public License v2
37 -
38 -EAPI=7
39 -
40 -inherit eutils
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-3"
47 -SLOT="0"
48 -KEYWORDS="~amd64"
49 -IUSE="bpf +caps doc seccomp systemd static-libs"
50 -
51 -DEPEND="
52 - dev-libs/yajl
53 - sys-libs/libseccomp
54 - caps? ( sys-libs/libcap )
55 - seccomp? ( sys-libs/libseccomp )
56 - systemd? ( sys-apps/systemd )
57 -"
58 -RDEPEND="${DEPEND}"
59 -BDEPEND="
60 - >=dev-lang/python-3.5.0
61 - doc? ( dev-go/go-md2man )
62 -"
63 -
64 -DOCS=( README.md )
65 -
66 -src_configure() {
67 - econf \
68 - $(use_enable bpf) \
69 - $(use_enable caps) \
70 - $(use_enable seccomp) \
71 - $(use_enable systemd) \
72 - $(usex static-libs '--enabled-shared --enabled-static' '--enable-shared --disable-static' '' '')
73 -}
74 -
75 -src_compile() {
76 - pushd libocispec || die
77 - emake
78 - popd
79 - emake crun
80 - if use doc ; then
81 - emake crun.1
82 - fi
83 -}
84 -
85 -src_install() {
86 - pushd libocispec || die
87 - emake "DESTDIR=$D" install-exec
88 - popd
89 - emake "DESTDIR=$D" install-exec
90 - if use doc ; then
91 - emake "DESTDIR=$D" install-man
92 - fi
93 -
94 - einstalldocs
95 -}
96
97 diff --git a/app-emulation/crun/metadata.xml b/app-emulation/crun/metadata.xml
98 deleted file mode 100644
99 index 2e0bd20b39d..00000000000
100 --- a/app-emulation/crun/metadata.xml
101 +++ /dev/null
102 @@ -1,31 +0,0 @@
103 -<?xml version="1.0" encoding="UTF-8"?>
104 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
105 -<pkgmetadata>
106 - <maintainer type="person">
107 - <email>dan@××××××××.com</email>
108 - <name>Dan Molik</name>
109 - </maintainer>
110 - <maintainer type="project">
111 - <email>proxy-maint@g.o</email>
112 - <name>Proxy Maintainers</name>
113 - </maintainer>
114 - <longdescription lang="en">
115 - While most of the tools used in the Linux containers ecosystem are written in
116 - Go, I believe C is a better fit for a lower level tool like a container
117 - runtime. runc, the most used implementation of the OCI runtime specs written
118 - in Go, re-execs itself and use a module written in C for setting up the
119 - environment before the container process starts.
120 -
121 - crun aims to be also usable as a library that can be easily included in
122 - programs without requiring an external process for managing OCI containers.
123 - </longdescription>
124 - <upstream>
125 - <changelog>https://github.com/containers/crun/releases</changelog>
126 - <remote-id type="github">containers/crun</remote-id>
127 - </upstream>
128 - <use>
129 - <flag name="bpf">Enable in Kernel, eBPF (enhanced Berkley Packet Filter)
130 - support for managing device controllers.
131 - </flag>
132 - </use>
133 -</pkgmetadata>