Changes in / [1d5f5c2:3371d81] in sasview


Ignore:
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • build_tools/jenkins_osx_build.sh

    r259aaa0 r5881b17  
    11export PATH=$PATH:/usr/local/bin/ 
    2  
    32 
    43PYTHON=${PYTHON:-`which python`} 
     
    6766 
    6867# TEST 
    69 cd $WORKSPACE 
    70 cd sasview 
    71 cd test 
    72 $PYTHON utest_sasview.py 
    73  
     68#cd $WORKSPACE 
     69#cd sasview 
     70#cd test 
     71#$PYTHON utest_sasview.py 
    7472 
    7573# PYLINT 
     
    7876$PYLINT --rcfile "build_tools/pylint.rc" -f parseable sasview-install/sasview*.egg/sas sasview | tee  test/sasview.txt 
    7977 
    80  
    8178# BUILD APP 
    8279cd $WORKSPACE 
    8380cd sasview/sasview 
    84 python setup_mac.py py2app 
     81$PYTHON setup_mac.py py2app 
    8582 
  • sasview/setup_mac.py

    r628acad r5881b17  
    2020import sys 
    2121import platform 
     22#Extending recursion limit 
     23sys.setrecursionlimit(10000) 
    2224 
    2325from distutils.util import get_platform 
     
    2628build_path = os.path.join(root, 'build','lib.'+platform) 
    2729sys.path.insert(0, build_path) 
    28  
     30print "BUILDING PATH INSIDE", build_path 
    2931ICON = local_config.SetupIconFile_mac 
    3032EXTENSIONS_LIST = [] 
     
    6769# See if the documentation has been built, and if so include it. 
    6870doc_path = os.path.join(build_path, "doc") 
     71print doc_path 
    6972if os.path.exists(doc_path): 
    7073    for dirpath, dirnames, filenames in os.walk(doc_path): 
  • setup.py

    re791cca re791cca  
    2424# except when there is no such file 
    2525# Todo : make this list generic 
    26 # plugin_model_list = ['polynominal5.py', 'sph_bessel_jn.py', 
     26#plugin_model_list = ['polynominal5.py', 'sph_bessel_jn.py', 
    2727#                      'sum_Ap1_1_Ap2.py', 'sum_p1_p2.py', 
    2828#                      'testmodel_2.py', 'testmodel.py', 
     
    4545    if os.path.isfile(f_path): 
    4646        os.remove(f_path) 
    47     # f_path = os.path.join(sas_dir, 'plugin_models') 
    48     # if os.path.isdir(f_path): 
     47    #f_path = os.path.join(sas_dir, 'plugin_models') 
     48    #if os.path.isdir(f_path): 
    4949    #     for f in os.listdir(f_path): 
    5050    #         if f in plugin_model_list: 
     
    276276append_file(file_sources, gen_dir) 
    277277 
     278#Wojtek's hacky way to add doc files while bundling egg 
     279#def add_doc_files(directory): 
     280#    paths = [] 
     281#    for (path, directories, filenames) in os.walk(directory): 
     282#        for filename in filenames: 
     283#            paths.append(os.path.join(path, filename)) 
     284#    return paths 
     285 
     286#doc_files = add_doc_files('doc') 
     287 
    278288# SasView 
    279289package_dir["sas.sasview"] = "sasview" 
    280 package_data['sas.sasview'] = ['images/*',  
     290package_data['sas.sasview'] = ['images/*', 
    281291                               'media/*', 
    282292                               'test/*.txt', 
Note: See TracChangeset for help on using the changeset viewer.