~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to tools/win32/build_release.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-08-05 18:56:37 UTC
  • mfrom: (4580.5.16 1.18-win32-buildbot)
  • Revision ID: pqm@pqm.ubuntu.com-20090805185637-3f0y10upzcdw7e0g
Updates to buildout.cfg etc to have 'make installer-all' start being
        the preferred way to build win32 installer.

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