Mercurial > dotfiles
annotate install.py @ 474:265442d4def8
Improve FZF config on Vim, add Vimcrosoft mappings.
author | Ludovic Chabant <ludovic@chabant.com> |
---|---|
date | Wed, 18 Sep 2019 14:58:52 -0700 |
parents | e368c8ae2a4b |
children | 91652f4b9752 |
rev | line source |
---|---|
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
1 import os |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
2 import os.path |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
3 import sys |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
4 import stat |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
5 import shutil |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
6 import argparse |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
7 import functools |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
8 import subprocess |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
9 import configparser |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
10 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
11 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
12 # Utility stuff. |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
13 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
14 dotfiles_dir = os.path.abspath(os.path.dirname(__file__)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
15 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
16 is_nix = True |
431
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
17 is_mac = False |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
18 is_windows = False |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
19 if sys.platform == "win32": |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
20 is_nix = False |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
21 is_windows = True |
431
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
22 if sys.platform == 'darwin': |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
23 is_mac = True |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
24 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
25 |
471 | 26 def _is_executable(fpath): |
27 return os.path.isfile(fpath) and os.access(fpath, os.X_OK) | |
28 | |
29 | |
30 def which(exename): | |
31 for path in os.environ.get("PATH", "").split(os.pathsep): | |
32 exepath = os.path.join(path, exename) | |
33 if _is_executable(exepath): | |
34 return exepath | |
35 return None | |
36 | |
37 | |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
38 def _p(*paths, force_unix=False): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
39 res = os.path.join(dotfiles_dir, *paths) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
40 if force_unix: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
41 res = res.replace('\\', '/') |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
42 else: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
43 res = res.replace('/', os.sep) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
44 return res |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
45 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
46 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
47 def nixslash(path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
48 return path.replace('\\', '/') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
49 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
50 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
51 def ensure_dir(path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
52 full_path = os.path.abspath(os.path.expanduser(path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
53 if not os.path.isdir(full_path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
54 os.makedirs(full_path, mode=0o700) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
55 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
56 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
57 def mklink(orig_rel_path, link_path, mode=None): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
58 orig_full_path = os.path.join(dotfiles_dir, orig_rel_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
59 link_full_path = os.path.abspath(os.path.expanduser(link_path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
60 if os.path.islink(link_full_path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
61 print("Unlinking %s" % link_full_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
62 os.unlink(link_full_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
63 elif os.path.exists(link_full_path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
64 print("Removing %s" % link_full_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
65 os.remove(link_full_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
66 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
67 print("%s -> %s" % (link_full_path, orig_full_path)) |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
68 if not is_windows or os.path.isfile(orig_full_path): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
69 os.symlink(orig_full_path, link_full_path) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
70 else: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
71 subprocess.check_call(['mklink', '/J', link_full_path, orig_full_path], shell=True) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
72 if mode is not None: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
73 os.chmod(link_full_path, mode) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
74 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
75 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
76 def writelines(path, lines): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
77 full_path = os.path.abspath(os.path.expanduser(path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
78 print("%d lines to %s" % (len(lines), full_path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
79 with open(full_path, 'w') as fp: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
80 for l in lines: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
81 fp.write(l) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
82 fp.write('\n') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
83 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
84 |
432
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
85 def _on_rmtree_err(func, name, excinfo): |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
86 os.chmod(name, stat.S_IWUSR | stat.S_IWGRP) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
87 os.remove(name) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
88 |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
89 |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
90 def rmtree(dirpath): |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
91 shutil.rmtree(dirpath, onerror=_on_rmtree_err) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
92 |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
93 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
94 # Installer method decorators. |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
95 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
96 def only_on_nix(f): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
97 @functools.wraps(f) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
98 def decorator(*args, **kwargs): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
99 if is_nix: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
100 return f(*args, **kwargs) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
101 return decorator |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
102 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
103 |
431
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
104 def only_on_mac(f): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
105 @functools.wraps(f) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
106 def decorator(*args, **kwargs): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
107 if is_mac: |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
108 return f(*args, **kwargs) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
109 return decorator |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
110 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
111 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
112 def only_on_win(f): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
113 @functools.wraps(f) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
114 def decorator(*args, **kwargs): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
115 if is_windows: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
116 return f(*args, **kwargs) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
117 return decorator |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
118 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
119 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
120 def supports_forcing(f): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
121 f.__dotfiles_supports_forcing__ = True |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
122 return f |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
123 |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
124 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
125 def needs_config(f): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
126 f.__dotfiles_needs_config__ = True |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
127 return f |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
128 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
129 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
130 def run_priority(prio): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
131 def wrapper(f): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
132 f.__dotfiles_priority__ = prio |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
133 return f |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
134 return wrapper |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
135 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
136 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
137 # Installer methods. |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
138 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
139 @only_on_nix |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
140 def install_bash(): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
141 mklink('bashrc/bashrc', '.bashrc') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
142 mklink('bashrc/bash_profile', '.bash_profile') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
143 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
144 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
145 @only_on_nix |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
146 def install_fish(): |
425
350f7a55ff33
Improve fish configuration.
Ludovic Chabant <ludovic@chabant.com>
parents:
417
diff
changeset
|
147 ensure_dir('~/.config/fish') |
350f7a55ff33
Improve fish configuration.
Ludovic Chabant <ludovic@chabant.com>
parents:
417
diff
changeset
|
148 writelines('~/.config/fish/config.fish', |
350f7a55ff33
Improve fish configuration.
Ludovic Chabant <ludovic@chabant.com>
parents:
417
diff
changeset
|
149 ['source %s' % _p('fish', 'config.fish')]) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
150 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
151 |
432
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
152 @needs_config |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
153 @supports_forcing |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
154 def install_vim(cfg, force=False): |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
155 vimrc_path = '~/.vimrc' |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
156 if is_windows: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
157 vimrc_path = '~/_vimrc' |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
158 writelines(vimrc_path, [ |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
159 'set runtimepath+=%s' % nixslash(_p('vim')), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
160 'source %s' % nixslash(_p('vim', 'vimrc')) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
161 ]) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
162 |
432
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
163 if cfg.has_section('vimbundles'): |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
164 bundle_dir = _p('vim', 'bundle') |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
165 os.makedirs(bundle_dir, exist_ok=True) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
166 existing_plugins = set(os.listdir(bundle_dir)) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
167 |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
168 for name, url in cfg.items('vimbundles'): |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
169 path = os.path.join(bundle_dir, name) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
170 if url.startswith('[git]'): |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
171 clone_git(url[len('[git]'):], path, force=force) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
172 else: |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
173 clone_hg(url, path, force=force) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
174 |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
175 existing_plugins.discard(name) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
176 |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
177 for name in existing_plugins: |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
178 print("Removing plugin %s" % name) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
179 path = os.path.join(bundle_dir, name) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
180 rmtree(path) |
06a551d3fbb2
Move vim plugin subrepos to a separate config section, support cleaning up.
Ludovic Chabant <ludovic@chabant.com>
parents:
431
diff
changeset
|
181 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
182 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
183 @run_priority(2) # Needs to run before `fish`. |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
184 def install_mercurial(): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
185 hgrc_path = '~/.hgrc' |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
186 if is_windows: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
187 hgrc_path = '~/mercurial.ini' |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
188 writelines(hgrc_path, [ |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
189 '%%include %s' % _p('hgrc/hgrc'), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
190 '[ui]', |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
191 'ignore = %s' % _p('hgrc/hgignore'), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
192 '[subrepos]', |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
193 'git:allowed = true', |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
194 '[extensions]', |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
195 'hggit = %s' % _p('lib/hg/hg-git/hggit/'), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
196 'onsub = %s' % _p('lib/hg/onsub/onsub.py'), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
197 'allpaths = %s' % _p('lib/hg/allpaths/mercurial_all_paths.py'), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
198 'prompt = %s' % _p('lib/hg/hg-prompt/prompt.py'), |
448
cc00cbbf5460
Rename evolve extension's repo folder to `evolve`.
Ludovic Chabant <ludovic@chabant.com>
parents:
447
diff
changeset
|
199 'evolve = %s' % _p('lib/hg/evolve/hgext3rd/evolve'), |
436
8986ec3a9c1c
Properly use the Mercurial log templates.
Ludovic Chabant <ludovic@chabant.com>
parents:
432
diff
changeset
|
200 '[alias]', |
8986ec3a9c1c
Properly use the Mercurial log templates.
Ludovic Chabant <ludovic@chabant.com>
parents:
432
diff
changeset
|
201 ('dlog = log --pager=yes --style=%s' % |
446 | 202 _p('lib/hg/mercurial-cli-templates/map-cmdline.dlog', |
203 force_unix=True)), | |
436
8986ec3a9c1c
Properly use the Mercurial log templates.
Ludovic Chabant <ludovic@chabant.com>
parents:
432
diff
changeset
|
204 ('slog = log --pager=yes --style=%s' % |
446 | 205 _p('lib/hg/mercurial-cli-templates/map-cmdline.slog', |
206 force_unix=True)), | |
436
8986ec3a9c1c
Properly use the Mercurial log templates.
Ludovic Chabant <ludovic@chabant.com>
parents:
432
diff
changeset
|
207 ('nlog = log --pager=yes --style=%s' % |
446 | 208 _p('lib/hg/mercurial-cli-templates/map-cmdline.nlog', |
209 force_unix=True)), | |
436
8986ec3a9c1c
Properly use the Mercurial log templates.
Ludovic Chabant <ludovic@chabant.com>
parents:
432
diff
changeset
|
210 ('sglog = glog --pager=yes --style=%s' % |
446 | 211 _p('lib/hg/mercurial-cli-templates/map-cmdline.sglog', |
212 force_unix=True)), | |
213 ('nglog = glog --pager=yes --style=%s' % | |
214 _p('lib/hg/mercurial-cli-templates/map-cmdline.nlog', | |
215 force_unix=True)), | |
216 ('blog = glog --page=yes --style=%s' % | |
217 _p('hgrc/logstyles')), | |
218 ('wip = glog --pager=yes --style=%s --rev wip' % | |
219 _p('hgrc/wip.style', force_unix=True)) | |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
220 ]) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
221 if is_nix: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
222 print("Building fast-hg-prompt...") |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
223 compile_ok = True |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
224 try: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
225 subprocess.check_call(['make'], cwd=_p('lib/hg/fast-hg-prompt')) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
226 except subprocess.CalledProcessError: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
227 compile_ok = False |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
228 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
229 for n in ['bookmark', 'remote', 'status']: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
230 link_path = os.path.expanduser('~/.local/bin/fast-hg-%s' % n) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
231 if compile_ok: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
232 mklink('lib/hg/fast-hg-prompt/fast-hg-%s' % n, link_path, |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
233 mode=(stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
234 elif os.path.islink(link_path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
235 os.unlink(link_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
236 elif os.path.exists(link_path): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
237 os.remove(link_path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
238 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
239 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
240 def install_git(): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
241 writelines('~/.gitconfig', [ |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
242 '[include]', |
455
1172b8484c68
Add global `gitignore` file.
Ludovic Chabant <ludovic@chabant.com>
parents:
451
diff
changeset
|
243 ' path = %s' % _p('git/gitconfig', force_unix=True), |
1172b8484c68
Add global `gitignore` file.
Ludovic Chabant <ludovic@chabant.com>
parents:
451
diff
changeset
|
244 '[core]', |
1172b8484c68
Add global `gitignore` file.
Ludovic Chabant <ludovic@chabant.com>
parents:
451
diff
changeset
|
245 ' excludesfile = %s' % _p('git/gitignore', force_unix=True) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
246 ]) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
247 if is_windows: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
248 subprocess.check_call( |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
249 ['setx', 'GIT_SSH', |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
250 '%USERPROFILE%\\Dropbox\\Utilities\\plink.exe'], |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
251 shell=True) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
252 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
253 |
473
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
254 def install_universal_ctags(): |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
255 # On Windows, u-ctags has a bug where it outputs double-backslashes. |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
256 if is_windows: |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
257 writelines('~/ctags.d/global.ctags', [ |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
258 '--output-format=e-ctags' |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
259 ]) |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
260 |
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
261 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
262 @only_on_nix |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
263 def install_tmux(): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
264 mklink('tmux/tmux.conf', '~/.tmux.conf') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
265 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
266 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
267 @only_on_nix |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
268 def install_weechat(): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
269 mklink('weechat', '~/.weechat') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
270 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
271 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
272 @only_on_nix |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
273 def install_mutt(): |
471 | 274 if which('gpg2'): |
275 gpgbin = 'gpg2' | |
276 else: | |
277 if not which('gpg'): | |
278 print("WARNING: no GPG tools seem to be installed!") | |
279 gpgbin = 'gpg' | |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
280 writelines('~/.muttrc', [ |
471 | 281 'source "%s -dq %s |"' % (gpgbin, _p('mutt/variables.gpg')), |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
282 'source "%s"' % _p('mutt/muttrc'), |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
283 'source "%s"' % _p('lib/mutt/mutt-colors-solarized/' |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
284 'mutt-colors-solarized-dark-256.muttrc') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
285 ]) |
417
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
286 |
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
287 |
447
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
288 def install_tridactyl(): |
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
289 cfgname = '~/_tridactylrc' if is_windows else '~/.tridactylrc' |
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
290 writelines(cfgname, [ |
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
291 'source %s' % _p('tridactyl/tridactylrc') |
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
292 ]) |
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
293 |
48933cecdf7f
Add Tridactyl config.
Ludovic Chabant <ludovic@chabant.com>
parents:
446
diff
changeset
|
294 |
470
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
295 def install_qutebrowser(): |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
296 if is_mac: |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
297 config_dir = '~/.qutebrowser' |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
298 elif is_windows: |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
299 config_dir = '%s/qutebrowser/' % os.getenv('APPDATA') |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
300 else: |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
301 config_dir = '~/.config/qutebrowser' |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
302 |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
303 mklink('qutebrowser', config_dir) |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
304 |
3b9394a0a58b
Add qutebrowser config.
Ludovic Chabant <ludovic@chabant.com>
parents:
455
diff
changeset
|
305 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
306 def _on_error_try_make_readable(func, path, exc_info): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
307 if not os.access(path, os.W_OK): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
308 os.chmod(path, stat.S_IWUSR) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
309 func(path) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
310 else: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
311 raise |
446 | 312 |
313 | |
438
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
314 def _is_non_empty_dir_with(path, contains=None): |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
315 if not os.path.isdir(path): |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
316 return False |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
317 if isinstance(contains, str): |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
318 contains = [contains] |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
319 for cnt in contains: |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
320 if not os.path.exists(os.path.join(path, cnt)): |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
321 return False |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
322 return True |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
323 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
324 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
325 def clone_git(url, path, force=False): |
438
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
326 if _is_non_empty_dir_with(path, '.git'): |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
327 if not force: |
417
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
328 print("git pull origin master %s" % path) |
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
329 subprocess.check_call(['git', 'pull', 'origin', 'master'], |
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
330 cwd=path) |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
331 return |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
332 else: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
333 print("Deleting existing: %s" % path) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
334 shutil.rmtree(path, onerror=_on_error_try_make_readable) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
335 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
336 print("git clone %s %s" % (url, path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
337 ensure_dir(os.path.dirname(path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
338 subprocess.check_call(['git', 'clone', url, path]) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
339 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
340 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
341 def clone_hg(url, path, force=False): |
438
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
342 if _is_non_empty_dir_with(path, '.hg'): |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
343 if not force: |
417
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
344 print("hg pull -u %s" % path) |
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
345 subprocess.check_call(['hg', 'pull', '-u'], cwd=path) |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
346 return |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
347 else: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
348 print("Deleting existing: %s" % path) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
349 shutil.rmtree(path, onerror=_on_error_try_make_readable) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
350 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
351 print("hg clone %s %s" % (url, path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
352 ensure_dir(os.path.dirname(path)) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
353 env = dict(os.environ) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
354 env.update({'HGPLAIN': '1'}) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
355 subprocess.check_call(['hg', 'clone', url, path], env=env) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
356 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
357 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
358 @needs_config |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
359 @supports_forcing |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
360 @run_priority(100) |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
361 def install_subrepos(cfg, force=False): |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
362 if not cfg.has_section('subrepos'): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
363 return |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
364 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
365 for path, url in cfg.items('subrepos'): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
366 full_path = _p(path) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
367 if url.startswith('[git]'): |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
368 clone_git(url[len('[git]'):], full_path, force=force) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
369 else: |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
370 clone_hg(url, full_path, force=force) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
371 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
372 |
431
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
373 @only_on_mac |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
374 @run_priority(210) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
375 def install_xcode(): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
376 if shutil.which('xcodebuild') is None: |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
377 print("Installing XCode") |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
378 subprocess.check_call(['xcode-select', '--install']) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
379 subprocess.check_call(['sudo', 'xcodebuild', '-license', 'accept']) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
380 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
381 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
382 @only_on_mac |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
383 @run_priority(209) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
384 def install_homebrew(): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
385 if shutil.which('brew') is None: |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
386 print("Installing Homebrew and Homebrew Cask") |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
387 subprocess.check_call([ |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
388 '/usr/bin/ruby', '-e', |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
389 "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"]) # NOQA |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
390 subprocess.check_call(['brew', 'tap', 'caskroom/fonts']) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
391 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
392 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
393 @only_on_mac |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
394 @needs_config |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
395 @supports_forcing |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
396 @run_priority(208) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
397 def install_mactools(cfg, force=False): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
398 if not cfg.has_section('mactools'): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
399 return |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
400 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
401 for name, _ in cfg.items('mactools'): |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
402 args = ['brew', 'install', name] |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
403 if force: |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
404 args.append('--force') |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
405 subprocess.check_call(args) |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
406 |
e0bb52007402
Add installation of homebrew stuff on Mac.
Ludovic Chabant <ludovic@chabant.com>
parents:
425
diff
changeset
|
407 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
408 @only_on_win |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
409 @run_priority(209) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
410 def install_scoop(): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
411 if shutil.which('scoop') is None: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
412 print("Installing Scoop") |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
413 subprocess.check_call( |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
414 '@"%SystemRoot%\System32\WindowsPowerShell\v1.0\powershell.exe" ' |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
415 '-NoProfile -InputFormat None -ExecutionPolicy Bypass ' |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
416 '-Command "iex (new-object net.webclient).downloadstring(\'https://get.scoop.sh\')"') |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
417 subprocess.check_call( |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
418 ['scoop.cmd', 'bucket', 'add', 'extras']) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
419 else: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
420 print("Scoop is already installed") |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
421 |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
422 @only_on_win |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
423 @needs_config |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
424 @supports_forcing |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
425 @run_priority(208) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
426 def install_wintools(cfg, force=False): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
427 if not cfg.has_section('wintools'): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
428 return |
473
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
429 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
430 for name, arch in cfg.items('wintools'): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
431 args = ['scoop.cmd', 'install', name] |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
432 if arch: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
433 args += ['-a', arch] |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
434 subprocess.check_call(args) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
435 |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
436 |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
437 # Main stuff! |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
438 |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
439 class FatalInstallerError(Exception): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
440 pass |
473
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
441 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
442 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
443 def main(): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
444 print("dotfiles installer") |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
445 print("python %s" % sys.version) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
446 print("on %s" % sys.platform) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
447 print('') |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
448 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
449 cfg = configparser.ConfigParser() |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
450 cfg.read(_p('install.cfg')) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
451 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
452 # Get all the methods in this module that are named `install_xxx`. |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
453 mod_names = ['all'] |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
454 this_mod = sys.modules[__name__] |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
455 for an in dir(this_mod): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
456 if not an.startswith('install_'): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
457 continue |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
458 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
459 name = an[len('install_'):] |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
460 mod_names.append(name) |
417
6dbef23ca6bd
Update subrepos if they're already cloned.
Ludovic Chabant <ludovic@chabant.com>
parents:
416
diff
changeset
|
461 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
462 # See if we have any local install script. |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
463 local_mod = None |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
464 local_install_py = os.path.join(dotfiles_dir, 'local', |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
465 'local_install.py') |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
466 if os.path.isfile(local_install_py): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
467 import importlib.util |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
468 spec = importlib.util.spec_from_file_location('local_install', |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
469 local_install_py) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
470 local_mod = importlib.util.module_from_spec(spec) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
471 spec.loader.exec_module(local_mod) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
472 sys.modules['local_install'] = local_mod |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
473 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
474 # Create the parser, where you can specify one or more install target. |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
475 parser = argparse.ArgumentParser() |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
476 parser.add_argument( |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
477 'module', nargs='*', |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
478 help="Which module(s) to install. Defaults to all modules.") |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
479 parser.add_argument( |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
480 '-l', '--list', action='store_true', |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
481 help="List available modules to install.") |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
482 parser.add_argument( |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
483 '-f', '--force', action='store_true', |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
484 help="Force installation by overwriting things.") |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
485 args = parser.parse_args() |
473
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
486 |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
487 # Print list and exit if needed. |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
488 if args.list: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
489 print("Available modules to install:") |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
490 for nm in mod_names: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
491 print(nm) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
492 print() |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
493 print("Specify 'all' to install all modules.") |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
494 return |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
495 |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
496 # Get the list of methods to run. |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
497 funcs = [] |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
498 selected_mods = set(args.module) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
499 if 'all' in selected_mods: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
500 selected_mods = set(mod_names) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
501 selected_mods.remove('all') |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
502 selected_mods.difference_update([neg[3:] for neg in args.module if neg.startswith('no-')]) |
473
e368c8ae2a4b
Fix universal ctags config on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
472
diff
changeset
|
503 |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
504 for mn in selected_mods: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
505 func = getattr(this_mod, 'install_%s' % mn) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
506 funcs.append((mn, func)) |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
507 # See if there's a local method too for this. |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
508 if local_mod is not None: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
509 local_func = getattr(local_mod, 'install_%s' % mn, None) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
510 if local_func is not None: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
511 lmn = '%s (local)' % mn |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
512 funcs.append((lmn, local_func)) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
513 |
438
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
514 failed_installs = [] |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
515 funcs = sorted(funcs, key=_get_install_func_priority, reverse=True) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
516 for name, func in funcs: |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
517 print("Installing %s" % name) |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
518 |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
519 f_args = [] |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
520 f_kwargs = {} |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
521 if getattr(func, '__dotfiles_needs_config__', False): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
522 f_args.append(cfg) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
523 if getattr(func, '__dotfiles_supports_forcing__', False): |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
524 f_kwargs['force'] = args.force |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
525 |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
526 try: |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
527 func(*f_args, **f_kwargs) |
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
528 except Exception as ex: |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
529 failed_installs.append(name) |
416
222b477ad678
Install script improvements.
Ludovic Chabant <ludovic@chabant.com>
parents:
407
diff
changeset
|
530 print("ERROR: %s" % ex) |
472
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
531 if isinstance(ex, FatalInstallerError): |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
532 print("Aborting all remaining installs because '%s' failed!" % name) |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
533 break |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
534 else: |
97412ea9b3fa
Improve install script, add scoop apps on Windows.
Ludovic Chabant <ludovic@chabant.com>
parents:
471
diff
changeset
|
535 print("Skipping install of '%s'." % name) |
438
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
536 if failed_installs: |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
537 for name in failed_installs: |
3d999fcf62c6
Check for subrepo directories with no repos in them.
Ludovic Chabant <ludovic@chabant.com>
parents:
437
diff
changeset
|
538 print("ERROR: failed to install '%s'." % name) |
407
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
539 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
540 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
541 def _get_install_func_priority(func_info): |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
542 func = func_info[1] |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
543 return getattr(func, '__dotfiles_priority__', 0) |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
544 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
545 |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
546 if __name__ == '__main__': |
c6da0c9f40ae
Replace subrepos with an install script. Finally.
Ludovic Chabant <ludovic@chabant.com>
parents:
diff
changeset
|
547 main() |