3
if [ -z "$UBUNTU_RELEASES" ]; then
4
echo "Configure the distro platforms that you want to"
5
echo "build with a line like:"
6
echo ' export UBUNTU_RELEASES="dapper feisty gutsy hardy intrepid jaunty"'
10
if [ "x$1" = "x" ]; then
11
echo "Missing version"
12
echo "You want something like:"
13
echo " update-changelogs.sh 1.6~rc1-1~bazaar1"
15
echo " update-changelogs.sh 1.6-1~bazaar1"
20
for DISTRO in $UBUNTU_RELEASES; do
21
PPAVERSION="$VERSION~${DISTRO}1"
23
echo "Updating changelog for $DISTRO"
24
cd "packaging-$DISTRO" &&
25
dch -v $PPAVERSION -D $DISTRO -c changelog 'New upstream release.' &&
26
bzr commit -m "New upstream release: $PPAVERSION"