Changeset b470477 in sasview


Ignore:
Timestamp:
Aug 18, 2011 12:52:22 PM (13 years ago)
Author:
Jae Cho <jhjcho@…>
Branches:
master, ESS_GUI, ESS_GUI_Docs, ESS_GUI_batch_fitting, ESS_GUI_bumps_abstraction, ESS_GUI_iss1116, ESS_GUI_iss879, ESS_GUI_iss959, ESS_GUI_opencl, ESS_GUI_ordering, ESS_GUI_sync_sascalc, costrafo411, magnetic_scatt, release-4.1.1, release-4.1.2, release-4.2.2, release_4.0.1, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
Children:
f67ed10
Parents:
c648414
Message:

fixes of build scripts

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/build_sansview.py

    rfa597990 rb470477  
    7979DATALOADER_URL = "svn://danse.us/sans/releases/sansdataloader-%s" % DATALOADER 
    8080GUIFRAME_URL = "svn://danse.us/sans/releases/sansguiframe-%s" % GUIFRAME 
    81 PLOTTOOLS_URL = "svn://danse.us/common/releases/plottools-%s/trunk" % PLOTTOOLS 
     81PLOTTOOLS_URL = "svn://danse.us/common/releases/plottools-%s" % PLOTTOOLS 
    8282UTIL_URL = "svn://danse.us/common/releases/util-%s" % UTIL 
    8383SANSVIEW_URL = "svn://danse.us/sans/releases/sansview-%s" % SANSVIEW 
     
    177177    os.chdir(wd) 
    178178    if release: 
    179         install_pkg("plottools-%s" % PLOTTOOLS, "trunk", PLOTTOOLS_URL) 
    180     else: 
    181         install_pkg("plottools", "trunk", "svn://danse.us/common/plottools/trunk") 
     179        install_pkg(".", "plottools-%s" % PLOTTOOLS, PLOTTOOLS_URL) 
     180    else: 
     181        install_pkg(".", "plottools", "svn://danse.us/common/plottools") 
    182182     
    183183    os.chdir(wd) 
     
    197197        install_pkg(".", "inversionview-%s" % PRVIEW, PRVIEW_URL) 
    198198    else: 
    199         install_pkg(".", "prview", "svn://danse.us/sans/trunk/inversionview") 
     199        install_pkg(".", "inversionview", "svn://danse.us/sans/trunk/inversionview") 
    200200     
    201201    os.chdir(wd) 
     
    209209        install_pkg(".", "sansinvariant-%s" % INVARIANT, INV_URL) 
    210210    else: 
    211         install_pkg(".", "Invariant", "svn://danse.us/sans/trunk/sansinvariant") 
     211        install_pkg(".", "sansinvariant", "svn://danse.us/sans/trunk/sansinvariant") 
    212212     
    213213    os.chdir(wd) 
     
    238238    os.chdir(wd) 
    239239    if release: 
    240         os.system(".", "fittingview-%s" % FIT_VIEW, FIT_URL) 
    241     else: 
    242         os.system(".", "fittingview", "svn://danse.us/sans/trunk/fittingview") 
     240        install_pkg(".", "fittingview-%s" % FIT_VIEW, FIT_URL) 
     241    else: 
     242        install_pkg(".", "fittingview", "svn://danse.us/sans/trunk/fittingview") 
    243243             
    244244    os.chdir(wd) 
     
    262262        old_dirs = [os.path.join(libdir, 'danse'), 
    263263                    os.path.join(libdir, 'data_util'), 
    264                     os.path.join(libdir, 'DataLoader'), 
    265264                    os.path.join(libdir, 'park'), 
    266265                    os.path.join(libdir, 'sans'), 
    267                     os.path.join(libdir, 'sans_extension'), 
    268266                    ] 
    269267        for d in old_dirs: 
Note: See TracChangeset for help on using the changeset viewer.