2023-11-13 09:33:28 -05:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
## SPDX-FileCopyrightText: 2023 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
|
|
##
|
|
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
|
|
|
|
# shellcheck disable=SC2034
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
usage(){
|
2024-06-12 08:44:04 -04:00
|
|
|
names="$(find salt/ -mindepth 1 -maxdepth 1 -type d -printf '%f\n' \
|
|
|
|
| sort -d | tr "\n" " ")"
|
2023-11-13 09:33:28 -05:00
|
|
|
echo "Usage: ${0##*/} <NAME> <KEY>"
|
|
|
|
echo "Example: ${0##*/} qubes-builder description"
|
|
|
|
echo "Names: ${names}"
|
|
|
|
echo "Keys: ${keys}"
|
|
|
|
}
|
|
|
|
|
|
|
|
block_max_chars(){
|
|
|
|
char_key="${1}"
|
|
|
|
char_value="${2}"
|
|
|
|
less_than="${3}"
|
|
|
|
if test "${#char_value}" -ge "${less_than}"; then
|
|
|
|
echo "Error: ${char_key} is too long. Must be less than ${less_than} chars." >&2
|
|
|
|
echo "Key contents: ${char_value}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2024-06-14 13:22:43 -04:00
|
|
|
keys="name branch group file_roots requires packager vendor url bug_url version project project_dir changelog readme license_csv license description summary saltfiles"
|
2023-11-13 09:33:28 -05:00
|
|
|
|
2024-06-12 08:44:04 -04:00
|
|
|
name=""
|
|
|
|
key=""
|
2023-11-13 09:33:28 -05:00
|
|
|
case "${1-}" in
|
|
|
|
"") usage; exit 1;;
|
|
|
|
-h|--?help) usage; exit 0;;
|
2024-06-12 08:44:04 -04:00
|
|
|
*) name="${1}"; shift;;
|
2023-11-13 09:33:28 -05:00
|
|
|
esac
|
2024-06-12 08:44:04 -04:00
|
|
|
case "${1-}" in
|
2023-11-13 09:33:28 -05:00
|
|
|
"") usage; exit 1;;
|
2024-06-12 08:44:04 -04:00
|
|
|
*) key="${1}"; shift;;
|
2023-11-13 09:33:28 -05:00
|
|
|
esac
|
2024-06-12 08:44:04 -04:00
|
|
|
if test -z "${key##* }"; then
|
|
|
|
echo "Key is emtpy: ${key}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
2023-11-13 09:33:28 -05:00
|
|
|
|
2024-06-12 08:44:04 -04:00
|
|
|
command -v git >/dev/null || { echo "Missing program: git" >&2; exit 1; }
|
2023-11-13 09:33:28 -05:00
|
|
|
cd "$(git rev-parse --show-toplevel)" || exit 1
|
2024-06-12 08:44:04 -04:00
|
|
|
./scripts/requires-program.sh reuse
|
|
|
|
|
|
|
|
if test "${key}" = "branch"; then
|
|
|
|
branch="$(git branch --show-current)"
|
|
|
|
fi
|
2023-11-13 09:33:28 -05:00
|
|
|
|
2024-06-21 11:00:06 -04:00
|
|
|
toplevel="$(git rev-parse --show-toplevel)"
|
|
|
|
group="${toplevel##*/}"
|
2023-11-13 09:33:28 -05:00
|
|
|
block_max_chars group "${group}" 70
|
|
|
|
file_roots="/srv/salt/${group}"
|
2024-06-21 11:00:06 -04:00
|
|
|
vendor="${SPEC_VENDOR:-"$(git config --get user.name)"}"
|
|
|
|
packager="${SPEC_PACKAGER:-"${vendor}"}"
|
|
|
|
url="${SPEC_URL:-"https://github.com/ben-grande/qusal"}"
|
|
|
|
bug_url="${SPEC_BUGURL:-"${url}/issues"}"
|
2023-11-13 09:33:28 -05:00
|
|
|
|
2024-06-22 06:23:46 -04:00
|
|
|
if test -z "${group}" || test -z "${vendor}" || test -z "${packager}" \
|
|
|
|
|| test -z "${url}" || test -z "${bug_url}"
|
|
|
|
then
|
|
|
|
echo "At least one empty var: group, vendor, packager, url, bug_url" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
2023-11-13 09:33:28 -05:00
|
|
|
project="${group}-${name}"
|
|
|
|
project_dir="salt/${name}"
|
|
|
|
|
|
|
|
if ! test -d "${project_dir}"; then
|
|
|
|
echo "Project doesn't exist: ${project_dir}" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-06-21 11:00:06 -04:00
|
|
|
# shellcheck disable=SC2094
|
|
|
|
read -r version <"${project_dir}/version"
|
2023-11-13 09:33:28 -05:00
|
|
|
readme="${project_dir}/README.md"
|
|
|
|
if ! test -f "${readme}"; then
|
|
|
|
echo "Project ${name} does not have README.md" >&2
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
2024-06-12 08:44:04 -04:00
|
|
|
if test "${key}" = "license" || test "${key}" = "license_csv"; then
|
|
|
|
license_csv="$(reuse --root "${project_dir}" lint |
|
|
|
|
awk -F ':' '/^* Used licenses:/{print $2}' | tr -d " ")"
|
|
|
|
license="$(echo "${license_csv}" | sed "s/,/ AND /g")"
|
2023-11-13 09:33:28 -05:00
|
|
|
fi
|
|
|
|
|
2024-06-12 08:44:04 -04:00
|
|
|
## The macro %autochangelog prints logs of all projects and we separate a
|
|
|
|
## project per directory. The disadvantage of the changelog below is it
|
|
|
|
# #doesn't differentiate commits per version and release, but per commit id.
|
|
|
|
if test "${key}" = "changelog"; then
|
2024-06-13 08:03:16 -04:00
|
|
|
changelog="$(TZ=UTC0 git log -n 50 --format=format:"* %cd %an <%ae> - %h%n- %s%n" --date=format:"%a %b %d %Y" -- "${project_dir}" | sed -re "s/^- +- */- /")"
|
2024-06-12 08:44:04 -04:00
|
|
|
fi
|
|
|
|
|
|
|
|
if test "${key}" = "description"; then
|
2024-06-14 13:22:43 -04:00
|
|
|
description="$(sed -n '/^## Description/,/^## /p' -- "${readme}" |
|
2024-06-12 08:44:04 -04:00
|
|
|
sed '1d;$d' | sed "1{/^$/d}")"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "${key}" = "summary"; then
|
2024-06-14 13:22:43 -04:00
|
|
|
summary="$(sed -n "/^# ${name}$/,/^## Table of Contents$/{
|
|
|
|
/./!d; /^#/d; s/\.$//; p}" -- "${readme}")"
|
2024-06-12 08:44:04 -04:00
|
|
|
block_max_chars summary "${summary}" 70
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "${key}" = "saltfiles" || test "${key}" = "requires"; then
|
|
|
|
saltfiles="$(find "${project_dir}" -maxdepth 1 -name "*.sls")"
|
|
|
|
# shellcheck disable=SC2086
|
|
|
|
if test -n "${saltfiles}"; then
|
2024-06-14 13:22:43 -04:00
|
|
|
requires="$(sed -n '/^include:$/,/^\s*$/p' -- ${saltfiles} | sed "/^\s*- \./d;/{/d" | grep "^\s*- " | cut -d "." -f1 | sort -u | sed "s/- //")"
|
2024-06-12 08:44:04 -04:00
|
|
|
if grep -qrn "{%-\? from \('\|\"\)utils" ${saltfiles}; then
|
|
|
|
if test -n "${requires}"; then
|
|
|
|
requires="${requires} utils"
|
|
|
|
else
|
|
|
|
requires="utils"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
requires=""
|
|
|
|
fi
|
|
|
|
requires_valid=""
|
|
|
|
for r in $(printf %s"${requires}" | tr " " "\n"); do
|
|
|
|
if ! test -d "salt/${r}"; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
requires_valid="${requires_valid} ${r}"
|
|
|
|
done
|
|
|
|
requires="${requires_valid}"
|
|
|
|
unset requires_valid
|
2023-11-13 09:33:28 -05:00
|
|
|
fi
|
|
|
|
|
|
|
|
case "${key}" in
|
|
|
|
"") exit 1;;
|
|
|
|
branch) echo "${branch}";;
|
|
|
|
changelog) echo "${changelog}";;
|
|
|
|
description) echo "${description}";;
|
|
|
|
file_roots) echo "${file_roots}";;
|
|
|
|
group) echo "${group}";;
|
|
|
|
license_csv) echo "${license_csv}";;
|
|
|
|
license) echo "${license}";;
|
|
|
|
name) echo "${name}";;
|
|
|
|
project) echo "${project}";;
|
|
|
|
project_dir) echo "${project_dir}";;
|
|
|
|
readme) echo "${readme}";;
|
|
|
|
requires) echo "${requires}";;
|
|
|
|
saltfiles) echo "${saltfiles}";;
|
|
|
|
summary) echo "${summary}";;
|
|
|
|
url) echo "${url}";;
|
2024-06-14 13:22:43 -04:00
|
|
|
bug_url) echo "${bug_url}";;
|
2023-11-13 09:33:28 -05:00
|
|
|
vendor) echo "${vendor}";;
|
2024-06-14 13:22:43 -04:00
|
|
|
packager) echo "${packager}";;
|
2023-11-13 09:33:28 -05:00
|
|
|
version) echo "${version}";;
|
|
|
|
esac
|