Gentoo Archives: gentoo-commits

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