remove unused scripts.inc

This commit is contained in:
Damien Elmes 2020-01-04 10:46:10 +10:00
parent 1dd1acdffe
commit ebe7ff7a37

View file

@ -1,31 +0,0 @@
#!/bin/bash
set -e
CHECKABLE="rslib pylib qt"
DEVEL="rspy pylib qt"
if [ "$UNOPT" = "" ]; then
BUILDFLAGS="--release --strip"
else
BUILDFLAGS=""
fi
# activate venv
if [ ! -d pyenv ]; then
python3 -m venv pyenv
. pyenv/bin/activate
pip install --upgrade pip setuptools
else
. pyenv/bin/activate
fi
# add qt if missing
python -c 'import PyQt5' 2>/dev/null || pip install -r qt/requirements.qt
# update build hash
oldhash=$(test -f meta/buildhash && cat meta/buildhash || true)
newhash=$(git rev-parse --short HEAD)
if [ "$oldhash" != "$newhash" ]; then
echo $newhash > meta/buildhash
fi