2
# Helper for updating all of the packaging branches
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"'
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
17
bzr merge http://bzr.debian.org/pkg-bazaar/bzr-svn/unstable/
21
SRC="lp:~bzr/ubuntu/$DISTRO/$PACKAGE/bzr-ppa"
22
echo "Checking out $SRC"
23
bzr co $SRC $PACKAGE-$DISTRO