diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:34:29 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-09 13:34:29 +0000 |
commit | cb99946239e45aef68c2a7168262def132399550 (patch) | |
tree | 0949c7cb00d7da2987826edafff9d8fba93e95f0 /debian/changelog.upstream.sh | |
parent | Adding upstream version 1:2.43.0. (diff) | |
download | git-cb99946239e45aef68c2a7168262def132399550.tar.xz git-cb99946239e45aef68c2a7168262def132399550.zip |
Adding debian version 1:2.43.0-1.debian/1%2.43.0-1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian/changelog.upstream.sh')
-rwxr-xr-x | debian/changelog.upstream.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/debian/changelog.upstream.sh b/debian/changelog.upstream.sh new file mode 100755 index 0000000..3441546 --- /dev/null +++ b/debian/changelog.upstream.sh @@ -0,0 +1,16 @@ +#!/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 |