summaryrefslogtreecommitdiff
path: root/include/err.sh
blob: 8474e55b5d2a509941a61ba491a5203efe3e39f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# SPDX-License-Identifier: MIT
# SPDX-FileCopyrightText: 2022, 2023 Leah Rowe <leah@libreboot.org>

x_() {
	[ $# -lt 1 ] || ${@} || err "non-zero exit status: ${@}"
}
xx_() {
	[ $# -lt 1 ] || ${@} || fail "non-zero exit status: ${@}"
}

check_git()
{
	which git 1>/dev/null 2>/dev/null || \
	    err "git not installed. please install git-scm."
	git config --global user.name 1>/dev/null 2>/dev/null || \
	    git_err "git config --global user.name \"John Doe\""
	git config --global user.email 1>/dev/null 2>/dev/null || \
	    git_err "git config --global user.email \"john.doe@example.com\""
}

git_err()
{
	printf "You need to set git name/email, like so:\n%s\n\n" "${1}"
	fail "Git name/email not configured" || \
	    err "Git name/email not configured"
}

check_project()
{
	read project < projectname

	[ -f version ] && read version < version
	version_="${version}"
	[ ! -e ".git" ] || version="$(git describe --tags HEAD 2>&1)" || \
	    version="git-$(git rev-parse HEAD 2>&1)" || version="${version_}"

	[ -f versiondate ] && read versiondate < versiondate
	versiondate_="${versiondate}"
	[ ! -e ".git" ] || versiondate="$(git show --no-patch --no-notes \
	    --pretty='%ct' HEAD)" || versiondate="${versiondate_}"

	[ -z ${versiondate} ] && err "Unknown version date"
	[ -z ${version} ] && err "Unknown version"

	printf "%s\n" "${version}" > version
	printf "%s\n" "${versiondate}" > versiondate
}

setvars()
{
	_setvars=""
	[ $# -lt 2 ] && err "setvars: too few arguments"
	val="${1}"
	shift 1
	for var in $@; do
		_setvars="${var}=\"${val}\"; ${_setvars}"
	done
	printf "%s\n" "${_setvars% }"
}

err()
{
	printf "ERROR %s: %s\n" "${0}" "${1}" 1>&2
	exit 1
}