From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1035568-garchives=archives.gentoo.org@lists.gentoo.org> 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 32CCC138334 for <garchives@archives.gentoo.org>; Wed, 11 Jul 2018 08:39:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 40366E0869; Wed, 11 Jul 2018 08:39:02 +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 01061E0869 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Jul 2018 08:39:01 +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 55D58335CA8 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Jul 2018 08:39:00 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C1A4F359 for <gentoo-commits@lists.gentoo.org>; Wed, 11 Jul 2018 08:38:58 +0000 (UTC) From: "Tony Vroon" <chainsaw@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Tony Vroon" <chainsaw@gentoo.org> Message-ID: <1531298330.54b9f2f29bdea49f51e69b4ee1566fe28afbae30.chainsaw@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgp/ X-VCS-Repository: repo/gentoo X-VCS-Files: www-apps/cgp/Manifest www-apps/cgp/cgp-1.ebuild www-apps/cgp/metadata.xml X-VCS-Directories: www-apps/cgp/ X-VCS-Committer: chainsaw X-VCS-Committer-Name: Tony Vroon X-VCS-Revision: 54b9f2f29bdea49f51e69b4ee1566fe28afbae30 X-VCS-Branch: master Date: Wed, 11 Jul 2018 08:38:58 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 46c8f80f-e2ef-4e07-a0b3-1762ee2a32ea X-Archives-Hash: b035fa49ca05c3f4063950d480fc18c2 commit: 54b9f2f29bdea49f51e69b4ee1566fe28afbae30 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com> AuthorDate: Sat Jul 7 21:58:06 2018 +0000 Commit: Tony Vroon <chainsaw <AT> gentoo <DOT> org> CommitDate: Wed Jul 11 08:38:50 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54b9f2f2 www-apps/cgp: new package Closes: https://bugs.gentoo.org/654150 Package-Manager: Portage-2.3.41, Repoman-2.3.9 Closes: https://github.com/gentoo/gentoo/pull/9096 Closes: https://bugs.gentoo.org/654150 www-apps/cgp/Manifest | 1 + www-apps/cgp/cgp-1.ebuild | 52 +++++++++++++++++++++++++++++++++++++++++++++++ www-apps/cgp/metadata.xml | 20 ++++++++++++++++++ 3 files changed, 73 insertions(+) diff --git a/www-apps/cgp/Manifest b/www-apps/cgp/Manifest new file mode 100644 index 00000000000..7fddb0cd05d --- /dev/null +++ b/www-apps/cgp/Manifest @@ -0,0 +1 @@ +DIST cgp-1.tar.gz 139265 BLAKE2B bf0f18def8ac3c2117b951172d4150f0626e8dcbe22accbcc6ad156e5f9f5c21792e38fa1bf5a964d8b50cbc7ee9003e4dcdcd75730ba2b0445f4dcfeffdda6c SHA512 fc5bc6d39dac896b56579cb6ca013c81493b994a7a190e0c0eec8a64f7b87c6eb2e0ad5cc969b8ea03ca4b00eee212ccee5c8785c23f5656bff3fe5490ff8f75 diff --git a/www-apps/cgp/cgp-1.ebuild b/www-apps/cgp/cgp-1.ebuild new file mode 100644 index 00000000000..0d1bc985b14 --- /dev/null +++ b/www-apps/cgp/cgp-1.ebuild @@ -0,0 +1,52 @@ +# Copyright 1999-2018 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit webapp + +MY_PN="${PN^^}" + +DESCRIPTION="A graphical web-based front-end for visualizing RRD collected by collectd" +HOMEPAGE="https://github.com/pommi/CGP + https://pommi.nethuis.nl/category/cgp/" +SRC_URI="https://github.com/pommi/${MY_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz" + +LICENSE="CC-BY-2.0 GPL-2+ GPL-3 MIT" +KEYWORDS="~amd64 ~x86" + +RDEPEND="dev-lang/php[json] + net-analyzer/rrdtool[graph] + virtual/httpd-php" + +need_httpd_cgi + +S="${WORKDIR}/${MY_PN}-${PV}" + +DOCS=( "README.md" "doc/CHANGELOG" "doc/nginx.conf" ) + +src_install() { + webapp_src_preinst + + einstalldocs + + # Since the docs are already installed, remove them from htdocs + # The file doc/CHANGELOG is needed, as CGP reads from there it's version + rm -r .gitignore doc/LICENSE doc/nginx.conf || die + + insinto "${MY_HTDOCSDIR}" + doins -r . + + webapp_src_install +} + +pkg_postinst() { + webapp_pkg_postinst + + einfo "The command shell_exec must not be disabled" + einfo "through the disable_functions php.ini directive." + einfo "It must allow execution of the rrdtool program." + einfo "" + einfo "An configuration file for www-servers/nginx" + einfo "has been installed as an example." +} diff --git a/www-apps/cgp/metadata.xml b/www-apps/cgp/metadata.xml new file mode 100644 index 00000000000..10b010911e4 --- /dev/null +++ b/www-apps/cgp/metadata.xml @@ -0,0 +1,20 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>ck+gentoo@bl4ckb0x.de</email> + <name>Conrad Kostecki</name> + </maintainer> + <maintainer type="project"> + <email>proxy-maint@gentoo.org</email> + <name>Proxy Maintainers</name> + </maintainer> + <longdescription> + Collectd Graph Panel (CGP) is a graphical web-based front-end + for visualizing RRD collected by collectd, written in the PHP language. + </longdescription> + <upstream> + <bugs-to>https://github.com/pommi/CGP/issues</bugs-to> + <remote-id type="github">pommi/CGP</remote-id> + </upstream> +</pkgmetadata>