- Timestamp:
- Aug 11, 2011 4:55:21 PM (13 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:
- 1f99b25
- Parents:
- e806f25
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/scripts/build_sansview.py
rff00215 rd54f1b0 73 73 INVARIANT = "0.9.1" 74 74 INV_VIEW = "0.9" 75 FIT_VIEW = "0.9.1" 75 76 76 77 # URLs for SVN repos 77 78 SANSMODELS_URL = "svn://danse.us/sans/releases/sansmodels-%s" % SANSMODELS 78 DATALOADER_URL = "svn://danse.us/sans/releases/ DataLoader-%s" % DATALOADER79 DATALOADER_URL = "svn://danse.us/sans/releases/sansdataloader-%s" % DATALOADER 79 80 GUIFRAME_URL = "svn://danse.us/sans/releases/guiframe-%s" % GUIFRAME 80 81 PLOTTOOLS_URL = "svn://danse.us/common/releases/plottools-%s/trunk" % PLOTTOOLS 81 82 UTIL_URL = "svn://danse.us/common/releases/util-%s" % UTIL 82 83 SANSVIEW_URL = "svn://danse.us/sans/releases/sansview-%s" % SANSVIEW 84 FIT_URL = "svn://danse.us/sans/releases/fittingview-%s" % FIT_VIEW 83 85 PARK_INTEG_URL = "svn://danse.us/sans/releases/park_integration-%s" % PARK_INTEG 84 86 PARK_URL = "svn://danse.us/park/releases/park-%s" % PARK 85 PRVIEW_URL = "svn://danse.us/sans/releases/ prview-%s" % PRVIEW87 PRVIEW_URL = "svn://danse.us/sans/releases/inversionview-%s" % PRVIEW 86 88 PR_INV_URL = "svn://danse.us/sans/releases/pr_inversion-%s" % PR_INV 87 CALC_URL = "svn://danse.us/sans/releases/ calculator-%s" % CALCULATOR89 CALC_URL = "svn://danse.us/sans/releases/sanscalculator-%s" % CALCULATOR 88 90 CALC_VIEW_URL = "svn://danse.us/sans/releases/calculatorview-%s" % CALC_VIEW 89 INV_URL = "svn://danse.us/sans/releases/ Invariant-%s" % INVARIANT91 INV_URL = "svn://danse.us/sans/releases/sansinvariant-%s" % INVARIANT 90 92 INV_VIEW_URL = "svn://danse.us/sans/releases/invariantview-%s" % INV_VIEW 91 93 … … 157 159 os.chdir(wd) 158 160 if release: 159 install_pkg(".", " DataLoader-%s" % DATALOADER, DATALOADER_URL)160 else: 161 install_pkg(".", " DataLoader", "svn://danse.us/sans/trunk/DataLoader")161 install_pkg(".", "sansdataloader-%s" % DATALOADER, DATALOADER_URL) 162 else: 163 install_pkg(".", "sansdataloader", "svn://danse.us/sans/trunk/sansdataloader") 162 164 163 165 os.chdir(wd) … … 169 171 os.chdir(wd) 170 172 if release: 171 install_pkg(".", " guiframe-%s" % GUIFRAME, GUIFRAME_URL)172 else: 173 install_pkg(".", " guiframe", "svn://danse.us/sans/trunk/guiframe")173 install_pkg(".", "sansguiframe-%s" % GUIFRAME, GUIFRAME_URL) 174 else: 175 install_pkg(".", "sansguiframe", "svn://danse.us/sans/trunk/sansguiframe") 174 176 175 177 os.chdir(wd) … … 193 195 os.chdir(wd) 194 196 if release: 195 install_pkg(".", " prview-%s" % PRVIEW, PRVIEW_URL)196 else: 197 install_pkg(".", "prview", "svn://danse.us/sans/trunk/ prview")197 install_pkg(".", "inversionview-%s" % PRVIEW, PRVIEW_URL) 198 else: 199 install_pkg(".", "prview", "svn://danse.us/sans/trunk/inversionview") 198 200 199 201 os.chdir(wd) … … 205 207 os.chdir(wd) 206 208 if release: 207 install_pkg(".", " Invariant-%s" % INVARIANT, INV_URL)208 else: 209 install_pkg(".", "Invariant", "svn://danse.us/sans/trunk/ Invariant")209 install_pkg(".", "sansinvariant-%s" % INVARIANT, INV_URL) 210 else: 211 install_pkg(".", "Invariant", "svn://danse.us/sans/trunk/sansinvariant") 210 212 211 213 os.chdir(wd) … … 223 225 os.chdir(wd) 224 226 if release: 225 install_pkg(".", " calculator-%s" % CALCULATOR, CALC_URL)226 else: 227 install_pkg(".", " calculator", "svn://danse.us/sans/trunk/calculator")227 install_pkg(".", "sanscalculator-%s" % CALCULATOR, CALC_URL) 228 else: 229 install_pkg(".", "sanscalculator", "svn://danse.us/sans/trunk/sanscalculator") 228 230 229 231 … … 233 235 else: 234 236 install_pkg(".", "park-1.2", "svn://danse.us/park/branches/park-1.2") 235 237 238 os.chdir(wd) 239 if release: 240 os.system(".", "fittingview-%s" % FIT_VIEW, FIT_URL) 241 else: 242 os.system(".", "fittingview", "svn://danse.us/sans/trunk/fittingview") 243 236 244 os.chdir(wd) 237 245 if release: … … 323 331 print PRVIEW 324 332 print PR_INV 333 print FIT_URL 325 334 else: 326 335 logging.info("Build script for SansView %s" % SANSVIEW)
Note: See TracChangeset
for help on using the changeset viewer.