Changes in / [44d20af:c95a1a5] in sasview


Ignore:
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • build_tools/jenkins_osx_build.sh

    r460f5f2 ra003f3c  
    4747 
    4848cd $WORKSPACE/sasview/dist 
    49 tar -czf `python -c "import pkg_resources;print '%s.tar.gz' % pkg_resources.get_distribution('sasview').egg_name()"` sasview.app 
     49tar -czf `python -c "import pkg_resources;print '%s.tar.gz' % pkg_resources.get_distribution('sasview').egg_name()"` `python -c "import sasview; print 'SasView-%s.app' % sasview.__version__"` 
  • sasview.latestversion

    r0ea31ca r9533593  
    1 3.1.0 
     13.1.1 
  • sasview/README.txt

    rbe34c71 r9533593  
    441- Features 
    55=========== 
     6 
     7   - New in Version 3.1.1 
     8     -------------------- 
     9     - Fixes bug #457 that prevented SasView from starting if the user was not 
     10       connected to the internet, or was behind a proxy server. 
    611 
    712   - New in Version 3.1.0 
  • sasview/__init__.py

    rbc84fa7 r9533593  
    1 __version__ = "3.1.0" 
     1__version__ = "3.1.1" 
    22__build__ = "1" 
  • sasview/setup_mac.py

    r018582f r49cd712  
    116116                                   CFBundleTypeRole="Shell" )],) 
    117117 
     118#Get version - NB nasty hack. Need to find correct way to give path to installed sasview (AJJ) 
     119import __init__ as sasviewver 
     120 
     121VERSION = sasviewver.__version__ 
     122APPNAME = "SasView "+VERSION 
     123DMGNAME = "SasView-"+VERSION 
     124 
    118125APP = ['sasview.py'] 
    119126DATA_FILES += ['images','test','media'] 
     
    133140           } 
    134141setup( 
    135     name="sasview", 
     142    name=APPNAME, 
    136143    app=APP, 
    137144    data_files=DATA_FILES, 
     
    140147    setup_requires=['py2app'], 
    141148) 
     149 
     150#Build dmg 
     151DMG="dist/%s.dmg"%DMGNAME 
     152if os.path.exists(DMG): os.unlink(DMG) 
     153os.system('cd dist && ../../build_tools/dmgpack.sh "%s" "%s.app"'%(DMGNAME,APPNAME)) 
     154os.system('chmod a+r "%s"'%DMG) 
     155 
Note: See TracChangeset for help on using the changeset viewer.