virtualenv/res/lib/lib_create_env.py
changeset 243 1f2840354865
parent 176 ec356aa158a1
child 258 0368e86e4cbd
--- a/virtualenv/res/lib/lib_create_env.py	Sat Sep 08 03:52:24 2012 +0200
+++ b/virtualenv/res/lib/lib_create_env.py	Sun Sep 09 21:35:10 2012 +0200
@@ -7,45 +7,64 @@
 import urllib
 import platform
 import patch
+import struct
+import glob
+import re
 
 join = os.path.join
 system_str = platform.system()
 
-
 URLS = {
     #'': {'setup': '', 'url':'', 'local':''},
-    'DISTRIBUTE': {'setup': 'distribute', 'url':'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.14.tar.gz', 'local':"distribute-0.6.14.tar.gz"},
-    'DJANGO': {'setup': 'django', 'url': 'http://www.djangoproject.com/download/1.4/tarball/', 'local':"Django-1.4.tar.gz"},
-    'DJANGO-EXTENSIONS': { 'setup': 'django-extensions', 'url':'https://github.com/django-extensions/django-extensions/tarball/0.6', 'local':"django-extensions-0.6.tar.gz"},
-    'SOUTH': { 'setup': 'South', 'url':'http://www.aeracode.org/releases/south/south-0.7.3.tar.gz', 'local':"south-0.7.3.tar.gz"},
-    'HTTPLIB2': { 'setup': 'python-httplib2', 'url':'http://httplib2.googlecode.com/files/httplib2-0.6.0.tar.gz', 'local':"httplib2-0.6.0.tar.gz"},
-    'HAYSTACK': { 'setup': 'haystack', 'url':'https://github.com/toastdriven/django-haystack/zipball/v1.2.7', 'local': "django-haystack-v1.2.7.tar.gz"},
-    'WHOOSH' : { 'setup': 'Whoosh', 'url': 'https://bitbucket.org/mchaput/whoosh/get/tip.tar.bz2', 'local': 'whoosh-2.3.2.tar.bz2'},
-    'WIKITOOLS' : { 'setup': 'wikitools', 'url': 'wikitools.tar.bz2', 'local': 'wikitools.tar.bz2'},
-    'RDFLIB' : { 'setup': 'rdflib', 'url': 'http://rdflib.googlecode.com/files/rdflib-3.2.0.tar.gz', 'local': 'rdflib-3.2.0.tar.gz'},
-    'SPARQLWRAPPER' : { 'setup': 'SPARQLWrapper', 'url': 'http://downloads.sourceforge.net/project/sparql-wrapper/sparql-wrapper-python/1.5.0/SPARQLWrapper-1.5.0.tar.gz', 'local' : 'SPARQLWrapper-1.5.0.tar.gz'},
+    'DISTRIBUTE': {'setup': 'distribute', 'url':'http://pypi.python.org/packages/source/d/distribute/distribute-0.6.24.tar.gz', 'local':"distribute-0.6.24.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    'DJANGO': {'setup': 'django', 'url': 'http://www.djangoproject.com/download/1.4.1/tarball/', 'local':"Django-1.4.1.tar.gz", 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    '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}},
+    '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}},
+    '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}},
+    '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}},
+    'SSH': {'setup': 'ssh', 'url':'http://pypi.python.org/packages/source/s/ssh/ssh-1.7.14.tar.gz#md5=4cdd0549ef4699bd67b96264d3b21427', 'local':'ssh-1.7.14.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    'FABRIC': {'setup': 'fabric', 'url':'https://github.com/fabric/fabric/tarball/1.4.2', 'local':'fabric-1.4.2.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    '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}},
+    '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}},
+    '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}},
+    'WIKITOOLS' : { 'setup': 'wikitools', 'url': 'wikitools.tar.bz2', 'local': 'wikitools.tar.bz2', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    'ISODATE' : {'setup': 'isodate', 'url': 'http://pypi.python.org/packages/source/i/isodate/isodate-0.4.8.tar.gz', 'local': 'isodate-0.4.8.tar.gz', 'install' : {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    'RDFLIB' : { 'setup': 'rdflib', 'url': 'http://rdflib.googlecode.com/files/rdflib-3.2.0.tar.gz', 'local': 'rdflib-3.2.0.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
+    'SPARQLWRAPPER' : { 'setup': 'SPARQLWrapper', 'url': 'http://downloads.sourceforge.net/project/sparql-wrapper/sparql-wrapper-python/1.5.0/SPARQLWrapper-1.5.0.tar.gz', 'local' : 'SPARQLWrapper-1.5.0.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},    
 }
 
 if system_str == 'Windows':
+    
+    size = 8 * struct.calcsize("P")
+    if size==32:
+        mysqlres = "MySQL-python-1.2.3.win32-py2.7.exe"
+    else:
+        mysqlres = "MySQL-python-1.2.3.win-amd64-py2.7.exe"
+    
     URLS.update({
-        'PSYCOPG2': {'setup': 'psycopg2','url': 'psycopg2-2.0.14.win32-py2.6-pg8.4.3-release.zip', 'local':"psycopg2-2.0.14.win32-py2.6-pg8.4.3-release.zip"},
-        'JCC': {'setup': 'jcc', 'url': 'http://pylucene-win32-binary.googlecode.com/files/JCC-2.6-py2.6-win32.egg', 'local':"JCC-2.6-py2.6-win32.egg"},
-        'PYLUCENE': {'setup': 'pylucene', 'url': 'http://pylucene-win32-binary.googlecode.com/files/lucene-3.0.2-py2.6-win32.egg', 'local':"lucene-3.0.2-py2.6-win32.egg"},
-        'PIL': {'setup': 'pil', 'url': 'http://effbot.org/media/downloads/PIL-1.1.7.win32-py2.6.exe', 'local':"PIL-1.1.7.win32-py2.6.exe"},
-        'LXML': {'setup': 'lxml', 'url': 'http://pypi.python.org/packages/2.6/l/lxml/lxml-2.2.2-py2.6-win32.egg', 'local':"lxml-2.2.2-py2.6-win32.egg"},
-        'PYYAML' : { 'setup': 'PyYAML', 'url': 'http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.6.exe', 'local': 'PyYAML-3.09.win32-py2.6.exe'},
+        'PSYCOPG2': {'setup': 'psycopg2','url': 'psycopg2-2.0.14.win32-py2.6-pg8.4.3-release.zip', 'local':"psycopg2-2.0.14.win32-py2.6-pg8.4.3-release.zip", 'install': {'method': 'install_psycopg2', 'option_str': None, 'dict_extra_env': None}},
+        'PIL': {'setup': 'pil', 'url': 'http://effbot.org/media/downloads/PIL-1.1.7.win32-py2.6.exe', 'local':"PIL-1.1.7.win32-py2.6.exe", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}},
+        'LXML': {'setup': 'lxml', 'url': 'http://pypi.python.org/packages/2.6/l/lxml/lxml-2.2.2-py2.6-win32.egg', 'local':"lxml-2.2.2-py2.6-win32.egg", 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}},
+        'PYYAML' : { 'setup': 'PyYAML', 'url': 'http://pyyaml.org/download/pyyaml/PyYAML-3.09.win32-py2.6.exe', 'local': 'PyYAML-3.09.win32-py2.6.exe', 'install': {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}},
         'PYSTEMMER' : { 'setup': 'pystemmer', 'url': 'PyStemmer_compiled_for_pc.zip', 'local': 'PyStemmer_compiled_for_pc.zip'},
     })
 else:
+    if system_str == "Darwin":        
+        lxml_options = {'STATIC_DEPS': 'true', 'LIBXML2_VERSION': '2.8.0', 'LIBXSLT_VERSION': '1.1.26', 'LIBICONV_VERSION': '1.14'}
+        lxml_method = 'easy_install'
+        mysql_method = 'install_mysql'
+    else:
+        lxml_options = None
+        lxml_method = 'pip'
+        mysql_method = 'pip'
+
     URLS.update({
-        'PSYCOPG2': {'setup': 'psycopg2','url': 'http://www.psycopg.org/psycopg/tarballs/PSYCOPG-2-4/psycopg2-2.4.tar.gz', 'local':"psycopg2-2.4.tar.gz"},
-        'PYLUCENE': {'setup': 'pylucene', 'url': 'http://apache.crihan.fr/dist//lucene/pylucene/pylucene-3.1.0-1-src.tar.gz', 'local':"pylucene-3.1.0-1-src.tar.gz"},
-        'PIL': {'setup': 'pil', 'url': 'http://effbot.org/downloads/Imaging-1.1.7.tar.gz', 'local':"Imaging-1.1.7.tar.gz"},
-        'LXML': {'setup': 'lxml', 'url':"lxml-2.3.tar.bz2", 'local':"lxml-2.3.tar.bz2"},
-        'PYYAML' : { 'setup': 'PyYAML', 'url': 'http://pyyaml.org/download/pyyaml/PyYAML-3.09.tar.gz', 'local': 'PyYAML-3.09.tar.gz'},
+        '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}},
+        '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}},
+        '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}},
+        'PYYAML' : { 'setup': 'PyYAML', 'url': 'http://pyyaml.org/download/pyyaml/PyYAML-3.09.tar.gz', 'local': 'PyYAML-3.09.tar.gz', 'install': {'method': 'pip', 'option_str': None, 'dict_extra_env': None}},
     })
-
-
+    
 
 class ResourcesEnv(object):
 
@@ -58,15 +77,17 @@
     def get_src_base_path(self, fpath):
         return os.path.abspath(os.path.join(self.src_base, fpath)).replace("\\","/")
     
-    def __add_package_def(self, key, setup, url, local):
-        self.URLS[key] = {'setup':setup, 'url':url, 'local':self.get_src_base_path(local)}
-
+    def __add_package_def(self, key, dict):
+        self.URLS[key] = dict
+        
     def __init_url(self, urls):
         for key, url_dict in urls.items():
-            url = url_dict['url']
-            if not url.startswith("http://"):
-                url = self.get_src_base_path(url)
-            self.__add_package_def(key, url_dict["setup"], url, url_dict["local"])
+            url_dict_copy = url_dict.copy()
+            if not url_dict['url'].startswith("http://"):
+                url_dict_copy['url'] = self.get_src_base_path(url_dict['url'])
+            url_dict_copy['local'] = self.get_src_base_path(url_dict['local'])            
+            
+            self.__add_package_def(key, url_dict_copy )
 
 def ensure_dir(dir, logger):
     if not os.path.exists(dir):
@@ -84,111 +105,13 @@
         '--type-install',
         metavar='type_install',
         dest='type_install',
-        default='local',
-        help='type install : local, url, setup')
+        help='type install : local, url, setup - default : local')
     parser.add_option(
         '--ignore-packages',
         metavar='ignore_packages',
         dest='ignore_packages',
         default=None,
-        help='list of comma separated keys for package to ignore')
-
-def adjust_options(options, args):
-    pass
-
-
-def install_pylucene(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop):
-    
-    logger.notify("Get Pylucene from %s " % res_env.URLS['PYLUCENE'][res_source_key])
-    pylucene_src = os.path.join(src_dir,"pylucene.tar.gz")
-    if res_source_key == 'local':
-        shutil.copy(res_env.URLS['PYLUCENE'][res_source_key], pylucene_src)
-    else:
-        urllib.urlretrieve(res_env.URLS['PYLUCENE'][res_source_key], pylucene_src)
-    tf = tarfile.open(pylucene_src,'r:gz')
-    pylucene_base_path = os.path.join(src_dir,"pylucene") 
-    logger.notify("Extract Pylucene to %s " % pylucene_base_path)
-    tf.extractall(pylucene_base_path)
-    tf.close()
-    
-    pylucene_src_path = os.path.join(pylucene_base_path, os.listdir(pylucene_base_path)[0])
-    jcc_src_path = os.path.abspath(os.path.join(pylucene_src_path,"jcc"))
-    
-    #install jcc
-
-    #patch for linux
-    if system_str == 'Linux' :
-        olddir = os.getcwd()
-        setuptools_path = os.path.join(lib_dir, 'site-packages', 'setuptools')
-        if os.path.exists(setuptools_path) and os.path.isdir(setuptools_path):
-            patch_dest_path = os.path.join(lib_dir, 'site-packages')
-        else:
-            patch_dest_path = os.path.join(lib_dir,'site-packages','setuptools-0.6c11-py%s.%s.egg' % (sys.version_info[0], sys.version_info[1]))
-            if os.path.isfile(patch_dest_path):
-                # must unzip egg
-                # rename file and etract all
-                shutil.move(patch_dest_path, patch_dest_path + ".zip")
-                zf = zipfile.ZipFile(patch_dest_path + ".zip",'r')
-                zf.extractall(patch_dest_path)
-                os.remove(patch_dest_path + ".zip")
-        logger.notify("Patch jcc : %s " % (patch_dest_path))
-        os.chdir(patch_dest_path)
-        p = patch.fromfile(os.path.join(jcc_src_path,"jcc","patches","patch.43.0.6c11"))
-        p.apply()
-        os.chdir(olddir)
-
-    logger.notify("Install jcc")
-    call_subprocess([os.path.abspath(os.path.join(home_dir, 'bin', 'python')), 'setup.py', 'install'],
-                    cwd=jcc_src_path,
-                    filter_stdout=filter_python_develop,
-                    show_stdout=True)
-    #install pylucene
-    
-    logger.notify("Install pylucene")
-    #modify makefile
-    makefile_path = os.path.join(pylucene_src_path,"Makefile")
-    logger.notify("Modify makefile %s " % makefile_path)
-    shutil.move( makefile_path, makefile_path+"~" )
-
-    destination= open( makefile_path, "w" )
-    source= open( makefile_path+"~", "r" )
-    destination.write("PREFIX_PYTHON="+os.path.abspath(home_dir)+"\n")
-    destination.write("ANT=ant\n")
-    destination.write("PYTHON=$(PREFIX_PYTHON)/bin/python\n")
-    
-    if system_str == "Darwin":
-        if sys.version_info >= (2,6):
-            destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386\n")
-        else:
-            destination.write("JCC=$(PYTHON) -m jcc --shared --arch x86_64 --arch i386\n")
-        destination.write("NUM_FILES=2\n")
-    elif system_str == "Windows":
-        destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared --arch x86_64 --arch i386\n")
-        destination.write("NUM_FILES=2\n")
-    else:
-        if sys.version_info >= (2,6) and sys.version_info <= (2,7):
-            destination.write("JCC=$(PYTHON) -m jcc.__main__ --shared\n")
-        else:
-            destination.write("JCC=$(PYTHON) -m jcc --shared\n")
-        destination.write("NUM_FILES=2\n")
-    for line in source:
-        destination.write( line )
-    source.close()
-    destination.close()
-    os.remove(makefile_path+"~" )
-
-    logger.notify("pylucene make")
-    call_subprocess(['make'],
-                    cwd=os.path.abspath(pylucene_src_path),
-                    filter_stdout=filter_python_develop,
-                    show_stdout=True)
-
-    logger.notify("pylucene make install")
-    call_subprocess(['make', 'install'],
-                    cwd=os.path.abspath(pylucene_src_path),
-                    filter_stdout=filter_python_develop,
-                    show_stdout=True)
-    
+        help='list of comma separated keys for package to ignore')    
 
 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):
     psycopg2_src = os.path.join(src_dir,"psycopg2.zip")
@@ -201,7 +124,91 @@
     
     psycopg2_src_path = os.path.join(psycopg2_base_path, os.listdir(psycopg2_base_path)[0])
     shutil.copytree(os.path.join(psycopg2_src_path, 'psycopg2'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages', 'psycopg2')))
-    shutil.copy(os.path.join(psycopg2_src_path, 'psycopg2-2.0.14-py2.6.egg-info'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages')))
+    shutil.copy(os.path.join(psycopg2_src_path, 'psycopg2-2.0.14-py2.6.egg-info'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages', 'site-packages')))
+    
+
+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):
+    
+    args = [os.path.abspath(os.path.join(home_dir, 'bin', 'pip')), 'install', res_env.URLS['MYSQL'][res_source_key]]                
+    if option_str :
+        args.insert(4,option_str)
+    call_subprocess(args,
+            cwd=os.path.abspath(tmp_dir),
+            filter_stdout=filter_python_develop,
+            show_stdout=True,
+            extra_env=extra_env)
+
+    mysqlconfig_output = []
+    
+    call_subprocess(['mysql_config', '--libmysqld-libs'],
+        cwd=os.path.abspath(tmp_dir),
+        filter_stdout=lambda line: mysqlconfig_output.append(line),
+        show_stdout=True)
+        
+    mysqlconfig_output = "".join(mysqlconfig_output)
+    m = re.search("\-L[\'\"]?([\w\/]+)[\'\"]?", mysqlconfig_output)
+    if m:
+        repdylibpath = m.group(1)
+    else:
+        repdylibpath = '/usr/local/mysql/lib'
+        
+    dyliblist = glob.glob(repdylibpath+"/libmysqlclient.*.dylib")
+    def key_func(s):
+        m = re.match(repdylibpath+"/libmysqlclient\.([\d]+)\.dylib", s)
+        if m:
+            return int(m.group(1))
+        else:
+            return sys.maxint
+    dyliblist.sort(key=key_func)
+    
+    if dyliblist:
+        dylibpath = dyliblist[0]
+    else:
+        dylibpath = '/usr/local/mysql/lib/libmysqlclient.18.dylib'
+        
+    dylibname = os.path.basename(dylibpath)    
+    sopath = os.path.join(os.path.abspath(lib_dir), 'site-packages', '_mysql.so')
+    
+    call_subprocess(['install_name_tool', '-change', dylibname, dylibpath, sopath],
+        cwd=os.path.abspath(tmp_dir),
+        filter_stdout=filter_python_develop,
+        show_stdout=True)
+
+
+def gen_install_comp_lib(lib_name, lib_key, configure_options=[]):
+    
+    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):
+        lib_src = os.path.join(src_dir,lib_name+".tar.gz")
+        shutil.copy(res_env.URLS[lib_key][res_source_key], lib_src)
+        tf = tarfile.open(lib_src,'r:gz')
+        lib_base_path = os.path.join(src_dir, lib_name) 
+        logger.notify("Extract %s to %s " % (lib_name,lib_base_path))
+        tf.extractall(lib_base_path)
+        tf.close()
+        
+        lib_src_path = os.path.join(lib_base_path, os.listdir(lib_base_path)[0])
+    
+        logger.notify(libname + " configure")
+        call_subprocess(['configure', '--prefix='+os.path.abspath(home_dir)] + configure_options,
+                        cwd=os.path.abspath(lib_src_path),
+                        filter_stdout=filter_python_develop,
+                        show_stdout=True)
+        
+        logger.notify(libname + " make")
+        call_subprocess(['make'],
+                        cwd=os.path.abspath(lib_src_path),
+                        filter_stdout=filter_python_develop,
+                        show_stdout=True)
+    
+        logger.notify(libname + "make install")
+        call_subprocess(['make', 'install'],
+                        cwd=os.path.abspath(lib_src_path),
+                        filter_stdout=filter_python_develop,
+                        show_stdout=True)
+        return install_lib
+
+install_libjpeg = gen_install_comp_lib("libjpeg", "LIBJPEG", ['--enable-shared'])
+install_zlib = gen_install_comp_lib("zlib", "ZLIB", [])
 
 def install_pystemmer(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop):
     print "install PYSTEMMER from " + res_env.URLS['PYSTEMMER'][res_source_key]
@@ -216,45 +223,8 @@
     shutil.copy(os.path.join(pystemmer_base_path, 'Stemmer.pyd'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages')))
     shutil.copy(os.path.join(pystemmer_base_path, 'PyStemmer-1.0.1-py2.6.egg-info'), os.path.abspath(os.path.join(home_dir, 'Lib/site-packages')))
     
-    
-#TO DO does not work in virtual env
-def install_libyaml(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop):
-    logger.notify("Get libyaml from %s " % res_env.URLS['LIBYAML'][res_source_key])
-    libyaml_src = os.path.join(src_dir,"libyaml.tar.gz")
-    if res_source_key == 'local':
-        shutil.copy(res_env.URLS['LIBYAML'][res_source_key], libyaml_src)
-    else:
-        urllib.urlretrieve(res_env.URLS['LIBYAML'][res_source_key], libyaml_src)
-    tf = tarfile.open(pylucene_src,'r:gz')
-    libyaml_base_path = os.path.join(src_dir,"libyaml") 
-    logger.notify("Extract libyaml to %s " % libyaml_base_path)
-    tf.extractall(libyaml_base_path)
-    tf.close()
-    
-    libyaml_src_path = os.path.join(libyaml_base_path, os.listdir(libyaml_base_path)[0])
-    
-    logger.notify("libyaml configure")
-    call_subprocess(['configure'],
-                    cwd=os.path.abspath(libyaml_src_path),
-                    filter_stdout=filter_python_develop,
-                    show_stdout=True)
 
-    logger.notify("libyaml make")
-    call_subprocess(['make'],
-                    cwd=os.path.abspath(libyaml_src_path),
-                    filter_stdout=filter_python_develop,
-                    show_stdout=True)
-
-    logger.notify("libyaml make install")
-    call_subprocess(['make', 'install'],
-                    cwd=os.path.abspath(libyaml_src_path),
-                    filter_stdout=filter_python_develop,
-                    show_stdout=True)
-    
-
-
-
-def lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, normal_installs, urls=None):
+def lib_generate_install_methods(path_locations, src_base, Logger, call_subprocess, normal_installs, options_to_add=None, urls= None):
     
     all_urls = URLS.copy()
     if urls is not None:
@@ -316,20 +286,38 @@
         ensure_dir(src_dir, logger)
         ensure_dir(tmp_dir, logger)
         system_str = platform.system()
-        
-        res_source_key = options.type_install
+                
+        res_source_key = getattr(options, 'type_install') if hasattr(options, 'type_install') else 'local' #.get('type_install', 'local')
+        if res_source_key is None:
+            res_source_key = local
         
         ignore_packages = []
         
+        if system_str == 'Windows':
+            default_install_options = {'method': 'easy_install', 'option_str': None, 'dict_extra_env': None}
+        else:
+            default_install_options = {'method': 'pip', 'option_str': None, 'dict_extra_env': None}
+            
         if options.ignore_packages :
             ignore_packages = options.ignore_packages.split(",")
         
         logger.indent += 2
         try:    
-            for key, method, option_str, extra_env in res_env.NORMAL_INSTALL:
+            for key in res_env.NORMAL_INSTALL:
+                if key not in res_env.URLS:
+                    logger.notify("%s not found in def : passing" % (key,))
+                install_options = res_env.URLS[key].get('install', None)
+                if install_options is None:
+                    install_options = default_install_options
+                method = install_options.get('method', default_install_options['method'])
+                option_str = install_options.get('option_str', default_install_options['option_str'])
+                extra_env = install_options.get('dict_extra_env', default_install_options['dict_extra_env'])
+                #isinstance(lst, (list, tuple))
                 if key not in ignore_packages:
                     if callable(method):
                         method(option_str, extra_env, res_source_key, home_dir, lib_dir, tmp_dir, src_dir, res_env, logger, call_subprocess, filter_python_develop)
+                    elif method in globals() and callable(globals()[method]) and method not in ['pip', 'easy_install']:  
+                        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)
                     else:
                         normal_install(key, method, option_str, extra_env, res_source_key, home_dir, tmp_dir, res_env, logger, call_subprocess)
                             
@@ -342,5 +330,12 @@
         logger.notify('Run "%s Package" to install new packages that provide builds'
                       % join(script_dir, 'easy_install'))
     
+    def adjust_options(options, args):
+        if not options_to_add:
+            pass
+        for opt in options_to_add:
+            test_opt = opt.split('=',1)[0]
+            if not hasattr(options,test_opt) or getattr(options, test_opt) is None:                
+                setattr(options, test_opt,opt.split('=',1)[1] if "=" in opt else True)
 
     return adjust_options, extend_parser, after_install