/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 with bzr.dev and put the NEWS entry in the IN DEVELOPMENT section

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.11',
8
 
    'qbzr': '0.9.6',
9
 
    'bzrtools': '1.11.0',
10
 
    'bzr-svn': '0.4.16',
 
7
    'bzr': '1.12',
 
8
    'qbzr': '0.9.7',
 
9
    'bzrtools': '1.12.0',
 
10
    'bzr-svn': '0.5.0',
 
11
    'subvertpy': '0.6.2',
11
12
}
12
13
 
13
14
# This will be passed to 'make' to ensure we build with the right python
123
124
 
124
125
 
125
126
def _plugin_tag_name(plugin_name):
126
 
    if plugin_name == 'bzr-svn':
127
 
        return 'bzr-svn-' + VERSIONS['bzr-svn']
 
127
    if plugin_name in ('bzr-svn', 'subvertpy'):
 
128
        return '%s-%s' % (plugin_name, VERSIONS[plugin_name])
128
129
    # bzrtools and qbzr use 'release-X.Y.Z'
129
130
    return 'release-' + VERSIONS[plugin_name]
130
131
 
189
190
    update_tbzr()
190
191
    clean_target()
191
192
    create_target()
 
193
    install_plugin('subvertpy')
192
194
    install_plugin('bzrtools')
193
195
    install_plugin('qbzr')
194
196
    install_plugin('bzr-svn')