Gentoo Archives: gentoo-commits

From: Sam James <sam@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/cacti/
Date: Tue, 29 Dec 2020 06:44:44
Message-Id: 1609224264.46478d39248628c5ba118839a7e051f519408792.sam@gentoo
1 commit: 46478d39248628c5ba118839a7e051f519408792
2 Author: Sam James <sam <AT> gentoo <DOT> org>
3 AuthorDate: Tue Dec 29 06:44:24 2020 +0000
4 Commit: Sam James <sam <AT> gentoo <DOT> org>
5 CommitDate: Tue Dec 29 06:44:24 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46478d39
7
8 net-analyzer/cacti: security cleanup
9
10 Bug: https://bugs.gentoo.org/760705
11 Package-Manager: Portage-3.0.12-prefix, Repoman-3.0.2
12 Signed-off-by: Sam James <sam <AT> gentoo.org>
13
14 net-analyzer/cacti/Manifest | 1 -
15 net-analyzer/cacti/cacti-1.2.13.ebuild | 48 ----------------------------------
16 2 files changed, 49 deletions(-)
17
18 diff --git a/net-analyzer/cacti/Manifest b/net-analyzer/cacti/Manifest
19 index e71b9c05535..7559d482923 100644
20 --- a/net-analyzer/cacti/Manifest
21 +++ b/net-analyzer/cacti/Manifest
22 @@ -1,2 +1 @@
23 -DIST cacti-1.2.13.tar.gz 25182816 BLAKE2B 934deba81a0ac66d4f6a6efcb254204f3d26b40ee56b3b0b926334cefc99a8dcda688250218b796446e6dc9ad3b0efdbe4a0e408873921ff38977485c3fcf9af SHA512 e111c90b77a43bb3ea7cd5cc90cd95a09be95413443db474c04e30d5b00ff96a69e8cb2792a3995462f4623538fc33b89029ff13c25181beff015c47e506d4b9
24 DIST cacti-1.2.14.tar.gz 25182521 BLAKE2B 555c30ebd06ac71df608a1564892ecd176cf46fa079fd3615dc59fd984bc8bedd4512d971dc3c2731848107da728724ef459d84f0308bef8b0b6ab943b8bc3cf SHA512 734d8e059ea47630072269d92ad79e773268c5dd1cd9c565d23c41b2a74c8892bdc5190f7de6bb9ed281a67ade9c8ef6d723a9d4f486a4ba9aca99182d6ad056
25
26 diff --git a/net-analyzer/cacti/cacti-1.2.13.ebuild b/net-analyzer/cacti/cacti-1.2.13.ebuild
27 deleted file mode 100644
28 index 2ec9213257a..00000000000
29 --- a/net-analyzer/cacti/cacti-1.2.13.ebuild
30 +++ /dev/null
31 @@ -1,48 +0,0 @@
32 -# Copyright 1999-2020 Gentoo Authors
33 -# Distributed under the terms of the GNU General Public License v2
34 -
35 -EAPI=7
36 -inherit eutils webapp
37 -
38 -# Support for _p* in version.
39 -MY_P=${P/_p*/}
40 -
41 -DESCRIPTION="Cacti is a complete frontend to rrdtool"
42 -HOMEPAGE="https://www.cacti.net/"
43 -SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz"
44 -
45 -LICENSE="GPL-2"
46 -KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 sparc x86"
47 -IUSE="snmp doc"
48 -
49 -need_httpd
50 -
51 -RDEPEND="
52 - dev-lang/php[cli,mysql,pdo,session,sockets,xml]
53 - dev-php/adodb
54 - net-analyzer/rrdtool[graph]
55 - virtual/cron
56 - snmp? ( >=net-analyzer/net-snmp-5.2.0 )
57 -"
58 -
59 -src_compile() { :; }
60 -
61 -src_install() {
62 - dodoc CHANGELOG
63 - dodoc -r docs
64 - mv docs .. || die
65 -
66 - webapp_src_preinst
67 -
68 - edos2unix `find -type f -name '*.php'`
69 -
70 - dodir ${MY_HTDOCSDIR}
71 - cp -r . "${D}"${MY_HTDOCSDIR}
72 -
73 - webapp_serverowned ${MY_HTDOCSDIR}/rra
74 - webapp_serverowned ${MY_HTDOCSDIR}/log
75 - webapp_configfile ${MY_HTDOCSDIR}/include/config.php
76 - webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
77 -
78 - webapp_src_install
79 -}