diff -r 9c9db6355381 -r e37a29d23c86 virtualenv/web/res/res_create_env.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/virtualenv/web/res/res_create_env.py Wed Jun 06 23:00:42 2012 +0200 @@ -0,0 +1,53 @@ +import platform + +from lib_create_env import lib_generate_install_methods, install_pylucene, install_psycopg2 + +system_str = platform.system() + +if system_str == 'Windows': + INSTALLS = [ + ('JCC','easy_install',None,None), + ('PSYCOPG2',install_psycopg2,None,None), + ('PYLUCENE','easy_install',None,None), + ] +else: + INSTALLS = [ + ('PYLUCENE',install_pylucene,None,None), + ('PSYCOPG2', 'pip', None, None), + ] + +if system_str == 'Linux': + INSTALLS.extend([ + ('DISTRIBUTE', 'pip', None, None), + ]) + +INSTALLS.extend([ #(key,method, option_str, dict_extra_env) + ('SOUTH', 'pip', None, None), + ('PIL', 'easy_install', None, None), + ('DJANGO','pip', None, None), + ('DJANGO-EXTENSIONS', 'pip', None, None), + ('DJANGO-REGISTRATION', 'easy_install', '-Z', None), + ('DJANGO-TAGGING', 'pip', None, None), + ('DJANGO-PISTON', 'easy_install', None, None), + ('HTTPLIB2', 'pip', None, None), + ('OAUTH2', 'easy_install', None, None), + ('DJANGO-OAUTH-PLUS', 'pip', None, None), + ('OPENID', 'pip', None, None), + ('DJANGO_OPENID_CONSUMER', 'pip', None, None), + ('SOCIAL_AUTH', 'easy_install', None, None), + ('DJANGO_GUARDIAN', 'pip', None, None), + ('SORL_THUMBNAIL', 'pip', None, None), +]) + +if system_str == "Darwin": + INSTALLS.extend([ + ('LXML', 'easy_install', None, {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.8.0', 'LIBXSLT_VERSION': '1.1.26', 'LIBICONV_VERSION': '1.14'}), + ]) +else: + INSTALLS.extend([ + ('LXML', 'easy_install', None, None), + ]) + + +def generate_install_methods(path_locations, src_base, Logger, call_subprocess): + return lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, INSTALLS)