diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-01-26 18:05:15 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2022-01-26 18:05:42 +0000 |
commit | 112b5b91647c3dea45cc1c9bc364df526c8012f1 (patch) | |
tree | 450af925135ec664c4310a1eb28b69481094ee2a /packaging/bundle-mosquitto.sh | |
parent | Releasing debian version 1.32.1-2. (diff) | |
download | netdata-112b5b91647c3dea45cc1c9bc364df526c8012f1.tar.xz netdata-112b5b91647c3dea45cc1c9bc364df526c8012f1.zip |
Merging upstream version 1.33.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'packaging/bundle-mosquitto.sh')
-rwxr-xr-x | packaging/bundle-mosquitto.sh | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/packaging/bundle-mosquitto.sh b/packaging/bundle-mosquitto.sh deleted file mode 100755 index c5a8dc85f..000000000 --- a/packaging/bundle-mosquitto.sh +++ /dev/null @@ -1,12 +0,0 @@ -#!/bin/sh - -MOSQUITTO_TARBALL="$(cat "${1}/packaging/mosquitto.version").tar.gz" -MOSQUITTO_BUILD_PATH="${1}/externaldeps/mosquitto/mosquitto-$(cat "${1}/packaging/mosquitto.version")/lib" - -mkdir -p "${1}/externaldeps/mosquitto" || exit 1 -curl -sSL --connect-timeout 10 --retry 3 "https://github.com/netdata/mosquitto/archive/${MOSQUITTO_TARBALL}" > "${MOSQUITTO_TARBALL}" || exit 1 -sha256sum -c "${1}/packaging/mosquitto.checksums" || exit 1 -tar -xzf "${MOSQUITTO_TARBALL}" -C "${1}/externaldeps/mosquitto" || exit 1 -make -C "${MOSQUITTO_BUILD_PATH}" || exit 1 -cp -a "${MOSQUITTO_BUILD_PATH}/libmosquitto.a" "${1}/externaldeps/mosquitto" || exit 1 -cp -a "${MOSQUITTO_BUILD_PATH}/mosquitto.h" "${1}/externaldeps/mosquitto" || exit 1 |