0
|
1 |
import sys |
|
2 |
import os |
|
3 |
import os.path |
|
4 |
import shutil |
|
5 |
import tarfile |
|
6 |
import zipfile |
|
7 |
import urllib |
|
8 |
import platform |
|
9 |
import patch |
|
10 |
import struct |
|
11 |
import glob |
|
12 |
import re |
|
13 |
|
|
14 |
join = os.path.join |
|
15 |
system_str = platform.system() |
|
16 |
|
|
17 |
URLS = { |
|
18 |
#'': {'setup': '', 'url':'', 'local':''}, |
1
|
19 |
'DISTRIBUTE': {'setup': 'distribute', 'url':'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.31.tar.gz', 'local':"distribute-0.6.31.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
0
|
20 |
'DJANGO': {'setup': 'django', 'url': 'http://www.djangoproject.com/download/1.4.2/tarball/', 'local':"Django-1.4.2.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
21 |
'DJANGO-EXTENSIONS': { 'setup': 'django-extensions', 'url':'https://github.com/django-extensions/django-extensions/tarball/0.8', 'local':"django-extensions-0.8.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
22 |
'DJANGO-REGISTRATION': { 'setup': 'django-registration', 'url':'https://bitbucket.org/ubernostrum/django-registration/get/v0.8.tar.gz', 'local':"django-registration-0.8.tar.gz", 'install': {'method': 'easy_install', 'option_str': '-Z', 'dict_extra_env': None}}, |
|
23 |
'DJANGO-TAGGING': { 'setup': 'django-tagging', 'url':'http://django-tagging.googlecode.com/files/django-tagging-0.3.1.tar.gz', 'local':"django-tagging-0.3.1.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
24 |
'OAUTH2': { 'setup': 'python-oauth2', 'url':"https://github.com/simplegeo/python-oauth2/tarball/hudson-python-oauth2-211", 'local':"oauth2-1.5.211.tar.gz", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
25 |
'HTTPLIB2': { 'setup': 'python-httplib2', 'url':'http://code.google.com/p/httplib2/downloads/detail?name=httplib2-0.7.4.tar.gz&can=2&q=', 'local':"httplib2-0.7.4.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
26 |
'DJANGO-OAUTH-PLUS': { 'setup': 'django-oauth-plus', 'url':'http://pypi.python.org/packages/source/d/django-oauth-plus/django-oauth-plus-2.0.tar.gz', 'local':"django-oauth-plus-2.0.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
27 |
'OPENID': {'setup':'openid', 'url':'http://pypi.python.org/packages/source/p/python-openid/python-openid-2.2.5.tar.gz', 'local':"python-openid-2.2.5.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
28 |
'DJANGO_OPENID_CONSUMER': {'setup':'django_openid_consumer', 'url':'http://pypi.python.org/packages/source/d/django-openid-consumer/django-openid-consumer-0.1.1.tar.gz', 'local':"django-openid-consumer-0.1.1.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
29 |
'SOCIAL_AUTH': {'setup':'social_auth', 'url':'https://github.com/omab/django-social-auth/tarball/v0.3.10', 'local':"omab-django-social-auth-v0.3.10-modified.tar.gz", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
30 |
'SOUTH': { 'setup': 'South', 'url':'http://www.aeracode.org/releases/south/south-0.7.5.tar.gz', 'local':"south-0.7.5.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
31 |
'DJANGO_GUARDIAN' : { 'setup': 'django-guardian', 'url':'http://pypi.python.org/packages/source/d/django-guardian/django-guardian-1.0.3.tar.gz', 'local':"django-guardian-1.0.3.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
32 |
'SORL_THUMBNAIL' : { 'setup': 'sorl-thumbnail', 'url':'http://pypi.python.org/packages/source/s/sorl-thumbnail/sorl-thumbnail-11.12.tar.gz', 'local':"sorl-thumbnail-v10.12.1.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
33 |
'LIBJPEG': {'setup': None, 'url':'jpegsrc.v8d.tar.gz', 'local':'jpegsrc.v8d.tar.gz', 'install': {'method': 'install_libjpeg', 'option_str': None, 'dict_extra_env': None}}, |
|
34 |
'ZLIB': {'setup': None, 'url':'zlib-1.2.7.tar.gz', 'local':'zlib-1.2.7.tar.gz', 'install': {'method': 'install_zlib', 'option_str': None, 'dict_extra_env': None}}, |
|
35 |
'PYCRYPTO': {'setup': 'pycrypto', 'url':'https://ftp.dlitz.net/pub/dlitz/crypto/pycrypto/pycrypto-2.6.tar.gz', 'local':'pycrypto-2.6.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
2
|
36 |
'PARAMIKO': {'setup': 'paramiko', 'url':'https://github.com/paramiko/paramiko/archive/v1.9.0.tar.gz', 'local':'paramiko-1.9.0.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
1
|
37 |
'FABRIC': {'setup': 'fabric', 'url':'https://github.com/fabric/fabric/tarball/1.5.1', 'local':'fabric-1.5.1.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
0
|
38 |
'MERCURIAL': {'setup': 'mercurial', 'url':'http://mercurial.selenic.com/release/mercurial-2.2.3.tar.gz', 'local':'mercurial-2.2.3.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
39 |
'HAYSTACK': {'setup': 'django-haystack', 'url': 'https://github.com/toastdriven/django-haystack/tarball/master', 'local': 'django-haystack-v2.0.0.tar.gz', 'install':{'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
40 |
'REQUESTS': {'setup': 'requests', 'url':'https://github.com/kennethreitz/requests/tarball/v0.13.3', 'local':'requests-v0.13.3.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
41 |
'PYELASTICSEARCH': {'setup': 'pyelasticsearch', 'url':'https://github.com/toastdriven/pyelasticsearch/tarball/master', 'local':'pyelasticsearch.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
42 |
'WHOOSH': {'setup': 'whoosh', 'url':'https://bitbucket.org/mchaput/whoosh/get/tip.tar.gz', 'local':'whoosh-2.5.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
43 |
'SETUPTOOLS_HG' : {'setup':'setuptools_hg', 'url':'http://pypi.python.org/packages/source/s/setuptools_hg/setuptools_hg-0.4.tar.gz', 'local': 'setuptools_hg-0.4.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
44 |
'WSGIREF' : {'setup':'wsgiref', 'url':'http://pypi.python.org/packages/source/w/wsgiref/wsgiref-0.1.2.zip', 'local': 'wsgiref-0.1.2.zip', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
45 |
# dependencies for Tastypie : mimeparse>=0.1.3, python-dateutil>=2.1, lxml, PyYAML (not necessary but we never know), python-digest |
|
46 |
'MIMEPARSE' : {'setup':'mimeparse', 'url':'http://pypi.python.org/packages/source/m/mimeparse/mimeparse-0.1.3.tar.gz', 'local': 'mimeparse-0.1.3.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
47 |
'SIX' : {'setup':'six', 'url':'http://pypi.python.org/packages/source/s/six/six-1.2.0.tar.gz', 'local': 'six-1.2.0.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
48 |
'PYTHON-DATEUTIL' : {'setup':'python-dateutil', 'url':'http://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.1.tar.gz', 'local': 'python-dateutil-2.1.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
49 |
'PYYAML' : {'setup':'pyyaml', 'url':'http://pypi.python.org/packages/source/P/PyYAML/PyYAML-3.10.tar.gz', 'local': 'PyYAML-3.10.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
50 |
'PYTHON-DIGEST' : {'setup':'python-digest', 'url':'http://pypi.python.org/packages/source/p/python-digest/python-digest-1.7.tar.gz', 'local': 'python-digest-1.7.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
51 |
'DJANGO-TASTYPIE' : {'setup':'django-tastypie', 'url':'django-tastypie-0.9.11-modified.tar.gz', 'local': 'django-tastypie-0.9.11-modified.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
52 |
} |
|
53 |
|
|
54 |
if system_str == 'Windows': |
|
55 |
|
|
56 |
size = 8 * struct.calcsize("P") |
|
57 |
if size==32: |
|
58 |
mysqlres = "MySQL-python-1.2.3.win32-py2.7.exe" |
|
59 |
else: |
|
60 |
mysqlres = "MySQL-python-1.2.3.win-amd64-py2.7.exe" |
|
61 |
|
|
62 |
URLS.update({ |
|
63 |
'PSYCOPG2': {'setup': 'psycopg2','url': 'psycopg2-2.4.5.win32-py2.7-pg9.1.3-release.zip', 'local':"psycopg2-2.4.5.win32-py2.7-pg9.1.3-release.zip", 'install': {'method': 'install_psycopg2', 'option_str': None, 'dict_extra_env': None}}, |
|
64 |
'PIL': {'setup': 'pil', 'url': 'http://effbot.org/media/downloads/PIL-1.1.7.win32-py2.7.exe', 'local':"PIL-1.1.7.win32-py2.7.exe", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
65 |
'LXML': {'setup': 'lxml', 'url': 'http://pypi.python.org/packages/2.7/l/lxml/lxml-2.3-py2.7-win32.egg', 'local':"lxml-2.3-py2.7-win32.egg", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
66 |
'MYSQL': { 'setup': 'mysql-python', 'url': mysqlres, 'local': mysqlres, 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
67 |
}) |
|
68 |
else: |
|
69 |
if system_str == "Darwin": |
|
70 |
lxml_options = {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.8.0', 'LIBXSLT_VERSION': '1.1.26', 'LIBICONV_VERSION': '1.14'} |
|
71 |
lxml_method = 'easy_install' |
|
72 |
mysql_method = 'install_mysql' |
|
73 |
else: |
|
74 |
lxml_options = None |
|
75 |
lxml_method = 'pip' |
|
76 |
mysql_method = 'pip' |
|
77 |
|
|
78 |
URLS.update({ |
|
79 |
'PSYCOPG2': {'setup': 'psycopg2','url': 'http://www.psycopg.org/psycopg/tarballs/PSYCOPG-2-4/psycopg2-2.4.5.tar.gz', 'local':"psycopg2-2.4.5.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
80 |
'PIL': {'setup': 'pil', 'url': 'http://effbot.org/downloads/Imaging-1.1.7.tar.gz', 'local':"Imaging-1.1.7.tar.gz", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
81 |
'LXML': {'setup': 'lxml', 'url':"lxml-2.3.4.tar.bz2", 'local':"lxml-2.3.4.tar.bz2", 'install': {'method': lxml_method, 'option_str': None, 'dict_extra_env': lxml_options}}, |
13
|
82 |
#'MYSQL': { 'setup': 'mysql-python', 'url': 'http://sourceforge.net/projects/mysql-python/files/mysql-python/1.2.3/MySQL-python-1.2.3.tar.gz/download', 'local':"MySQL-python-1.2.3.tar.gz", 'install': {'method': mysql_method, 'option_str': None, 'dict_extra_env': None}}, |
0
|
83 |
}) |
|
84 |
|
|
85 |
|
|
86 |
class ResourcesEnv(object): |
|
87 |
|
|
88 |
def __init__(self, src_base, urls, normal_installs): |
|
89 |
self.src_base = src_base |
|
90 |
self.URLS = {} |
|
91 |
self.__init_url(urls) |
|
92 |
self.NORMAL_INSTALL = normal_installs |
|
93 |
|
|
94 |
def get_src_base_path(self, fpath): |
|
95 |
return os.path.abspath(os.path.join(self.src_base, fpath)).replace("\\","/") |
|
96 |
|
|
97 |
def __add_package_def(self, key, dict): |
|
98 |
self.URLS[key] = dict |
|
99 |
|
|
100 |
def __init_url(self, urls): |
|
101 |
for key, url_dict in urls.items(): |
|
102 |
url_dict_copy = url_dict.copy() |
|
103 |
if not url_dict['url'].startswith("http://"): |
|
104 |
url_dict_copy['url'] = self.get_src_base_path(url_dict['url']) |
|
105 |
url_dict_copy['local'] = self.get_src_base_path(url_dict['local']) |
|
106 |
|
|
107 |
self.__add_package_def(key, url_dict_copy ) |
|
108 |
|
|
109 |
def ensure_dir(dir, logger): |
|
110 |
if not os.path.exists(dir): |
|
111 |
logger.notify('Creating directory %s' % dir) |
|
112 |
os.makedirs(dir) |
|
113 |
|
|
114 |
def extend_parser(parser): |
|
115 |
parser.add_option( |
|
116 |
'--index-url', |
|
117 |
metavar='INDEX_URL', |
|
118 |
dest='index_url', |
|
119 |
default='http://pypi.python.org/simple/', |
|
120 |
help='base URL of Python Package Index') |
|
121 |
parser.add_option( |
|
122 |
'--type-install', |
|
123 |
metavar='type_install', |
|
124 |
dest='type_install', |
|
125 |
help='type install : local, url, setup - default : local') |
|
126 |
parser.add_option( |
|
127 |
'--ignore-packages', |
|
128 |
metavar='ignore_packages', |
|
129 |
dest='ignore_packages', |
|
130 |
default=None, |
|
131 |
help='list of comma separated keys for package to ignore') |
|
132 |
|
|
133 |
def install_psycopg2(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop): |
|
134 |
psycopg2_src = os.path.join(src_dir,"psycopg2.zip") |
|
135 |
shutil.copy(res_env.URLS['PSYCOPG2'][res_source_key], psycopg2_src) |
|
136 |
#extract psycopg2 |
|
137 |
zf = zipfile.ZipFile(psycopg2_src) |
|
138 |
psycopg2_base_path = os.path.join(src_dir,"psycopg2") |
|
139 |
zf.extractall(psycopg2_base_path) |
|
140 |
zf.close() |
|
141 |
|
|
142 |
psycopg2_src_path = os.path.join(psycopg2_base_path, os.listdir(psycopg2_base_path)[0]) |
|
143 |
shutil.copytree(os.path.join(psycopg2_src_path, 'psycopg2'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages', 'psycopg2'))) |
|
144 |
shutil.copy(os.path.join(psycopg2_src_path, 'psycopg2-2.4.5-py2.7.egg-info'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages', 'site-packages'))) |
|
145 |
|
|
146 |
|
|
147 |
def install_mysql(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop): |
|
148 |
|
|
149 |
args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS['MYSQL'][res_source_key]] |
|
150 |
if option_str : |
|
151 |
args.insert(4,option_str) |
|
152 |
call_subprocess(args, |
|
153 |
cwd=os.path.abspath(tmp_dir), |
|
154 |
filter_stdout=filter_python_develop, |
|
155 |
show_stdout=True, |
|
156 |
extra_env=extra_env) |
|
157 |
|
|
158 |
mysqlconfig_output = [] |
|
159 |
|
|
160 |
call_subprocess(['mysql_config', '--libmysqld-libs'], |
|
161 |
cwd=os.path.abspath(tmp_dir), |
|
162 |
filter_stdout=lambda line: mysqlconfig_output.append(line), |
|
163 |
show_stdout=True) |
|
164 |
|
|
165 |
mysqlconfig_output = "".join(mysqlconfig_output) |
|
166 |
m = re.search("\-L[\'\"]?([\w\/]+)[\'\"]?", mysqlconfig_output) |
|
167 |
if m: |
|
168 |
repdylibpath = m.group(1) |
|
169 |
else: |
|
170 |
repdylibpath = '/usr/local/mysql/lib' |
|
171 |
|
|
172 |
dyliblist = glob.glob(repdylibpath+"/libmysqlclient.*.dylib") |
|
173 |
def key_func(s): |
|
174 |
m = re.match(repdylibpath+"/libmysqlclient\.([\d]+)\.dylib", s) |
|
175 |
if m: |
|
176 |
return int(m.group(1)) |
|
177 |
else: |
|
178 |
return sys.maxint |
|
179 |
dyliblist.sort(key=key_func) |
|
180 |
|
|
181 |
if dyliblist: |
|
182 |
dylibpath = dyliblist[0] |
|
183 |
else: |
|
184 |
dylibpath = '/usr/local/mysql/lib/libmysqlclient.18.dylib' |
|
185 |
|
|
186 |
dylibname = os.path.basename(dylibpath) |
|
187 |
sopath = os.path.join(os.path.abspath(lib_dir), 'site-packages', '_mysql.so') |
|
188 |
|
|
189 |
call_subprocess(['install_name_tool', '-change', dylibname, dylibpath, sopath], |
|
190 |
cwd=os.path.abspath(tmp_dir), |
|
191 |
filter_stdout=filter_python_develop, |
|
192 |
show_stdout=True) |
|
193 |
|
|
194 |
|
|
195 |
def gen_install_comp_lib(lib_name, lib_key, configure_options=[]): |
|
196 |
|
|
197 |
def install_lib(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop): |
|
198 |
lib_src = os.path.join(src_dir,lib_name+".tar.gz") |
|
199 |
shutil.copy(res_env.URLS[lib_key][res_source_key], lib_src) |
|
200 |
tf = tarfile.open(lib_src,'r:gz') |
|
201 |
lib_base_path = os.path.join(src_dir, lib_name) |
|
202 |
logger.notify("Extract %s to %s " % (lib_name,lib_base_path)) |
|
203 |
tf.extractall(lib_base_path) |
|
204 |
tf.close() |
|
205 |
|
|
206 |
lib_src_path = os.path.join(lib_base_path, os.listdir(lib_base_path)[0]) |
|
207 |
|
|
208 |
logger.notify(libname + " configure") |
|
209 |
call_subprocess(['configure', '--prefix='+os.path.abspath(home_dir)] + configure_options, |
|
210 |
cwd=os.path.abspath(lib_src_path), |
|
211 |
filter_stdout=filter_python_develop, |
|
212 |
show_stdout=True) |
|
213 |
|
|
214 |
logger.notify(libname + " make") |
|
215 |
call_subprocess(['make'], |
|
216 |
cwd=os.path.abspath(lib_src_path), |
|
217 |
filter_stdout=filter_python_develop, |
|
218 |
show_stdout=True) |
|
219 |
|
|
220 |
logger.notify(libname + "make install") |
|
221 |
call_subprocess(['make', 'install'], |
|
222 |
cwd=os.path.abspath(lib_src_path), |
|
223 |
filter_stdout=filter_python_develop, |
|
224 |
show_stdout=True) |
|
225 |
return install_lib |
|
226 |
|
|
227 |
install_libjpeg = gen_install_comp_lib("libjpeg", "LIBJPEG", ['--enable-shared']) |
|
228 |
install_zlib = gen_install_comp_lib("zlib", "ZLIB", []) |
|
229 |
|
|
230 |
|
|
231 |
|
|
232 |
|
|
233 |
|
|
234 |
def lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, normal_installs, options_to_add=None, urls= None): |
|
235 |
|
|
236 |
all_urls = URLS.copy() |
|
237 |
if urls is not None: |
|
238 |
all_urls.update(urls) |
|
239 |
|
|
240 |
res_env = ResourcesEnv(src_base, all_urls, normal_installs) |
|
241 |
|
|
242 |
def filter_python_develop(line): |
|
243 |
if not line.strip(): |
|
244 |
return Logger.DEBUG |
|
245 |
for prefix in ['Searching for', 'Reading ', 'Best match: ', 'Processing ', |
|
246 |
'Moving ', 'Adding ', 'running ', 'writing ', 'Creating ', |
|
247 |
'creating ', 'Copying ']: |
|
248 |
if line.startswith(prefix): |
|
249 |
return Logger.DEBUG |
|
250 |
return Logger.NOTIFY |
|
251 |
|
|
252 |
|
|
253 |
def normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess): |
|
254 |
logger.notify("Install %s from %s with %s" % (key,res_env.URLS[key][res_source_key],method)) |
|
255 |
if method == 'pip': |
|
256 |
if sys.platform == 'win32': |
|
257 |
args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'pip')), 'install', res_env.URLS[key][res_source_key]] |
|
258 |
else: |
|
259 |
args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS[key][res_source_key]] |
|
260 |
if option_str : |
|
261 |
args.insert(4,option_str) |
|
262 |
call_subprocess(args, |
|
263 |
cwd=os.path.abspath(tmp_dir), |
|
264 |
filter_stdout=filter_python_develop, |
|
265 |
show_stdout=True, |
|
266 |
extra_env=extra_env) |
|
267 |
else: |
|
268 |
if sys.platform == 'win32': |
|
269 |
args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'easy_install')), res_env.URLS[key][res_source_key]] |
|
270 |
else: |
|
271 |
args = [os.path.abspath(os.path.join(home_dir, 'bin', 'easy_install')), res_env.URLS[key][res_source_key]] |
|
272 |
if option_str : |
|
273 |
args.insert(1,option_str) |
|
274 |
call_subprocess(args, |
|
275 |
cwd=os.path.abspath(tmp_dir), |
|
276 |
filter_stdout=filter_python_develop, |
|
277 |
show_stdout=True, |
|
278 |
extra_env=extra_env) |
|
279 |
|
|
280 |
|
|
281 |
def after_install(options, home_dir): |
|
282 |
|
|
283 |
global logger |
|
284 |
|
|
285 |
verbosity = options.verbose - options.quiet |
|
286 |
logger = Logger([(Logger.level_for_integer(2-verbosity), sys.stdout)]) |
|
287 |
|
|
288 |
|
|
289 |
home_dir, lib_dir, inc_dir, bin_dir = path_locations(home_dir) |
|
290 |
base_dir = os.path.dirname(home_dir) |
|
291 |
src_dir = os.path.join(home_dir, 'src') |
|
292 |
tmp_dir = os.path.join(home_dir, 'tmp') |
|
293 |
ensure_dir(src_dir, logger) |
|
294 |
ensure_dir(tmp_dir, logger) |
|
295 |
system_str = platform.system() |
|
296 |
|
|
297 |
res_source_key = getattr(options, 'type_install') if hasattr(options, 'type_install') else 'local' #.get('type_install', 'local') |
|
298 |
if res_source_key is None: |
|
299 |
res_source_key = local |
|
300 |
|
|
301 |
ignore_packages = [] |
|
302 |
|
|
303 |
if system_str == 'Windows': |
|
304 |
default_install_options = {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None} |
|
305 |
else: |
|
306 |
default_install_options = {'method': 'pip', 'option_str': None, 'dict_extra_env': None} |
|
307 |
|
|
308 |
if options.ignore_packages : |
|
309 |
ignore_packages = options.ignore_packages.split(",") |
|
310 |
|
|
311 |
logger.indent += 2 |
|
312 |
try: |
|
313 |
for key in res_env.NORMAL_INSTALL: |
|
314 |
if key not in res_env.URLS: |
|
315 |
logger.notify("%s not found in def : passing" % (key,)) |
|
316 |
install_options = res_env.URLS[key].get('install', None) |
|
317 |
if install_options is None: |
|
318 |
install_options = default_install_options |
|
319 |
method = install_options.get('method', default_install_options['method']) |
|
320 |
option_str = install_options.get('option_str', default_install_options['option_str']) |
|
321 |
extra_env = install_options.get('dict_extra_env', default_install_options['dict_extra_env']) |
|
322 |
#isinstance(lst, (list, tuple)) |
|
323 |
if key not in ignore_packages: |
|
324 |
if callable(method): |
|
325 |
method(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop) |
|
326 |
elif method in globals() and callable(globals()[method]) and method not in ['pip', 'easy_install']: |
|
327 |
globals()[method](option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop) |
|
328 |
else: |
|
329 |
normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess) |
|
330 |
|
|
331 |
logger.notify("Clear source dir") |
|
332 |
shutil.rmtree(src_dir) |
|
333 |
|
|
334 |
finally: |
|
335 |
logger.indent -= 2 |
|
336 |
script_dir = join(base_dir, bin_dir) |
|
337 |
logger.notify('Run "%s Package" to install new packages that provide builds' |
|
338 |
% join(script_dir, 'easy_install')) |
|
339 |
|
|
340 |
def adjust_options(options, args): |
|
341 |
if not options_to_add: |
|
342 |
pass |
|
343 |
for opt in options_to_add: |
|
344 |
test_opt = opt.split('=',1)[0] |
|
345 |
if not hasattr(options,test_opt) or getattr(options, test_opt) is None: |
|
346 |
setattr(options, test_opt,opt.split('=',1)[1] if "=" in opt else True) |
|
347 |
|
|
348 |
return adjust_options, extend_parser, after_install |