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: Sun, 10 Dec 2017 23:20:17
Message-Id: 1512948001.eb9d3bde3033cafe5ae35dfec16a55fd938a77e8.mrueg@gentoo
1 commit: eb9d3bde3033cafe5ae35dfec16a55fd938a77e8
2 Author: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
3 AuthorDate: Sun Dec 10 23:20:01 2017 +0000
4 Commit: Manuel Rüger <mrueg <AT> gentoo <DOT> org>
5 CommitDate: Sun Dec 10 23:20:01 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb9d3bde
7
8 app-emulation/cadvisor: Version bump to 0.28.3
9
10 Package-Manager: Portage-2.3.17, Repoman-2.3.6
11
12 app-emulation/cadvisor/Manifest | 1 +
13 app-emulation/cadvisor/cadvisor-0.28.3.ebuild | 27 +++++++++++++++++++++++++++
14 2 files changed, 28 insertions(+)
15
16 diff --git a/app-emulation/cadvisor/Manifest b/app-emulation/cadvisor/Manifest
17 index 3464eac2165..21e686d5dd1 100644
18 --- a/app-emulation/cadvisor/Manifest
19 +++ b/app-emulation/cadvisor/Manifest
20 @@ -1 +1,2 @@
21 DIST cadvisor-0.28.2.tar.gz 4109967 BLAKE2B c55268a0768adeea75ecc2baa1093d5d5360d1e0be56cea467fe759278c7047060c4b78179a3a35801afbcf6415ffbeb7e0649c92e79878e5615c73a37eeabeb SHA512 e682b8e062ba373e5726a8076d5be75322e7c592bd751aa32da9a99e5d380a77fc4b376aa478b0beff18bae2bc8432d3a70542605681410d5e1e0b1919a6c252
22 +DIST cadvisor-0.28.3.tar.gz 4110487 BLAKE2B d6b9d6de67e5672a3ba57ea0c28f38e2e96ec43910f8f5bbbe17b377ccbadf026d4418928234149e9ad3936f4c0871d7c371dda2bea49111735a33520154b2d3 SHA512 da111d74bfa3485c42a03a027ccbf833886e561f3244a081ad5439f7a714767cf4666c43c17b0b976089ea40916089aaa2c6070ec4aefc19798a1d5325e005e4
23
24 diff --git a/app-emulation/cadvisor/cadvisor-0.28.3.ebuild b/app-emulation/cadvisor/cadvisor-0.28.3.ebuild
25 new file mode 100644
26 index 00000000000..c3666053995
27 --- /dev/null
28 +++ b/app-emulation/cadvisor/cadvisor-0.28.3.ebuild
29 @@ -0,0 +1,27 @@
30 +# Copyright 1999-2017 Gentoo Foundation
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=6
34 +EGO_PN="github.com/google/cadvisor"
35 +
36 +inherit user golang-build golang-vcs-snapshot
37 +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
38 +KEYWORDS="~amd64"
39 +
40 +DESCRIPTION="Analyzes resource usage and performance characteristics of running containers"
41 +
42 +HOMEPAGE="https://github.com/google/cadvisor"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +IUSE=""
47 +
48 +pkg_setup() {
49 + enewgroup ${PN}
50 + enewuser ${PN} -1 -1 /dev/null ${PN}
51 +}
52 +
53 +src_install() {
54 + newinitd "${FILESDIR}"/${PN}.initd ${PN}
55 + dobin ${PN}
56 +}