|
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.34.tar.gz', 'local':"distribute-0.6.34.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
20 'DJANGO': {'setup': 'django', 'url': 'https://github.com/IRI-Research/django/archive/698eff4a5da55a1b5a8b4ecddab2b2a85854d4da.tar.gz', 'local':"Django-1.5.2.dev20130524113953.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
21 'SIX' : {'setup':'six', 'url':'https://pypi.python.org/packages/source/s/six/six-1.3.0.tar.gz', 'local': 'six-1.3.0.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
22 'DJANGO-EXTENSIONS': { 'setup': 'django-extensions', 'url':'https://github.com/django-extensions/django-extensions/archive/1.1.1.tar.gz', 'local':"django-extensions-1.1.1.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
23 'SOUTH': { 'setup': 'South', 'url':'http://www.aeracode.org/releases/south/south-0.7.6.tar.gz', 'local':"south-0.7.6.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
24 'LIBJPEG': {'setup': None, 'url':'jpegsrc.v9.tar.gz', 'local':'jpegsrc.v9.tar.gz', 'install': {'method': 'install_libjpeg', 'option_str': None, 'dict_extra_env': None}}, |
|
25 'ZLIB': {'setup': None, 'url':'zlib-1.2.8.tar.gz', 'local':'zlib-1.2.8.tar.gz', 'install': {'method': 'install_zlib', 'option_str': None, 'dict_extra_env': None}}, |
|
26 'HAYSTACK': {'setup': 'django-haystack', 'url': 'https://github.com/toastdriven/django-haystack/archive/v2.0.0.tar.gz', 'local': 'django-haystack-2.0.0.tar.gz', 'install':{'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
27 'PYELASTICSEARCH': {'setup': 'pyelasticsearch', 'url':'https://github.com/rhec/pyelasticsearch/archive/0.5.tar.gz', 'local':'pyelasticsearch-0.5.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
28 'PYTHON-DATEUTIL' : {'setup':'python-dateutil', 'url':'https://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}}, |
|
29 'RDFLIB' : {'setup':'rdflib', 'url':'https://github.com/RDFLib/rdflib/archive/4.0.1.tar.gz', 'local': 'rdflib-4.0.1.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
30 'SQLALCHEMY' : {'setup':'sqlalchemy', 'url':'https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-0.8.1.tar.gz', 'local': 'SQLAlchemy-0.8.1.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
31 'RDFLIB-SQLALCHEMY' : {'setup':'rdflib-sqlalchemy', 'url':'https://github.com/editorsnotes/rdflib-sqlalchemy/archive/9996e2fd7cdd87e35384c529196407808c9f60ee.tar.gz', 'local': 'rdflib-sqlalchemy-9996e2fd7cdd87e35384c529196407808c9f60ee.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
32 'REQUESTS': {'setup': 'requests', 'url':'https://github.com/kennethreitz/requests/archive/v1.2.3.tar.gz', 'local':'requests-1.2.3.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
33 'SIMPLEJSON': {'setup': 'simplejson','url':'https://github.com/simplejson/simplejson/archive/v3.3.0.tar.gz', 'local': 'simplejson-3.3.0.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
34 'ISODATE': {'setup': 'isodate','url':'https://pypi.python.org/packages/source/i/isodate/isodate-0.4.9.tar.gz', 'local': 'isodate-0.4.9.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
35 'PYPARSING': {'setup': 'pyparsing','url':'http://downloads.sourceforge.net/project/pyparsing/pyparsing/pyparsing-1.5.7/pyparsing-1.5.7.tar.gz', 'local': 'pyparsing-1.5.7.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
36 'SPARQLWRAPPER': {'setup': 'sparqlwrapper','url':'http://downloads.sourceforge.net/project/sparql-wrapper/sparql-wrapper-python/1.5.2/SPARQLWrapper-1.5.2.tar.gz', 'local': 'SPARQLWrapper-1.5.2.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
37 'HTML5LIB': {'setup': 'html5lib','url':'https://github.com/html5lib/html5lib-python/archive/1.0b1.tar.gz', 'local': 'html5lib-python-1.0b1.tar.gz', 'install' : {'method':'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
38 'WIKITOOLS' : { 'setup': 'wikitools', 'url': 'wikitools.tar.bz2', 'local': 'wikitools.tar.bz2', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
39 } |
|
40 |
|
41 if system_str == 'Windows': |
|
42 |
|
43 size = 8 * struct.calcsize("P") |
|
44 if size==32: |
|
45 mysqlres = "MySQL-python-1.2.3.win32-py2.7.exe" |
|
46 else: |
|
47 mysqlres = "MySQL-python-1.2.3.win-amd64-py2.7.exe" |
|
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 '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}}, |
|
53 'MYSQL': { 'setup': 'mysql-python', 'url': mysqlres, 'local': mysqlres, 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}}, |
|
54 }) |
|
55 else: |
|
56 if system_str == "Darwin": |
|
57 lxml_options = {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.9.1', 'LIBXSLT_VERSION': '1.1.28', 'LIBICONV_VERSION': '1.14'} |
|
58 lxml_method = 'easy_install' |
|
59 mysql_method = 'install_mysql' |
|
60 else: |
|
61 lxml_options = None |
|
62 lxml_method = 'pip' |
|
63 mysql_method = 'pip' |
|
64 |
|
65 URLS.update({ |
|
66 'PSYCOPG2': {'setup': 'psycopg2','url': 'http://initd.org/psycopg/tarballs/PSYCOPG-2-5/psycopg2-2.5.tar.gz', 'local':"psycopg2-2.5.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
67 'PIL': {'setup': 'pil', 'url': 'https://github.com/python-imaging/Pillow/archive/2.0.0.tar.gz', 'local':"Pillow-2.0.0.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}}, |
|
68 'LXML': {'setup': 'lxml', 'url':"lxml-3.2.1.tar.bz2", 'local':"lxml-3.2.1.tar.bz2", 'install': {'method': lxml_method, 'option_str': None, 'dict_extra_env': lxml_options}}, |
|
69 'MYSQL': { 'setup': 'mysql-python', 'url': 'http://downloads.sourceforge.net/project/mysql-python/mysql-python-test/1.2.4b4/MySQL-python-1.2.4b4.tar.gz', 'local':"MySQL-python-1.2.4b4.tar.gz", 'install': {'method': mysql_method, 'option_str': None, 'dict_extra_env': None}}, |
|
70 }) |
|
71 |
|
72 |
|
73 class ResourcesEnv(object): |
|
74 |
|
75 def __init__(self, src_base, urls, normal_installs): |
|
76 self.src_base = src_base |
|
77 self.URLS = {} |
|
78 self.__init_url(urls) |
|
79 self.NORMAL_INSTALL = normal_installs |
|
80 |
|
81 def get_src_base_path(self, fpath): |
|
82 return os.path.abspath(os.path.join(self.src_base, fpath)).replace("\\","/") |
|
83 |
|
84 def __add_package_def(self, key, dict): |
|
85 self.URLS[key] = dict |
|
86 |
|
87 def __init_url(self, urls): |
|
88 for key, url_dict in urls.items(): |
|
89 url_dict_copy = url_dict.copy() |
|
90 if not url_dict['url'].startswith("http://"): |
|
91 url_dict_copy['url'] = self.get_src_base_path(url_dict['url']) |
|
92 url_dict_copy['local'] = self.get_src_base_path(url_dict['local']) |
|
93 |
|
94 self.__add_package_def(key, url_dict_copy ) |
|
95 |
|
96 def ensure_dir(dir, logger): |
|
97 logger.notify('Check directory %s' % dir) |
|
98 if not os.path.exists(dir): |
|
99 logger.notify('Creating directory %s' % dir) |
|
100 os.makedirs(dir) |
|
101 |
|
102 def extend_parser(parser): |
|
103 parser.add_option( |
|
104 '--index-url', |
|
105 metavar='INDEX_URL', |
|
106 dest='index_url', |
|
107 default='http://pypi.python.org/simple/', |
|
108 help='base URL of Python Package Index') |
|
109 parser.add_option( |
|
110 '--type-install', |
|
111 metavar='type_install', |
|
112 dest='type_install', |
|
113 help='type install : local, url, setup - default : local') |
|
114 parser.add_option( |
|
115 '--ignore-packages', |
|
116 metavar='ignore_packages', |
|
117 dest='ignore_packages', |
|
118 default=None, |
|
119 help='list of comma separated keys for package to ignore') |
|
120 |
|
121 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): |
|
122 psycopg2_src = os.path.join(src_dir,"psycopg2.zip") |
|
123 shutil.copy(res_env.URLS['PSYCOPG2'][res_source_key], psycopg2_src) |
|
124 #extract psycopg2 |
|
125 zf = zipfile.ZipFile(psycopg2_src) |
|
126 psycopg2_base_path = os.path.join(src_dir,"psycopg2") |
|
127 zf.extractall(psycopg2_base_path) |
|
128 zf.close() |
|
129 |
|
130 psycopg2_src_path = os.path.join(psycopg2_base_path, os.listdir(psycopg2_base_path)[0]) |
|
131 shutil.copytree(os.path.join(psycopg2_src_path, 'psycopg2'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages', 'psycopg2'))) |
|
132 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'))) |
|
133 |
|
134 |
|
135 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): |
|
136 |
|
137 args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS['MYSQL'][res_source_key]] |
|
138 if option_str : |
|
139 args.insert(4,option_str) |
|
140 call_subprocess(args, |
|
141 cwd=os.path.abspath(tmp_dir), |
|
142 filter_stdout=filter_python_develop, |
|
143 show_stdout=True, |
|
144 extra_env=extra_env) |
|
145 |
|
146 mysqlconfig_output = [] |
|
147 |
|
148 call_subprocess(['mysql_config', '--libmysqld-libs'], |
|
149 cwd=os.path.abspath(tmp_dir), |
|
150 filter_stdout=lambda line: mysqlconfig_output.append(line), |
|
151 show_stdout=True) |
|
152 |
|
153 mysqlconfig_output = "".join(mysqlconfig_output) |
|
154 m = re.search("\-L[\'\"]?([\w\/]+)[\'\"]?", mysqlconfig_output) |
|
155 if m: |
|
156 repdylibpath = m.group(1) |
|
157 else: |
|
158 repdylibpath = '/usr/local/mysql/lib' |
|
159 |
|
160 dyliblist = glob.glob(repdylibpath+"/libmysqlclient.*.dylib") |
|
161 def key_func(s): |
|
162 m = re.match(repdylibpath+"/libmysqlclient\.([\d]+)\.dylib", s) |
|
163 if m: |
|
164 return int(m.group(1)) |
|
165 else: |
|
166 return sys.maxint |
|
167 dyliblist.sort(key=key_func) |
|
168 |
|
169 if dyliblist: |
|
170 dylibpath = dyliblist[0] |
|
171 else: |
|
172 dylibpath = '/usr/local/mysql/lib/libmysqlclient.18.dylib' |
|
173 |
|
174 dylibname = os.path.basename(dylibpath) |
|
175 sopath = os.path.join(os.path.abspath(lib_dir), 'site-packages', '_mysql.so') |
|
176 |
|
177 call_subprocess(['install_name_tool', '-change', dylibname, dylibpath, sopath], |
|
178 cwd=os.path.abspath(tmp_dir), |
|
179 filter_stdout=filter_python_develop, |
|
180 show_stdout=True) |
|
181 |
|
182 |
|
183 def gen_install_comp_lib(lib_name, lib_key, configure_options=[]): |
|
184 |
|
185 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): |
|
186 lib_src = os.path.join(src_dir,lib_name+".tar.gz") |
|
187 logger.notify("Copy %s to %s " % (res_env.URLS[lib_key][res_source_key],lib_src)) |
|
188 shutil.copy(res_env.URLS[lib_key][res_source_key], lib_src) |
|
189 tf = tarfile.open(lib_src,'r:gz') |
|
190 lib_base_path = os.path.join(src_dir, lib_name) |
|
191 logger.notify("Extract %s to %s " % (lib_name,lib_base_path)) |
|
192 tf.extractall(lib_base_path) |
|
193 tf.close() |
|
194 |
|
195 lib_src_path = os.path.join(lib_base_path, os.listdir(lib_base_path)[0]) |
|
196 |
|
197 logger.notify(lib_name + " configure in " + lib_src_path) |
|
198 call_subprocess(['./configure', '--prefix='+os.path.abspath(home_dir)] + configure_options, |
|
199 cwd=os.path.abspath(lib_src_path), |
|
200 filter_stdout=filter_python_develop, |
|
201 show_stdout=True) |
|
202 |
|
203 logger.notify(lib_name + " make in " + lib_src_path) |
|
204 call_subprocess(['make'], |
|
205 cwd=os.path.abspath(lib_src_path), |
|
206 filter_stdout=filter_python_develop, |
|
207 show_stdout=True) |
|
208 |
|
209 logger.notify(lib_name + "make install in " + lib_src_path) |
|
210 call_subprocess(['make', 'install'], |
|
211 cwd=os.path.abspath(lib_src_path), |
|
212 filter_stdout=filter_python_develop, |
|
213 show_stdout=True) |
|
214 return install_lib |
|
215 |
|
216 install_libjpeg = gen_install_comp_lib("libjpeg", "LIBJPEG", ['--enable-shared']) |
|
217 install_zlib = gen_install_comp_lib("zlib", "ZLIB", []) |
|
218 |
|
219 |
|
220 def lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, normal_installs, options_to_add=None, urls= None): |
|
221 |
|
222 all_urls = URLS.copy() |
|
223 if urls is not None: |
|
224 all_urls.update(urls) |
|
225 |
|
226 res_env = ResourcesEnv(src_base, all_urls, normal_installs) |
|
227 |
|
228 def filter_python_develop(line): |
|
229 if not line.strip(): |
|
230 return Logger.DEBUG |
|
231 for prefix in ['Searching for', 'Reading ', 'Best match: ', 'Processing ', |
|
232 'Moving ', 'Adding ', 'running ', 'writing ', 'Creating ', |
|
233 'creating ', 'Copying ']: |
|
234 if line.startswith(prefix): |
|
235 return Logger.DEBUG |
|
236 return Logger.NOTIFY |
|
237 |
|
238 |
|
239 def normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess): |
|
240 logger.notify("Install %s from %s with %s" % (key,res_env.URLS[key][res_source_key],method)) |
|
241 if method == 'pip': |
|
242 if sys.platform == 'win32': |
|
243 args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'pip')), 'install', res_env.URLS[key][res_source_key]] |
|
244 else: |
|
245 args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS[key][res_source_key]] |
|
246 if option_str : |
|
247 args.insert(4,option_str) |
|
248 if key == 'local': |
|
249 if extra_env is None: |
|
250 extra_env = {} |
|
251 extra_env.append("PIP_DOWNLOAD_CACHE", res_env.get_src_base_path("")) |
|
252 call_subprocess(args, |
|
253 cwd=os.path.abspath(tmp_dir), |
|
254 filter_stdout=filter_python_develop, |
|
255 show_stdout=True, |
|
256 extra_env=extra_env) |
|
257 else: |
|
258 if sys.platform == 'win32': |
|
259 args = [os.path.abspath(os.path.join(home_dir, 'Scripts', 'easy_install')), res_env.URLS[key][res_source_key]] |
|
260 else: |
|
261 args = [os.path.abspath(os.path.join(home_dir, 'bin', 'easy_install')), res_env.URLS[key][res_source_key]] |
|
262 if option_str : |
|
263 args.insert(1,option_str) |
|
264 call_subprocess(args, |
|
265 cwd=os.path.abspath(tmp_dir), |
|
266 filter_stdout=filter_python_develop, |
|
267 show_stdout=True, |
|
268 extra_env=extra_env) |
|
269 |
|
270 |
|
271 def after_install(options, home_dir): |
|
272 |
|
273 global logger |
|
274 |
|
275 verbosity = options.verbose - options.quiet |
|
276 logger = Logger([(Logger.level_for_integer(2-verbosity), sys.stdout)]) |
|
277 |
|
278 |
|
279 home_dir, lib_dir, inc_dir, bin_dir = path_locations(home_dir) |
|
280 base_dir = os.path.dirname(home_dir) |
|
281 src_dir = os.path.join(home_dir, 'src') |
|
282 tmp_dir = os.path.join(home_dir, 'tmp') |
|
283 ensure_dir(src_dir, logger) |
|
284 ensure_dir(tmp_dir, logger) |
|
285 system_str = platform.system() |
|
286 |
|
287 res_source_key = getattr(options, 'type_install') if hasattr(options, 'type_install') else 'local' #.get('type_install', 'local') |
|
288 if res_source_key is None: |
|
289 res_source_key = 'local' |
|
290 |
|
291 ignore_packages = [] |
|
292 |
|
293 if system_str == 'Windows': |
|
294 default_install_options = {'method': 'easy_install', 'option_str': None, 'dict_extra_env': {}} |
|
295 else: |
|
296 default_install_options = {'method': 'pip', 'option_str': None, 'dict_extra_env': {}} |
|
297 |
|
298 if options.ignore_packages : |
|
299 ignore_packages = options.ignore_packages.split(",") |
|
300 |
|
301 logger.indent += 2 |
|
302 try: |
|
303 for key in res_env.NORMAL_INSTALL: |
|
304 if key not in res_env.URLS: |
|
305 logger.notify("%s not found in def : passing" % (key,)) |
|
306 install_options = res_env.URLS[key].get('install', None) |
|
307 if install_options is None: |
|
308 install_options = default_install_options |
|
309 method = install_options.get('method', default_install_options['method']) |
|
310 option_str = install_options.get('option_str', default_install_options['option_str']) |
|
311 extra_env = install_options.get('dict_extra_env', default_install_options['dict_extra_env']) |
|
312 if not extra_env: |
|
313 extra_env = {} |
|
314 |
|
315 if 'TMPDIR' not in extra_env: |
|
316 extra_env['TMPDIR'] = os.path.abspath(tmp_dir) |
|
317 #isinstance(lst, (list, tuple)) |
|
318 if key not in ignore_packages: |
|
319 logger.notify("install %s with method %s" % (key, repr(method))) |
|
320 if callable(method): |
|
321 method(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop) |
|
322 elif method in globals() and callable(globals()[method]) and method not in ['pip', 'easy_install']: |
|
323 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) |
|
324 else: |
|
325 normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess) |
|
326 |
|
327 logger.notify("Clear source dir") |
|
328 shutil.rmtree(src_dir) |
|
329 |
|
330 finally: |
|
331 logger.indent -= 2 |
|
332 script_dir = join(base_dir, bin_dir) |
|
333 logger.notify('Run "%s Package" to install new packages that provide builds' |
|
334 % join(script_dir, 'easy_install')) |
|
335 |
|
336 def adjust_options(options, args): |
|
337 if not options_to_add: |
|
338 pass |
|
339 for opt in options_to_add: |
|
340 test_opt = opt.split('=',1)[0] |
|
341 #if not hasattr(options,test_opt) or getattr(options, test_opt) is None: |
|
342 setattr(options, test_opt,opt.split('=',1)[1] if "=" in opt else True) |
|
343 |
|
344 return adjust_options, extend_parser, after_install |