ckt-stable-update.sh: Point to changelogs on kernel.ubuntu.com

Luis is now putting long changelogs up, so don't bother generating
them ourselves.


svn path=/dists/sid/linux/; revision=22072
This commit is contained in:
Ben Hutchings 2014-11-20 00:44:02 +00:00
parent 9548e467eb
commit 9853c541cb
1 changed files with 1 additions and 14 deletions

View File

@ -68,22 +68,9 @@ sed -i '1,/^ --/ { /New upstream stable update:/ { a\
'"$(
while [ "v$cur_ver" != "v$new_ver" ]; do
next_ver="$(next_update "$cur_ver")"
echo " http://kernel.alioth.debian.org/linux-changelog/ChangeLog-$next_ver\\"
echo " http://kernel.ubuntu.com/stable/ChangeLog-$next_ver\\"
git log --reverse --pretty=' - %s\' "v$cur_ver..v$next_ver^"
cur_ver="$next_ver"
done)"'
} }' debian/changelog
declare -a changelogs
changelogs=()
while [ "v$cur_ver" != "v$new_ver" ]; do
next_ver="$(next_update "$cur_ver")"
git log "v$cur_ver..v$next_ver" > "../ChangeLog-$next_ver"
chmod 644 "../ChangeLog-$next_ver"
changelogs[${#changelogs[*]} + 1]="../ChangeLog-$next_ver"
cur_ver="$next_ver"
done
echo 'To upload the full changelogs:'
echo "scp ${changelogs[*]} alioth.debian.org:/home/groups/kernel/htdocs/linux-changelog/"