/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/win32/build_release.py

merge bzr.dev r3998

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',
8
 
    'qbzr': '0.9.5',
9
 
    'bzrtools': '1.9.1',
10
 
    'bzr-svn': '0.4.14',
 
7
    'bzr': '1.11',
 
8
    'qbzr': '0.9.6',
 
9
    'bzrtools': '1.11.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
83
83
    bzr_dir = get_bzr_dir()
84
84
    if not os.path.isdir(bzr_dir):
85
85
        bzr_version = VERSIONS['bzr']
86
 
        bzr_url = 'http://bazaar-vcs.org/bzr/bzr' + bzr_version
 
86
        bzr_url = 'http://bazaar-vcs.org/bzr/bzr.' + bzr_version
87
87
        print "Getting bzr release %s from %s" % (bzr_version, bzr_url)
88
88
        call_or_fail([bzr(), 'co', bzr_url])
89
89
    else:
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])