From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BEBB4139083 for ; Sun, 10 Dec 2017 23:20:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E8B34E0F9F; Sun, 10 Dec 2017 23:20:16 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C4D20E0F9F for ; Sun, 10 Dec 2017 23:20:16 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1DB733BF05 for ; Sun, 10 Dec 2017 23:20:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45BA9A89E for ; Sun, 10 Dec 2017 23:20:14 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1512948001.eb9d3bde3033cafe5ae35dfec16a55fd938a77e8.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/cadvisor/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/cadvisor/Manifest app-emulation/cadvisor/cadvisor-0.28.3.ebuild X-VCS-Directories: app-emulation/cadvisor/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: eb9d3bde3033cafe5ae35dfec16a55fd938a77e8 X-VCS-Branch: master Date: Sun, 10 Dec 2017 23:20:14 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0d3d5e2d-8e69-42c6-abb8-4aa5cee8dbcb X-Archives-Hash: 098ddf50c8ec8d972347e3cd366f0400 commit: eb9d3bde3033cafe5ae35dfec16a55fd938a77e8 Author: Manuel Rüger gentoo org> AuthorDate: Sun Dec 10 23:20:01 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sun Dec 10 23:20:01 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb9d3bde app-emulation/cadvisor: Version bump to 0.28.3 Package-Manager: Portage-2.3.17, Repoman-2.3.6 app-emulation/cadvisor/Manifest | 1 + app-emulation/cadvisor/cadvisor-0.28.3.ebuild | 27 +++++++++++++++++++++++++++ 2 files changed, 28 insertions(+) diff --git a/app-emulation/cadvisor/Manifest b/app-emulation/cadvisor/Manifest index 3464eac2165..21e686d5dd1 100644 --- a/app-emulation/cadvisor/Manifest +++ b/app-emulation/cadvisor/Manifest @@ -1 +1,2 @@ DIST cadvisor-0.28.2.tar.gz 4109967 BLAKE2B c55268a0768adeea75ecc2baa1093d5d5360d1e0be56cea467fe759278c7047060c4b78179a3a35801afbcf6415ffbeb7e0649c92e79878e5615c73a37eeabeb SHA512 e682b8e062ba373e5726a8076d5be75322e7c592bd751aa32da9a99e5d380a77fc4b376aa478b0beff18bae2bc8432d3a70542605681410d5e1e0b1919a6c252 +DIST cadvisor-0.28.3.tar.gz 4110487 BLAKE2B d6b9d6de67e5672a3ba57ea0c28f38e2e96ec43910f8f5bbbe17b377ccbadf026d4418928234149e9ad3936f4c0871d7c371dda2bea49111735a33520154b2d3 SHA512 da111d74bfa3485c42a03a027ccbf833886e561f3244a081ad5439f7a714767cf4666c43c17b0b976089ea40916089aaa2c6070ec4aefc19798a1d5325e005e4 diff --git a/app-emulation/cadvisor/cadvisor-0.28.3.ebuild b/app-emulation/cadvisor/cadvisor-0.28.3.ebuild new file mode 100644 index 00000000000..c3666053995 --- /dev/null +++ b/app-emulation/cadvisor/cadvisor-0.28.3.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 +EGO_PN="github.com/google/cadvisor" + +inherit user golang-build golang-vcs-snapshot +SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" +KEYWORDS="~amd64" + +DESCRIPTION="Analyzes resource usage and performance characteristics of running containers" + +HOMEPAGE="https://github.com/google/cadvisor" + +LICENSE="Apache-2.0" +SLOT="0" +IUSE="" + +pkg_setup() { + enewgroup ${PN} + enewuser ${PN} -1 -1 /dev/null ${PN} +} + +src_install() { + newinitd "${FILESDIR}"/${PN}.initd ${PN} + dobin ${PN} +}