Changeset b470477 in sasview
- Timestamp:
- Aug 18, 2011 10:52:22 AM (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:
- f67ed10
- Parents:
- c648414
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/build_sansview.py
rfa597990 rb470477 79 79 DATALOADER_URL = "svn://danse.us/sans/releases/sansdataloader-%s" % DATALOADER 80 80 GUIFRAME_URL = "svn://danse.us/sans/releases/sansguiframe-%s" % GUIFRAME 81 PLOTTOOLS_URL = "svn://danse.us/common/releases/plottools-%s /trunk" % PLOTTOOLS81 PLOTTOOLS_URL = "svn://danse.us/common/releases/plottools-%s" % PLOTTOOLS 82 82 UTIL_URL = "svn://danse.us/common/releases/util-%s" % UTIL 83 83 SANSVIEW_URL = "svn://danse.us/sans/releases/sansview-%s" % SANSVIEW … … 177 177 os.chdir(wd) 178 178 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") 182 182 183 183 os.chdir(wd) … … 197 197 install_pkg(".", "inversionview-%s" % PRVIEW, PRVIEW_URL) 198 198 else: 199 install_pkg(".", " prview", "svn://danse.us/sans/trunk/inversionview")199 install_pkg(".", "inversionview", "svn://danse.us/sans/trunk/inversionview") 200 200 201 201 os.chdir(wd) … … 209 209 install_pkg(".", "sansinvariant-%s" % INVARIANT, INV_URL) 210 210 else: 211 install_pkg(".", " Invariant", "svn://danse.us/sans/trunk/sansinvariant")211 install_pkg(".", "sansinvariant", "svn://danse.us/sans/trunk/sansinvariant") 212 212 213 213 os.chdir(wd) … … 238 238 os.chdir(wd) 239 239 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") 243 243 244 244 os.chdir(wd) … … 262 262 old_dirs = [os.path.join(libdir, 'danse'), 263 263 os.path.join(libdir, 'data_util'), 264 os.path.join(libdir, 'DataLoader'),265 264 os.path.join(libdir, 'park'), 266 265 os.path.join(libdir, 'sans'), 267 os.path.join(libdir, 'sans_extension'),268 266 ] 269 267 for d in old_dirs:
Note: See TracChangeset
for help on using the changeset viewer.