~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: Vincent Ladeuil
  • Date: 2010-02-10 15:46:03 UTC
  • mfrom: (4985.3.21 update)
  • mto: This revision was merged to the branch mainline in revision 5021.
  • Revision ID: v.ladeuil+lp@free.fr-20100210154603-k4no1gvfuqpzrw7p
Update performs two merges in a more logical order but stop on conflicts

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.17',
 
8
    'qbzr': '0.12',
 
9
    'bzrtools': '1.17.0',
 
10
    'bzr-svn': '0.6.3',
 
11
    'bzr-rewrite': '0.5.2',
 
12
    'subvertpy': '0.6.8',
11
13
}
12
14
 
13
15
# This will be passed to 'make' to ensure we build with the right python
83
85
    bzr_dir = get_bzr_dir()
84
86
    if not os.path.isdir(bzr_dir):
85
87
        bzr_version = VERSIONS['bzr']
86
 
        bzr_url = 'http://bazaar-vcs.org/bzr/bzr.' + bzr_version
 
88
        # bzr_url = 'http://bazaar-vcs.org/bzr/bzr.' + bzr_version
 
89
        bzr_url = 'lp:bzr/' + bzr_version
87
90
        print "Getting bzr release %s from %s" % (bzr_version, bzr_url)
88
 
        call_or_fail([bzr(), 'co', bzr_url])
 
91
        call_or_fail([bzr(), 'co', bzr_url, bzr_dir])
89
92
    else:
90
93
        print "Ensuring %s is up-to-date" % (bzr_dir,)
91
94
        call_or_fail([bzr(), 'update', bzr_dir])
123
126
 
124
127
 
125
128
def _plugin_tag_name(plugin_name):
126
 
    if plugin_name == 'bzr-svn':
127
 
        return 'bzr-svn-' + VERSIONS['bzr-svn']
 
129
    if plugin_name in ('bzr-svn', 'bzr-rewrite', 'subvertpy'):
 
130
        return '%s-%s' % (plugin_name, VERSIONS[plugin_name])
128
131
    # bzrtools and qbzr use 'release-X.Y.Z'
129
132
    return 'release-' + VERSIONS[plugin_name]
130
133
 
132
135
def update_plugin(plugin_name):
133
136
    release_dir = get_plugin_release_dir(plugin_name)
134
137
    if not os.path.isdir(plugin_name):
135
 
        if plugin_name == 'bzr-svn':
 
138
        if plugin_name in ('bzr-svn', 'bzr-rewrite'):
136
139
            # bzr-svn uses a different repo format
137
140
            call_or_fail([bzr(), 'init-repo', '--rich-root-pack', plugin_name])
138
141
        else:
189
192
    update_tbzr()
190
193
    clean_target()
191
194
    create_target()
 
195
    install_plugin('subvertpy')
192
196
    install_plugin('bzrtools')
193
197
    install_plugin('qbzr')
194
198
    install_plugin('bzr-svn')
 
199
    install_plugin('bzr-rewrite')
195
200
 
196
201
    build_installer()
197
202