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/cadvisor/
Date: Tue, 11 Dec 2018 08:07:25
Message-Id: 1544515625.709c059e1e9f78f14678b15fbd8129e31125905b.mrueg@gentoo
1 commit: 709c059e1e9f78f14678b15fbd8129e31125905b
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 11 08:07:05 2018 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 11 08:07:05 2018 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=709c059e
7
8 app-emulation/cadvisor: Version bump to 0.32.0
9
10 Signed-off-by: Manuel Rüger <mrueg <AT> gentoo.org>
11 Package-Manager: Portage-2.3.52, Repoman-2.3.11
12
13 app-emulation/cadvisor/Manifest | 1 +
14 app-emulation/cadvisor/cadvisor-0.32.0.ebuild | 43 +++++++++++++++++++++++++++
15 2 files changed, 44 insertions(+)
16
17 diff --git a/app-emulation/cadvisor/Manifest b/app-emulation/cadvisor/Manifest
18 index 331cfacfa51..4780d930a81 100644
19 --- a/app-emulation/cadvisor/Manifest
20 +++ b/app-emulation/cadvisor/Manifest
21 @@ -2,3 +2,4 @@ DIST cadvisor-0.28.3.tar.gz 4110487 BLAKE2B d6b9d6de67e5672a3ba57ea0c28f38e2e96e
22 DIST cadvisor-0.29.1.tar.gz 4152413 BLAKE2B 7eca61553f98a27b9d42f81618b67ebec2003c047557ea2bb749d0d36545c9c5ed76b67f8558ba335f396f16b6c496271875dd68b0d9f3554f92e20a63cc0cf5 SHA512 ce3a937607be2725388434cecb23ea8417bf3ddbd662cedcf128f090d52cc96c052dc016eeab32c34d3338fbb5b56091ee62720c32fb3313a5d41a556bc0b575
23 DIST cadvisor-0.30.2.tar.gz 4126305 BLAKE2B c0ded9a4e4d9f2942b2ae92dbc8037a4e6310686f82ff256dabdc6acc966b684621e213702ac97aac1648bd4dfcc6f757ce0c3a100b6830caa9d72e442a419c4 SHA512 415e89879c768d236dba1ad8a470b416406f53fc29d9654c011bf511b507c531e0be073c43110bba9c46f284a9235f76b743959f3363dcdc9d76a5631da530e2
24 DIST cadvisor-0.31.0.tar.gz 4604581 BLAKE2B b39cc3c2482353f1fb64ee0bb9baccdd310e6315819c21aaaef034970f39e2d6ffae05de4289b50838e8bad889f7d9a8e516768ba56a6854c76829a621e57554 SHA512 13b92c2148a439def2394232b3591c0367431f09f5998b5a79210e5b871e2986934fda8b1a3bbeb10691bb5b512556b76f32976b977005d767974c565bcf9072
25 +DIST cadvisor-0.32.0.tar.gz 4623510 BLAKE2B 7145d0224b3d64cd438bb94047d8682bcad842d7841d98f264a3118a2c0fabb7f67b183db80e054362428efc4f47c699692e53e651a14a1871cc3c32d3a0695f SHA512 734ad1f33e0948dba7e43a1695c3a96ce6bf4367a604b5b79f011c893e18ec697c48199ddb21edb7c176929ddd389e42de9b6f502a01c938c45612ffd96b5f5d
26
27 diff --git a/app-emulation/cadvisor/cadvisor-0.32.0.ebuild b/app-emulation/cadvisor/cadvisor-0.32.0.ebuild
28 new file mode 100644
29 index 00000000000..9442a3cae02
30 --- /dev/null
31 +++ b/app-emulation/cadvisor/cadvisor-0.32.0.ebuild
32 @@ -0,0 +1,43 @@
33 +# Copyright 1999-2018 Gentoo Authors
34 +# Distributed under the terms of the GNU General Public License v2
35 +
36 +EAPI=6
37 +EGO_PN="github.com/google/cadvisor"
38 +
39 +inherit user golang-build golang-vcs-snapshot
40 +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
41 +COMMIT="8949c82"
42 +KEYWORDS="~amd64"
43 +
44 +DESCRIPTION="Analyzes resource usage and performance characteristics of running containers"
45 +HOMEPAGE="https://github.com/google/cadvisor"
46 +
47 +LICENSE="Apache-2.0"
48 +SLOT="0"
49 +IUSE=""
50 +
51 +pkg_setup() {
52 + enewgroup ${PN}
53 + enewuser ${PN} -1 -1 /dev/null ${PN}
54 +}
55 +
56 +src_prepare() {
57 + sed -i -e "/go get/d" src/${EGO_PN}/build/assets.sh || die
58 + sed -i -e "s/git describe.*/echo ${PV} )/"\
59 + -e "s/git rev-parse --short HEAD.*/echo ${COMMIT} )/"\
60 + src/${EGO_PN}/build/build.sh || die
61 + default
62 +}
63 +
64 +src_compile() {
65 + pushd "src/${EGO_PN}"
66 + GO_FLAGS="-v -work -x" VERBOSE="true" GOPATH="${S}:$(get_golibdir_gopath)" emake build
67 + popd || die
68 +}
69 +
70 +src_install() {
71 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
72 + dobin src/${EGO_PN}/${PN}
73 + keepdir /var/log/${PN}
74 + fowners ${PN}:${PN} /var/log/${PN}
75 +}