source: products/QGSkel/trunk/qgskel/templates/qgplone3_buildout/bootstrap.py @ 1409

Last change on this file since 1409 was 1133, checked in by chervol, 15 years ago

cfg file templates added

  • Property svn:eol-style set to native
File size: 2.0 KB
Line 
1##############################################################################
2#
3# Copyright (c) 2006 Zope Corporation and Contributors.
4# All Rights Reserved.
5#
6# This software is subject to the provisions of the Zope Public License,
7# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
8# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
9# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
11# FOR A PARTICULAR PURPOSE.
12#
13##############################################################################
14"""Bootstrap a buildout-based project
15
16Simply run this script in a directory containing a buildout.cfg.
17The script accepts buildout command-line options, so you can
18use the -c option to specify an alternate configuration file.
19
20$Id: bootstrap.py 85041 2008-03-31 15:57:30Z andreasjung $
21"""
22
23import os, shutil, sys, tempfile, urllib2
24
25tmpeggs = tempfile.mkdtemp()
26
27try:
28    import pkg_resources
29except ImportError:
30    ez = {}
31    exec urllib2.urlopen('http://peak.telecommunity.com/dist/ez_setup.py'
32                         ).read() in ez
33    ez['use_setuptools'](to_dir=tmpeggs, download_delay=0)
34
35    import pkg_resources
36
37if sys.platform == 'win32':
38    def quote(c):
39        if ' ' in c:
40            return '"%s"' % c # work around spawn lamosity on windows
41        else:
42            return c
43else:
44    def quote (c):
45        return c
46
47cmd = 'from setuptools.command.easy_install import main; main()'
48ws  = pkg_resources.working_set
49assert os.spawnle(
50    os.P_WAIT, sys.executable, quote (sys.executable),
51    '-c', quote (cmd), '-mqNxd', quote (tmpeggs), 'zc.buildout',
52    dict(os.environ,
53         PYTHONPATH=
54         ws.find(pkg_resources.Requirement.parse('setuptools')).location
55         ),
56    ) == 0
57
58ws.add_entry(tmpeggs)
59ws.require('zc.buildout')
60import zc.buildout.buildout
61zc.buildout.buildout.main(sys.argv[1:] + ['bootstrap'])
62shutil.rmtree(tmpeggs)
Note: See TracBrowser for help on using the repository browser.