~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: John Arbash Meinel
  • Date: 2010-02-10 17:52:08 UTC
  • mfrom: (5021 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5023.
  • Revision ID: john@arbash-meinel.com-20100210175208-bubuwav4uqigu291
Merge bzr.dev 5021 to resolve NEWS

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])