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