~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2008-12-23 20:51:15 UTC
  • mfrom: (3915.2.1 jam-integration)
  • Revision ID: pqm@pqm.ubuntu.com-20081223205115-bm0e9xfbnx5aqwk4
Updates to the build_release script for the 1.10 release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
# When preparing a new release, make sure to set all of these to the latest
5
5
# values.
6
6
VERSIONS = {
7
 
    'bzr': '1.9',
 
7
    'bzr': '1.10',
8
8
    'qbzr': '0.9.5',
9
 
    'bzrtools': '1.9.1',
10
 
    'bzr-svn': '0.4.14',
 
9
    'bzrtools': '1.10.0',
 
10
    'bzr-svn': '0.4.16',
11
11
}
12
12
 
13
13
# This will be passed to 'make' to ensure we build with the right python
112
112
def update_plugin_trunk(plugin_name):
113
113
    trunk_dir = get_plugin_trunk_dir(plugin_name)
114
114
    if not os.path.isdir(trunk_dir):
115
 
        plugin_trunk = get_plugin_trunk_branch()
 
115
        plugin_trunk = get_plugin_trunk_branch(plugin_name)
116
116
        print "Getting latest %s trunk" % (plugin_name,)
117
117
        call_or_fail([bzr(), 'co', plugin_trunk,
118
118
                      trunk_dir])