~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/packaging/update-changelogs.sh

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-17 07:05:37 UTC
  • mfrom: (4152.1.2 branch.stacked.streams)
  • Revision ID: pqm@pqm.ubuntu.com-20090317070537-zaud24vjs2szna87
(robertc) Add client-side streaming from stacked branches (over
        bzr:// protocols) when the sort order is compatible with doing
        that. (Robert Collins, Andrew Bennetts)

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    exit 1
8
8
fi
9
9
 
10
 
if [ "x$VERSION" = "x" ]; then
 
10
if [ "x$1" = "x" ]; then
11
11
    echo "Missing version"
12
12
    echo "You want something like:"
13
 
    echo "  VERSION=1.6~rc1-1~bazaar1 update-changelogs.sh"
 
13
    echo "  update-changelogs.sh 1.6~rc1-1~bazaar1"
14
14
    echo "or"
15
 
    echo "  VERSION=1.6-1~bazaar1 update-changelogs.sh"
 
15
    echo "  update-changelogs.sh 1.6-1~bazaar1"
16
16
    exit
17
17
fi
18
 
 
19
 
if [ -z "$1" ]; then
20
 
    MSG="New upstream release"
21
 
else
22
 
    MSG=$1
23
 
fi
 
18
VERSION=$1
24
19
 
25
20
for DISTRO in $UBUNTU_RELEASES; do
26
21
    PPAVERSION="$VERSION~${DISTRO}1"
27
22
    (
28
23
        echo "Updating changelog for $DISTRO"
29
 
        cd "$PACKAGE-$DISTRO" &&
30
 
            dch -v $PPAVERSION -D $DISTRO "$MSG." &&
31
 
            bzr commit -m "$MSG: $PPAVERSION"
 
24
        cd "packaging-$DISTRO" &&
 
25
        dch -v $PPAVERSION -D $DISTRO -c changelog 'New upstream release.' &&
 
26
        bzr commit -m "New upstream release: $PPAVERSION"
32
27
    )
33
28
done