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 (5ed8076620b2ddf714c2ede3c7026c08c977bb7d) (801B) (mode 100755) [raw]
#!/bin/bash

set -xe

if [ -n "$SRCML" ]; then
    if [ "$SRCML" != v1.0.0 ]; then
        arch=_amd64
    fi

    wget https://github.com/srcML/srcML/releases/download/$SRCML/srcml_${SRCML:1}-1_ubuntu20.04$arch.deb
    wget https://github.com/srcML/srcML/releases/download/$SRCML/srcml-dev_${SRCML:1}-1_ubuntu20.04$arch.deb

    sudo apt install -y ./srcml_${SRCML:1}-1_ubuntu20.04$arch.deb
    sudo apt install -y ./srcml-dev_${SRCML:1}-1_ubuntu20.04$arch.deb

    srcml --version

    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