~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-07-07 15:03:14 UTC
  • mto: (5355.1.1 integration)
  • mto: This revision was merged to the branch mainline in revision 5356.
  • Revision ID: v.ladeuil+lp@free.fr-20100707150314-7i5po3dwg8umiv8x
Fix remaining sphinx_conf references.

Show diffs side-by-side

added added

removed removed

Lines of Context:
7
7
    'bzr': '1.17',
8
8
    'qbzr': '0.12',
9
9
    'bzrtools': '1.17.0',
10
 
    'bzr-svn': '0.6.3-win32-1',
11
 
    'bzr-rewrite': '0.5.1',
 
10
    'bzr-svn': '0.6.3',
 
11
    'bzr-rewrite': '0.5.2',
12
12
    'subvertpy': '0.6.8',
13
13
}
14
14
 
85
85
    bzr_dir = get_bzr_dir()
86
86
    if not os.path.isdir(bzr_dir):
87
87
        bzr_version = VERSIONS['bzr']
88
 
        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
89
90
        print "Getting bzr release %s from %s" % (bzr_version, bzr_url)
90
 
        call_or_fail([bzr(), 'co', bzr_url])
 
91
        call_or_fail([bzr(), 'co', bzr_url, bzr_dir])
91
92
    else:
92
93
        print "Ensuring %s is up-to-date" % (bzr_dir,)
93
94
        call_or_fail([bzr(), 'update', bzr_dir])