aboutsummaryrefslogtreecommitdiffstats
path: root/git-version.sh
diff options
context:
space:
mode:
Diffstat (limited to 'git-version.sh')
-rwxr-xr-xgit-version.sh14
1 files changed, 8 insertions, 6 deletions
diff --git a/git-version.sh b/git-version.sh
index 0512a26aa..8fe051501 100755
--- a/git-version.sh
+++ b/git-version.sh
@@ -14,7 +14,6 @@ export LC_ALL=en_US.utf8
export TZ=US/Pacific
commit_date=$(git show -s --format=format:"%cd" --date=local)
-short_date=$(date --date "$commit_date" "+%Y%m%d")
year=$(date --date "$commit_date" "+%Y")
month=$(date --date "$commit_date" "+%B")
@@ -30,13 +29,16 @@ esac
full_date="$month $day$suffix, $year"
-sha="g$(git describe --always)"
-version="GIT-$short_date-$sha"
-versiond="GIT-$short_date-$sha-systemd"
+sha="$(git describe --abbrev=1)"
+if git describe --all --match trunk > /dev/null 2> /dev/null; then
+ sha=$(echo "$sha" | sed 's/-g[^-]*$//')
+fi
+version="$sha"
+versiond="$sha-systemd"
if [ "$(git diff HEAD | wc -l)" != "0" ]; then
- version="$version-MODIFIED"
- versiond="$versiond-MODIFIED"
+ version="$version+"
+ versiond="$versiond+"
fi
echo "<!ENTITY version \"$version\">" > version.ent