Rewrote repo-info.sh, tag-release.sh and build-presets.sh to remove the need for bash when compiling.
78 lines
2.1 KiB
Bash
Executable File
78 lines
2.1 KiB
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Retrieves git repository info for directory ${1} using command ${2}
|
|
|
|
repo_info()
|
|
{
|
|
# Process args
|
|
repo_dir='.'
|
|
if [ -n "${1}" ]; then
|
|
repo_dir=${1}
|
|
fi
|
|
git_exe="git"
|
|
if [ -n "${2}" ]; then
|
|
git_exe=${2}
|
|
fi
|
|
|
|
# Switch to working directory
|
|
if ! cd ${repo_dir} 2>/dev/null; then
|
|
echo "Invalid directory ${repo_dir}." 1>&2
|
|
return 1
|
|
fi
|
|
|
|
# Check whether we have git
|
|
if [ -z "$(command -v ${git_exe})" ]; then
|
|
echo "Command '${git_exe}' not found." 1>&2
|
|
return 1
|
|
fi
|
|
|
|
# Check if there is a valid git repo here
|
|
HASH=$(${git_exe} rev-parse HEAD 2> /dev/null)
|
|
SHORTHASH=$(${git_exe} rev-parse --short HEAD 2> /dev/null)
|
|
err=$?
|
|
if [ $err -ne 0 ]; then
|
|
echo "Not a valid repository." 1>&2
|
|
return ${err}
|
|
elif [ -z "${HASH}" ]; then
|
|
echo "Not a valid repository." 1>&2
|
|
return 1
|
|
fi
|
|
|
|
# Retrieve info
|
|
URL=$(${git_exe} config remote.origin.url)
|
|
|
|
# check if an annotated tag is reachable from HEAD
|
|
TAG=$(${git_exe} describe --tags --abbrev=0 --exact-match --match \[0-9\]\*.\[0-9\]\*.\[0-9\]\* HEAD 2> /dev/null)
|
|
if [ -n "${TAG}" ]; then
|
|
# if TAG is a release tag and HASH == TAG_HASH, this is release code
|
|
TAG_HASH=$(${git_exe} rev-list ${TAG} --max-count=1)
|
|
REV=$(${git_exe} rev-list $(${git_exe} merge-base ${TAG} HEAD).. --count)
|
|
else
|
|
REV=$(${git_exe} rev-list HEAD --count)
|
|
fi
|
|
|
|
BRANCH=$(${git_exe} symbolic-ref -q --short HEAD)
|
|
REMOTE="${URL}"
|
|
upstream=$(${git_exe} config branch.${BRANCH}.remote)
|
|
if [ -n "${upstream}" ]; then
|
|
REMOTE="${upstream}"
|
|
fi
|
|
DATE=$(${git_exe} log -1 --format="format:%ci")
|
|
|
|
# Output
|
|
# Only write tag and rev if they exist.
|
|
echo "URL=${URL}"
|
|
echo "HASH=${HASH}"
|
|
echo "SHORTHASH=${SHORTHASH}"
|
|
if [ -n "${TAG}" ]; then echo "TAG=${TAG}"; fi
|
|
if [ -n "${TAG_HASH}" ]; then echo "TAG_HASH=${TAG_HASH}"; fi
|
|
if [ -n "${REV}" ]; then echo "REV=${REV}"; fi
|
|
echo "BRANCH=${BRANCH}"
|
|
echo "REMOTE=${REMOTE}"
|
|
echo "DATE=${DATE}"
|
|
|
|
return 0
|
|
}
|
|
|
|
repo_info "$@"
|