~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Max Bowsher
  • Date: 2010-10-31 14:31:17 UTC
  • mto: This revision was merged to the branch mainline in revision 5521.
  • Revision ID: maxb@f2s.com-20101031143117-57vrfu630yq8a3k2
Fix a slightly odd style of ConfigObj construction to match the prevailing style in bzrlib.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
# Helper for updating all of the packaging branches
 
3
 
 
4
if [ -z "$UBUNTU_RELEASES" ]; then
 
5
    echo "Configure the distro platforms that you want to"
 
6
    echo "build with a line like:"
 
7
    echo '  export UBUNTU_RELEASES="dapper feisty gutsy hardy intrepid jaunty"'
 
8
    exit 1
 
9
fi
 
10
 
 
11
for DISTRO in $UBUNTU_RELEASES; do
 
12
    if [ -d "$PACKAGE-$DISTRO" ] ; then
 
13
        echo "Updating $PACKAGE-$DISTRO"
 
14
        bzr update $PACKAGE-$DISTRO
 
15
        if [ "$PACKAGE" = "bzr-svn" ] ; then
 
16
            cd $PACKAGE-$DISTRO
 
17
            bzr merge http://bzr.debian.org/pkg-bazaar/bzr-svn/unstable/
 
18
            cd ..
 
19
        fi
 
20
    else
 
21
        SRC="lp:~bzr/ubuntu/$DISTRO/$PACKAGE/bzr-ppa"
 
22
        echo "Checking out $SRC"
 
23
        bzr co $SRC $PACKAGE-$DISTRO
 
24
    fi
 
25
done