2013-01-04 02:09:11 +01:00
|
|
|
##############################################################################
|
|
|
|
#
|
|
|
|
# Copyright (c) 2006 Zope Foundation and Contributors.
|
|
|
|
# All Rights Reserved.
|
|
|
|
#
|
|
|
|
# This software is subject to the provisions of the Zope Public License,
|
|
|
|
# Version 2.1 (ZPL). A copy of the ZPL should accompany this distribution.
|
|
|
|
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
|
|
|
|
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
|
|
|
|
# FOR A PARTICULAR PURPOSE.
|
|
|
|
#
|
|
|
|
##############################################################################
|
|
|
|
"""Bootstrap a buildout-based project
|
|
|
|
|
|
|
|
Simply run this script in a directory containing a buildout.cfg.
|
|
|
|
The script accepts buildout command-line options, so you can
|
|
|
|
use the -c option to specify an alternate configuration file.
|
|
|
|
"""
|
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
import os, shutil, sys, tempfile
|
2013-01-04 02:09:11 +01:00
|
|
|
from optparse import OptionParser
|
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
tmpeggs = tempfile.mkdtemp()
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
usage = """\
|
2013-01-04 02:09:11 +01:00
|
|
|
[DESIRED PYTHON FOR BUILDOUT] bootstrap.py [options]
|
|
|
|
|
|
|
|
Bootstraps a buildout-based project.
|
|
|
|
|
|
|
|
Simply run this script in a directory containing a buildout.cfg, using the
|
|
|
|
Python that you want bin/buildout to use.
|
|
|
|
|
|
|
|
Note that by using --setup-source and --download-base to point to
|
|
|
|
local resources, you can keep this script from going over the network.
|
2020-10-06 04:04:22 +02:00
|
|
|
"""
|
2013-01-04 02:09:11 +01:00
|
|
|
|
|
|
|
parser = OptionParser(usage=usage)
|
2013-03-20 22:47:39 +01:00
|
|
|
parser.add_option("-v", "--version", help="use a specific zc.buildout version")
|
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
parser.add_option(
|
|
|
|
"-t",
|
|
|
|
"--accept-buildout-test-releases",
|
|
|
|
dest="accept_buildout_test_releases",
|
|
|
|
action="store_true",
|
|
|
|
default=False,
|
|
|
|
help=(
|
|
|
|
"Normally, if you do not specify a --version, the "
|
|
|
|
"bootstrap script and buildout gets the newest "
|
|
|
|
"*final* versions of zc.buildout and its recipes and "
|
|
|
|
"extensions for you. If you use this flag, "
|
|
|
|
"bootstrap and buildout will get the newest releases "
|
|
|
|
"even if they are alphas or betas."
|
|
|
|
),
|
|
|
|
)
|
|
|
|
parser.add_option(
|
|
|
|
"-c",
|
|
|
|
"--config-file",
|
|
|
|
help=("Specify the path to the buildout configuration " "file to be used."),
|
|
|
|
)
|
|
|
|
parser.add_option(
|
|
|
|
"-f", "--find-links", help="Specify a URL to search for buildout releases"
|
|
|
|
)
|
2013-01-04 02:09:11 +01:00
|
|
|
|
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
options, args = parser.parse_args()
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
######################################################################
|
|
|
|
# load/install distribute
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
to_reload = False
|
2013-01-04 02:09:11 +01:00
|
|
|
try:
|
2013-03-20 22:47:39 +01:00
|
|
|
import pkg_resources, setuptools
|
2020-10-06 04:04:22 +02:00
|
|
|
|
|
|
|
if not hasattr(pkg_resources, "_distribute"):
|
2013-03-20 22:47:39 +01:00
|
|
|
to_reload = True
|
2013-01-04 02:09:11 +01:00
|
|
|
raise ImportError
|
|
|
|
except ImportError:
|
|
|
|
ez = {}
|
2013-03-20 22:47:39 +01:00
|
|
|
|
|
|
|
try:
|
|
|
|
from urllib.request import urlopen
|
|
|
|
except ImportError:
|
|
|
|
from urllib2 import urlopen
|
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
exec(urlopen("http://python-distribute.org/distribute_setup.py").read(), ez)
|
2013-03-20 22:47:39 +01:00
|
|
|
setup_args = dict(to_dir=tmpeggs, download_delay=0, no_fake=True)
|
2020-10-06 04:04:22 +02:00
|
|
|
ez["use_setuptools"](**setup_args)
|
2013-03-20 22:47:39 +01:00
|
|
|
|
|
|
|
if to_reload:
|
2022-10-28 09:42:51 +02:00
|
|
|
from importlib import reload
|
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
reload(pkg_resources)
|
2013-01-04 02:09:11 +01:00
|
|
|
import pkg_resources
|
2020-10-06 04:04:22 +02:00
|
|
|
|
2013-01-04 02:09:11 +01:00
|
|
|
# This does not (always?) update the default working set. We will
|
|
|
|
# do it.
|
|
|
|
for path in sys.path:
|
|
|
|
if path not in pkg_resources.working_set.entries:
|
|
|
|
pkg_resources.working_set.add_entry(path)
|
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
######################################################################
|
|
|
|
# Install buildout
|
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
ws = pkg_resources.working_set
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
cmd = [
|
|
|
|
sys.executable,
|
|
|
|
"-c",
|
|
|
|
"from setuptools.command.easy_install import main; main()",
|
|
|
|
"-mZqNxd",
|
|
|
|
tmpeggs,
|
|
|
|
]
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
find_links = os.environ.get(
|
2020-10-06 04:04:22 +02:00
|
|
|
"bootstrap-testing-find-links",
|
|
|
|
options.find_links
|
|
|
|
or (
|
|
|
|
"http://downloads.buildout.org/"
|
|
|
|
if options.accept_buildout_test_releases
|
|
|
|
else None
|
|
|
|
),
|
|
|
|
)
|
2013-01-04 02:09:11 +01:00
|
|
|
if find_links:
|
2020-10-06 04:04:22 +02:00
|
|
|
cmd.extend(["-f", find_links])
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
distribute_path = ws.find(
|
2020-10-06 04:04:22 +02:00
|
|
|
pkg_resources.Requirement.parse("distribute")
|
|
|
|
).location
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
requirement = "zc.buildout"
|
2013-01-04 02:09:11 +01:00
|
|
|
version = options.version
|
|
|
|
if version is None and not options.accept_buildout_test_releases:
|
|
|
|
# Figure out the most recent final version of zc.buildout.
|
|
|
|
import setuptools.package_index
|
2020-10-06 04:04:22 +02:00
|
|
|
|
|
|
|
_final_parts = "*final-", "*final"
|
|
|
|
|
2013-01-04 02:09:11 +01:00
|
|
|
def _final_version(parsed_version):
|
|
|
|
for part in parsed_version:
|
2020-10-06 04:04:22 +02:00
|
|
|
if (part[:1] == "*") and (part not in _final_parts):
|
2013-01-04 02:09:11 +01:00
|
|
|
return False
|
|
|
|
return True
|
2020-10-06 04:04:22 +02:00
|
|
|
|
|
|
|
index = setuptools.package_index.PackageIndex(search_path=[distribute_path])
|
2013-01-04 02:09:11 +01:00
|
|
|
if find_links:
|
|
|
|
index.add_find_links((find_links,))
|
|
|
|
req = pkg_resources.Requirement.parse(requirement)
|
|
|
|
if index.obtain(req) is not None:
|
|
|
|
best = []
|
|
|
|
bestv = None
|
|
|
|
for dist in index[req.project_name]:
|
|
|
|
distv = dist.parsed_version
|
|
|
|
if _final_version(distv):
|
|
|
|
if bestv is None or distv > bestv:
|
|
|
|
best = [dist]
|
|
|
|
bestv = distv
|
|
|
|
elif distv == bestv:
|
|
|
|
best.append(dist)
|
|
|
|
if best:
|
|
|
|
best.sort()
|
|
|
|
version = best[-1].version
|
|
|
|
if version:
|
2020-10-06 04:04:22 +02:00
|
|
|
requirement = "==".join((requirement, version))
|
2013-01-04 02:09:11 +01:00
|
|
|
cmd.append(requirement)
|
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
import subprocess
|
2020-10-06 04:04:22 +02:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
if subprocess.call(cmd, env=dict(os.environ, PYTHONPATH=distribute_path)) != 0:
|
2020-10-06 04:04:22 +02:00
|
|
|
raise Exception("Failed to execute command:\n%s", repr(cmd)[1:-1])
|
2013-01-04 02:09:11 +01:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
######################################################################
|
|
|
|
# Import and run buildout
|
|
|
|
|
|
|
|
ws.add_entry(tmpeggs)
|
2013-01-04 02:09:11 +01:00
|
|
|
ws.require(requirement)
|
|
|
|
import zc.buildout.buildout
|
2013-01-22 23:23:06 +01:00
|
|
|
|
2020-10-06 04:04:22 +02:00
|
|
|
if not [a for a in args if "=" not in a]:
|
|
|
|
args.append("bootstrap")
|
2013-01-22 23:23:06 +01:00
|
|
|
|
2013-03-20 22:47:39 +01:00
|
|
|
# if -c was provided, we push it back into args for buildout' main function
|
2013-01-22 23:23:06 +01:00
|
|
|
if options.config_file is not None:
|
2020-10-06 04:04:22 +02:00
|
|
|
args[0:0] = ["-c", options.config_file]
|
2013-01-22 23:23:06 +01:00
|
|
|
|
|
|
|
zc.buildout.buildout.main(args)
|
2013-03-20 22:47:39 +01:00
|
|
|
shutil.rmtree(tmpeggs)
|