Changes in / [44d20af:c95a1a5] in sasview
- Files:
-
- 1 added
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
build_tools/jenkins_osx_build.sh
r460f5f2 ra003f3c 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()"` sasview.app49 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__"` -
sasview.latestversion
r0ea31ca r9533593 1 3.1. 01 3.1.1 -
sasview/README.txt
rbe34c71 r9533593 4 4 1- Features 5 5 =========== 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. 6 11 7 12 - New in Version 3.1.0 -
sasview/__init__.py
rbc84fa7 r9533593 1 __version__ = "3.1. 0"1 __version__ = "3.1.1" 2 2 __build__ = "1" -
sasview/setup_mac.py
r018582f r49cd712 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 sasviewver 120 121 VERSION = sasviewver.__version__ 122 APPNAME = "SasView "+VERSION 123 DMGNAME = "SasView-"+VERSION 124 118 125 APP = ['sasview.py'] 119 126 DATA_FILES += ['images','test','media'] … … 133 140 } 134 141 setup( 135 name= "sasview",142 name=APPNAME, 136 143 app=APP, 137 144 data_files=DATA_FILES, … … 140 147 setup_requires=['py2app'], 141 148 ) 149 150 #Build dmg 151 DMG="dist/%s.dmg"%DMGNAME 152 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.