#1. libssh
cd $NETCONF_PATH && \
- git clone http://git.libssh.org/projects/libssh.git && \
+ git clone -b v0-7 --depth 1 http://git.libssh.org/projects/libssh.git && \
cd libssh; mkdir build; cd build && \
cmake .. && \
make && \
# libyang
cd $NETCONF_PATH && \
- git clone https://github.com/CESNET/libyang.git && \
+ git clone -b v1.0.184 --depth 1 https://github.com/CESNET/libyang.git && \
cd libyang && mkdir build && cd build && \
cmake -DGEN_LANGUAGE_BINDINGS=ON -DGEN_PYTHON_BINDINGS=OFF \
-DCMAKE_BUILD_TYPE:String="Debug" -DENABLE_BUILD_TESTS=OFF .. && \
# sysrepo
cd $NETCONF_PATH && \
- git clone https://github.com/sysrepo/sysrepo.git && \
+ git clone -b v1.4.70 --depth 1 https://github.com/sysrepo/sysrepo.git && \
cd sysrepo && sed -i -e 's/2000/30000/g;s/5000/30000/g' src/common.h.in && \
mkdir build && cd build && \
cmake -DGEN_LANGUAGE_BINDINGS=ON -DGEN_PYTHON_BINDINGS=OFF \
# libnetconf2
cd $NETCONF_PATH && \
- git clone https://github.com/CESNET/libnetconf2.git && \
+ git clone -b v1.1.36 --depth 1 https://github.com/CESNET/libnetconf2.git && \
cd libnetconf2 && mkdir build && cd build && \
cmake -DCMAKE_BUILD_TYPE:String="Debug" -DENABLE_BUILD_TESTS=OFF .. && \
make -j2 && \
# netopeer2
cd $NETCONF_PATH && \
- git clone https://github.com/CESNET/Netopeer2.git && \
+ git clone -b v1.1.53 --depth 1 https://github.com/CESNET/Netopeer2.git && \
cd Netopeer2 && mkdir build && cd build && \
cmake -DCMAKE_BUILD_TYPE:String="Debug" -DNP2SRV_DATA_CHANGE_TIMEOUT=30000 \
-DNP2SRV_DATA_CHANGE_WAIT=OFF .. && \