/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

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

  • Committer: Vincent Ladeuil
  • Date: 2009-09-07 08:52:04 UTC
  • mto: (4677.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 4678.
  • Revision ID: v.ladeuil+lp@free.fr-20090907085204-ihbaxqrqzicf3bb9
FreeBSD is more strict than other OSes about deleting the working dir.

* bzrlib/tests/blackbox/test_remove.py:
(TestRemove.test_remove_changed_files_from_child_dir): Don't
delete the working dir... It's amazing this test has never
failed...

* bzrlib/tests/blackbox/test_remove.py:
(TestRemove.test_remove_changed_files_from_child_dir): Add a
working_dir parameter.

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 -c changelog "$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