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

Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
Willy Sudiarto Raharjo 2022-04-25 00:27:56 +07:00
parent c22f421dfc
commit 8eb86a908c
No known key found for this signature in database
GPG key ID: 3F617144D7238786
3 changed files with 5 additions and 11 deletions

View file

@ -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.

View file

@ -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 \

View file

@ -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"