public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Manuel Rüger" <mrueg@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/containerd/
Date: Wed, 18 Jul 2018 14:26:17 +0000 (UTC)	[thread overview]
Message-ID: <1531923956.fe13a335bff1e0ebb1ac5d105ce4d067163e4154.mrueg@gentoo> (raw)

commit:     fe13a335bff1e0ebb1ac5d105ce4d067163e4154
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Wed Jul 18 14:25:56 2018 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Wed Jul 18 14:25:56 2018 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe13a335

app-emulation/containerd: Version bump to 1.1.2

Package-Manager: Portage-2.3.43, Repoman-2.3.10

 app-emulation/containerd/Manifest                |  1 +
 app-emulation/containerd/containerd-1.1.2.ebuild | 55 ++++++++++++++++++++++++
 app-emulation/containerd/metadata.xml            |  2 +
 3 files changed, 58 insertions(+)

diff --git a/app-emulation/containerd/Manifest b/app-emulation/containerd/Manifest
index 30ef8cd533f..669fc87de20 100644
--- a/app-emulation/containerd/Manifest
+++ b/app-emulation/containerd/Manifest
@@ -3,3 +3,4 @@ DIST containerd-1.0.3.tar.gz 3776722 BLAKE2B 31e9f2e56b23d09341e4cdd546198233517
 DIST containerd-1.0.3_p20180223.tar.gz 5029605 BLAKE2B bd3f74ad70c7de9a73397e401e49459d1724376434265dddddd51cf09ccd940ecf63dacf0dc7270175d99e473c224ab238c0c29b0e03d41ddf9295ef37b90586 SHA512 a4999c1eb16c40178e3ee63f4001d4826d2dc6f353f768fbfdc6b7e0962d0f4431014fdedc712f36aee1e05554fecf1917ac48c1e25818b6c80a423ed7edddd9
 DIST containerd-1.1.0.tar.gz 5095823 BLAKE2B 1eca83add164ed79abc58bfe424da9f34b54d247ad147ec0f4ae20154cabefe147fe9b03ce2eab04c88c240f00995eec5b0f24c0e064640738517b81e3e7aa3d SHA512 34e687c6ef270370160465ee9b8fe6b59780543907917b668db7867da67fd47c8465f57ba4268387f776d0f392f8dad533c206d6577bab36480aff4392775d42
 DIST containerd-1.1.1.tar.gz 5123253 BLAKE2B e3e14311f4b444531b9b5d22ad7babd3fe9e7f4bf540c98153ebfc7445c34dad9c1268863e90a383bdab8630fc6576d1425e3e6a7f37e25fe6fb392aac389e2f SHA512 429070dbe0b486f8bbf5411c037e020f50fd008741091d6db1c13a0b526b2b4d0b22bb458401dd2ed142dc34e9bdcbd1ea30eabba39f11a50c294b94ce9867bd
+DIST containerd-1.1.2.tar.gz 5124208 BLAKE2B d989519d6bef4e12d1fa04aa00bfee223e94676a90525304d4357f4caf46326b4d2b897b885e9e137fe01ce66b93bc92fb7da7bd2b5dd5019edda5bb0bbc6d0a SHA512 fe4121a43e72a354cd87577b5227f2c2e0d54674244001e6fdb695da78873b3fd3f46b6bda6bbd0c8793b33f50e0d725cb356bb75b789a273c862bbe7d4f719c

diff --git a/app-emulation/containerd/containerd-1.1.2.ebuild b/app-emulation/containerd/containerd-1.1.2.ebuild
new file mode 100644
index 00000000000..2aebd40c413
--- /dev/null
+++ b/app-emulation/containerd/containerd-1.1.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+EGO_PN="github.com/containerd/${PN}"
+
+inherit toolchain-funcs
+
+if [[ ${PV} == *9999 ]]; then
+	inherit golang-vcs
+else
+	MY_PV="${PV/_rc/-rc.}"
+	EGIT_COMMIT="v${MY_PV}"
+	CONTAINERD_COMMIT="468a545b9edcd5932818eb9de8e72413e616e86e"
+	SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+	KEYWORDS="~amd64 ~arm ~ppc64"
+	inherit golang-vcs-snapshot
+fi
+
+DESCRIPTION="A daemon to control runC"
+HOMEPAGE="https://containerd.tools"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="apparmor +btrfs +cri hardened +seccomp"
+
+DEPEND="btrfs? ( sys-fs/btrfs-progs )
+	seccomp? ( sys-libs/libseccomp )"
+RDEPEND="|| ( >=app-emulation/docker-runc-1.0.0_rc4
+	>=app-emulation/runc-1.0.0_rc4 )
+	seccomp? ( sys-libs/libseccomp )"
+
+S=${WORKDIR}/${P}/src/${EGO_PN}
+
+RESTRICT="test"
+
+src_prepare() {
+	default
+	if [[ ${PV} != *9999* ]]; then
+		sed -i -e "s/git describe --match.*$/echo ${PV})/"\
+			-e "s/git rev-parse HEAD.*$/echo $CONTAINERD_COMMIT)/"\
+			-e "s/-s -w//" \
+			Makefile || die
+	fi
+}
+
+src_compile() {
+	local options=( $(usex btrfs "" "no_btrfs") $(usex cri "" "no_cri") $(usex seccomp "seccomp" "") $(usex apparmor "apparmor" "") )
+	export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
+	LDFLAGS=$(usex hardened '-extldflags -fno-PIC' '') emake BUILDTAGS="${options[@]}"
+}
+
+src_install() {
+	dobin bin/containerd{-shim,-stress,} bin/ctr
+}

