#!/bin/sh if test x"$REV" = x"sysv"; then SYSV="INCLUDE" SYSTEMD="IGNORE" elif test x"$REV" = x"systemd"; then SYSV="IGNORE" SYSTEMD="INCLUDE" else echo You must provide either \"sysv\" or \"systemd\" as argument for echo \"REV\" exit 1 fi if test x"$STAB" = x"development"; then DEVELOPMENT="INCLUDE" RELEASE="IGNORE" elif test x"$STAB" = x"release"; then DEVELOPMENT="IGNORE" RELEASE="INCLUDE" else echo You must provide either \"development\" or \"release\" as argument for echo \"STAB\" exit 1 fi echo "" > conditional.ent echo "" >> conditional.ent echo "" >> conditional.ent echo "" >> conditional.ent if ! git status > /dev/null; then # Either it's not a git repository, or git is unavaliable. # Just workaround. echo "" >> conditional.ent echo "" > version.ent echo "" >> conditional.ent echo "" >> conditional.ent exit 0 fi export LC_ALL=en_US.utf8 export TZ=America/Chicago 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") day_digit=$(date --date "$commit_date" "+%d") day=$(echo $day_digit | sed 's/^0//') case $day in "1" | "21" | "31" ) suffix="st";; "2" | "22" ) suffix="nd";; "3" | "23" ) suffix="rd";; * ) suffix="th";; esac full_date="$month $day$suffix, $year" sha="$(git describe --abbrev=1 --always --exclude '*')" version=$(echo -n "#" && echo -n "$sha") if [ "$(git diff HEAD | wc -l)" != "0" ]; then version="$version" fi echo "" >> conditional.ent echo "" > version.ent echo "" >> conditional.ent echo "" >> conditional.ent