mirror of
https://github.com/ben-grande/qusal.git
synced 2024-10-01 02:35:49 -04:00
011a71a36d
Editorconfig can only act based on file extension and path, not attributes, it remains a mean only for multiple collaborators to use the same configuration on their editor. When it is too restrictive, such as not considering the file syntax, use a lint tool for the specific file type instead of trusting editorconfig. Changes were made to increase readability.
47 lines
1.5 KiB
Bash
Executable File
47 lines
1.5 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
## SPDX-FileCopyrightText: 2024 Benjamin Grande M. S. <ben.grande.b@gmail.com>
|
|
##
|
|
## SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
set -eu
|
|
|
|
command -v git >/dev/null || { echo "Missing program: git" >&2; exit 1; }
|
|
cd "$(git rev-parse --show-toplevel)" || exit 1
|
|
|
|
template=".qubesbuilder.template"
|
|
target=".qubesbuilder"
|
|
intended_target="${target}"
|
|
if test "${1-}" = "test"; then
|
|
tmpdir="$(mktemp -d)"
|
|
target="${tmpdir}/.qubesbuilder"
|
|
# shellcheck disable=SC2154
|
|
trap 'ec="$?"; rm -rf -- "${tmpdir}"; exit "$ec"' EXIT INT HUP QUIT ABRT
|
|
fi
|
|
ignored="$(git ls-files --exclude-standard --others --ignored salt/)"
|
|
untracked="$(git ls-files --exclude-standard --others salt/)"
|
|
unwanted="$(printf %s"${ignored}\n${untracked}\n" |
|
|
grep "^salt/\S\+/README.md" | cut -d "/" -f2 | sort -u)"
|
|
group="$(./scripts/spec-get.sh dom0 group)"
|
|
projects="$(find salt/ -mindepth 1 -maxdepth 1 -type d | sort -d |
|
|
sed "s|^salt/\(\S\+\)| - rpm_spec/${group}-\1.spec|")"
|
|
for unwanted_project in ${unwanted}; do
|
|
projects="$(echo "${projects}" |
|
|
sed "\@rpm_spec/${group}-${unwanted_project}.spec@d")"
|
|
done
|
|
|
|
if test "${1-}" = "print"; then
|
|
echo "${projects}"
|
|
exit 0
|
|
fi
|
|
|
|
sed -e "/@SPEC@/d" "${template}" | tee "${target}" >/dev/null
|
|
echo "${projects}" | tee -a "${target}" >/dev/null
|
|
if test "${1-}" = "test"; then
|
|
if ! cmp -s "${target}" "${intended_target}"; then
|
|
echo "${0##*/}: error: File ${intended_target} is not up to date" >&2
|
|
echo "${0##*/}: error: Update the builder file with: ${0##/*}" >&2
|
|
exit 1
|
|
fi
|
|
fi
|