Browse Source

system/netdata: Update source to fix build with protobuf3.

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
pull/186/head
Willy Sudiarto Raharjo 4 years ago
parent
commit
8eb86a908c
No known key found for this signature in database GPG Key ID: 3F617144D7238786
  1. 3
      system/netdata/README
  2. 9
      system/netdata/netdata.SlackBuild
  3. 4
      system/netdata/netdata.info

3
system/netdata/README

@ -26,6 +26,3 @@ http://IP-ADDRESS:19999/
To get the running config file at any time, visit
http://IP-ADDRESS:19999/netdata.conf
NOTE: If you have protobuf3 installed, the script will fail to build.
You need to remove the protobuf3 package prior building this script.

9
system/netdata/netdata.SlackBuild

@ -57,9 +57,6 @@ elif ! grep -q "^$NETDATA_GROUP:" /etc/group; then
bailout
fi
# If the variable PRINT_PACKAGE_NAME is set, then this script will report what
# the name of the created package would be, and then exit. This information
# could be useful to other scripts.
if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then
echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE"
exit 0
@ -88,9 +85,9 @@ set -e
rm -rf $PKG
mkdir -p $TMP $PKG $OUTPUT
cd $TMP
rm -rf $PRGNAM-$VERSION
tar xvf $CWD/$PRGNAM-$VERSION.tar.gz
cd $PRGNAM-$VERSION
rm -rf $PRGNAM-v$VERSION
tar xvf $CWD/$PRGNAM-v$VERSION.tar.gz
cd $PRGNAM-v$VERSION
chown -R root:root .
find -L . \
\( -perm 777 -o -perm 775 -o -perm 750 -o -perm 711 -o -perm 555 \

4
system/netdata/netdata.info

@ -1,8 +1,8 @@
PRGNAM="netdata"
VERSION="1.34.1"
HOMEPAGE="https://github.com/netdata/netdata"
DOWNLOAD="https://github.com/netdata/netdata/archive/v1.34.1/netdata-1.34.1.tar.gz"
MD5SUM="608563192c61014bfafff622d629188b"
DOWNLOAD="https://github.com/netdata/netdata/releases/download/v1.34.1/netdata-v1.34.1.tar.gz"
MD5SUM="5b772a3f67107a9fc4d1d488f041e996"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES="python2-PyYAML"

Loading…
Cancel
Save