# HG changeset patch # User Hans-G?nter Theisgen # Date 1644677446 -3600 # Node ID fffdfda5962b1f397f1631fa5e1299336492181b # Parent 7c71a871a04b0d516ce0a9cde562f18db09b139c updated collectd (5.10.0 -> 5.12.0) diff -r 7c71a871a04b -r fffdfda5962b collectd/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/collectd/description.txt Sat Feb 12 15:50:46 2022 +0100 @@ -0,0 +1,8 @@ +Collectd gathers metrics from various sources, e.g. the operating system, +applications, logfiles and external devices, and stores this information +or makes it available over the network. +Those statistics can be used to monitor systems, find performance +bottlenecks (i.e. performance analysis) and predict future system load +(i.e. capacity planning). +Or if you just want pretty graphs of your private server and are fed up +with some homegrown solution you're at the right place, too ;). diff -r 7c71a871a04b -r fffdfda5962b collectd/receipt --- a/collectd/receipt Sat Feb 12 14:59:37 2022 +0100 +++ b/collectd/receipt Sat Feb 12 15:50:46 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="collectd" -VERSION="5.10.0" +VERSION="5.12.0" CATEGORY="network" SHORT_DESC="System Statistics Collection Daemon." MAINTAINER="erjo@slitaz.org" @@ -9,7 +9,7 @@ WEB_SITE="https://collectd.org" TARBALL="$PACKAGE-$VERSION.tar.bz2" -WGET_URL="http://collectd.org/files/$TARBALL" +WGET_URL="https://collectd.org/files/$TARBALL" DEPENDS="perl rrdtool" BUILD_DEPENDS="rrdtool-dev slitaz-toolchain" @@ -22,18 +22,17 @@ ./configure \ --prefix=/usr \ --localstatedir=/var \ + --sysconfdir=/etc/collectd \ + --enable-cpu \ + --enable-csv \ + --enable-disk \ --enable-interface \ --enable-load \ - --enable-cpu \ - --enable-disk \ --enable-logfile \ + --enable-rrdtool \ --enable-syslog \ - --enable-csv \ - --enable-rrdtool \ --with-librrdtool=/usr/include \ --disable-all-plugins \ - --sysconfdir=/etc/collectd \ - --localstatedir=/var \ $CONFIGURE_ARGS && make && make DESTDIR=$DESTDIR install @@ -42,19 +41,18 @@ # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - mkdir -p $fs/usr/lib/collectd mkdir -p $fs/usr/share mkdir -p $fs/etc/init.d cp -a $install/etc $fs - cp -a $install/var $fs cp -a $install/usr/share/collectd $fs/usr/share cp -a $install/usr/bin $fs/usr cp -a $install/usr/sbin $fs/usr cp -a $install/usr/lib/*.so* $fs/usr/lib cp -a $install/usr/lib/collectd/*.so $fs/usr/lib/collectd cp -a $install/usr/lib/perl5 $fs/usr/lib + cp -a $install/var $fs # Add init script and fixes install -g root -o root -m 0755 $stuff/collectd \