Gentoo Archives: gentoo-commits

From: Patrice Clement <monsieurp@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: www-apps/cgp/
Date: Tue, 29 Jan 2019 23:00:27
Message-Id: 1548802798.8c82a65d70a5bdc7e993f91291e5df040f123b73.monsieurp@gentoo
1 commit: 8c82a65d70a5bdc7e993f91291e5df040f123b73
2 Author: Conrad Kostecki <conrad <AT> kostecki <DOT> com>
3 AuthorDate: Sun Jan 27 17:06:19 2019 +0000
4 Commit: Patrice Clement <monsieurp <AT> gentoo <DOT> org>
5 CommitDate: Tue Jan 29 22:59:58 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c82a65d
7
8 www-apps/cgp: drop old version.
9
10 Package-Manager: Portage-2.3.56, Repoman-2.3.12
11 Signed-off-by: Conrad Kostecki <conrad <AT> kostecki.com>
12 Signed-off-by: Patrice Clement <monsieurp <AT> gentoo.org>
13
14 www-apps/cgp/Manifest | 1 -
15 www-apps/cgp/cgp-1_p20180620-r1.ebuild | 54 ----------------------------------
16 2 files changed, 55 deletions(-)
17
18 diff --git a/www-apps/cgp/Manifest b/www-apps/cgp/Manifest
19 index ce156d63f1e..8c002dc742f 100644
20 --- a/www-apps/cgp/Manifest
21 +++ b/www-apps/cgp/Manifest
22 @@ -1,2 +1 @@
23 -DIST cgp-1_p20180620.tar.gz 139549 BLAKE2B 2cc1a416ae1158b5788615b05bf43039049af52eb5296e7fd8136c9895e8ee0a9887e84ad37c6598a4c4387982a2860fbdb7cf9cdff39cfe5bbee598b9ace88f SHA512 acd09bb699af678347dacfc08fee60a86843874543851805f245952e538777d7ccd528c156f7a21b803503c7aac134013a4eb8200d5266cf35541b0dce5839e4
24 DIST cgp-1_p20181209.tar.gz 139556 BLAKE2B 0a79ff1974b0ae50db5582121c4fdcc2db0b89ef11ecb001dfa525dd753481f0a454e424d17f24b142fd116a9ea2eeb4ba1dade6f2ffadd63943e5c065323224 SHA512 fcbf81fca2bb14ed143ea414c2f11fe09f4594891507a1ad08482720b104ec62c9986ce25b127d45a7962a8b3db54293a6775dc2359bde41f19b5419606b51eb
25
26 diff --git a/www-apps/cgp/cgp-1_p20180620-r1.ebuild b/www-apps/cgp/cgp-1_p20180620-r1.ebuild
27 deleted file mode 100644
28 index 6fe5fc73bda..00000000000
29 --- a/www-apps/cgp/cgp-1_p20180620-r1.ebuild
30 +++ /dev/null
31 @@ -1,54 +0,0 @@
32 -# Copyright 1999-2018 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI="7"
36 -
37 -inherit webapp
38 -
39 -MY_PN="${PN^^}"
40 -MY_PV="1920ca24a067ac157a6bd8f3c017f4c6244ae245"
41 -
42 -DESCRIPTION="A graphical web-based front-end for visualizing RRD collected by collectd"
43 -HOMEPAGE="https://github.com/pommi/CGP"
44 -SRC_URI="https://github.com/pommi/${MY_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
45 -
46 -LICENSE="CC-BY-2.0 GPL-2+ GPL-3 MIT"
47 -KEYWORDS="~amd64 ~x86"
48 -
49 -RDEPEND="
50 - dev-lang/php[json]
51 - net-analyzer/rrdtool[graph]
52 - virtual/httpd-php
53 -"
54 -
55 -need_httpd_cgi
56 -
57 -S="${WORKDIR}/${MY_PN}-${MY_PV}"
58 -
59 -DOCS=( "README.md" "doc/CHANGELOG" "doc/nginx.conf" )
60 -
61 -src_install() {
62 - webapp_src_preinst
63 -
64 - einstalldocs
65 -
66 - # Since the docs are already installed, remove them from htdocs
67 - # The file doc/CHANGELOG is needed, as CGP reads from there it's version
68 - rm -r .gitignore doc/LICENSE doc/nginx.conf || die
69 -
70 - insinto "${MY_HTDOCSDIR}"
71 - doins -r .
72 -
73 - webapp_src_install
74 -}
75 -
76 -pkg_postinst() {
77 - webapp_pkg_postinst
78 -
79 - einfo "The command shell_exec must not be disabled"
80 - einfo "through the disable_functions php.ini directive."
81 - einfo "It must allow execution of the rrdtool program."
82 - einfo ""
83 - einfo "An configuration file for www-servers/nginx"
84 - einfo "has been installed as an example."
85 -}