1
0
Fork 0
git/debian/changelog.upstream.sh
Daniel Baumann 4202b084e5
Adding debian version 1:2.47.2-0.2.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-23 07:43:41 +02:00

16 lines
420 B
Bash
Executable file

#!/bin/sh
set -e
: >debian/changelog.upstream
exec <debian/versions.upstream
read old
while read new; do
exec >debian/changelog.upstream."$new"
echo "Version $new; changes since $old:"
echo "Version $new; changes since $old:" |tr '[:print:]' -
echo
git shortlog --no-merges "$old".."$new"
echo
cat debian/changelog.upstream
mv debian/changelog.upstream."$new" debian/changelog.upstream
old="$new"
done