/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: John Arbash Meinel
  • Date: 2009-04-21 23:54:16 UTC
  • mto: (4300.1.7 groupcompress_info)
  • mto: This revision was merged to the branch mainline in revision 4301.
  • Revision ID: john@arbash-meinel.com-20090421235416-f0cz6ilf5cufbugi
Fix bug #364900, properly remove the 64kB that was just encoded in the copy.
Also, stop supporting None as a copy length in 'encode_copy_instruction'.
It was only used by the test suite, and it is good to pull that sort of thing out of
production code. (Besides, setting the copy to 64kB has the same effect.)

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