annotate distribute_setup.py @ 39:a3f01c1ff7b4

installtion: install script first draft
author Goffi <goffi@goffi.org>
date Tue, 25 Jan 2011 16:59:18 +0100
parents
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
39
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
1 #!python
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
2 """Bootstrap distribute installation
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
3
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
4 If you want to use setuptools in your package's setup.py, just include this
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
5 file in the same directory with it, and add this to the top of your setup.py::
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
6
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
7 from distribute_setup import use_setuptools
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
8 use_setuptools()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
9
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
10 If you want to require a specific version of setuptools, set a download
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
11 mirror, or use an alternate download directory, you can do so by supplying
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
12 the appropriate options to ``use_setuptools()``.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
13
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
14 This file can also be run as a script to install or upgrade setuptools.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
15 """
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
16 import os
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
17 import sys
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
18 import time
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
19 import fnmatch
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
20 import tempfile
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
21 import tarfile
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
22 from distutils import log
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
23
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
24 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
25 from site import USER_SITE
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
26 except ImportError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
27 USER_SITE = None
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
28
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
29 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
30 import subprocess
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
31
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
32 def _python_cmd(*args):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
33 args = (sys.executable,) + args
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
34 return subprocess.call(args) == 0
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
35
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
36 except ImportError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
37 # will be used for python 2.3
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
38 def _python_cmd(*args):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
39 args = (sys.executable,) + args
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
40 # quoting arguments if windows
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
41 if sys.platform == 'win32':
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
42 def quote(arg):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
43 if ' ' in arg:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
44 return '"%s"' % arg
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
45 return arg
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
46 args = [quote(arg) for arg in args]
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
47 return os.spawnl(os.P_WAIT, sys.executable, *args) == 0
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
48
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
49 DEFAULT_VERSION = "0.6.14"
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
50 DEFAULT_URL = "http://pypi.python.org/packages/source/d/distribute/"
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
51 SETUPTOOLS_FAKED_VERSION = "0.6c11"
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
52
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
53 SETUPTOOLS_PKG_INFO = """\
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
54 Metadata-Version: 1.0
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
55 Name: setuptools
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
56 Version: %s
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
57 Summary: xxxx
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
58 Home-page: xxx
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
59 Author: xxx
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
60 Author-email: xxx
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
61 License: xxx
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
62 Description: xxx
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
63 """ % SETUPTOOLS_FAKED_VERSION
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
64
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
65
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
66 def _install(tarball):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
67 # extracting the tarball
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
68 tmpdir = tempfile.mkdtemp()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
69 log.warn('Extracting in %s', tmpdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
70 old_wd = os.getcwd()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
71 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
72 os.chdir(tmpdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
73 tar = tarfile.open(tarball)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
74 _extractall(tar)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
75 tar.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
76
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
77 # going in the directory
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
78 subdir = os.path.join(tmpdir, os.listdir(tmpdir)[0])
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
79 os.chdir(subdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
80 log.warn('Now working in %s', subdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
81
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
82 # installing
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
83 log.warn('Installing Distribute')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
84 if not _python_cmd('setup.py', 'install'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
85 log.warn('Something went wrong during the installation.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
86 log.warn('See the error message above.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
87 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
88 os.chdir(old_wd)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
89
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
90
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
91 def _build_egg(egg, tarball, to_dir):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
92 # extracting the tarball
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
93 tmpdir = tempfile.mkdtemp()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
94 log.warn('Extracting in %s', tmpdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
95 old_wd = os.getcwd()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
96 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
97 os.chdir(tmpdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
98 tar = tarfile.open(tarball)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
99 _extractall(tar)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
100 tar.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
101
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
102 # going in the directory
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
103 subdir = os.path.join(tmpdir, os.listdir(tmpdir)[0])
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
104 os.chdir(subdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
105 log.warn('Now working in %s', subdir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
106
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
107 # building an egg
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
108 log.warn('Building a Distribute egg in %s', to_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
109 _python_cmd('setup.py', '-q', 'bdist_egg', '--dist-dir', to_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
110
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
111 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
112 os.chdir(old_wd)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
113 # returning the result
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
114 log.warn(egg)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
115 if not os.path.exists(egg):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
116 raise IOError('Could not build the egg.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
117
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
118
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
119 def _do_download(version, download_base, to_dir, download_delay):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
120 egg = os.path.join(to_dir, 'distribute-%s-py%d.%d.egg'
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
121 % (version, sys.version_info[0], sys.version_info[1]))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
122 if not os.path.exists(egg):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
123 tarball = download_setuptools(version, download_base,
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
124 to_dir, download_delay)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
125 _build_egg(egg, tarball, to_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
126 sys.path.insert(0, egg)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
127 import setuptools
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
128 setuptools.bootstrap_install_from = egg
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
129
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
130
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
131 def use_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL,
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
132 to_dir=os.curdir, download_delay=15, no_fake=True):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
133 # making sure we use the absolute path
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
134 to_dir = os.path.abspath(to_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
135 was_imported = 'pkg_resources' in sys.modules or \
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
136 'setuptools' in sys.modules
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
137 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
138 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
139 import pkg_resources
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
140 if not hasattr(pkg_resources, '_distribute'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
141 if not no_fake:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
142 _fake_setuptools()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
143 raise ImportError
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
144 except ImportError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
145 return _do_download(version, download_base, to_dir, download_delay)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
146 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
147 pkg_resources.require("distribute>="+version)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
148 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
149 except pkg_resources.VersionConflict:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
150 e = sys.exc_info()[1]
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
151 if was_imported:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
152 sys.stderr.write(
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
153 "The required version of distribute (>=%s) is not available,\n"
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
154 "and can't be installed while this script is running. Please\n"
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
155 "install a more recent version first, using\n"
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
156 "'easy_install -U distribute'."
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
157 "\n\n(Currently using %r)\n" % (version, e.args[0]))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
158 sys.exit(2)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
159 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
160 del pkg_resources, sys.modules['pkg_resources'] # reload ok
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
161 return _do_download(version, download_base, to_dir,
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
162 download_delay)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
163 except pkg_resources.DistributionNotFound:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
164 return _do_download(version, download_base, to_dir,
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
165 download_delay)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
166 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
167 if not no_fake:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
168 _create_fake_setuptools_pkg_info(to_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
169
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
170 def download_setuptools(version=DEFAULT_VERSION, download_base=DEFAULT_URL,
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
171 to_dir=os.curdir, delay=15):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
172 """Download distribute from a specified location and return its filename
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
173
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
174 `version` should be a valid distribute version number that is available
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
175 as an egg for download under the `download_base` URL (which should end
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
176 with a '/'). `to_dir` is the directory where the egg will be downloaded.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
177 `delay` is the number of seconds to pause before an actual download
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
178 attempt.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
179 """
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
180 # making sure we use the absolute path
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
181 to_dir = os.path.abspath(to_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
182 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
183 from urllib.request import urlopen
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
184 except ImportError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
185 from urllib2 import urlopen
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
186 tgz_name = "distribute-%s.tar.gz" % version
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
187 url = download_base + tgz_name
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
188 saveto = os.path.join(to_dir, tgz_name)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
189 src = dst = None
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
190 if not os.path.exists(saveto): # Avoid repeated downloads
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
191 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
192 log.warn("Downloading %s", url)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
193 src = urlopen(url)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
194 # Read/write all in one block, so we don't create a corrupt file
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
195 # if the download is interrupted.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
196 data = src.read()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
197 dst = open(saveto, "wb")
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
198 dst.write(data)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
199 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
200 if src:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
201 src.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
202 if dst:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
203 dst.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
204 return os.path.realpath(saveto)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
205
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
206 def _no_sandbox(function):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
207 def __no_sandbox(*args, **kw):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
208 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
209 from setuptools.sandbox import DirectorySandbox
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
210 if not hasattr(DirectorySandbox, '_old'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
211 def violation(*args):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
212 pass
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
213 DirectorySandbox._old = DirectorySandbox._violation
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
214 DirectorySandbox._violation = violation
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
215 patched = True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
216 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
217 patched = False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
218 except ImportError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
219 patched = False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
220
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
221 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
222 return function(*args, **kw)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
223 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
224 if patched:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
225 DirectorySandbox._violation = DirectorySandbox._old
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
226 del DirectorySandbox._old
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
227
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
228 return __no_sandbox
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
229
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
230 def _patch_file(path, content):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
231 """Will backup the file then patch it"""
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
232 existing_content = open(path).read()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
233 if existing_content == content:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
234 # already patched
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
235 log.warn('Already patched.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
236 return False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
237 log.warn('Patching...')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
238 _rename_path(path)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
239 f = open(path, 'w')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
240 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
241 f.write(content)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
242 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
243 f.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
244 return True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
245
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
246 _patch_file = _no_sandbox(_patch_file)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
247
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
248 def _same_content(path, content):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
249 return open(path).read() == content
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
250
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
251 def _rename_path(path):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
252 new_name = path + '.OLD.%s' % time.time()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
253 log.warn('Renaming %s into %s', path, new_name)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
254 os.rename(path, new_name)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
255 return new_name
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
256
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
257 def _remove_flat_installation(placeholder):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
258 if not os.path.isdir(placeholder):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
259 log.warn('Unkown installation at %s', placeholder)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
260 return False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
261 found = False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
262 for file in os.listdir(placeholder):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
263 if fnmatch.fnmatch(file, 'setuptools*.egg-info'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
264 found = True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
265 break
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
266 if not found:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
267 log.warn('Could not locate setuptools*.egg-info')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
268 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
269
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
270 log.warn('Removing elements out of the way...')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
271 pkg_info = os.path.join(placeholder, file)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
272 if os.path.isdir(pkg_info):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
273 patched = _patch_egg_dir(pkg_info)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
274 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
275 patched = _patch_file(pkg_info, SETUPTOOLS_PKG_INFO)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
276
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
277 if not patched:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
278 log.warn('%s already patched.', pkg_info)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
279 return False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
280 # now let's move the files out of the way
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
281 for element in ('setuptools', 'pkg_resources.py', 'site.py'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
282 element = os.path.join(placeholder, element)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
283 if os.path.exists(element):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
284 _rename_path(element)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
285 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
286 log.warn('Could not find the %s element of the '
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
287 'Setuptools distribution', element)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
288 return True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
289
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
290 _remove_flat_installation = _no_sandbox(_remove_flat_installation)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
291
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
292 def _after_install(dist):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
293 log.warn('After install bootstrap.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
294 placeholder = dist.get_command_obj('install').install_purelib
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
295 _create_fake_setuptools_pkg_info(placeholder)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
296
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
297 def _create_fake_setuptools_pkg_info(placeholder):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
298 if not placeholder or not os.path.exists(placeholder):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
299 log.warn('Could not find the install location')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
300 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
301 pyver = '%s.%s' % (sys.version_info[0], sys.version_info[1])
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
302 setuptools_file = 'setuptools-%s-py%s.egg-info' % \
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
303 (SETUPTOOLS_FAKED_VERSION, pyver)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
304 pkg_info = os.path.join(placeholder, setuptools_file)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
305 if os.path.exists(pkg_info):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
306 log.warn('%s already exists', pkg_info)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
307 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
308
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
309 log.warn('Creating %s', pkg_info)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
310 f = open(pkg_info, 'w')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
311 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
312 f.write(SETUPTOOLS_PKG_INFO)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
313 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
314 f.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
315
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
316 pth_file = os.path.join(placeholder, 'setuptools.pth')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
317 log.warn('Creating %s', pth_file)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
318 f = open(pth_file, 'w')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
319 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
320 f.write(os.path.join(os.curdir, setuptools_file))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
321 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
322 f.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
323
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
324 _create_fake_setuptools_pkg_info = _no_sandbox(_create_fake_setuptools_pkg_info)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
325
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
326 def _patch_egg_dir(path):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
327 # let's check if it's already patched
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
328 pkg_info = os.path.join(path, 'EGG-INFO', 'PKG-INFO')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
329 if os.path.exists(pkg_info):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
330 if _same_content(pkg_info, SETUPTOOLS_PKG_INFO):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
331 log.warn('%s already patched.', pkg_info)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
332 return False
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
333 _rename_path(path)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
334 os.mkdir(path)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
335 os.mkdir(os.path.join(path, 'EGG-INFO'))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
336 pkg_info = os.path.join(path, 'EGG-INFO', 'PKG-INFO')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
337 f = open(pkg_info, 'w')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
338 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
339 f.write(SETUPTOOLS_PKG_INFO)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
340 finally:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
341 f.close()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
342 return True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
343
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
344 _patch_egg_dir = _no_sandbox(_patch_egg_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
345
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
346 def _before_install():
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
347 log.warn('Before install bootstrap.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
348 _fake_setuptools()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
349
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
350
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
351 def _under_prefix(location):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
352 if 'install' not in sys.argv:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
353 return True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
354 args = sys.argv[sys.argv.index('install')+1:]
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
355 for index, arg in enumerate(args):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
356 for option in ('--root', '--prefix'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
357 if arg.startswith('%s=' % option):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
358 top_dir = arg.split('root=')[-1]
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
359 return location.startswith(top_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
360 elif arg == option:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
361 if len(args) > index:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
362 top_dir = args[index+1]
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
363 return location.startswith(top_dir)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
364 if arg == '--user' and USER_SITE is not None:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
365 return location.startswith(USER_SITE)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
366 return True
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
367
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
368
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
369 def _fake_setuptools():
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
370 log.warn('Scanning installed packages')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
371 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
372 import pkg_resources
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
373 except ImportError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
374 # we're cool
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
375 log.warn('Setuptools or Distribute does not seem to be installed.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
376 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
377 ws = pkg_resources.working_set
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
378 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
379 setuptools_dist = ws.find(pkg_resources.Requirement.parse('setuptools',
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
380 replacement=False))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
381 except TypeError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
382 # old distribute API
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
383 setuptools_dist = ws.find(pkg_resources.Requirement.parse('setuptools'))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
384
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
385 if setuptools_dist is None:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
386 log.warn('No setuptools distribution found')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
387 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
388 # detecting if it was already faked
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
389 setuptools_location = setuptools_dist.location
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
390 log.warn('Setuptools installation detected at %s', setuptools_location)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
391
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
392 # if --root or --preix was provided, and if
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
393 # setuptools is not located in them, we don't patch it
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
394 if not _under_prefix(setuptools_location):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
395 log.warn('Not patching, --root or --prefix is installing Distribute'
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
396 ' in another location')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
397 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
398
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
399 # let's see if its an egg
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
400 if not setuptools_location.endswith('.egg'):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
401 log.warn('Non-egg installation')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
402 res = _remove_flat_installation(setuptools_location)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
403 if not res:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
404 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
405 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
406 log.warn('Egg installation')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
407 pkg_info = os.path.join(setuptools_location, 'EGG-INFO', 'PKG-INFO')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
408 if (os.path.exists(pkg_info) and
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
409 _same_content(pkg_info, SETUPTOOLS_PKG_INFO)):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
410 log.warn('Already patched.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
411 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
412 log.warn('Patching...')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
413 # let's create a fake egg replacing setuptools one
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
414 res = _patch_egg_dir(setuptools_location)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
415 if not res:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
416 return
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
417 log.warn('Patched done.')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
418 _relaunch()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
419
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
420
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
421 def _relaunch():
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
422 log.warn('Relaunching...')
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
423 # we have to relaunch the process
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
424 # pip marker to avoid a relaunch bug
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
425 if sys.argv[:3] == ['-c', 'install', '--single-version-externally-managed']:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
426 sys.argv[0] = 'setup.py'
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
427 args = [sys.executable] + sys.argv
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
428 sys.exit(subprocess.call(args))
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
429
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
430
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
431 def _extractall(self, path=".", members=None):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
432 """Extract all members from the archive to the current working
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
433 directory and set owner, modification time and permissions on
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
434 directories afterwards. `path' specifies a different directory
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
435 to extract to. `members' is optional and must be a subset of the
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
436 list returned by getmembers().
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
437 """
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
438 import copy
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
439 import operator
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
440 from tarfile import ExtractError
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
441 directories = []
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
442
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
443 if members is None:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
444 members = self
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
445
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
446 for tarinfo in members:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
447 if tarinfo.isdir():
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
448 # Extract directories with a safe mode.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
449 directories.append(tarinfo)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
450 tarinfo = copy.copy(tarinfo)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
451 tarinfo.mode = 448 # decimal for oct 0700
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
452 self.extract(tarinfo, path)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
453
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
454 # Reverse sort directories.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
455 if sys.version_info < (2, 4):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
456 def sorter(dir1, dir2):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
457 return cmp(dir1.name, dir2.name)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
458 directories.sort(sorter)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
459 directories.reverse()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
460 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
461 directories.sort(key=operator.attrgetter('name'), reverse=True)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
462
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
463 # Set correct owner, mtime and filemode on directories.
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
464 for tarinfo in directories:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
465 dirpath = os.path.join(path, tarinfo.name)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
466 try:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
467 self.chown(tarinfo, dirpath)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
468 self.utime(tarinfo, dirpath)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
469 self.chmod(tarinfo, dirpath)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
470 except ExtractError:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
471 e = sys.exc_info()[1]
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
472 if self.errorlevel > 1:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
473 raise
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
474 else:
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
475 self._dbg(1, "tarfile: %s" % e)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
476
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
477
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
478 def main(argv, version=DEFAULT_VERSION):
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
479 """Install or upgrade setuptools and EasyInstall"""
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
480 tarball = download_setuptools()
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
481 _install(tarball)
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
482
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
483
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
484 if __name__ == '__main__':
a3f01c1ff7b4 installtion: install script first draft
Goffi <goffi@goffi.org>
parents:
diff changeset
485 main(sys.argv[1:])