2014-05-28 09:28:28 +02:00
|
|
|
#!/bin/sh
|
|
|
|
#
|
2015-01-09 15:36:17 +01:00
|
|
|
# Simple pre-commit hook to check that there are no errors in the fdroidserver
|
|
|
|
# source files.
|
2014-05-28 09:28:28 +02:00
|
|
|
|
|
|
|
# Redirect output to stderr.
|
|
|
|
exec 1>&2
|
|
|
|
|
2014-11-09 14:31:50 +01:00
|
|
|
PY_FILES="fdroid makebuildserver setup.py examples/*.py buildserver/*.py fdroidserver/*.py"
|
2015-01-09 16:08:27 +01:00
|
|
|
SH_FILES="hooks/pre-commit"
|
2015-01-11 14:17:25 +01:00
|
|
|
BASH_FILES="fd-commit jenkins-build docs/update.sh completion/bash-completion"
|
2014-12-12 12:34:28 +01:00
|
|
|
RB_FILES="buildserver/cookbooks/*/recipes/*.rb"
|
2014-05-28 09:28:28 +02:00
|
|
|
|
2014-11-09 14:34:24 +01:00
|
|
|
err() {
|
|
|
|
echo ERROR: "$@"
|
|
|
|
exit 1
|
|
|
|
}
|
|
|
|
|
2014-05-28 09:28:28 +02:00
|
|
|
cmd_exists() {
|
|
|
|
command -v $1 1>/dev/null
|
|
|
|
}
|
|
|
|
|
|
|
|
if cmd_exists pyflakes-python2; then
|
|
|
|
PYFLAKES=pyflakes-python2
|
|
|
|
elif cmd_exists pyflakes; then
|
|
|
|
PYFLAKES=pyflakes
|
|
|
|
else
|
2014-11-09 14:34:24 +01:00
|
|
|
err "pyflakes is not installed!"
|
2014-05-28 09:28:28 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
if cmd_exists pep8-python2; then
|
|
|
|
PEP8=pep8-python2
|
|
|
|
elif cmd_exists pep8; then
|
|
|
|
PEP8=pep8
|
|
|
|
else
|
2014-11-09 14:34:24 +01:00
|
|
|
err "pep8 is not installed!"
|
2014-05-28 09:28:28 +02:00
|
|
|
fi
|
|
|
|
|
2014-11-09 14:36:58 +01:00
|
|
|
if ! $PYFLAKES $PY_FILES; then
|
|
|
|
err "pyflakes tests failed!"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if ! $PEP8 --ignore=E123,E501 $PY_FILES; then
|
|
|
|
err "pep8 tests failed!"
|
|
|
|
fi
|
2014-09-18 19:56:11 +02:00
|
|
|
|
|
|
|
|
2014-11-09 14:31:50 +01:00
|
|
|
for f in $SH_FILES; do
|
2015-01-09 16:08:27 +01:00
|
|
|
if ! dash -n $f; then
|
|
|
|
err "dash tests failed!"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
for f in $BASH_FILES; do
|
2014-11-09 14:36:58 +01:00
|
|
|
if ! bash -n $f; then
|
|
|
|
err "bash tests failed!"
|
|
|
|
fi
|
2014-09-18 19:56:11 +02:00
|
|
|
done
|
|
|
|
|
2014-12-12 12:34:28 +01:00
|
|
|
for f in $RB_FILES; do
|
|
|
|
if ! ruby -c $f 1>/dev/null; then
|
|
|
|
err "ruby tests failed!"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2014-11-09 14:34:24 +01:00
|
|
|
exit 0
|