~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: John Arbash Meinel
  • Date: 2010-01-13 16:23:07 UTC
  • mto: (4634.119.7 2.0)
  • mto: This revision was merged to the branch mainline in revision 4959.
  • Revision ID: john@arbash-meinel.com-20100113162307-0bs82td16gzih827
Update the MANIFEST.in file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
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"'
 
7
    exit 1
 
8
fi
 
9
 
 
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"
 
14
    echo "or"
 
15
    echo "  update-changelogs.sh 1.6-1~bazaar1"
 
16
    exit
 
17
fi
 
18
VERSION=$1
 
19
 
 
20
for DISTRO in $UBUNTU_RELEASES; do
 
21
    PPAVERSION="$VERSION~${DISTRO}1"
 
22
    (
 
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"
 
27
    )
 
28
done