From: "Craig Andrews" <candrews@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/
Date: Mon, 6 Jan 2020 00:57:40 +0000 (UTC) [thread overview]
Message-ID: <1578272245.b3e161fa109f84821ecdd0e2e9181a5c16e4f47a.candrews@gentoo> (raw)
commit: b3e161fa109f84821ecdd0e2e9181a5c16e4f47a
Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
AuthorDate: Mon Jan 6 00:57:25 2020 +0000
Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
CommitDate: Mon Jan 6 00:57:25 2020 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3e161fa
net-analyzer/netdata: Cleanup old versions
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
net-analyzer/netdata/Manifest | 1 -
net-analyzer/netdata/netdata-1.18.1-r1.ebuild | 123 ------------------------
net-analyzer/netdata/netdata-1.19.0-r1.ebuild | 131 --------------------------
3 files changed, 255 deletions(-)
diff --git a/net-analyzer/netdata/Manifest b/net-analyzer/netdata/Manifest
index ed6d7d05b85..8b9a9b8b17c 100644
--- a/net-analyzer/netdata/Manifest
+++ b/net-analyzer/netdata/Manifest
@@ -1,2 +1 @@
-DIST netdata-1.18.1.tar.gz 3413907 BLAKE2B 9047f23875f446b378c80962e7f8e5c9424fbc2a405c75b76e242b26ae48336cbb026d3fc5c0e4127b0e5d1f1d5a14652ae92661474cd11ecbd64614461ab118 SHA512 fb72f4729e05ab83fe9462e31b10fc40243472ea9f6cbb9421e2ca549810f2f80b28b05e886faa66e15c53b317ee559a3e0fb3d382c36a424dd39fec779918d9
DIST netdata-1.19.0.tar.gz 3443251 BLAKE2B 8e18a661367850e712a75c1c11b661a977bf77b48369e0e36763a74f96b3726c523093a82eb6f94257c02e754d900cb675d501fda824ceb94eef31dfa30e5712 SHA512 026ae159d8ed52a30e406c110c2732e54e50f070865ba3e430df73e4df40387105053e750ca6029cfbc7f40a2c05b7fb6ba4e3e4a7070822c7eec4c1a4712aea
diff --git a/net-analyzer/netdata/netdata-1.18.1-r1.ebuild b/net-analyzer/netdata/netdata-1.18.1-r1.ebuild
deleted file mode 100644
index 7e3dcb31cf3..00000000000
--- a/net-analyzer/netdata/netdata-1.18.1-r1.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
-
-inherit autotools fcaps linux-info python-r1 systemd
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/netdata/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/netdata/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Linux real time system monitoring, done right!"
-HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/"
-
-LICENSE="GPL-3+ MIT BSD"
-SLOT="0"
-IUSE="caps +compression cpu_flags_x86_sse2 cups +dbengine ipmi mysql nfacct nodejs postgres +python tor xen"
-REQUIRED_USE="
- mysql? ( python )
- python? ( ${PYTHON_REQUIRED_USE} )
- tor? ( python )"
-
-# most unconditional dependencies are for plugins.d/charts.d.plugin:
-RDEPEND="
- acct-group/netdata
- acct-user/netdata
- app-misc/jq
- >=app-shells/bash-4:0
- || (
- net-analyzer/openbsd-netcat
- net-analyzer/netcat
- )
- net-misc/curl
- net-misc/wget
- sys-apps/util-linux
- virtual/awk
- caps? ( sys-libs/libcap )
- cups? ( net-print/cups )
- dbengine? (
- dev-libs/libuv
- app-arch/lz4
- dev-libs/judy
- dev-libs/openssl:=
- )
- compression? ( sys-libs/zlib )
- ipmi? ( sys-libs/freeipmi )
- nfacct? (
- net-firewall/nfacct
- net-libs/libmnl
- )
- nodejs? ( net-libs/nodejs )
- python? (
- ${PYTHON_DEPS}
- dev-python/pyyaml[${PYTHON_USEDEP}]
- mysql? (
- || (
- dev-python/mysqlclient[${PYTHON_USEDEP}]
- dev-python/mysql-python[${PYTHON_USEDEP}]
- )
- )
- postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
- tor? ( net-libs/stem[${PYTHON_USEDEP}] )
- )
- xen? (
- app-emulation/xen-tools
- dev-libs/yajl
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-FILECAPS=(
- 'cap_dac_read_search,cap_sys_ptrace+ep' 'usr/libexec/netdata/plugins.d/apps.plugin'
-)
-
-pkg_setup() {
- linux-info_pkg_setup
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --localstatedir="${EPREFIX}"/var \
- --with-user=netdata \
- --disable-jsonc \
- $(use_enable cups plugin-cups) \
- $(use_enable dbengine) \
- $(use_enable nfacct plugin-nfacct) \
- $(use_enable ipmi plugin-freeipmi) \
- $(use_enable xen plugin-xenstat) \
- $(use_enable cpu_flags_x86_sse2 x86-sse) \
- $(use_with compression zlib)
-}
-
-src_install() {
- default
-
- rm -rf "${D}/var/cache" || die
-
- # Remove unneeded .keep files
- find "${ED}" -name ".keep" -delete || die
-
- fowners -Rc netdata:netdata /var/log/netdata
- keepdir /var/log/netdata
- fowners -Rc netdata:netdata /var/lib/netdata
- keepdir /var/lib/netdata
- keepdir /var/lib/netdata/registry
-
- fowners -Rc root:netdata /usr/share/${PN}
-
- newinitd system/netdata-openrc ${PN}
- systemd_dounit system/netdata.service
- insinto /etc/netdata
- doins system/netdata.conf
-}
diff --git a/net-analyzer/netdata/netdata-1.19.0-r1.ebuild b/net-analyzer/netdata/netdata-1.19.0-r1.ebuild
deleted file mode 100644
index 0443e6b587f..00000000000
--- a/net-analyzer/netdata/netdata-1.19.0-r1.ebuild
+++ /dev/null
@@ -1,131 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python{2_7,3_6,3_7} )
-
-inherit autotools fcaps linux-info python-r1 systemd
-
-if [[ ${PV} == *9999 ]] ; then
- EGIT_REPO_URI="https://github.com/netdata/${PN}.git"
- inherit git-r3
-else
- SRC_URI="https://github.com/netdata/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
- KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Linux real time system monitoring, done right!"
-HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/"
-
-LICENSE="GPL-3+ MIT BSD"
-SLOT="0"
-IUSE="caps +compression cpu_flags_x86_sse2 cups +dbengine ipmi mysql nfacct nodejs postgres +python tor xen"
-REQUIRED_USE="
- mysql? ( python )
- python? ( ${PYTHON_REQUIRED_USE} )
- tor? ( python )"
-
-# most unconditional dependencies are for plugins.d/charts.d.plugin:
-RDEPEND="
- acct-group/netdata
- acct-user/netdata
- app-misc/jq
- >=app-shells/bash-4:0
- || (
- net-analyzer/openbsd-netcat
- net-analyzer/netcat
- )
- net-misc/curl
- net-misc/wget
- sys-apps/util-linux
- virtual/awk
- caps? ( sys-libs/libcap )
- cups? ( net-print/cups )
- dbengine? (
- dev-libs/libuv
- app-arch/lz4
- dev-libs/judy
- dev-libs/openssl:=
- )
- compression? ( sys-libs/zlib )
- ipmi? ( sys-libs/freeipmi )
- nfacct? (
- net-firewall/nfacct
- net-libs/libmnl
- )
- nodejs? ( net-libs/nodejs )
- python? (
- ${PYTHON_DEPS}
- dev-python/pyyaml[${PYTHON_USEDEP}]
- mysql? (
- || (
- dev-python/mysqlclient[${PYTHON_USEDEP}]
- dev-python/mysql-python[${PYTHON_USEDEP}]
- )
- )
- postgres? ( dev-python/psycopg:2[${PYTHON_USEDEP}] )
- tor? ( net-libs/stem[${PYTHON_USEDEP}] )
- )
- xen? (
- app-emulation/xen-tools
- dev-libs/yajl
- )"
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-FILECAPS=(
- 'cap_dac_read_search,cap_sys_ptrace+ep' 'usr/libexec/netdata/plugins.d/apps.plugin'
-)
-
-pkg_setup() {
- linux-info_pkg_setup
-}
-
-src_prepare() {
- default
- eautoreconf
-}
-
-src_configure() {
- econf \
- --localstatedir="${EPREFIX}"/var \
- --with-user=netdata \
- --disable-jsonc \
- $(use_enable cups plugin-cups) \
- $(use_enable dbengine) \
- $(use_enable nfacct plugin-nfacct) \
- $(use_enable ipmi plugin-freeipmi) \
- $(use_enable xen plugin-xenstat) \
- $(use_enable cpu_flags_x86_sse2 x86-sse) \
- $(use_with compression zlib)
-}
-
-src_install() {
- default
-
- rm -rf "${D}/var/cache" || die
-
- # Remove unneeded .keep files
- find "${ED}" -name ".keep" -delete || die
-
- fowners -Rc netdata:netdata /var/log/netdata
- keepdir /var/log/netdata
- fowners -Rc netdata:netdata /var/lib/netdata
- keepdir /var/lib/netdata
- keepdir /var/lib/netdata/registry
-
- fowners -Rc root:netdata /usr/share/${PN}
-
- newinitd system/netdata-openrc ${PN}
- systemd_dounit system/netdata.service
- insinto /etc/netdata
- doins system/netdata.conf
-}
-
-pkg_postinst() {
- fcaps_pkg_postinst
-
- if use xen ; then
- fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/xenstat.plugin'
- fi
-}
next reply other threads:[~2020-01-06 0:57 UTC|newest]
Thread overview: 171+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-06 0:57 Craig Andrews [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-24 20:47 [gentoo-commits] repo/gentoo:master commit in: net-analyzer/netdata/ Craig Andrews
2024-10-10 13:10 Craig Andrews
2024-10-02 16:36 Craig Andrews
2024-09-27 15:44 Craig Andrews
2024-09-11 12:57 Craig Andrews
2024-08-23 14:36 Craig Andrews
2024-07-11 14:19 Craig Andrews
2024-06-28 12:59 Sam James
2024-06-24 13:46 Craig Andrews
2024-06-24 13:46 Craig Andrews
2024-06-20 22:37 Craig Andrews
2024-05-17 13:43 Craig Andrews
2024-05-10 13:44 Craig Andrews
2024-05-10 13:44 Craig Andrews
2024-05-10 13:44 Craig Andrews
2024-04-15 14:11 Craig Andrews
2024-04-15 13:44 Craig Andrews
2024-04-05 1:21 Sam James
2024-04-01 17:30 Craig Andrews
2024-03-28 14:04 Craig Andrews
2024-03-24 8:29 Patrick Lauer
2024-03-23 19:10 Craig Andrews
2024-02-28 21:58 Craig Andrews
2024-01-12 19:08 Michał Górny
2024-01-09 21:13 Craig Andrews
2024-01-05 20:24 Petr Vaněk
2023-12-07 17:25 Craig Andrews
2023-12-07 17:25 Craig Andrews
2023-12-07 17:25 Craig Andrews
2023-10-30 17:44 Craig Andrews
2023-10-17 12:50 Craig Andrews
2023-10-17 12:50 Craig Andrews
2023-09-18 21:00 Craig Andrews
2023-09-11 17:12 Craig Andrews
2023-08-28 17:07 Craig Andrews
2023-08-21 13:25 Craig Andrews
2023-08-16 19:17 Sam James
2023-08-15 23:47 Craig Andrews
2023-07-20 15:20 Craig Andrews
2023-06-28 13:55 Craig Andrews
2023-06-24 18:31 Craig Andrews
2023-06-15 13:50 Craig Andrews
2023-06-15 13:50 Craig Andrews
2023-05-19 12:54 Craig Andrews
2023-05-19 12:54 Craig Andrews
2023-05-08 17:39 Craig Andrews
2023-05-08 17:39 Craig Andrews
2023-03-01 14:06 Craig Andrews
2023-02-27 14:24 Craig Andrews
2023-02-27 14:24 Craig Andrews
2023-02-07 3:30 Craig Andrews
2022-12-20 15:07 Jakov Smolić
2022-12-06 14:54 Craig Andrews
2022-11-30 19:37 Craig Andrews
2022-09-03 23:22 Sam James
2022-08-23 0:21 Craig Andrews
2022-08-11 23:27 Craig Andrews
2022-06-28 15:35 Craig Andrews
2022-06-10 19:48 Craig Andrews
2022-06-09 15:27 Craig Andrews
2022-04-19 20:11 Craig Andrews
2022-04-18 17:57 Craig Andrews
2022-02-22 2:01 Craig Andrews
2022-02-14 20:41 Craig Andrews
2022-01-27 14:34 Craig Andrews
2022-01-26 17:43 Craig Andrews
2021-12-27 2:17 Georgy Yakovlev
2021-12-27 2:17 Georgy Yakovlev
2021-12-18 17:43 Craig Andrews
2021-12-18 17:43 Craig Andrews
2021-12-15 14:39 Craig Andrews
2021-12-01 14:54 Craig Andrews
2021-09-09 18:05 Craig Andrews
2021-06-14 13:34 Craig Andrews
2021-06-07 6:17 Georgy Yakovlev
2021-06-07 6:17 Georgy Yakovlev
2021-05-19 14:51 Craig Andrews
2021-04-19 1:16 Craig Andrews
2021-04-19 1:16 Craig Andrews
2021-04-13 0:05 Craig Andrews
2021-02-23 14:27 Craig Andrews
2021-02-18 16:08 Craig Andrews
2021-02-09 15:46 Craig Andrews
2021-02-03 14:11 Craig Andrews
2021-02-03 14:11 Craig Andrews
2020-12-18 14:09 Craig Andrews
2020-12-18 14:09 Craig Andrews
2020-12-17 21:50 Craig Andrews
2020-12-17 21:50 Craig Andrews
2020-10-20 15:29 Craig Andrews
2020-10-14 14:27 Craig Andrews
2020-09-15 4:06 Craig Andrews
2020-08-10 14:36 Craig Andrews
2020-07-22 17:24 Craig Andrews
2020-07-16 13:05 Craig Andrews
2020-07-16 13:05 Craig Andrews
2020-07-01 13:58 Craig Andrews
2020-06-25 13:18 Craig Andrews
2020-06-04 15:55 Craig Andrews
2020-05-20 14:25 Craig Andrews
2020-05-20 14:25 Craig Andrews
2020-05-12 20:00 Craig Andrews
2020-05-11 14:26 Craig Andrews
2020-05-11 14:26 Craig Andrews
2020-04-20 15:32 Craig Andrews
2020-04-20 15:32 Craig Andrews
2020-04-17 13:05 Craig Andrews
2020-04-17 13:05 Craig Andrews
2020-04-13 15:39 Craig Andrews
2020-04-06 13:56 Craig Andrews
2020-03-25 1:10 Craig Andrews
2020-02-21 15:08 Craig Andrews
2020-02-21 15:08 Craig Andrews
2020-02-21 14:03 Craig Andrews
2020-02-21 14:03 Craig Andrews
2020-02-10 21:25 Michał Górny
2020-01-26 1:28 Craig Andrews
2020-01-06 0:53 Craig Andrews
2020-01-06 0:39 Craig Andrews
2019-12-02 20:52 Craig Andrews
2019-12-02 20:52 Craig Andrews
2019-12-02 20:52 Craig Andrews
2019-11-28 17:06 Craig Andrews
2019-11-05 21:35 Craig Andrews
2019-11-05 21:35 Craig Andrews
2019-11-03 17:43 Craig Andrews
2019-11-03 15:54 Craig Andrews
2019-11-03 14:24 Craig Andrews
2019-11-03 14:24 Craig Andrews
2019-10-18 20:56 Craig Andrews
2019-10-10 16:48 Craig Andrews
2019-10-08 18:44 Craig Andrews
2019-10-08 14:24 Craig Andrews
2019-09-12 15:32 Craig Andrews
2019-09-03 1:28 Craig Andrews
2019-08-01 14:15 Craig Andrews
2019-07-21 6:48 Justin Lecher
2019-07-09 1:02 Craig Andrews
2019-07-03 16:26 Craig Andrews
2019-07-02 20:57 Craig Andrews
2019-05-21 13:14 Craig Andrews
2019-04-19 18:43 Craig Andrews
2019-04-18 15:02 Craig Andrews
2019-03-27 13:27 Craig Andrews
2019-03-14 21:01 Craig Andrews
2019-03-01 14:31 Craig Andrews
2019-02-22 2:54 Craig Andrews
2019-02-06 14:39 Craig Andrews
2018-11-25 1:26 Craig Andrews
2018-11-05 14:26 Craig Andrews
2018-11-05 13:48 Craig Andrews
2018-11-02 16:58 Craig Andrews
2018-11-02 15:51 Craig Andrews
2018-09-29 2:03 Craig Andrews
2018-08-01 16:38 Craig Andrews
2018-08-01 16:38 Craig Andrews
2018-03-27 21:23 Craig Andrews
2017-12-19 1:40 Craig Andrews
2017-09-18 13:48 Craig Andrews
2017-07-30 9:44 Michał Górny
2017-07-21 18:07 Amy Liffey
2017-03-24 16:57 David Seifert
2017-01-23 21:19 David Seifert
2016-11-05 3:07 Göktürk Yüksek
2016-11-05 3:07 Göktürk Yüksek
2016-10-04 18:54 Patrice Clement
2016-09-02 20:47 David Seifert
2016-08-01 0:45 Mike Gilbert
2016-07-21 4:00 Göktürk Yüksek
2016-07-01 21:12 David Seifert
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1578272245.b3e161fa109f84821ecdd0e2e9181a5c16e4f47a.candrews@gentoo \
--to=candrews@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox