Changeset fa523d3 in sasview
- Timestamp:
- Apr 12, 2009 8:19:08 PM (16 years ago)
- 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
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/build_sansview.py
r249bae9 rfa523d3 39 39 UTIL = "0.1" 40 40 PARK = "1.2.x" 41 PARK_INTEG = "0.1.0" 41 42 42 43 SANSMODELS_URL = "svn://danse.us/sans/releases/sansmodels-%s" % SANSMODELS … … 47 48 UTIL_URL = "svn://danse.us/common/releases/util-%s" % UTIL 48 49 SANSVIEW_URL = "svn://danse.us/sans/releases/sansview-%s" % SANSVIEW 50 PARK_INTEG_URL = "svn://danse.us/sans/releases/park_integration-%s" % PARK_INTEG 49 51 #TODO: need to use the release branch of PARK once it is created 50 52 PARK_URL = "svn://danse.us/park/branches/park-1.2" … … 140 142 else: 141 143 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") 142 150 143 151 #TODO: need a release version of PARK … … 181 189 print " -i: Builds an installer from the release version" 182 190 print " -n: Print out the dependencies for the release notes" 183 if sys.argv[1]=="-n":191 elif sys.argv[1]=="-n": 184 192 print SANSMODELS_URL 185 193 print DATALOADER_URL … … 188 196 print PLOTTOOLS_URL 189 197 print UTIL_URL 190 print SANSVIEW_URL 198 print SANSVIEW_URL 199 print PARK_INTEG 191 200 print PARK_URL 192 201 else:
Note: See TracChangeset
for help on using the changeset viewer.