Changeset b81af72 in sasview


Ignore:
Timestamp:
Oct 2, 2009 8:20:10 PM (15 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:
690003a
Parents:
abf2d75
Message:

sansview: updated release notes and build script

Location:
sansview
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • sansview/build_sansview.py

    rb81cf5c rb81af72  
    66# SVN must be installed: 
    77# 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 
    1518# 
    1619# Usage: 
     
    2023#   -r: Builds a SansView using the released modules. 
    2124#   -t: Builds SansView from the trunk. 
    22 #   -i: Builds an installer from the release version. 
     25#   -i: Builds a Windows installer from the release version. 
    2326#   -n: Print out the dependencies for the release notes 
    2427 
     
    5053INNO   = "\"c:\Program Files\Inno Setup 5\ISCC\"" 
    5154 
    52 # Release version 0.9.1 
    53 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 
     56SANSMODELS = "0.4.5" 
     57DATALOADER = "0.2.5" 
     58GUICOMM    = "0.1.3" 
     59GUIFRAME   = "0.1.8" 
     60SANSVIEW   = "0.1.0" 
     61PLOTTOOLS  = "0.1.7" 
     62UTIL       = "0.1.3" 
    6063PARK       = "1.2" 
    61 PARK_INTEG = "0.1.2" 
     64PARK_INTEG = "0.1.3" 
     65PRVIEW     = "0.3.1" 
     66PR_INV     = "0.2.3" 
    6267 
    6368# URLs for SVN repos 
     
    7176PARK_INTEG_URL = "svn://danse.us/sans/releases/park_integration-%s" % PARK_INTEG 
    7277PARK_URL = "svn://danse.us/park/releases/park-%s" % PARK 
     78PRVIEW_URL = "svn://danse.us/sans/releases/prview-%s" % PRVIEW 
     79PR_INV_URL = "svn://danse.us/sans/releases/pr_inversion-%s" % PR_INV 
    7380 
    7481 
     
    163170    else: 
    164171        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") 
    165184     
    166185    #TODO: need a release version of PARK 
     
    256275            print PARK_INTEG_URL  
    257276            print PARK_URL  
     277            print PRVIEW  
     278            print PR_INV  
    258279        else: 
    259280            logging.info("Build script for SansView %s" % SANSVIEW) 
  • sansview/releases_notes.txt

    r82834fa rb81af72  
    5353                        svn://danse.us/park/releases/park-1.2 (run 'python setup.py install' under the 'park-1.2' folder) 
    5454                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) 
    5656                svn://danse.us/sans/releases/pr_inversion-0.2.3 (run 'python setup.py install'under the 'pr_inversion-0.2.3' folder) 
    5757                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.