mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 06:48:18 -07:00
net-analyzer/netdata: add 1.42.2
Signed-off-by: Craig Andrews <candrews@gentoo.org>
This commit is contained in:
@@ -3,3 +3,4 @@ DIST netdata-1.40.1.tar.gz 43354949 BLAKE2B 70aabebb9544d17faf8adbcbac0f37be674c
|
||||
DIST netdata-1.41.0.tar.gz 45631424 BLAKE2B 6f1557bcdba3f8215139970c5130246fa6f4e0da8fce5205989aff18165d14b8ab586ff2eda82304b5691a64cdd63deb458a8eaf25130b5c5684cb8ec4c0d822 SHA512 73e56d428e2d5d88cc72cdb51a89d50b98a1fbb02c50acc2fec74896bccabbcf26528419587574745ee01e4d94f39a2248b604d38c17912aeb5b8e995cbb82ab
|
||||
DIST netdata-1.42.0.tar.gz 46038314 BLAKE2B 661c457f5ae395dc81b3066ae87a71038bc1a20d47cf904b0b0e950c7405e49764e3e5b304a432b58697173cc688e32dca61406ddd4ab4bbd7ff00b4f143b5b6 SHA512 14fbb6ba863fe9e71751ab02ab53ff02ee0114753cc9c4060e28e6ff003953acb1398a2b17cc9c150b2c61e7eb9df2d8e5916e990144e33cb1ff915f21b7611a
|
||||
DIST netdata-1.42.1.tar.gz 46044731 BLAKE2B c42fbdf3e360fd1d6a005820d0c4b8d0ea588b9d0214268086d8942dab224eef42e5ba5f2150181692624682616036d39a3511e4dd083171ab5a14da069b6881 SHA512 6265ae9cc9238e5205ebb20ce7749ba4f13d70d12f7d2682dc774bcb3225d05a61992ee343bae7f58921c38c88879e2711ab8eedea8134f7c7cefd1d5ea420e6
|
||||
DIST netdata-1.42.2.tar.gz 46047621 BLAKE2B 0d95d3faad424cd8a19ccc3b6c3f28383e839f30740c3c4728a93367f55a4b3efbf425c898da4bdc72cbcd00f67fff2c0177f57b7ffcbd3ccf2f30e596fc3ffc SHA512 0d576bb79ba01672605fff54cf1c345933be74737dea16ac23d21c91151d3e2862ad1e828d7703f2d18e6fa74caf16db50c4eb122fd4bdc4cba4fbd0ea142553
|
||||
|
||||
163
net-analyzer/netdata/netdata-1.42.2.ebuild
Normal file
163
net-analyzer/netdata/netdata-1.42.2.ebuild
Normal file
@@ -0,0 +1,163 @@
|
||||
# Copyright 1999-2023 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
PYTHON_COMPAT=( python{3_9,3_10,3_11} )
|
||||
|
||||
inherit autotools fcaps flag-o-matic linux-info python-single-r1 systemd toolchain-funcs
|
||||
|
||||
if [[ ${PV} == *9999 ]] ; then
|
||||
EGIT_REPO_URI="https://github.com/netdata/${PN}.git"
|
||||
inherit git-r3
|
||||
else
|
||||
SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz -> ${P}.tar.gz"
|
||||
S="${WORKDIR}/${PN}-v${PV}"
|
||||
KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~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 cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc +lto mongodb mysql nfacct nodejs postgres prometheus +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-libs/libwebsockets
|
||||
net-misc/curl
|
||||
net-misc/wget
|
||||
sys-apps/util-linux
|
||||
app-alternatives/awk
|
||||
caps? ( sys-libs/libcap )
|
||||
cups? ( net-print/cups )
|
||||
dbengine? (
|
||||
app-arch/lz4:=
|
||||
dev-libs/judy
|
||||
dev-libs/openssl:=
|
||||
)
|
||||
dev-libs/libuv:=
|
||||
dev-libs/libyaml
|
||||
cloud? ( dev-libs/protobuf:= )
|
||||
sys-libs/zlib
|
||||
ipmi? ( sys-libs/freeipmi )
|
||||
jsonc? ( dev-libs/json-c:= )
|
||||
mongodb? ( dev-libs/mongo-c-driver )
|
||||
nfacct? (
|
||||
net-firewall/nfacct
|
||||
net-libs/libmnl:=
|
||||
)
|
||||
nodejs? ( net-libs/nodejs )
|
||||
prometheus? (
|
||||
app-arch/snappy:=
|
||||
dev-libs/protobuf:=
|
||||
)
|
||||
python? (
|
||||
${PYTHON_DEPS}
|
||||
$(python_gen_cond_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
|
||||
mysql? ( $(python_gen_cond_dep 'dev-python/mysqlclient[${PYTHON_USEDEP}]') )
|
||||
postgres? ( $(python_gen_cond_dep 'dev-python/psycopg:2[${PYTHON_USEDEP}]') )
|
||||
tor? ( $(python_gen_cond_dep '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'
|
||||
'usr/libexec/netdata/plugins.d/debugfs.plugin'
|
||||
)
|
||||
|
||||
pkg_setup() {
|
||||
use python && python-single-r1_pkg_setup
|
||||
linux-info_pkg_setup
|
||||
}
|
||||
|
||||
src_prepare() {
|
||||
default
|
||||
eautoreconf
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
if use ppc64; then
|
||||
# bundled dlib does not support vsx on big-endian
|
||||
# https://github.com/davisking/dlib/issues/397
|
||||
[[ $(tc-endian) == big ]] && append-flags -mno-vsx
|
||||
fi
|
||||
|
||||
econf \
|
||||
--localstatedir="${EPREFIX}"/var \
|
||||
--with-user=netdata \
|
||||
--without-bundled-protobuf \
|
||||
$(use_enable cloud) \
|
||||
$(use_enable jsonc) \
|
||||
$(use_enable cups plugin-cups) \
|
||||
$(use_enable dbengine) \
|
||||
$(use_enable nfacct plugin-nfacct) \
|
||||
$(use_enable ipmi plugin-freeipmi) \
|
||||
--disable-exporting-kinesis \
|
||||
$(use_enable lto lto) \
|
||||
$(use_enable mongodb exporting-mongodb) \
|
||||
$(use_enable prometheus exporting-prometheus-remote-write) \
|
||||
$(use_enable xen plugin-xenstat) \
|
||||
$(use_enable cpu_flags_x86_sse2 x86-sse)
|
||||
}
|
||||
|
||||
src_compile() {
|
||||
emake clean
|
||||
default
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
rm -rf "${D}/var/cache" || die
|
||||
|
||||
keepdir /var/log/netdata
|
||||
fowners -Rc netdata:netdata /var/log/netdata
|
||||
keepdir /var/lib/netdata
|
||||
keepdir /var/lib/netdata/registry
|
||||
fowners -Rc netdata:netdata /var/lib/netdata
|
||||
|
||||
fowners -Rc root:netdata /usr/share/${PN}
|
||||
|
||||
newinitd system/openrc/init.d/netdata ${PN}
|
||||
newconfd system/openrc/conf.d/netdata ${PN}
|
||||
systemd_dounit system/systemd/netdata.service
|
||||
systemd_dounit system/systemd/netdata-updater.service
|
||||
systemd_dounit system/systemd/netdata-updater.timer
|
||||
insinto /etc/netdata
|
||||
doins system/netdata.conf
|
||||
}
|
||||
|
||||
pkg_postinst() {
|
||||
fcaps_pkg_postinst
|
||||
|
||||
if use nfacct ; then
|
||||
fcaps 'cap_net_admin' 'usr/libexec/netdata/plugins.d/nfacct.plugin'
|
||||
fi
|
||||
|
||||
if use xen ; then
|
||||
fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/xenstat.plugin'
|
||||
fi
|
||||
|
||||
if use ipmi ; then
|
||||
fcaps 'cap_dac_override' 'usr/libexec/netdata/plugins.d/freeipmi.plugin'
|
||||
fi
|
||||
}
|
||||
Reference in New Issue
Block a user