xaizek / zograscope (License: AGPLv3 only) (since 2018-12-07)
Mainly a syntax-aware diff that also provides a number of additional tools.
<root> / data / appveyor / ubuntu.sh (8fc95eb85c30bd480585b88af21a80c5ed06df05) (965B) (mode 100755) [raw]
#!/bin/bash

set -xe

if [ "$SRCML" = v0.9.5 ]; then
    wget http://131.123.42.38/lmcrs/beta/srcML-Ubuntu18.04.deb
    sudo apt install -y ./srcML-Ubuntu18.04.deb libarchive13

    srcml --version

    echo "TESTS := '~[srcml095-broken]'" > config.mk
    echo "CFLAGS += -fPIC" >> config.mk
elif [ "$SRCML" = v1.0 ]; then
    wget http://131.123.42.38/lmcrs/v1.0.0/srcml_1.0.0-1_ubuntu18.04.deb
    wget http://131.123.42.38/lmcrs/v1.0.0/srcml-dev_1.0.0-1_ubuntu16.04.deb
    sudo apt install -y ./srcml_1.0.0-1_ubuntu18.04.deb
    sudo apt install -y ./srcml-dev_1.0.0-1_ubuntu16.04.deb

    srcml --version

    echo "TESTS := '*'" > config.mk
    echo "HAVE_LIBSRCML := yes" >> config.mk
fi

sudo apt install -y libboost-filesystem-dev \
                    libboost-iostreams-dev \
                    libboost-program-options-dev \
                    libboost-system-dev \
                    bison flex \
                    ccache

make -j4
make -j4 check
Hints

Before first commit, do not forget to setup your git environment:
git config --global user.name "your_name_here"
git config --global user.email "your@email_here"

Clone this repository using HTTP(S):
git clone https://code.reversed.top/user/xaizek/zograscope

Clone this repository using ssh (do not forget to upload a key first):
git clone ssh://rocketgit@code.reversed.top/user/xaizek/zograscope

You are allowed to anonymously push to this repository.
This means that your pushed commits will automatically be transformed into a pull request:
... clone the repository ...
... make some changes and some commits ...
git push origin master