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
|
|
|
|
2015-02-08 06:58:24 +01:00
|
|
|
# In the default configuration, the checks E123, E133, E226, E241 and E242 are
|
|
|
|
# ignored because they are not rules unanimously accepted
|
|
|
|
# On top of those, we ignore:
|
|
|
|
# * E501: line too long (82 > 79 characters)
|
|
|
|
# - Recommended for readability but not enforced
|
|
|
|
# - Some lines are awkward to wrap around a char limit
|
2015-03-05 15:24:52 +01:00
|
|
|
# * W503: line break before binary operator
|
|
|
|
# - It's quite new
|
|
|
|
# - Quite pedantic
|
2015-02-08 06:58:24 +01:00
|
|
|
|
2015-03-05 15:24:52 +01:00
|
|
|
PEP8_IGNORE="E123,E133,E226,E241,E242,E501,W503"
|
2015-02-08 06:58:24 +01: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
|
|
|
|
|
2015-02-08 06:58:24 +01:00
|
|
|
if ! $PEP8 --ignore=$PEP8_IGNORE $PY_FILES; then
|
2014-11-09 14:36:58 +01:00
|
|
|
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
|