diff --git a/app-emulation/containerd/metadata.xml b/app-emulation/containerd/metadata.xml
index 7cc46305346..a28d7bea81a 100644
--- a/app-emulation/containerd/metadata.xml
+++ b/app-emulation/containerd/metadata.xml
@@ -21,7 +21,9 @@
 		<name>William Hubbs</name>
 	</maintainer>
 	<use>
+	<flag name="apparmor">Support for AppArmor</flag>
 	<flag name="btrfs">Support for BTRFS snapshot driver</flag>
+	<flag name="cri">Support for Kubernetes CRI</flag>
 	</use>
 	<upstream>
 		<remote-id type="github">docker/containerd</remote-id>


             reply	other threads:[~2018-07-18 14:26 UTC|newest]

Thread overview: 151+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-18 14:26 Manuel Rüger [this message]
  -- strict thread matches above, loose matches on Subject: below --
2021-12-01 12:39 [gentoo-commits] repo/gentoo:master commit in: app-emulation/containerd/ Georgy Yakovlev
2021-10-06 17:53 William Hubbs
2021-10-06 17:24 William Hubbs
2021-10-06 16:49 William Hubbs
2021-10-06  1:19 Georgy Yakovlev
2021-10-06  1:19 Georgy Yakovlev
2021-10-06  1:16 William Hubbs
2021-10-05 21:00 William Hubbs
2021-10-05 20:18 William Hubbs
2021-10-05 19:13 William Hubbs
2021-10-05 18:57 William Hubbs
2021-08-13  2:09 Yixun Lan
2021-07-26 21:25 Georgy Yakovlev
2021-07-26 21:25 Georgy Yakovlev
2021-07-26  2:14 Sam James
2021-07-24 17:20 Sam James
2021-07-23 18:00 Sam James
2021-07-23 17:58 Sam James
2021-07-20  2:44 Georgy Yakovlev
2021-07-20  2:44 Georgy Yakovlev
2021-07-11  8:59 Georgy Yakovlev
2021-06-14  0:31 Georgy Yakovlev
2021-06-13 22:38 Sam James
2021-06-13 18:45 William Hubbs
2021-06-11 16:27 William Hubbs
2021-06-11  1:00 Georgy Yakovlev
2021-06-10 21:53 William Hubbs
2021-06-02  0:00 Georgy Yakovlev
2021-05-25 23:30 Georgy Yakovlev
2021-05-25 23:27 Georgy Yakovlev
2021-05-16 12:45 Sam James
2021-05-13 10:50 Georgy Yakovlev
2021-04-28 16:44 Mikle Kolyada
2021-03-09 16:26 William Hubbs
2021-03-08 19:47 William Hubbs
2021-01-13 15:12 Sam James
2021-01-12 22:46 Sam James
2021-01-04 23:57 William Hubbs
2021-01-04 23:10 William Hubbs
2020-12-02 20:38 Georgy Yakovlev
2020-12-02 20:38 Georgy Yakovlev
2020-12-02 20:38 Georgy Yakovlev
2020-12-02 19:56 Georgy Yakovlev
2020-11-10 21:33 Georgy Yakovlev
2020-10-18  0:48 Georgy Yakovlev
2020-10-18  0:48 Georgy Yakovlev
2020-10-18  0:48 Georgy Yakovlev
2020-09-24  0:09 Georgy Yakovlev
2020-09-24  0:09 Georgy Yakovlev
2020-08-31 21:03 Thomas Deutschmann
2020-04-16 22:14 William Hubbs
2020-03-15  3:06 William Hubbs
2020-03-04 17:54 William Hubbs
2020-02-13 16:47 Mikle Kolyada
2020-02-06  3:22 William Hubbs
2020-01-19 19:36 William Hubbs
2019-11-24  0:53 Aaron Bauman
2019-11-20 22:19 Manuel Rüger
2019-11-20 22:19 Manuel Rüger
2019-09-27 12:21 Manuel Rüger
2019-09-27 12:21 Manuel Rüger
2019-07-04 15:41 Manuel Rüger
2019-07-04 15:35 Manuel Rüger
2019-04-23 12:42 Manuel Rüger
2019-04-11 10:01 Manuel Rüger
2019-03-28 16:15 Manuel Rüger
2019-03-28 14:44 Manuel Rüger
2019-03-28 14:20 Manuel Rüger
2019-03-01 13:42 Manuel Rüger
2019-02-14 13:16 Manuel Rüger
2019-02-11 17:55 Manuel Rüger
2019-02-07 12:01 Manuel Rüger
2019-01-09 15:45 Manuel Rüger
2018-12-11  8:07 Manuel Rüger
2018-10-28 16:19 Manuel Rüger
2018-09-26 11:22 Manuel Rüger
2018-09-26 11:22 Manuel Rüger
2018-09-07  6:19 Manuel Rüger
2018-07-24 11:47 Manuel Rüger
2018-07-19 15:31 Manuel Rüger
2018-07-12 12:19 Manuel Rüger
2018-06-04 19:25 Mart Raudsepp
2018-06-04 19:25 Mart Raudsepp
2018-05-15 13:05 Manuel Rüger
2018-05-15 12:16 Manuel Rüger
2018-05-15 12:16 Manuel Rüger
2018-04-24 22:47 Manuel Rüger
2018-04-10  1:13 Manuel Rüger
2018-04-03  6:23 Manuel Rüger
2018-04-03  6:22 Manuel Rüger
2018-03-19 22:52 Manuel Rüger
2018-02-15  0:58 Manuel Rüger
2018-01-18 14:04 Manuel Rüger
2018-01-18 12:56 Manuel Rüger
2018-01-02 13:05 Manuel Rüger
2018-01-02 13:05 Manuel Rüger
2017-12-06 18:50 Manuel Rüger
2017-12-06 18:50 Manuel Rüger
2017-12-01 14:16 Manuel Rüger
2017-11-22 14:49 Manuel Rüger
2017-11-22 14:49 Manuel Rüger
2017-11-13 19:50 Manuel Rüger
2017-11-05 20:50 Manuel Rüger
2017-11-03 14:27 Manuel Rüger
2017-11-03 14:27 Manuel Rüger
2017-11-03 14:27 Manuel Rüger
2017-11-03 14:22 Manuel Rüger
2017-09-25 14:11 Manuel Rüger
2017-08-21 10:13 Manuel Rüger
2017-07-16 11:48 Manuel Rüger
2017-07-03 17:48 Manuel Rüger
2017-06-28 11:24 Manuel Rüger
2017-06-20 12:53 Pacho Ramos
2017-05-11 15:39 Manuel Rüger
2017-05-09 11:51 Manuel Rüger
2017-04-25 19:07 William Hubbs
2017-04-25 19:07 William Hubbs
2017-04-21 19:01 William Hubbs
2017-04-21 17:52 William Hubbs
2017-04-21 17:52 William Hubbs
2017-04-21 12:59 William Hubbs
2017-04-15 20:54 Manuel Rüger
2017-04-06 17:08 Manuel Rüger
2017-04-05 10:54 Michael Weber
2017-04-05 10:21 Michael Weber
2017-03-28 23:28 Manuel Rüger
2017-03-06 13:22 Manuel Rüger
2017-03-06 13:22 Manuel Rüger
2017-02-24 11:30 Manuel Rüger
2017-02-06 14:31 Manuel Rüger
2017-01-17 11:24 Agostino Sarubbo
2016-12-18  1:06 Manuel Rüger
2016-12-16 22:47 Manuel Rüger
2016-11-09 19:47 William Hubbs
2016-11-09 19:47 William Hubbs
2016-11-09 19:02 Manuel Rüger
2016-11-09 19:02 Manuel Rüger
2016-11-09 18:04 Manuel Rüger
2016-11-09 16:58 Manuel Rüger
2016-11-09 16:53 Manuel Rüger
2016-10-04 23:04 William Hubbs
2016-08-18 17:41 William Hubbs
2016-08-18 17:41 William Hubbs
2016-07-11 19:51 Anthony G. Basile
2016-06-24 17:04 William Hubbs
2016-06-23 19:45 William Hubbs
2016-06-23 19:45 William Hubbs
2016-04-27  8:24 Agostino Sarubbo
2016-04-26 18:11 Kacper Kowalik
2016-04-17 16:36 Kacper Kowalik

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=1531923956.fe13a335bff1e0ebb1ac5d105ce4d067163e4154.mrueg@gentoo \
    --to=mrueg@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