2015-04-10 15:40:02 +02:00
|
|
|
#!/bin/sh
|
2015-04-10 00:53:46 +02:00
|
|
|
#
|
|
|
|
# changed_templates.sh
|
|
|
|
|
2019-03-07 03:15:03 +01:00
|
|
|
if command -v chroot-git >/dev/null 2>&1; then
|
|
|
|
GIT_CMD=$(command -v chroot-git)
|
|
|
|
elif command -v git >/dev/null 2>&1; then
|
|
|
|
GIT_CMD=$(command -v git)
|
|
|
|
fi
|
|
|
|
|
2021-10-21 03:31:05 +02:00
|
|
|
tip="$($GIT_CMD rev-list -1 --parents HEAD)"
|
2021-06-01 03:07:59 +02:00
|
|
|
case "$tip" in
|
|
|
|
*" "*" "*) tip="${tip##* }" ;;
|
|
|
|
*) tip="${tip%% *}" ;;
|
|
|
|
esac
|
|
|
|
|
2021-10-21 03:31:05 +02:00
|
|
|
base="$($GIT_CMD merge-base FETCH_HEAD "$tip")" || {
|
2021-06-01 03:23:12 +02:00
|
|
|
echo "Your branches is based on too old copy."
|
|
|
|
echo "Please rebase to newest copy."
|
|
|
|
exit 1
|
|
|
|
}
|
2021-06-01 03:07:59 +02:00
|
|
|
|
|
|
|
echo "$base $tip" >/tmp/revisions
|
2021-05-24 22:13:35 +02:00
|
|
|
|
2015-04-10 00:53:46 +02:00
|
|
|
/bin/echo -e '\x1b[32mChanged packages:\x1b[0m'
|
2020-06-10 17:54:08 +02:00
|
|
|
$GIT_CMD diff-tree -r --no-renames --name-only --diff-filter=AM \
|
2021-06-01 03:07:59 +02:00
|
|
|
"$base" "$tip" \
|
2020-06-10 17:54:08 +02:00
|
|
|
-- 'srcpkgs/*/template' |
|
2020-05-23 15:40:09 +02:00
|
|
|
cut -d/ -f 2 |
|
|
|
|
tee /tmp/templates |
|
|
|
|
sed "s/^/ /" >&2
|