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: Mon, 25 Sep 2017 14:11:36 +0000 (UTC)	[thread overview]
Message-ID: <1506348680.0f4e133f0c1144512d2b4fddef16fee494ca3b0a.mrueg@gentoo> (raw)

commit:     0f4e133f0c1144512d2b4fddef16fee494ca3b0a
Author:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
AuthorDate: Mon Sep 25 14:10:55 2017 +0000
Commit:     Manuel Rüger <mrueg <AT> gentoo <DOT> org>
CommitDate: Mon Sep 25 14:11:20 2017 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4e133f

app-emulation/containerd: Update snapshot for docker-ce 17.09

Package-Manager: Portage-2.3.10, Repoman-2.3.3

 app-emulation/containerd/Manifest                  |  1 +
 .../containerd/containerd-0.2.9_p20170917.ebuild   | 42 ++++++++++++++++++++++
 2 files changed, 43 insertions(+)

diff --git a/app-emulation/containerd/Manifest b/app-emulation/containerd/Manifest
index 509ae925f49..88e8248cdb2 100644
--- a/app-emulation/containerd/Manifest
+++ b/app-emulation/containerd/Manifest
@@ -1,3 +1,4 @@
 DIST containerd-0.2.5_p20170308.tar.gz 1021631 SHA256 d08d3d0758b76f7de0e8f503b74e1562d8c0a1014cb4baf4cd34e246751cec4c SHA512 8b00862a7b54490a8342bcc0eddaa7e8c86d1e05c02f5173b9f4a08321425f8d75d1fb0665e86bc79249294354977693c21d6a4d8405866ff8058da9772e2ecc WHIRLPOOL ed658d10f927fff4d9591930bdf855fc0ed259ca538d4361ce3cffcc5943dcfe39121242f1c9ef950897761016a8450b3a2117c0be0b8b0ebffeab330fe30b5d
 DIST containerd-0.2.9.tar.gz 1228977 SHA256 2360fec91d40e4e93757f964f07c74e35b6bfe838252b1cc814a176e1cd1c604 SHA512 6f0de476668e6b86a0cd5e1ea0f6dac24e0e68fe2dd52b8915dbafa5ffab137a5eea866c216f8184ffa6e4750c7b69bce3d46552e8be283a15ce676ea4356fc8 WHIRLPOOL b9fdd57af3cf39e6a5efdd67f0302ad38d6634d20aa3eb45431d2900f5fbb7dc62d624b07a5028bbb09ae763e07103e37703cf52f3e14e7af72fc2198d9c7876
 DIST containerd-0.2.9_p20170605.tar.gz 1229549 SHA256 c506121c49e3bfea27018aa77e09e4734067f84ae85b6ef75ec31b488a91ae54 SHA512 900cf9c251c4de0f9848fb5bf26537226c1361d1a64a0fba853bda3805cb141fc2a849442fe885f0ee228b3e3a7018440af18898b484a54a7b75b4a86538aaa9 WHIRLPOOL 880f19a994f623b7cd8c3f771b5c56468681de349ae4196e60ffcb5a34d42ef423d8eefc82c07134c9e50c33bc0ecbfc1a9e47c3df987050d8dcb82da0178d80
+DIST containerd-0.2.9_p20170917.tar.gz 1140788 SHA256 4d2b6e30bcc6c4bb901d6b9f19b5ac1d4a2d9b17075a9b1f110102920d01f64a SHA512 c749bda691197ec8a7603db9ad92f2800a3f065143430a660333b7862518deb4c158a1c1fd01671dff438b40988d4a64d8f06bab05496b8728c6e2f57cd7da0a WHIRLPOOL 75cb3467a94af50bef52377f309d7c85386475789fab3d2758679f022b516735728a1ac2c54307954a14100c4f84059d8fd5e8376270fdd69e572cff43453fa0

diff --git a/app-emulation/containerd/containerd-0.2.9_p20170917.ebuild b/app-emulation/containerd/containerd-0.2.9_p20170917.ebuild
new file mode 100644
index 00000000000..90c87cf4475
--- /dev/null
+++ b/app-emulation/containerd/containerd-0.2.9_p20170917.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+EGO_PN="github.com/${PN}/${PN}"
+
+inherit toolchain-funcs
+
+if [[ ${PV} == *9999 ]]; then
+	inherit golang-vcs
+else
+	MY_PV="${PV/_/-}"
+	EGIT_COMMIT="06b9cb35161009dcb7123345749fef02f7cea8e0"
+	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="hardened +seccomp"
+
+DEPEND=""
+RDEPEND=">=app-emulation/docker-runc-1.0.0_rc4_p20170917
+	seccomp? ( sys-libs/libseccomp )"
+
+S=${WORKDIR}/${P}/src/${EGO_PN}
+
+RESTRICT="test"
+
+src_compile() {
+	local options=( $(usex seccomp "seccomp" '') )
+	export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
+	LDFLAGS=$(usex hardened '-extldflags -fno-PIC' '') emake GIT_COMMIT="$EGIT_COMMIT" BUILDTAGS="${options[@]}"
+}
+
+src_install() {
+	dobin bin/containerd* bin/ctr
+}


             reply	other threads:[~2017-09-25 14:11 UTC|newest]

Thread overview: 151+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-25 14:11 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-18 14:26 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-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=1506348680.0f4e133f0c1144512d2b4fddef16fee494ca3b0a.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