Changeset b81af72 in sasview
- Timestamp:
- Oct 2, 2009 10:20:10 PM (15 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:
- 690003a
- Parents:
- abf2d75
- Location:
- sansview
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
sansview/build_sansview.py
rb81cf5c rb81af72 6 6 # SVN must be installed: 7 7 # http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 8 # Make sure svn.exe in on the path. You might need to log out and log back in again after installing SVN. 9 # 10 # Inno Setup must be installed 11 # 12 # py2exe must be installed 13 # 14 # mingw must be installed 8 # 9 # 10 # On Windows: 11 # - make sure svn.exe in on the path. You might need to log out and log back in again after installing SVN. 12 # 13 # - Inno Setup must be installed 14 # 15 # - py2exe must be installed 16 # 17 # - mingw must be installed 15 18 # 16 19 # Usage: … … 20 23 # -r: Builds a SansView using the released modules. 21 24 # -t: Builds SansView from the trunk. 22 # -i: Builds a ninstaller from the release version.25 # -i: Builds a Windows installer from the release version. 23 26 # -n: Print out the dependencies for the release notes 24 27 … … 50 53 INNO = "\"c:\Program Files\Inno Setup 5\ISCC\"" 51 54 52 # Release version 0. 9.153 SANSMODELS = "0.4. 4"54 DATALOADER = "0.2. 3"55 GUICOMM = "0.1. 2"56 GUIFRAME = "0.1. 6"57 SANSVIEW = "0. 9.1"58 PLOTTOOLS = "0.1. 5"59 UTIL = "0.1. 1"55 # Release version 0.1.0 56 SANSMODELS = "0.4.5" 57 DATALOADER = "0.2.5" 58 GUICOMM = "0.1.3" 59 GUIFRAME = "0.1.8" 60 SANSVIEW = "0.1.0" 61 PLOTTOOLS = "0.1.7" 62 UTIL = "0.1.3" 60 63 PARK = "1.2" 61 PARK_INTEG = "0.1.2" 64 PARK_INTEG = "0.1.3" 65 PRVIEW = "0.3.1" 66 PR_INV = "0.2.3" 62 67 63 68 # URLs for SVN repos … … 71 76 PARK_INTEG_URL = "svn://danse.us/sans/releases/park_integration-%s" % PARK_INTEG 72 77 PARK_URL = "svn://danse.us/park/releases/park-%s" % PARK 78 PRVIEW_URL = "svn://danse.us/sans/releases/prview-%s" % PRVIEW 79 PR_INV_URL = "svn://danse.us/sans/releases/pr_inversion-%s" % PR_INV 73 80 74 81 … … 163 170 else: 164 171 install_pkg(".", "park_integration", "svn://danse.us/sans/trunk/park_integration") 172 173 os.chdir(wd) 174 if release: 175 install_pkg(".", "prview-%s" % PRVIEW, PRVIEW_URL) 176 else: 177 install_pkg(".", "prview", "svn://danse.us/sans/trunk/prview") 178 179 os.chdir(wd) 180 if release: 181 install_pkg(".", "pr_inversion-%s" % PR_INV, PR_INV_URL) 182 else: 183 install_pkg(".", "pr_inversion", "svn://danse.us/sans/trunk/pr_inversion") 165 184 166 185 #TODO: need a release version of PARK … … 256 275 print PARK_INTEG_URL 257 276 print PARK_URL 277 print PRVIEW 278 print PR_INV 258 279 else: 259 280 logging.info("Build script for SansView %s" % SANSVIEW) -
sansview/releases_notes.txt
r82834fa rb81af72 53 53 svn://danse.us/park/releases/park-1.2 (run 'python setup.py install' under the 'park-1.2' folder) 54 54 svn://danse.us/common/releases/plottools-0.1.7 (run 'python setup.py install'under the 'plottools-0.1.7\trunk\' folder) 55 svn://danse.us/common/releases/util-0.1.3 (run 'python setup.py install'under the 'util-0.1. 2' folder)55 svn://danse.us/common/releases/util-0.1.3 (run 'python setup.py install'under the 'util-0.1.3' folder) 56 56 svn://danse.us/sans/releases/pr_inversion-0.2.3 (run 'python setup.py install'under the 'pr_inversion-0.2.3' folder) 57 57 svn://danse.us/sans/releases/prview-0.3.1 (run 'python setup.py install'under the 'prview-0.3.1' folder)
Note: See TracChangeset
for help on using the changeset viewer.