[40f9745] | 1 | # |
---|
| 2 | # Script to get source from SVN and build SansView |
---|
| 3 | # |
---|
| 4 | # Read the release notes to make ensure that the required software is installed. |
---|
| 5 | # |
---|
| 6 | # SVN must be installed: |
---|
| 7 | # http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91 |
---|
| 8 | # |
---|
| 9 | # |
---|
[b81af72] | 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. |
---|
[40f9745] | 12 | # |
---|
[b81af72] | 13 | # - Inno Setup must be installed |
---|
| 14 | # |
---|
| 15 | # - py2exe must be installed |
---|
| 16 | # |
---|
| 17 | # - mingw must be installed |
---|
[249bae9] | 18 | # |
---|
[db7b92e] | 19 | # On Mac: |
---|
[ee370db] | 20 | # - py2app must be installed |
---|
| 21 | # - macholib must be installed to use py2app |
---|
| 22 | # - modulegraph must be installed to use py2app |
---|
[db7b92e] | 23 | # |
---|
[40f9745] | 24 | # Usage: |
---|
| 25 | # python build_sansview [command] |
---|
| 26 | # [command] can be any of the following: |
---|
| 27 | # -h: lists the command line options |
---|
| 28 | # -r: Builds a SansView using the released modules. |
---|
[a0288ff] | 29 | # -t: Builds SansView from the trubuild_sank. |
---|
[b81af72] | 30 | # -i: Builds a Windows installer from the release version. |
---|
[249bae9] | 31 | # -n: Print out the dependencies for the release notes |
---|
[40f9745] | 32 | |
---|
| 33 | import os |
---|
[138ac69] | 34 | import sys |
---|
[40f9745] | 35 | import shutil |
---|
[7b35808] | 36 | import logging |
---|
[40f9745] | 37 | |
---|
[7b35808] | 38 | # Installation folder |
---|
| 39 | import time |
---|
| 40 | timestamp = int(time.time()) |
---|
[d3d955e] | 41 | CWD = os.getcwd() |
---|
[7b35808] | 42 | INSTALL_FOLDER = "install_%s" % str(timestamp) |
---|
[138ac69] | 43 | |
---|
| 44 | # On Windows, the python executable is not always on the path. |
---|
| 45 | # Use its most frequent location as the default. |
---|
| 46 | if sys.platform == 'win32': |
---|
| 47 | PYTHON = "c:\python25\python" |
---|
[db7b92e] | 48 | LIB_FOLDER = "%s/%s" % (CWD, INSTALL_FOLDER) |
---|
[138ac69] | 49 | else: |
---|
| 50 | PYTHON = 'python' |
---|
| 51 | |
---|
[db7b92e] | 52 | logging.basicConfig(level=logging.INFO, |
---|
| 53 | format='%(asctime)s %(levelname)s %(message)s', |
---|
| 54 | filename='build_%s.log' % str(timestamp), |
---|
| 55 | filemode='w') |
---|
| 56 | |
---|
[40f9745] | 57 | SVN = "svn" |
---|
| 58 | INNO = "\"c:\Program Files\Inno Setup 5\ISCC\"" |
---|
| 59 | |
---|
[f9353c3] | 60 | # Release version 1.3.1 |
---|
| 61 | SANSMODELS = "0.4.7" |
---|
[f17e082] | 62 | DATALOADER = "0.2.7" |
---|
| 63 | GUIFRAME = "0.2.0" |
---|
| 64 | SANSVIEW = "1.3.1" |
---|
| 65 | PLOTTOOLS = "0.1.9" |
---|
[d48d304] | 66 | UTIL = "0.1.5" |
---|
[f17e082] | 67 | PARK = "1.2.1" |
---|
| 68 | PARK_INTEG = "0.1.5" |
---|
| 69 | PRVIEW = "0.3.3" |
---|
| 70 | PR_INV = "0.2.5" |
---|
| 71 | CALCULATOR = "0.1.1" |
---|
| 72 | CALC_VIEW = "0.1.1" |
---|
| 73 | INVARIANT = "0.1.1" |
---|
| 74 | INV_VIEW = "0.1.1" |
---|
[d48d304] | 75 | ELEMENTS = "1.2" |
---|
[249bae9] | 76 | |
---|
[7b35808] | 77 | # URLs for SVN repos |
---|
[249bae9] | 78 | SANSMODELS_URL = "svn://danse.us/sans/releases/sansmodels-%s" % SANSMODELS |
---|
| 79 | DATALOADER_URL = "svn://danse.us/sans/releases/DataLoader-%s" % DATALOADER |
---|
| 80 | GUIFRAME_URL = "svn://danse.us/sans/releases/guiframe-%s" % GUIFRAME |
---|
| 81 | PLOTTOOLS_URL = "svn://danse.us/common/releases/plottools-%s/trunk" % PLOTTOOLS |
---|
| 82 | UTIL_URL = "svn://danse.us/common/releases/util-%s" % UTIL |
---|
| 83 | SANSVIEW_URL = "svn://danse.us/sans/releases/sansview-%s" % SANSVIEW |
---|
[fa523d3] | 84 | PARK_INTEG_URL = "svn://danse.us/sans/releases/park_integration-%s" % PARK_INTEG |
---|
[d9d68ba] | 85 | PARK_URL = "svn://danse.us/park/releases/park-%s" % PARK |
---|
[b81af72] | 86 | PRVIEW_URL = "svn://danse.us/sans/releases/prview-%s" % PRVIEW |
---|
| 87 | PR_INV_URL = "svn://danse.us/sans/releases/pr_inversion-%s" % PR_INV |
---|
[d3d955e] | 88 | CALC_URL = "svn://danse.us/sans/releases/calculator-%s" % CALCULATOR |
---|
| 89 | CALC_VIEW_URL = "svn://danse.us/sans/releases/calculatorview-%s" % CALC_VIEW |
---|
| 90 | INV_URL = "svn://danse.us/sans/releases/Invariant-%s" % INVARIANT |
---|
| 91 | INV_VIEW_URL = "svn://danse.us/sans/releases/invariantview-%s" % INV_VIEW |
---|
| 92 | ELEMENTS_URL = "svn://danse.us/common/elements/releases/elements-%s" % ELEMENTS |
---|
[40f9745] | 93 | |
---|
| 94 | def check_system(): |
---|
| 95 | """ |
---|
| 96 | Checks that the system has the necessary modules. |
---|
| 97 | """ |
---|
| 98 | try: |
---|
| 99 | import wx |
---|
| 100 | except: |
---|
[7b35808] | 101 | logging.error("wxpython missing") |
---|
[40f9745] | 102 | |
---|
| 103 | try: |
---|
| 104 | import matplotlib |
---|
| 105 | except: |
---|
[7b35808] | 106 | logging.error("matplotlib missing") |
---|
[40f9745] | 107 | |
---|
| 108 | try: |
---|
| 109 | import numpy |
---|
| 110 | except: |
---|
[7b35808] | 111 | logging.error("numpy missing") |
---|
[40f9745] | 112 | |
---|
| 113 | try: |
---|
| 114 | import scipy |
---|
| 115 | except: |
---|
[7b35808] | 116 | logging.error("scipy missing") |
---|
[40f9745] | 117 | |
---|
| 118 | if os.system("gcc -dumpversion")==1: |
---|
[7b35808] | 119 | logging.error("missing mingw") |
---|
[40f9745] | 120 | |
---|
| 121 | def install_pkg(install_dir, setup_dir, url): |
---|
| 122 | """ |
---|
| 123 | Check a package out and install it |
---|
| 124 | |
---|
| 125 | @param install_dir: directory to put the code in |
---|
| 126 | @param setup_dir: relative location of the setup.py script |
---|
| 127 | @param url: URL of the SVN repo |
---|
| 128 | """ |
---|
[d3d955e] | 129 | logging.info("Installing %s" % url) |
---|
| 130 | try: |
---|
| 131 | if not os.path.isdir(install_dir): |
---|
| 132 | os.mkdir(install_dir) |
---|
| 133 | os.chdir(install_dir) |
---|
| 134 | os.system("%s checkout -q %s" % (SVN, url)) |
---|
| 135 | os.chdir(setup_dir) |
---|
| 136 | if sys.platform == 'win32': |
---|
| 137 | os.system("%s setup.py -q build -cmingw32" % PYTHON) |
---|
[db7b92e] | 138 | os.system("%s setup.py -q install --root \"%s\"" % (PYTHON, LIB_FOLDER)) |
---|
[d3d955e] | 139 | else: |
---|
[db7b92e] | 140 | os.system("%s setup.py build" % PYTHON) |
---|
| 141 | os.system("%s setup.py install --prefix ~/.local" % PYTHON) |
---|
[d3d955e] | 142 | except: |
---|
| 143 | logging.error("Install failed for %s" % url) |
---|
| 144 | logging.error(sys.exc_value) |
---|
| 145 | raw_input("Press enter to continue\n") |
---|
| 146 | sys.exit() |
---|
[40f9745] | 147 | |
---|
| 148 | def checkout(release=False): |
---|
| 149 | """ |
---|
| 150 | Check the SansView code out |
---|
| 151 | """ |
---|
| 152 | wd = os.getcwd() |
---|
| 153 | |
---|
| 154 | os.chdir(wd) |
---|
| 155 | if release: |
---|
[db7b92e] | 156 | install_pkg(".", "DataLoader-%s" % DATALOADER, DATALOADER_URL) |
---|
[40f9745] | 157 | else: |
---|
[db7b92e] | 158 | install_pkg(".", "DataLoader", "svn://danse.us/sans/trunk/DataLoader") |
---|
[40f9745] | 159 | |
---|
| 160 | os.chdir(wd) |
---|
| 161 | if release: |
---|
[db7b92e] | 162 | install_pkg(".", "sansmodels-%s/src" % SANSMODELS, SANSMODELS_URL) |
---|
[40f9745] | 163 | else: |
---|
[db7b92e] | 164 | install_pkg(".", "sansmodels/src", "svn://danse.us/sans/trunk/sansmodels") |
---|
[40f9745] | 165 | |
---|
| 166 | os.chdir(wd) |
---|
| 167 | if release: |
---|
[249bae9] | 168 | install_pkg(".", "guiframe-%s" % GUIFRAME, GUIFRAME_URL) |
---|
[40f9745] | 169 | else: |
---|
| 170 | install_pkg(".", "guiframe", "svn://danse.us/sans/trunk/guiframe") |
---|
| 171 | |
---|
| 172 | os.chdir(wd) |
---|
| 173 | if release: |
---|
[249bae9] | 174 | install_pkg("plottools-%s" % PLOTTOOLS, "trunk", PLOTTOOLS_URL) |
---|
[40f9745] | 175 | else: |
---|
| 176 | install_pkg("plottools", "trunk", "svn://danse.us/common/plottools/trunk") |
---|
| 177 | |
---|
| 178 | os.chdir(wd) |
---|
| 179 | if release: |
---|
[249bae9] | 180 | install_pkg(".", "util-%s" % UTIL, UTIL_URL) |
---|
[40f9745] | 181 | else: |
---|
| 182 | install_pkg(".", "util", "svn://danse.us/common/util") |
---|
| 183 | |
---|
[fa523d3] | 184 | os.chdir(wd) |
---|
| 185 | if release: |
---|
| 186 | install_pkg(".", "park_integration-%s" % PARK_INTEG, PARK_INTEG_URL) |
---|
| 187 | else: |
---|
| 188 | install_pkg(".", "park_integration", "svn://danse.us/sans/trunk/park_integration") |
---|
| 189 | |
---|
[b81af72] | 190 | os.chdir(wd) |
---|
| 191 | if release: |
---|
| 192 | install_pkg(".", "prview-%s" % PRVIEW, PRVIEW_URL) |
---|
| 193 | else: |
---|
| 194 | install_pkg(".", "prview", "svn://danse.us/sans/trunk/prview") |
---|
| 195 | |
---|
| 196 | os.chdir(wd) |
---|
| 197 | if release: |
---|
| 198 | install_pkg(".", "pr_inversion-%s" % PR_INV, PR_INV_URL) |
---|
| 199 | else: |
---|
| 200 | install_pkg(".", "pr_inversion", "svn://danse.us/sans/trunk/pr_inversion") |
---|
| 201 | |
---|
[d1b43cd] | 202 | os.chdir(wd) |
---|
| 203 | if release: |
---|
[d3d955e] | 204 | install_pkg(".", "Invariant-%s" % INVARIANT, INV_URL) |
---|
[d1b43cd] | 205 | else: |
---|
| 206 | install_pkg(".", "Invariant", "svn://danse.us/sans/trunk/Invariant") |
---|
| 207 | |
---|
| 208 | os.chdir(wd) |
---|
| 209 | if release: |
---|
[d3d955e] | 210 | install_pkg(".", "invariantview-%s" % INV_VIEW, INV_VIEW_URL) |
---|
[d1b43cd] | 211 | else: |
---|
| 212 | install_pkg(".", "invariantview", "svn://danse.us/sans/trunk/invariantview") |
---|
| 213 | |
---|
| 214 | os.chdir(wd) |
---|
| 215 | if release: |
---|
[d3d955e] | 216 | install_pkg(".", "calculatorview-%s" % CALC_VIEW, CALC_VIEW_URL) |
---|
[d1b43cd] | 217 | else: |
---|
| 218 | install_pkg(".", "calculatorview", "svn://danse.us/sans/trunk/calculatorview") |
---|
| 219 | |
---|
| 220 | os.chdir(wd) |
---|
| 221 | if release: |
---|
[d3d955e] | 222 | install_pkg(".", "calculator-%s" % CALCULATOR, CALC_URL) |
---|
[d1b43cd] | 223 | else: |
---|
| 224 | install_pkg(".", "calculator", "svn://danse.us/sans/trunk/calculator") |
---|
| 225 | |
---|
[d3d955e] | 226 | os.chdir(wd) |
---|
| 227 | if release: |
---|
[d48d304] | 228 | install_pkg(".", "elements-%s" % ELEMENTS, ELEMENTS_URL) |
---|
[d3d955e] | 229 | else: |
---|
| 230 | install_pkg("elements", "trunk", "svn://danse.us/common/elements/trunk") |
---|
| 231 | |
---|
[40f9745] | 232 | os.chdir(wd) |
---|
| 233 | if release: |
---|
[5353e1c] | 234 | install_pkg(".", "park-%s" % PARK, PARK_URL) |
---|
[40f9745] | 235 | else: |
---|
| 236 | install_pkg(".", "park-1.2", "svn://danse.us/park/branches/park-1.2") |
---|
| 237 | |
---|
| 238 | os.chdir(wd) |
---|
| 239 | if release: |
---|
[7b35808] | 240 | os.system("%s checkout -q %s" % (SVN, SANSVIEW_URL)) |
---|
[40f9745] | 241 | else: |
---|
[7b35808] | 242 | os.system("%s checkout -q svn://danse.us/sans/trunk/sansview" % SVN) |
---|
[40f9745] | 243 | |
---|
[b81cf5c] | 244 | def prepare(wipeout = False): |
---|
[7b35808] | 245 | """ |
---|
| 246 | Prepare the build |
---|
[d3d955e] | 247 | |
---|
| 248 | @param wipeout: If True, the DANSE modules in the standard site-packages will be |
---|
| 249 | removed to avoid conflicts. |
---|
[7b35808] | 250 | """ |
---|
| 251 | # Remove existing libraries |
---|
[b81cf5c] | 252 | if wipeout == True: |
---|
[d3d955e] | 253 | logging.info("Deleting DANSES modules in site-packages") |
---|
[b81cf5c] | 254 | from distutils.sysconfig import get_python_lib |
---|
| 255 | libdir = get_python_lib() |
---|
| 256 | old_dirs = [os.path.join(libdir, 'danse'), |
---|
| 257 | os.path.join(libdir, 'data_util'), |
---|
| 258 | os.path.join(libdir, 'DataLoader'), |
---|
| 259 | os.path.join(libdir, 'park'), |
---|
| 260 | os.path.join(libdir, 'sans'), |
---|
| 261 | os.path.join(libdir, 'sans_extension'), |
---|
| 262 | ] |
---|
| 263 | for d in old_dirs: |
---|
| 264 | if os.path.isdir(d): |
---|
| 265 | shutil.rmtree(d) |
---|
| 266 | |
---|
[7b35808] | 267 | # Create a fresh installation folder |
---|
[40f9745] | 268 | if os.path.isdir(INSTALL_FOLDER): |
---|
| 269 | shutil.rmtree(INSTALL_FOLDER) |
---|
| 270 | |
---|
| 271 | os.mkdir(INSTALL_FOLDER) |
---|
| 272 | |
---|
| 273 | # Check that the dependencies are properly installed |
---|
| 274 | check_system() |
---|
| 275 | |
---|
| 276 | # Move to the installation folder |
---|
| 277 | os.chdir(INSTALL_FOLDER) |
---|
| 278 | |
---|
[531a811c] | 279 | def warning(): |
---|
| 280 | """ |
---|
| 281 | The build script will wipe out part of the site-packages. |
---|
| 282 | Ask the user whether he wants to proceed. |
---|
| 283 | """ |
---|
[b81cf5c] | 284 | print "WARNING!\n" |
---|
[531a811c] | 285 | print "In order to build a clean version of SansView, this script" |
---|
| 286 | print "deletes anything found under site-packages for the following" |
---|
| 287 | print "modules:" |
---|
| 288 | print " - danse" |
---|
| 289 | print " - data_util" |
---|
| 290 | print " - DataLoader" |
---|
| 291 | print " - park" |
---|
| 292 | print " - sans" |
---|
| 293 | print " - sans_extension\n" |
---|
[b81cf5c] | 294 | answer = raw_input("Do you want to delete those modules [Y] or continue with a dirty installation [N]? [Y|N]") |
---|
[531a811c] | 295 | return answer.upper()=="Y" |
---|
| 296 | |
---|
[40f9745] | 297 | if __name__ == "__main__": |
---|
[6e2fe95] | 298 | print "Build script for SansView %s" % SANSVIEW |
---|
| 299 | |
---|
| 300 | if len(sys.argv)==1: |
---|
| 301 | # If there is no argument, build the installer |
---|
| 302 | sys.argv.append("-i") |
---|
| 303 | |
---|
[40f9745] | 304 | if len(sys.argv)>1: |
---|
[6e2fe95] | 305 | # Help |
---|
[40f9745] | 306 | if sys.argv[1]=="-h": |
---|
| 307 | print "Usage:" |
---|
| 308 | print " python build_sansview [command]\n" |
---|
| 309 | print "[command] can be any of the following:" |
---|
| 310 | print " -h: lists the command line options" |
---|
| 311 | print " -r: Builds a SansView using the released modules" |
---|
| 312 | print " -t: Builds SansView from the trunk" |
---|
[138ac69] | 313 | print " -i: Builds an installer from the release version [Windows only]" |
---|
[249bae9] | 314 | print " -n: Print out the dependencies for the release notes" |
---|
[fa523d3] | 315 | elif sys.argv[1]=="-n": |
---|
[6e2fe95] | 316 | # Print out release URLs |
---|
[249bae9] | 317 | print SANSMODELS_URL |
---|
| 318 | print DATALOADER_URL |
---|
| 319 | print GUIFRAME_URL |
---|
| 320 | print PLOTTOOLS_URL |
---|
| 321 | print UTIL_URL |
---|
[fa523d3] | 322 | print SANSVIEW_URL |
---|
[cd40805] | 323 | print PARK_INTEG_URL |
---|
[249bae9] | 324 | print PARK_URL |
---|
[b81af72] | 325 | print PRVIEW |
---|
| 326 | print PR_INV |
---|
[40f9745] | 327 | else: |
---|
[7b35808] | 328 | logging.info("Build script for SansView %s" % SANSVIEW) |
---|
[b81cf5c] | 329 | |
---|
[40f9745] | 330 | # Prepare installation folder |
---|
[b81cf5c] | 331 | prepare(warning()) |
---|
[40f9745] | 332 | |
---|
| 333 | # Check the command line argument |
---|
| 334 | if sys.argv[1]=="-t": |
---|
[7b35808] | 335 | logging.info("Building trunk version") |
---|
[40f9745] | 336 | checkout() |
---|
| 337 | elif sys.argv[1]=="-r": |
---|
[7b35808] | 338 | logging.info("Building release version") |
---|
[40f9745] | 339 | checkout(True) |
---|
| 340 | elif sys.argv[1]=="-i": |
---|
[7b35808] | 341 | logging.info("Building release version") |
---|
[40f9745] | 342 | checkout(True) |
---|
[138ac69] | 343 | if sys.platform=='win32': |
---|
[db7b92e] | 344 | logging.info("Building Windows installer from release version") |
---|
[138ac69] | 345 | os.chdir("sansview-%s" % (SANSVIEW)) |
---|
[db7b92e] | 346 | os.system("%s setup_exe.py py2exe --extrapath \"%s\python25\lib\site-packages\"" % (PYTHON, LIB_FOLDER)) |
---|
[138ac69] | 347 | os.system("%s/Q installer.iss" % INNO) |
---|
| 348 | shutil.copy2(os.path.join("Output","setupSansView.exe"), |
---|
| 349 | os.path.join(CWD, "setupSansView_%s.exe" % str(timestamp))) |
---|
[5353e1c] | 350 | elif sys.platform=='darwin': |
---|
[db7b92e] | 351 | logging.info("Building Mac application from release version") |
---|
| 352 | os.chdir("sansview-%s" % (SANSVIEW)) |
---|
| 353 | os.system("%s setup_mac.py py2app" % PYTHON) |
---|
[138ac69] | 354 | |
---|
[d3d955e] | 355 | raw_input("Press enter to continue\n") |
---|
[d9d68ba] | 356 | |
---|