2014-06-07 03:16:42 -04:00
|
|
|
#!/bin/sh
|
2014-04-03 19:32:58 -04:00
|
|
|
|
2014-05-04 18:00:21 -04:00
|
|
|
# Note: git describe doesn't work if no tag is available
|
2014-05-05 14:27:22 -04:00
|
|
|
git_tag="$(git describe --dirty --always)"
|
2014-04-03 19:32:58 -04:00
|
|
|
git_hash="$(git rev-parse --short HEAD 2> /dev/null || echo unknown)"
|
|
|
|
git_files_are_clean=1
|
|
|
|
# Check if there are any modified files.
|
|
|
|
git diff --no-ext-diff --quiet --exit-code 2> /dev/null || git_files_are_clean=0
|
|
|
|
# Check if there are any staged files.
|
|
|
|
git diff-index --cached --quiet HEAD -- 2> /dev/null || git_files_are_clean=0
|
|
|
|
if [ "${git_files_are_clean}" != "1" ]; then
|
|
|
|
git_hash="${git_hash}-dirty"
|
|
|
|
fi
|
|
|
|
cat <<EOF
|
|
|
|
// This file was generated by py/py-version.sh
|
2014-05-03 14:02:14 -04:00
|
|
|
#define MICROPY_GIT_TAG "${git_tag}"
|
2014-04-03 19:32:58 -04:00
|
|
|
#define MICROPY_GIT_HASH "${git_hash}"
|
|
|
|
#define MICROPY_BUILD_DATE "$(date '+%Y-%m-%d')"
|
|
|
|
EOF
|