annotate INSTALL.py @ 4:88de10f30442 default tip

fun
author Jeff Hammel <jhammel@mozilla.com>
date Sat, 22 Jun 2013 10:05:16 -0700
parents 02b140ae3e78
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
1 #!/usr/bin/env python
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
2
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
3 """
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
4 installation script for disparity
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
5 mediawiki syntax proxy server for https://developer.mozilla.org/en-US/
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
6 """
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
7
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
8 import os
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
9 import sys
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
10 import urllib2
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
11 import subprocess
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
12 try:
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
13 from subprocess import check_call as call
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
14 except:
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
15 from subprocess import call
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
16
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
17 REPO='http://k0s.org/mozilla/hg/disparity'
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
18 DEST='disparity' # name of the virtualenv
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
19 VIRTUALENV='https://raw.github.com/pypa/virtualenv/develop/virtualenv.py'
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
20
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
21 def which(binary, path=os.environ['PATH']):
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
22 dirs = path.split(os.pathsep)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
23 for dir in dirs:
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
24 if os.path.isfile(os.path.join(dir, fileName)):
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
25 return os.path.join(dir, fileName)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
26 if os.path.isfile(os.path.join(dir, fileName + ".exe")):
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
27 return os.path.join(dir, fileName + ".exe")
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
28
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
29 def main(args=sys.argv[1:]):
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
30
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
31 # create a virtualenv
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
32 virtualenv = which('virtualenv') or which('virtualenv.py')
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
33 if virtualenv:
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
34 call([virtualenv, DEST])
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
35 else:
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
36 process = subproces.Popen([sys.executable, '-', DEST], stdin=subprocess.PIPE)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
37 process.communicate(stdin=urllib2.urlopen(VIRTUALENV).read())
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
38
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
39 # create a src directory
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
40 src = os.path.join(DEST, 'src')
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
41 os.mkdir(src)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
42
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
43 # clone the repository
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
44 call(['hg', 'clone', REPO], cwd=src)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
45
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
46 # find the virtualenv python
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
47 python = None
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
48 for path in (('bin', 'python'), ('Scripts', 'python.exe')):
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
49 _python = os.path.join(DEST, *path)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
50 if os.path.exists(_python)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
51 python = _python
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
52 break
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
53 else:
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
54 raise Exception("Python binary not found in %s" % DEST)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
55
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
56 # find the clone
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
57 filename = REPO.rstrip('/')
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
58 filename = filename.split('/')[-1]
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
59 clone = os.path.join(src, filename)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
60 assert os.path.exists(clone), "Clone directory not found in %s" % src
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
61
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
62 # ensure setup.py exists
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
63 assert os.path.exists(os.path.join(clone, 'setup.py')), 'setup.py not found in %s' % clone
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
64
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
65 # install the package in develop mode
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
66 call([python 'setup.py', 'develop'], cwd=clone)
02b140ae3e78 the dumping ground begins
Jeff Hammel <jhammel@mozilla.com>
parents:
diff changeset
67