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 AD15E1381F1 for ; Thu, 24 May 2018 21:59:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C4925E084E; Thu, 24 May 2018 21:59:55 +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 9AF61E084E for ; Thu, 24 May 2018 21:59:55 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6A872335C74 for ; Thu, 24 May 2018 21:59:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B46141D4 for ; Thu, 24 May 2018 21:59:52 +0000 (UTC) From: "Matt Thode" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Matt Thode" Message-ID: <1527199183.7e94620376a3c20e080a6c04c8f4ef34884876c4.prometheanfire@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/icingaweb2-module-graphite/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/icingaweb2-module-graphite/Manifest www-apps/icingaweb2-module-graphite/icingaweb2-module-graphite-1.0.1.ebuild X-VCS-Directories: www-apps/icingaweb2-module-graphite/ X-VCS-Committer: prometheanfire X-VCS-Committer-Name: Matt Thode X-VCS-Revision: 7e94620376a3c20e080a6c04c8f4ef34884876c4 X-VCS-Branch: master Date: Thu, 24 May 2018 21:59:52 +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: 2b205650-6ea4-411c-b377-4b9038fe14f4 X-Archives-Hash: 0343c5badadc29147e6692c89c59534a commit: 7e94620376a3c20e080a6c04c8f4ef34884876c4 Author: Matthew Thode gentoo org> AuthorDate: Thu May 24 21:59:27 2018 +0000 Commit: Matt Thode gentoo org> CommitDate: Thu May 24 21:59:43 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e946203 www-apps/icingaweb2-module-graphite: 1.0.1 bup Package-Manager: Portage-2.3.36, Repoman-2.3.9 www-apps/icingaweb2-module-graphite/Manifest | 1 + .../icingaweb2-module-graphite-1.0.1.ebuild | 30 ++++++++++++++++++++++ 2 files changed, 31 insertions(+) diff --git a/www-apps/icingaweb2-module-graphite/Manifest b/www-apps/icingaweb2-module-graphite/Manifest new file mode 100644 index 00000000000..2713871762c --- /dev/null +++ b/www-apps/icingaweb2-module-graphite/Manifest @@ -0,0 +1 @@ +DIST icingaweb2-module-graphite-1.0.1.tar.gz 5988 BLAKE2B 43f98d853643377cc8088e60845c603563ec5f3bee8d1e9f48e884677c7bfbc82da5603e1aae05634616a52bd387c1685bf2605d1abcae0a96cc88dad303dd1c SHA512 594a8d2a141bdf682fa37dc7b677a78f255dfa3d05071878a416b7426ed6355abc2a2864394e333a00c08aba8fd4f898e42c5a49ffeaf689a16de175f6ddb333 diff --git a/www-apps/icingaweb2-module-graphite/icingaweb2-module-graphite-1.0.1.ebuild b/www-apps/icingaweb2-module-graphite/icingaweb2-module-graphite-1.0.1.ebuild new file mode 100644 index 00000000000..1722cdeaadb --- /dev/null +++ b/www-apps/icingaweb2-module-graphite/icingaweb2-module-graphite-1.0.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +DESCRIPTION="Icinga Web 2 plugin for pnp4nagios" +HOMEPAGE="http://www.icinga.org/" +if [[ "${PV}" == 9999 ]]; then + inherit git-r3 + EGIT_REPO_URI="https://github.com/Icinga/icingaweb2-module-graphite.git" +else + KEYWORDS="~amd64 ~x86" + MY_PN="icingaweb2-module-pnp" + SRC_URI="https://codeload.github.com/Icinga/${MY_PN}/tar.gz/v${PV} -> ${P}.tar.gz" + S="${WORKDIR}/${MY_PN}-${PV}" +fi + +LICENSE="GPL-2" +SLOT="0" + +DEPEND=">=net-analyzer/icinga2-2.4.0 + >=www-apps/icingaweb2-2.5.0" +RDEPEND="${DEPEND}" + +PATCHES=() + +src_install() { + insinto "/usr/share/icingaweb2/modules/graphite/" + doins -r "${S}"/* +}