Changes in / [c95a1a5:44d20af] in sasview
- Files:
-
- 1 deleted
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
build_tools/jenkins_osx_build.sh
ra003f3c r460f5f2 47 47 48 48 cd $WORKSPACE/sasview/dist 49 tar -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__"`49 tar -czf `python -c "import pkg_resources;print '%s.tar.gz' % pkg_resources.get_distribution('sasview').egg_name()"` sasview.app -
sasview.latestversion
r9533593 r0ea31ca 1 3.1. 11 3.1.0 -
sasview/README.txt
r9533593 rbe34c71 4 4 1- Features 5 5 =========== 6 7 - New in Version 3.1.18 --------------------9 - Fixes bug #457 that prevented SasView from starting if the user was not10 connected to the internet, or was behind a proxy server.11 6 12 7 - New in Version 3.1.0 -
sasview/__init__.py
r9533593 rbc84fa7 1 __version__ = "3.1. 1"1 __version__ = "3.1.0" 2 2 __build__ = "1" -
sasview/setup_mac.py
r49cd712 r018582f 116 116 CFBundleTypeRole="Shell" )],) 117 117 118 #Get version - NB nasty hack. Need to find correct way to give path to installed sasview (AJJ)119 import __init__ as sasviewver120 121 VERSION = sasviewver.__version__122 APPNAME = "SasView "+VERSION123 DMGNAME = "SasView-"+VERSION124 125 118 APP = ['sasview.py'] 126 119 DATA_FILES += ['images','test','media'] … … 140 133 } 141 134 setup( 142 name= APPNAME,135 name="sasview", 143 136 app=APP, 144 137 data_files=DATA_FILES, … … 147 140 setup_requires=['py2app'], 148 141 ) 149 150 #Build dmg151 DMG="dist/%s.dmg"%DMGNAME152 if os.path.exists(DMG): os.unlink(DMG)153 os.system('cd dist && ../../build_tools/dmgpack.sh "%s" "%s.app"'%(DMGNAME,APPNAME))154 os.system('chmod a+r "%s"'%DMG)155
Note: See TracChangeset
for help on using the changeset viewer.