[3892] | 1 | """Create a distribution of ANUGA from latest revision |
---|
| 2 | |
---|
| 3 | This script is assumed to be run in the root directory of anuga |
---|
| 4 | from a working sandpit connected to svn |
---|
| 5 | |
---|
| 6 | This script works only on Linux |
---|
| 7 | """ |
---|
| 8 | |
---|
| 9 | from os import sep, system, remove |
---|
| 10 | from tempfile import mktemp |
---|
| 11 | from sys import platform |
---|
[3937] | 12 | from anuga.utilities.system_tools import get_user_name, get_host_name |
---|
[3892] | 13 | |
---|
| 14 | |
---|
| 15 | if platform == 'win32': |
---|
| 16 | msg = 'This script is not written for Windows.'+\ |
---|
| 17 | 'Please run it on a Unix platform' |
---|
| 18 | raise Exception, msg |
---|
| 19 | |
---|
| 20 | |
---|
| 21 | # Define main version manually |
---|
| 22 | major_revision = '1.0' |
---|
| 23 | |
---|
| 24 | |
---|
[3922] | 25 | # Refresh sandit and retrieve svn revision number |
---|
| 26 | # from last line in svn update output |
---|
[3892] | 27 | filename = mktemp() + '.txt' |
---|
| 28 | |
---|
| 29 | s = 'svn update > %s' %filename |
---|
| 30 | print s |
---|
| 31 | system(s) |
---|
| 32 | |
---|
| 33 | fid = open(filename) |
---|
[3922] | 34 | last_line = fid.readlines()[-1] |
---|
[3892] | 35 | remove(filename) |
---|
[3934] | 36 | if not (last_line.startswith('At revision') or\ |
---|
| 37 | last_line.startswith('Updated to revision')): |
---|
[3922] | 38 | msg = 'Unexpected output from svn up: %s' %last_line |
---|
[3892] | 39 | raise Exception, msg |
---|
| 40 | |
---|
[3934] | 41 | fields = last_line.split() |
---|
| 42 | svn_revision = fields[-1][:-1] |
---|
[3892] | 43 | |
---|
[3922] | 44 | revision = '%s_%s' %(major_revision, svn_revision) |
---|
[3892] | 45 | |
---|
[3934] | 46 | print 'Creating ANUGA revision %s' %revision |
---|
| 47 | |
---|
[3892] | 48 | distro_filename = 'anuga-%s.tgz' %revision |
---|
| 49 | |
---|
[3902] | 50 | # Create area directory |
---|
| 51 | release_dir = '~/anuga_release_%s' %revision |
---|
| 52 | s = 'mkdir %s' %release_dir |
---|
| 53 | try: |
---|
| 54 | system(s) |
---|
| 55 | except: |
---|
| 56 | pass |
---|
| 57 | |
---|
| 58 | |
---|
[3892] | 59 | # Export a clean directory tree from the working copy |
---|
| 60 | distro_dir = mktemp() |
---|
| 61 | s = 'mkdir %s' %distro_dir |
---|
| 62 | print s |
---|
| 63 | system(s) |
---|
| 64 | |
---|
| 65 | s = 'svn export anuga_core/source/anuga %s/anuga' %(distro_dir) |
---|
| 66 | print s |
---|
| 67 | system(s) |
---|
| 68 | |
---|
| 69 | # Zip it up |
---|
| 70 | s = 'cd %s;tar cvfz %s *' %(distro_dir, distro_filename) |
---|
| 71 | print s |
---|
| 72 | system(s) |
---|
| 73 | |
---|
[3902] | 74 | # Move distro to release area |
---|
| 75 | s = '/bin/mv %s/*.tgz %s' %(distro_dir, release_dir) |
---|
| 76 | print s |
---|
| 77 | system(s) |
---|
| 78 | |
---|
[3892] | 79 | # Clean up |
---|
| 80 | s = '/bin/rm -rf %s/anuga' %(distro_dir) |
---|
| 81 | print s |
---|
| 82 | system(s) |
---|
| 83 | |
---|
[3902] | 84 | |
---|
| 85 | #----------------------------- |
---|
[3892] | 86 | # Get validation_files as well |
---|
[3902] | 87 | |
---|
| 88 | s = 'mkdir %s/anuga_validation' %distro_dir |
---|
| 89 | system(s) |
---|
| 90 | |
---|
| 91 | s = 'svn export anuga_validation/okushiri_2005 %s/anuga_validation/okushiri'\ |
---|
| 92 | %(distro_dir) |
---|
[3892] | 93 | print s |
---|
| 94 | system(s) |
---|
| 95 | |
---|
| 96 | # Other validations in here!!! |
---|
| 97 | |
---|
| 98 | # Zip it up |
---|
| 99 | s = 'cd %s;tar cvfz anuga_validation-%s.tgz *'\ |
---|
| 100 | %(distro_dir, revision) |
---|
| 101 | print s |
---|
| 102 | system(s) |
---|
| 103 | |
---|
[3902] | 104 | # Move distro to release area |
---|
| 105 | s = '/bin/mv %s/*.tgz %s' %(distro_dir, release_dir) |
---|
| 106 | print s |
---|
| 107 | system(s) |
---|
| 108 | |
---|
[3892] | 109 | # Clean up |
---|
[3902] | 110 | s = '/bin/rm -rf %s/anuga_validation' %(distro_dir) |
---|
[3892] | 111 | print s |
---|
| 112 | system(s) |
---|
| 113 | |
---|
[3987] | 114 | |
---|
[3902] | 115 | #----------------------------- |
---|
[3987] | 116 | # Get demos from user manual |
---|
| 117 | |
---|
| 118 | #s = 'mkdir %s/anuga_demos' %distro_dir |
---|
| 119 | #system(s) |
---|
| 120 | |
---|
| 121 | s = 'svn export anuga_core/documentation/user_manual/demos %s/anuga_demos'\ |
---|
| 122 | %(distro_dir) |
---|
| 123 | print s |
---|
| 124 | system(s) |
---|
| 125 | |
---|
| 126 | # Zip it up |
---|
| 127 | s = 'cd %s;tar cvfz anuga_demos-%s.tgz *'\ |
---|
| 128 | %(distro_dir, revision) |
---|
| 129 | print s |
---|
| 130 | system(s) |
---|
| 131 | |
---|
| 132 | # Move distro to release area |
---|
| 133 | s = '/bin/mv %s/*.tgz %s' %(distro_dir, release_dir) |
---|
| 134 | print s |
---|
| 135 | system(s) |
---|
| 136 | |
---|
| 137 | # Clean up |
---|
| 138 | s = '/bin/rm -rf %s/anuga_demos' %(distro_dir) |
---|
| 139 | print s |
---|
| 140 | system(s) |
---|
| 141 | |
---|
| 142 | |
---|
| 143 | |
---|
| 144 | #----------------------------- |
---|
[3892] | 145 | # Copy anuga_viewer |
---|
| 146 | s = '/bin/cp ./anuga_core/source/anuga_viewer/distros/anuga_viewer_1.0.tgz %s'\ |
---|
| 147 | %(distro_dir) |
---|
| 148 | print s |
---|
| 149 | system(s) |
---|
| 150 | |
---|
[3902] | 151 | # Move distro to release area |
---|
[3892] | 152 | s = '/bin/mv %s/*.tgz %s' %(distro_dir, release_dir) |
---|
| 153 | print s |
---|
| 154 | system(s) |
---|
[3902] | 155 | |
---|
[3922] | 156 | #----------------------------- |
---|
| 157 | # Hey, why not compile and bundle up the LaTeX documentation as well |
---|
[3902] | 158 | |
---|
[3922] | 159 | s = 'cd anuga_core/documentation/user_manual;' |
---|
| 160 | s += 'python update_anuga_user_manual.py --no_html' |
---|
| 161 | print s |
---|
| 162 | system(s) |
---|
| 163 | |
---|
| 164 | s = '/bin/mv anuga_core/documentation/user_manual/anuga_user_manual.pdf %s'\ |
---|
| 165 | %(release_dir) |
---|
| 166 | print s |
---|
| 167 | system(s) |
---|
| 168 | |
---|
| 169 | s = '/bin/mv anuga_core/documentation/user_manual/anuga_installation_guide.pdf %s'\ |
---|
| 170 | %(release_dir) |
---|
| 171 | print s |
---|
| 172 | system(s) |
---|
| 173 | |
---|
| 174 | |
---|
| 175 | |
---|
[3902] | 176 | #----------------------------- |
---|
[3892] | 177 | print 'Done' |
---|
| 178 | print |
---|
| 179 | print |
---|
| 180 | print 'The release files are in %s:' %release_dir |
---|
| 181 | system('ls -la %s' %release_dir) |
---|
[3934] | 182 | |
---|
| 183 | |
---|
| 184 | |
---|
| 185 | #---------------------------- |
---|
| 186 | # Throw away code to drop all files into the RAMP download area |
---|
| 187 | # This is hardwired for Ole |
---|
| 188 | |
---|
[3937] | 189 | if get_user_name() == 'ole' and get_host_name() == 'nautilus': |
---|
[3934] | 190 | |
---|
[3990] | 191 | # Copy to RAMP |
---|
| 192 | s = 'rsync -avz %s/* onielsen@cyclone:/d/cit/1/cit/risk_assessment_methods_project/downloads/ANUGA_install/%s' %(release_dir, 'anuga_%s' %revision) |
---|
[3937] | 193 | print s |
---|
| 194 | system(s) |
---|
| 195 | |
---|
[3990] | 196 | #system('scp %s/*.pdf onielsen@cyclone:/d/cit/1/cit/risk_assessment_methods_project/downloads/ANUGA_install' %release_dir)# |
---|
| 197 | |
---|
| 198 | |
---|
| 199 | |
---|
| 200 | # Copy to the ANU |
---|
| 201 | |
---|
| 202 | s = 'rsync -avz %s/* ole@datamining.anu.edu.au:public_html/software/%s' %(release_dir, 'anuga_%s' %revision) |
---|
| 203 | print s |
---|
| 204 | system(s) |
---|
| 205 | |
---|
| 206 | |
---|