Changeset fa523d3 in sasview


Ignore:
Timestamp:
Apr 12, 2009 8:19:08 PM (16 years ago)
Author:
Mathieu Doucet <doucetm@…>
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:
553d047
Parents:
445f949
Message:

sansview: added a dependency to the build script

File:
1 edited

Legend:

Unmodified
Added
Removed
  • sansview/build_sansview.py

    r249bae9 rfa523d3  
    3939UTIL       = "0.1" 
    4040PARK       = "1.2.x" 
     41PARK_INTEG = "0.1.0" 
    4142 
    4243SANSMODELS_URL = "svn://danse.us/sans/releases/sansmodels-%s" % SANSMODELS 
     
    4748UTIL_URL = "svn://danse.us/common/releases/util-%s" % UTIL 
    4849SANSVIEW_URL = "svn://danse.us/sans/releases/sansview-%s" % SANSVIEW 
     50PARK_INTEG_URL = "svn://danse.us/sans/releases/park_integration-%s" % PARK_INTEG 
    4951#TODO: need to use the release branch of PARK once it is created 
    5052PARK_URL = "svn://danse.us/park/branches/park-1.2" 
     
    140142    else: 
    141143        install_pkg(".", "util", "svn://danse.us/common/util") 
     144     
     145    os.chdir(wd) 
     146    if release: 
     147        install_pkg(".", "park_integration-%s" % PARK_INTEG, PARK_INTEG_URL) 
     148    else: 
     149        install_pkg(".", "park_integration", "svn://danse.us/sans/trunk/park_integration") 
    142150     
    143151    #TODO: need a release version of PARK 
     
    181189            print "    -i: Builds an installer from the release version"         
    182190            print "    -n: Print out the dependencies for the release notes" 
    183         if sys.argv[1]=="-n": 
     191        elif sys.argv[1]=="-n": 
    184192            print SANSMODELS_URL  
    185193            print DATALOADER_URL  
     
    188196            print PLOTTOOLS_URL  
    189197            print UTIL_URL  
    190             print SANSVIEW_URL  
     198            print SANSVIEW_URL 
     199            print PARK_INTEG  
    191200            print PARK_URL  
    192201        else: 
Note: See TracChangeset for help on using the changeset viewer.