1
0
Fork 0
mirror of https://git.rwth-aachen.de/acs/public/villas/node/ synced 2025-03-30 00:00:11 +01:00

deps: Harmonize URL suffixes

Signed-off-by: Steffen Vogel <steffen.vogel@opal-rt.com>
This commit is contained in:
Steffen Vogel 2023-08-25 18:01:03 +02:00 committed by Steffen Vogel
parent b9bad1219d
commit 7a84a6494f

View file

@ -92,7 +92,7 @@ pushd ${TMPDIR} >/dev/null
if ! pkg-config "criterion >= 2.4.1" && \ if ! pkg-config "criterion >= 2.4.1" && \
[ "${ARCH}" == "x86_64" ] && \ [ "${ARCH}" == "x86_64" ] && \
should_build "criterion" "for unit tests"; then should_build "criterion" "for unit tests"; then
git clone ${GIT_OPTS} --branch v2.3.3 --recursive https://github.com/Snaipe/Criterion git clone ${GIT_OPTS} --branch v2.3.3 --recursive https://github.com/Snaipe/Criterion.git
mkdir -p Criterion/build mkdir -p Criterion/build
pushd Criterion/build pushd Criterion/build
cmake ${CMAKE_OPTS} .. cmake ${CMAKE_OPTS} ..
@ -103,7 +103,7 @@ fi
# Build & Install libjansson # Build & Install libjansson
if ! pkg-config "jansson >= 2.13" && \ if ! pkg-config "jansson >= 2.13" && \
should_build "jansson" "for configuration parsing" "required"; then should_build "jansson" "for configuration parsing" "required"; then
git clone ${GIT_OPTS} --branch v2.14 https://github.com/akheron/jansson git clone ${GIT_OPTS} --branch v2.14 https://github.com/akheron/jansson.git
pushd jansson pushd jansson
autoreconf -i autoreconf -i
./configure ${CONFIGURE_OPTS} ./configure ${CONFIGURE_OPTS}
@ -129,7 +129,7 @@ fi
# Build & Install mosquitto # Build & Install mosquitto
if ! pkg-config "libmosquitto >= 1.4.15" && \ if ! pkg-config "libmosquitto >= 1.4.15" && \
should_build "mosquitto" "for the MQTT node-type"; then should_build "mosquitto" "for the MQTT node-type"; then
git clone ${GIT_OPTS} --branch v2.0.15 https://github.com/eclipse/mosquitto git clone ${GIT_OPTS} --branch v2.0.15 https://github.com/eclipse/mosquitto.git
mkdir -p mosquitto/build mkdir -p mosquitto/build
pushd mosquitto/build pushd mosquitto/build
cmake -DWITH_BROKER=OFF \ cmake -DWITH_BROKER=OFF \
@ -144,7 +144,7 @@ fi
# Build & Install rabbitmq-c # Build & Install rabbitmq-c
if ! pkg-config "librabbitmq >= 0.13.0" && \ if ! pkg-config "librabbitmq >= 0.13.0" && \
should_build "rabbitmq" "for the AMQP node and VILLAScontroller"; then should_build "rabbitmq" "for the AMQP node and VILLAScontroller"; then
git clone ${GIT_OPTS} --branch v0.11.0 https://github.com/alanxz/rabbitmq-c git clone ${GIT_OPTS} --branch v0.11.0 https://github.com/alanxz/rabbitmq-c.git
mkdir -p rabbitmq-c/build mkdir -p rabbitmq-c/build
pushd rabbitmq-c/build pushd rabbitmq-c/build
cmake ${CMAKE_OPTS} .. cmake ${CMAKE_OPTS} ..
@ -155,7 +155,7 @@ fi
# Build & Install libzmq # Build & Install libzmq
if ! pkg-config "libzmq >= 2.2.0" && \ if ! pkg-config "libzmq >= 2.2.0" && \
should_build "zmq" "for the zeromq node-type"; then should_build "zmq" "for the zeromq node-type"; then
git clone ${GIT_OPTS} --branch v4.3.4 https://github.com/zeromq/libzmq git clone ${GIT_OPTS} --branch v4.3.4 https://github.com/zeromq/libzmq.git
mkdir -p libzmq/build mkdir -p libzmq/build
pushd libzmq/build pushd libzmq/build
cmake -DWITH_PERF_TOOL=OFF \ cmake -DWITH_PERF_TOOL=OFF \
@ -180,7 +180,7 @@ fi
# Build & Install libiec61850 # Build & Install libiec61850
if ! pkg-config "libiec61850 >= 1.5.0" && \ if ! pkg-config "libiec61850 >= 1.5.0" && \
should_build "iec61850" "for the iec61850 node-type"; then should_build "iec61850" "for the iec61850 node-type"; then
git clone ${GIT_OPTS} --branch v1.5.1 https://github.com/mz-automation/libiec61850 git clone ${GIT_OPTS} --branch v1.5.1 https://github.com/mz-automation/libiec61850.git
mkdir -p libiec61850/build mkdir -p libiec61850/build
pushd libiec61850/build pushd libiec61850/build
cmake -DBUILD_EXAMPLES=OFF \ cmake -DBUILD_EXAMPLES=OFF \
@ -206,7 +206,7 @@ fi
# Build & Install librdkafka # Build & Install librdkafka
if ! pkg-config "rdkafka >= 1.5.0" && \ if ! pkg-config "rdkafka >= 1.5.0" && \
should_build "rdkafka" "for the kafka node-type"; then should_build "rdkafka" "for the kafka node-type"; then
git clone ${GIT_OPTS} --branch v2.0.1 https://github.com/edenhill/librdkafka git clone ${GIT_OPTS} --branch v2.0.1 https://github.com/edenhill/librdkafka.git
mkdir -p librdkafka/build mkdir -p librdkafka/build
pushd librdkafka/build pushd librdkafka/build
cmake -DRDKAFKA_BUILD_TESTS=OFF \ cmake -DRDKAFKA_BUILD_TESTS=OFF \
@ -232,7 +232,7 @@ fi
# Build & Install uldaq # Build & Install uldaq
if ! pkg-config "libuldaq >= 1.2.0" && \ if ! pkg-config "libuldaq >= 1.2.0" && \
should_build "uldaq" "for the uldaq node-type"; then should_build "uldaq" "for the uldaq node-type"; then
git clone ${GIT_OPTS} --branch v1.2.1 https://github.com/mccdaq/uldaq git clone ${GIT_OPTS} --branch v1.2.1 https://github.com/mccdaq/uldaq.git
pushd uldaq pushd uldaq
autoreconf -i autoreconf -i
./configure \ ./configure \
@ -246,7 +246,7 @@ fi
if ! ( pkg-config "libnl-3.0 >= 3.2.25" && \ if ! ( pkg-config "libnl-3.0 >= 3.2.25" && \
pkg-config "libnl-route-3.0 >= 3.2.25" \ pkg-config "libnl-route-3.0 >= 3.2.25" \
) && should_build "libnl" "for network emulation"; then ) && should_build "libnl" "for network emulation"; then
git clone ${GIT_OPTS} --branch libnl3_7_0 https://github.com/thom311/libnl git clone ${GIT_OPTS} --branch libnl3_7_0 https://github.com/thom311/libnl.git
pushd libnl pushd libnl
autoreconf -i autoreconf -i
./configure \ ./configure \
@ -259,7 +259,7 @@ fi
# Build & Install libconfig # Build & Install libconfig
if ! pkg-config "libconfig >= 1.4.9" && \ if ! pkg-config "libconfig >= 1.4.9" && \
should_build "libconfig" "for libconfig configuration syntax"; then should_build "libconfig" "for libconfig configuration syntax"; then
git clone ${GIT_OPTS} --branch v1.7.3 https://github.com/hyperrealm/libconfig git clone ${GIT_OPTS} --branch v1.7.3 https://github.com/hyperrealm/libconfig.git
pushd libconfig pushd libconfig
autoreconf -i autoreconf -i
./configure ${CONFIGURE_OPTS} \ ./configure ${CONFIGURE_OPTS} \
@ -381,7 +381,7 @@ fi
# Build & Install libwebsockets # Build & Install libwebsockets
if ! pkg-config "libwebsockets >= 4.3.0" && \ if ! pkg-config "libwebsockets >= 4.3.0" && \
should_build "libwebsockets" "for the websocket node and VILLASweb" "required"; then should_build "libwebsockets" "for the websocket node and VILLASweb" "required"; then
git clone ${GIT_OPTS} --branch v4.3-stable https://github.com/warmcat/libwebsockets git clone ${GIT_OPTS} --branch v4.3-stable https://github.com/warmcat/libwebsockets.git
mkdir -p libwebsockets/build mkdir -p libwebsockets/build
pushd libwebsockets/build pushd libwebsockets/build
cmake -DLWS_WITH_IPV6=ON \ cmake -DLWS_WITH_IPV6=ON \
@ -395,7 +395,7 @@ fi
# Build & Install libdatachannel # Build & Install libdatachannel
if ! cmake --find-package -DNAME=LibDataChannel -DCOMPILER_ID=GNU -DLANGUAGE=CXX -DMODE=EXIST >/dev/null 2>/dev/null && \ if ! cmake --find-package -DNAME=LibDataChannel -DCOMPILER_ID=GNU -DLANGUAGE=CXX -DMODE=EXIST >/dev/null 2>/dev/null && \
should_build "libdatachannel" "for the webrtc node-type"; then should_build "libdatachannel" "for the webrtc node-type"; then
git clone ${GIT_OPTS} --recursive --branch v0.18.4 https://github.com/paullouisageneau/libdatachannel git clone ${GIT_OPTS} --recursive --branch v0.18.4 https://github.com/paullouisageneau/libdatachannel.git
mkdir -p libdatachannel/build mkdir -p libdatachannel/build
pushd libdatachannel/build pushd libdatachannel/build