Mercurial > hg > config
annotate python/install_config.py @ 408:705dc5cfd68d
make this modular
| author | Jeff Hammel <jhammel@mozilla.com> |
|---|---|
| date | Sun, 04 Aug 2013 10:31:11 -0700 |
| parents | 06fcec56e8fe |
| children | dc64beded724 |
| rev | line source |
|---|---|
| 1 | 1 #!/usr/bin/env python |
|
234
761e7dfc675e
updates from most recent usage
Jeff Hammel <jhammel@mozilla.com>
parents:
219
diff
changeset
|
2 |
| 1 | 3 """ |
| 4 installs config to a user's home directory | |
| 5 this can be done with | |
| 16 | 6 curl http://k0s.org/hg/config/raw-file/tip/python/install_config.py | python |
| 1 | 7 """ |
| 8 | |
| 218 | 9 import imp |
| 408 | 10 import optparse |
| 1 | 11 import os |
|
131
52cf3e146a4c
make the install script slightly nicer
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
12 import subprocess |
| 6 | 13 import sys |
|
131
52cf3e146a4c
make the install script slightly nicer
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
14 |
| 408 | 15 # config repository |
| 16 SRC='http://k0s.org/hg/config' | |
| 17 | |
|
131
52cf3e146a4c
make the install script slightly nicer
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
18 # go home |
|
14
ac34d580c6d7
make symbolic links when necessary (should generalize)
k0s <k0scist@gmail.com>
parents:
7
diff
changeset
|
19 HOME=os.environ['HOME'] |
|
ac34d580c6d7
make symbolic links when necessary (should generalize)
k0s <k0scist@gmail.com>
parents:
7
diff
changeset
|
20 os.chdir(HOME) |
| 1 | 21 |
|
29
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
22 def execute(*commands): |
|
131
52cf3e146a4c
make the install script slightly nicer
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
23 """execute a series of commands""" |
|
29
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
24 for command in commands: |
|
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
25 print ' '.join(command) |
|
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
26 code = subprocess.call(command) |
|
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
27 if code: |
|
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
28 sys.exit(code) |
|
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
29 |
| 408 | 30 class Step(object): |
| 31 @classmethod | |
| 32 def check(cls): | |
| 33 """checks if the step may be run""" | |
| 34 def __call__(self): | |
| 35 execute(*self.commands) | |
| 36 | |
| 37 class InitializeRepository(Step): | |
| 38 """make the home directory a repository""" | |
| 39 | |
| 40 commands = [ | |
| 41 ['hg', 'init'], | |
| 42 ['hg', 'pull', SRC], | |
| 43 ['hg', 'update', '-C'], | |
| 44 ] | |
| 45 | |
|
29
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
46 execute(*commands) |
|
131
52cf3e146a4c
make the install script slightly nicer
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
47 |
| 268 | 48 |
| 218 | 49 # get the which command |
| 50 sys.path.append(os.path.join(HOME, 'python')) | |
| 51 from which import which | |
| 52 | |
| 53 | |
|
131
52cf3e146a4c
make the install script slightly nicer
Jeff Hammel <jhammel@mozilla.com>
parents:
130
diff
changeset
|
54 # make a (correct) .hg/hgrc file for $HOME |
| 218 | 55 hgrc = """[paths] |
| 56 default = http://k0s.org/hg/config | |
| 57 default-push = ssh://k0s.org/hg/config | |
| 58 """ | |
| 59 f = file('.hg/hgrc', 'w') | |
| 60 f.write(hgrc) | |
| 61 f.close() | |
| 1 | 62 |
|
29
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
63 def install_develop(package): |
|
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
64 src = 'http://k0s.org/hg/%s' % package |
|
41
eda848575afb
chdir to the directory before running python setup.py develop as this seems to be necessary
Jeff Hammel <k0scist@gmail.com>
parents:
36
diff
changeset
|
65 directory = '%s/src/%s' % (package, package) |
|
29
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
66 commands = [ ['virtualenv/virtualenv.py', package], |
| 44 | 67 ['mkdir', '-p', directory ], |
| 68 ['hg', 'clone', src, directory] ] | |
|
29
8344c7a9847c
install smartopen by default and some other cleanup (untested)
Jeff Hammel <k0scist@gmail.com>
parents:
22
diff
changeset
|
69 execute(*commands) |
|
41
eda848575afb
chdir to the directory before running python setup.py develop as this seems to be necessary
Jeff Hammel <k0scist@gmail.com>
parents:
36
diff
changeset
|
70 old_directory = os.getcwd() |
|
eda848575afb
chdir to the directory before running python setup.py develop as this seems to be necessary
Jeff Hammel <k0scist@gmail.com>
parents:
36
diff
changeset
|
71 os.chdir(directory) |
|
eda848575afb
chdir to the directory before running python setup.py develop as this seems to be necessary
Jeff Hammel <k0scist@gmail.com>
parents:
36
diff
changeset
|
72 command = ['../../bin/python', 'setup.py', 'develop'] |
|
eda848575afb
chdir to the directory before running python setup.py develop as this seems to be necessary
Jeff Hammel <k0scist@gmail.com>
parents:
36
diff
changeset
|
73 execute(command) |
|
eda848575afb
chdir to the directory before running python setup.py develop as this seems to be necessary
Jeff Hammel <k0scist@gmail.com>
parents:
36
diff
changeset
|
74 os.chdir(old_directory) |
| 218 | 75 |
| 76 # do git stuff | |
| 77 git = which('git') | |
| 78 if git: | |
| 79 # get virtual env | |
| 219 | 80 virtualenv_commands = [['git', 'clone', 'https://github.com/pypa/virtualenv.git'], |
| 218 | 81 ['ln', '-s', HOME + '/virtualenv/virtualenv.py', HOME + '/bin/']] |
| 82 execute(*virtualenv_commands) | |
| 6 | 83 |
| 218 | 84 # setup git's global ignore, since git is silly about this |
| 85 # and doesn't look for the file in the right place | |
| 86 execute(['git', 'config', '--global', 'core.excludesfile', os.path.join(HOME, '.gitignore')]) | |
|
32
f878d9f62211
fix syntax error and actually execute the commands
Jeff Hammel <k0scist@gmail.com>
parents:
31
diff
changeset
|
87 |
| 218 | 88 # install some python |
| 89 install_develop('smartopen') | |
| 90 install_develop('silvermirror') # XXX this won't actually work since python-dev isn't installed; install it first | |
| 91 | |
| 92 postinstall_commands = [ ['ln', '-s', os.path.join(HOME, 'smartopen', 'bin', 'smartopen'), os.path.join(HOME, 'bin', 'smartopen') ], | |
| 93 ['ln', '-s', os.path.join(HOME, 'silvermirror', 'bin', 'silvermirror'), os.path.join(HOME, 'bin', 'silvermirror') ], | |
| 94 ] | |
| 95 execute(*postinstall_commands) | |
|
234
761e7dfc675e
updates from most recent usage
Jeff Hammel <jhammel@mozilla.com>
parents:
219
diff
changeset
|
96 else: |
|
761e7dfc675e
updates from most recent usage
Jeff Hammel <jhammel@mozilla.com>
parents:
219
diff
changeset
|
97 print "git not installed" |
|
45
069a739d88ad
get fluxbox menu from a webpage, i.e. http://k0s.org/programs.html
Jeff Hammel <k0scist@gmail.com>
parents:
43
diff
changeset
|
98 |
|
36
d83f35b9b799
adding xclip package and echo which packages need installation
Jeff Hammel <k0scist@gmail.com>
parents:
34
diff
changeset
|
99 # - ubuntu packages to install: |
| 408 | 100 PACKAGES=["mercurial", "unison", "fluxbox", "antiword", "xclip", |
| 101 "graphviz", "python-dev", "python-lxml", "curl", "arandr", | |
| 102 "git", "emacs", "irssi"] | |
| 43 | 103 print "Ensure the following packages are installed:" |
| 408 | 104 print "sudo apt-get install %s" % ' '.join(PACKAGES) |
| 105 | |
| 106 def main(args=sys.argv[1:]): | |
| 107 usage = '%prog [options]' | |
| 108 parser = optparse.OptionParser(usage=usage, description=__doc__) | |
| 109 options, args = parser.parse_args() | |
| 110 | |
| 111 steps = [InitializeRepository] | |
| 112 | |
| 113 if __name__ == '__main__': | |
| 114 main() |
