Gentoo Archives: gentoo-commits

From: "Manuel Rüger" <mrueg@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/containerd/
Date: Tue, 02 Jan 2018 13:05:20
Message-Id: 1514898303.19228d453f068210d20ddb3c7cf39c957d8e1539.mrueg@gentoo
1 commit: 19228d453f068210d20ddb3c7cf39c957d8e1539
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Jan 2 13:05:03 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 2 13:05:03 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19228d45
7
8 app-emulation/containerd: Remove old
9
10 Package-Manager: Portage-2.3.19, Repoman-2.3.6
11
12 app-emulation/containerd/Manifest | 1 -
13 .../containerd/containerd-0.2.9_p20170605.ebuild | 42 ----------------------
14 2 files changed, 43 deletions(-)
15
16 diff --git a/app-emulation/containerd/Manifest b/app-emulation/containerd/Manifest
17 index 51c94235043..fe3b2faea66 100644
18 --- a/app-emulation/containerd/Manifest
19 +++ b/app-emulation/containerd/Manifest
20 @@ -1,4 +1,3 @@
21 -DIST containerd-0.2.9_p20170605.tar.gz 1229549 BLAKE2B 9dd68595694b5b624007ecd8a8a6546abeacbd45c6f4bd79754c275a2148938f17f7313f59567a7095d3d292807bf0eda9b79a5c9129a36f05eaa2478b97fde5 SHA512 900cf9c251c4de0f9848fb5bf26537226c1361d1a64a0fba853bda3805cb141fc2a849442fe885f0ee228b3e3a7018440af18898b484a54a7b75b4a86538aaa9
22 DIST containerd-0.2.9_p20170917.tar.gz 1140788 BLAKE2B 96effa85f9cb03c3e416d53438376af6c7965660bf9c9931fdfa7fee94cca9386f2732e70dc88ee32b83e902b7d4a3072e22a817d9970ed1e07dc1271e8b33ab SHA512 c749bda691197ec8a7603db9ad92f2800a3f065143430a660333b7862518deb4c158a1c1fd01671dff438b40988d4a64d8f06bab05496b8728c6e2f57cd7da0a
23 DIST containerd-1.0.0.tar.gz 3763785 BLAKE2B cd4af679c9028b616aeedd594518f796a350523899c13da5a848a5843b318394166ddfbf5e7ed1f473a3759b26d134659f928d8e15da17ebdf65a41d2fd5f914 SHA512 8c1a03de7f30976675e4482b4f18f4b87da56108de4d92f2e33b4cb4f8c188af5b3fad87971a294eac8442a0fb6ddae48cda81334c363203a8c8bdfc09176a7a
24 DIST containerd-1.0.0_beta2_p20171019.tar.gz 3682585 BLAKE2B a67b581e3e5ddf2e95d551a9cca3dafa14772dc6ec1f1b1226ce21b0d7f88f3f80669b21f471fede50d5dd68d3916ef8696d0551c333c57e87a8ee2db3d25488 SHA512 290dcc97c47dccc6af424f5bcdfa2b59ae29eda135f71fb68a456245017a7ce5262150088f91b9edcaa19886d8919e5b6246f2816d6947c0a9b33ec6b58185e9
25
26 diff --git a/app-emulation/containerd/containerd-0.2.9_p20170605.ebuild b/app-emulation/containerd/containerd-0.2.9_p20170605.ebuild
27 deleted file mode 100644
28 index e574004b67e..00000000000
29 --- a/app-emulation/containerd/containerd-0.2.9_p20170605.ebuild
30 +++ /dev/null
31 @@ -1,42 +0,0 @@
32 -# Copyright 1999-2017 Gentoo Foundation
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=6
36 -EGO_PN="github.com/${PN}/${PN}"
37 -
38 -inherit toolchain-funcs
39 -
40 -if [[ ${PV} == *9999 ]]; then
41 - inherit golang-vcs
42 -else
43 - MY_PV="${PV/_/-}"
44 - EGIT_COMMIT="6e23458c129b551d5c9871e5174f6b1b7f6d1170"
45 - SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
46 - KEYWORDS="amd64 ~arm ~ppc64"
47 - inherit golang-vcs-snapshot
48 -fi
49 -
50 -DESCRIPTION="A daemon to control runC"
51 -HOMEPAGE="https://containerd.tools"
52 -
53 -LICENSE="Apache-2.0"
54 -SLOT="0"
55 -IUSE="hardened +seccomp"
56 -
57 -DEPEND=""
58 -RDEPEND=">=app-emulation/docker-runc-1.0.0_rc3_p20170706
59 - seccomp? ( sys-libs/libseccomp )"
60 -
61 -S=${WORKDIR}/${P}/src/${EGO_PN}
62 -
63 -RESTRICT="test"
64 -
65 -src_compile() {
66 - local options=( $(usex seccomp "seccomp" '') )
67 - export GOPATH="${WORKDIR}/${P}" # ${PWD}/vendor
68 - LDFLAGS=$(usex hardened '-extldflags -fno-PIC' '') emake GIT_COMMIT="$EGIT_COMMIT" BUILDTAGS="${options[@]}"
69 -}
70 -
71 -src_install() {
72 - dobin bin/containerd* bin/ctr
73 -}