|
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':''}, |
|
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}}, |
|
20 'DJANGO': {'setup': 'django', 'url': 'https://www.djangoproject.com/download/1.5c1/tarball/', 'local':"Django-1.5c1.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/archive/1.0.2.tar.gz', 'local':"django-extensions-1.0.2.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 '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}}, |
|
24 'SORL_THUMBNAIL' : { 'setup': 'sorl-thumbnail', 'url':'https://github.com/sorl/sorl-thumbnail/archive/master.tar.gz', 'local':"sorl-thumbnail-v11.12.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
25 'LIBJPEG': {'setup': None, 'url':'jpegsrc.v8d.tar.gz', 'local':'jpegsrc.v8d.tar.gz', 'install': {'method': 'install_libjpeg', 'option_str': None, 'dict_extra_env': None}}, |
|
26 '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}}, |
|
27 '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}}, |
|
28 '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}}, |
|
29 '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}}, |
|
30 '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}}, |
|
31 '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}}, |
|
32 'REQUESTS': {'setup': 'requests', 'url':'https://github.com/kennethreitz/requests/archive/v1.1.0.tar.gz', 'local':'requests-1.1.0.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
33 'PYELASTICSEARCH': {'setup': 'pyelasticsearch', 'url':'https://github.com/rhec/pyelasticsearch/archive/0.3.tar.gz', 'local':'pyelasticsearch-0.3.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
34 '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}}, |
|
35 '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}}, |
|
36 '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}}, |
|
37 'SIMPLEJSON': {'setup': 'simplejson', 'url':'http://pypi.python.org/packages/source/s/simplejson/simplejson-2.6.2.tar.gz', 'local':"simplejson-2.6.2.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
38 # dependencies for Tastypie : mimeparse>=0.1.3, python-dateutil>=2.1, lxml, PyYAML (not necessary but we never know), python-digest |
|
39 '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}}, |
|
40 '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}}, |
|
41 '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}}, |
|
42 '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}}, |
|
43 '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}}, |
|
44 '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}}, |
|
45 } |
|
46 |
|
47 if system_str == 'Windows': |
|
48 |
|
49 URLS.update({ |
|
50 'PSYCOPG2': {'setup': 'psycopg2','url': 'psycopg2-2.4.6.win32-py2.7-pg9.2.2-release.exe', 'local':"psycopg2-2.4.6.win32-py2.7-pg9.2.2-release.exe", 'install': {'method': 'install_psycopg2', 'option_str': None, 'dict_extra_env': None}}, |
|
51 '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}}, |
|
52 }) |
|
53 else: |
|
54 URLS.update({ |
|
55 'PSYCOPG2': {'setup': 'psycopg2','url': 'http://www.psycopg.org/psycopg/tarballs/PSYCOPG-2-4/psycopg2-2.4.6.tar.gz', 'local':"psycopg2-2.4.6.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
56 '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}}, |
|
57 }) |
|
58 |
|
59 |
|
60 class ResourcesEnv(object): |
|
61 |
|
62 def __init__(self, src_base, urls, normal_installs): |
|
63 self.src_base = src_base |
|
64 self.URLS = {} |
|
65 self.__init_url(urls) |
|
66 self.NORMAL_INSTALL = normal_installs |
|
67 |
|
68 def get_src_base_path(self, fpath): |
|
69 return os.path.abspath(os.path.join(self.src_base, fpath)).replace("\\","/") |
|
70 |
|
71 def __add_package_def(self, key, dict): |
|
72 self.URLS[key] = dict |
|
73 |
|
74 def __init_url(self, urls): |
|
75 for key, url_dict in urls.items(): |
|
76 url_dict_copy = url_dict.copy() |
|
77 if not url_dict['url'].startswith("http://"): |
|
78 url_dict_copy['url'] = self.get_src_base_path(url_dict['url']) |
|
79 url_dict_copy['local'] = self.get_src_base_path(url_dict['local']) |
|
80 |
|
81 self.__add_package_def(key, url_dict_copy ) |
|
82 |
|
83 def ensure_dir(dir, logger): |
|
84 logger.notify('Check directory %s' % dir) |
|
85 if not os.path.exists(dir): |
|
86 logger.notify('Creating directory %s' % dir) |
|
87 os.makedirs(dir) |
|
88 |
|
89 def extend_parser(parser): |
|
90 parser.add_option( |
|
91 '--index-url', |
|
92 metavar='INDEX_URL', |
|
93 dest='index_url', |
|
94 default='http://pypi.python.org/simple/', |
|
95 help='base URL of Python Package Index') |
|
96 parser.add_option( |
|
97 '--type-install', |
|
98 metavar='type_install', |
|
99 dest='type_install', |
|
100 help='type install : local, url, setup - default : local') |
|
101 parser.add_option( |
|
102 '--ignore-packages', |
|
103 metavar='ignore_packages', |
|
104 dest='ignore_packages', |
|
105 default=None, |
|
106 help='list of comma separated keys for package to ignore') |
|
107 |
|
108 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): |
|
109 psycopg2_src = os.path.join(src_dir,"psycopg2.zip") |
|
110 shutil.copy(res_env.URLS['PSYCOPG2'][res_source_key], psycopg2_src) |
|
111 #extract psycopg2 |
|
112 zf = zipfile.ZipFile(psycopg2_src) |
|
113 psycopg2_base_path = os.path.join(src_dir,"psycopg2") |
|
114 zf.extractall(psycopg2_base_path) |
|
115 zf.close() |
|
116 |
|
117 psycopg2_src_path = os.path.join(psycopg2_base_path, os.listdir(psycopg2_base_path)[0]) |
|
118 shutil.copytree(os.path.join(psycopg2_src_path, 'psycopg2'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages', 'psycopg2'))) |
|
119 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'))) |
|
120 |
|
121 |
|
122 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): |
|
123 |
|
124 args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS['MYSQL'][res_source_key]] |
|
125 if option_str : |
|
126 args.insert(4,option_str) |
|
127 call_subprocess(args, |
|
128 cwd=os.path.abspath(tmp_dir), |
|
129 filter_stdout=filter_python_develop, |
|
130 show_stdout=True, |
|
131 extra_env=extra_env) |
|
132 |
|
133 mysqlconfig_output = [] |
|
134 |
|
135 call_subprocess(['mysql_config', '--libmysqld-libs'], |
|
136 cwd=os.path.abspath(tmp_dir), |
|
137 filter_stdout=lambda line: mysqlconfig_output.append(line), |
|
138 show_stdout=True) |
|
139 |
|
140 mysqlconfig_output = "".join(mysqlconfig_output) |
|
141 m = re.search("\-L[\'\"]?([\w\/]+)[\'\"]?", mysqlconfig_output) |
|
142 if m: |
|
143 repdylibpath = m.group(1) |
|
144 else: |
|
145 repdylibpath = '/usr/local/mysql/lib' |
|
146 |
|
147 dyliblist = glob.glob(repdylibpath+"/libmysqlclient.*.dylib") |
|
148 def key_func(s): |
|
149 m = re.match(repdylibpath+"/libmysqlclient\.([\d]+)\.dylib", s) |
|
150 if m: |
|
151 return int(m.group(1)) |
|
152 else: |
|
153 return sys.maxint |
|
154 dyliblist.sort(key=key_func) |
|
155 |
|
156 if dyliblist: |
|
157 dylibpath = dyliblist[0] |
|
158 else: |
|
159 dylibpath = '/usr/local/mysql/lib/libmysqlclient.18.dylib' |
|
160 |
|
161 dylibname = os.path.basename(dylibpath) |
|
162 sopath = os.path.join(os.path.abspath(lib_dir), 'site-packages', '_mysql.so') |
|
163 |
|
164 call_subprocess(['install_name_tool', '-change', dylibname, dylibpath, sopath], |
|
165 cwd=os.path.abspath(tmp_dir), |
|
166 filter_stdout=filter_python_develop, |
|
167 show_stdout=True) |
|
168 |
|
169 |
|
170 def gen_install_comp_lib(lib_name, lib_key, configure_options=[]): |
|
171 |
|
172 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): |
|
173 lib_src = os.path.join(src_dir,lib_name+".tar.gz") |
|
174 shutil.copy(res_env.URLS[lib_key][res_source_key], lib_src) |
|
175 tf = tarfile.open(lib_src,'r:gz') |
|
176 lib_base_path = os.path.join(src_dir, lib_name) |
|
177 logger.notify("Extract %s to %s " % (lib_name,lib_base_path)) |
|
178 tf.extractall(lib_base_path) |
|
179 tf.close() |
|
180 |
|
181 lib_src_path = os.path.join(lib_base_path, os.listdir(lib_base_path)[0]) |
|
182 |
|
183 logger.notify(libname + " configure") |
|
184 call_subprocess(['configure', '--prefix='+os.path.abspath(home_dir)] + configure_options, |
|
185 cwd=os.path.abspath(lib_src_path), |
|
186 filter_stdout=filter_python_develop, |
|
187 show_stdout=True) |
|
188 |
|
189 logger.notify(libname + " make") |
|
190 call_subprocess(['make'], |
|
191 cwd=os.path.abspath(lib_src_path), |
|
192 filter_stdout=filter_python_develop, |
|
193 show_stdout=True) |
|
194 |
|
195 logger.notify(libname + "make install") |
|
196 call_subprocess(['make', 'install'], |
|
197 cwd=os.path.abspath(lib_src_path), |
|
198 filter_stdout=filter_python_develop, |
|
199 show_stdout=True) |
|
200 return install_lib |
|
201 |
|
202 install_libjpeg = gen_install_comp_lib("libjpeg", "LIBJPEG", ['--enable-shared']) |
|
203 install_zlib = gen_install_comp_lib("zlib", "ZLIB", []) |
|
204 |
|
205 |
|
206 |
|
207 |
|
208 |
|
209 def lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, normal_installs, options_to_add=None, urls= None): |
|
210 |
|
211 all_urls = URLS.copy() |
|
212 if urls is not None: |
|
213 all_urls.update(urls) |
|
214 |
|
215 res_env = ResourcesEnv(src_base, all_urls, normal_installs) |
|
216 |
|
217 def filter_python_develop(line): |
|
218 if not line.strip(): |
|
219 return Logger.DEBUG |
|
220 for prefix in ['Searching for', 'Reading ', 'Best match: ', 'Processing ', |
|
221 'Moving ', 'Adding ', 'running ', 'writing ', 'Creating ', |
|
222 'creating ', 'Copying ']: |
|
223 if line.startswith(prefix): |
|
224 return Logger.DEBUG |
|
225 return Logger.NOTIFY |
|
226 |
|
227 |
|
228 def normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess): |
|
229 logger.notify("Install %s from %s with %s" % (key,res_env.URLS[key][res_source_key],method)) |
|
230 if method == 'pip': |
|
231 if sys.platform == 'win32': |
|
232 args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'pip')), 'install', res_env.URLS[key][res_source_key]] |
|
233 else: |
|
234 args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS[key][res_source_key]] |
|
235 if option_str : |
|
236 args.insert(4,option_str) |
|
237 call_subprocess(args, |
|
238 cwd=os.path.abspath(tmp_dir), |
|
239 filter_stdout=filter_python_develop, |
|
240 show_stdout=True, |
|
241 extra_env=extra_env) |
|
242 else: |
|
243 if sys.platform == 'win32': |
|
244 args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'easy_install')), res_env.URLS[key][res_source_key]] |
|
245 else: |
|
246 args = [os.path.abspath(os.path.join(home_dir, 'bin', 'easy_install')), res_env.URLS[key][res_source_key]] |
|
247 if option_str : |
|
248 args.insert(1,option_str) |
|
249 call_subprocess(args, |
|
250 cwd=os.path.abspath(tmp_dir), |
|
251 filter_stdout=filter_python_develop, |
|
252 show_stdout=True, |
|
253 extra_env=extra_env) |
|
254 |
|
255 |
|
256 def after_install(options, home_dir): |
|
257 |
|
258 global logger |
|
259 |
|
260 verbosity = options.verbose - options.quiet |
|
261 logger = Logger([(Logger.level_for_integer(2-verbosity), sys.stdout)]) |
|
262 |
|
263 |
|
264 home_dir, lib_dir, inc_dir, bin_dir = path_locations(home_dir) |
|
265 base_dir = os.path.dirname(home_dir) |
|
266 src_dir = os.path.join(home_dir, 'src') |
|
267 tmp_dir = os.path.join(home_dir, 'tmp') |
|
268 ensure_dir(src_dir, logger) |
|
269 ensure_dir(tmp_dir, logger) |
|
270 system_str = platform.system() |
|
271 |
|
272 res_source_key = getattr(options, 'type_install') if hasattr(options, 'type_install') else 'local' #.get('type_install', 'local') |
|
273 if res_source_key is None: |
|
274 res_source_key = local |
|
275 |
|
276 ignore_packages = [] |
|
277 |
|
278 if system_str == 'Windows': |
|
279 default_install_options = {'method': 'easy_install', 'option_str': None, 'dict_extra_env': {}} |
|
280 else: |
|
281 default_install_options = {'method': 'pip', 'option_str': None, 'dict_extra_env': {}} |
|
282 |
|
283 if options.ignore_packages : |
|
284 ignore_packages = options.ignore_packages.split(",") |
|
285 |
|
286 logger.indent += 2 |
|
287 try: |
|
288 for key in res_env.NORMAL_INSTALL: |
|
289 if key not in res_env.URLS: |
|
290 logger.notify("%s not found in def : passing" % (key,)) |
|
291 install_options = res_env.URLS[key].get('install', None) |
|
292 if install_options is None: |
|
293 install_options = default_install_options |
|
294 method = install_options.get('method', default_install_options['method']) |
|
295 option_str = install_options.get('option_str', default_install_options['option_str']) |
|
296 extra_env = install_options.get('dict_extra_env', default_install_options['dict_extra_env']) |
|
297 if not extra_env: |
|
298 extra_env = {} |
|
299 |
|
300 if 'TMPDIR' not in extra_env: |
|
301 extra_env['TMPDIR'] = os.path.abspath(tmp_dir) |
|
302 #isinstance(lst, (list, tuple)) |
|
303 if key not in ignore_packages: |
|
304 if callable(method): |
|
305 method(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop) |
|
306 elif method in globals() and callable(globals()[method]) and method not in ['pip', 'easy_install']: |
|
307 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) |
|
308 else: |
|
309 normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess) |
|
310 |
|
311 logger.notify("Clear source dir") |
|
312 shutil.rmtree(src_dir) |
|
313 |
|
314 finally: |
|
315 logger.indent -= 2 |
|
316 script_dir = join(base_dir, bin_dir) |
|
317 logger.notify('Run "%s Package" to install new packages that provide builds' |
|
318 % join(script_dir, 'easy_install')) |
|
319 |
|
320 def adjust_options(options, args): |
|
321 if not options_to_add: |
|
322 pass |
|
323 for opt in options_to_add: |
|
324 test_opt = opt.split('=',1)[0] |
|
325 if not hasattr(options,test_opt) or getattr(options, test_opt) is None: |
|
326 setattr(options, test_opt,opt.split('=',1)[1] if "=" in opt else True) |
|
327 |
|
328 return adjust_options, extend_parser, after_install |