-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinstall.py
executable file
·359 lines (298 loc) · 9.81 KB
/
install.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
#!/usr/bin/env python3
from collections import namedtuple
from pathlib import Path
import argparse
import difflib
import os
import shutil
import sys
def find_cubicle():
cub = shutil.which("cub")
if cub is None:
return None
cub = Path(cub).resolve()
if cub.match("target/*/cub"):
cub = (cub / "../../..").resolve()
if not cub.is_dir():
return None
if not (cub / "packages").is_dir():
return None
return cub
parser = argparse.ArgumentParser(
description="Copy configuration files into $HOME.",
formatter_class=argparse.ArgumentDefaultsHelpFormatter,
)
parser.add_argument(
"--cubicle",
metavar="DIR",
type=Path,
default=find_cubicle(),
help="cubicle source tree",
)
parser.add_argument(
"--dry-run",
action="store_true",
help="don't change anything but show what would be done",
)
def optional(args, component):
prompt = f"Set up {component} (Y/n)? "
if args.dry_run:
print(f"{prompt}assuming yes for dry-run")
return True
while True:
s = input(prompt).lower()
if s in ["", "y", "yes"]:
return True
elif s in ["n", "no"]:
return False
def overwrite(args, dest_file):
prompt = f"Overwrite {dest_file} (y/N)? "
if args.dry_run:
print(f"{prompt}assuming yes for dry-run")
return True
while True:
s = input(prompt).lower()
if s in ["y", "yes"]:
return True
elif s in ["", "n", "no"]:
return False
def diff(args, path1, path2):
with open(path1) as file1:
lines1 = file1.readlines()
with open(path2) as file2:
lines2 = file2.readlines()
if lines1 == lines2:
return False
print()
sys.stdout.writelines(
difflib.unified_diff(
lines1,
lines2,
str(path1),
str(path2),
)
)
return True
def copy_file(args, source_file, dest_file):
if args.dry_run:
print(f"[dry run] Would copy {source_file} to {dest_file}")
return
print(f"Copying {source_file} to {dest_file}")
dest_file.parent.mkdir(parents=True, exist_ok=True)
dest_file.unlink(missing_ok=True)
shutil.copy2(source_file, dest_file, follow_symlinks=False)
def maybe_copy_file(args, source_file, dest_file):
should_copy = False
dest_file = dest_file.expanduser()
if dest_file.exists():
if diff(args, dest_file, source_file):
should_copy = overwrite(args, dest_file)
else:
print(f"File {dest_file} already matches")
print(f" {source_file}")
else:
should_copy = True
if should_copy:
copy_file(args, source_file, dest_file)
def copy(args, source_root, source_contents, dest_root):
dest_root = dest_root.expanduser()
for source_file in source_contents:
if source_file.is_dir():
continue
dest_file = dest_root / source_file.relative_to(source_root)
maybe_copy_file(args, source_file, dest_file)
# Note: Python 3.11 and 3.12 need a glob of `**/*` to match all files, as
# `**` will only match directories. This should be fixed in 3.13. See
# <https://github.com/python/cpython/issues/70303>.
def copy_glob(args, source_root, source_glob, dest_root):
return copy(
args,
source_root,
sorted(source_root.glob(source_glob)),
dest_root,
)
def needs_cubicle(args, script_path):
if args.cubicle is None:
return "cubicle"
else:
return None
def posix_shell(args, script_path):
configs_core = args.cubicle / "packages/configs-core"
configs_interactive = args.cubicle / "packages/configs-interactive"
configs_package = script_path / "cubicle/configs"
maybe_copy_file(args, configs_core / "dot-profile", Path("~/.profile"))
copy_glob(args, configs_core / "profile.d", "**/*", Path("~/.config/profile.d/"))
copy_glob(
args,
configs_package / ".config/profile.d",
"**/*",
Path("~/.config/profile.d/"),
)
copy_glob(
args, script_path / ".config/profile.d", "**/*", Path("~/.config/profile.d/")
)
copy_glob(args, configs_core / "shrc.d", "**/*", Path("~/.config/shrc.d/"))
copy_glob(args, configs_interactive / "shrc.d", "**/*", Path("~/.config/shrc.d/"))
copy_glob(
args, configs_package / ".config/shrc.d", "**/*", Path("~/.config/shrc.d/")
)
copy_glob(args, script_path / ".config/shrc.d", "**/*", Path("~/.config/shrc.d/"))
def bash(args, script_path):
configs_core = args.cubicle / "packages/configs-core"
configs_interactive = args.cubicle / "packages/configs-interactive"
configs_package = script_path / "cubicle/configs"
maybe_copy_file(args, configs_core / "dot-bash_profile", Path("~/.bash_profile"))
maybe_copy_file(args, configs_core / "dot-bashrc", Path("~/.bashrc"))
copy_glob(args, configs_core / "bashrc.d", "**/*", Path("~/.config/bashrc.d/"))
copy_glob(
args, configs_interactive / "bashrc.d", "**/*", Path("~/.config/bashrc.d/")
)
copy_glob(
args, configs_package / ".config/bashrc.d", "**/*", Path("~/.config/bashrc.d/")
)
def zsh(args, script_path):
configs_core = args.cubicle / "packages/configs-core"
configs_interactive = args.cubicle / "packages/configs-interactive"
configs_package = script_path / "cubicle/configs"
maybe_copy_file(args, configs_core / "dot-zprofile", Path("~/.zprofile"))
maybe_copy_file(args, configs_core / "dot-zshrc", Path("~/.zshrc"))
copy_glob(args, configs_core / "zshrc.d", "**/*", Path("~/.config/zshrc.d/"))
copy_glob(args, configs_interactive / "zshrc.d", "**/*", Path("~/.config/zshrc.d/"))
copy_glob(
args, configs_package / ".config/zshrc.d", "**/*", Path("~/.config/zshrc.d/")
)
def xsessionrc(args, script_path):
maybe_copy_file(args, script_path / ".xsessionrc", Path("~/.xsessionrc"))
def xscreensaver(args, script_path):
maybe_copy_file(args, script_path / ".xscreensaver", Path("~/.xscreensaver"))
def vim(args, script_path):
maybe_copy_file(
args,
script_path / "cubicle/configs/.vimrc",
Path("~/.vimrc"),
)
def git(args, script_path):
copy_glob(
args,
script_path / "cubicle/configs/.config/git",
"**/*",
Path("~/.config/git"),
)
git_user_inc = Path("~/.config/git/user.conf").expanduser()
if not git_user_inc.exists():
print()
print(f"Missing {git_user_inc}")
if args.dry_run:
git_name = "Dry Run"
git_email = "dry-run@example.org"
print(f"Git name: {git_name}")
print(f"Git email: {git_email}")
else:
git_name = ""
git_email = ""
while not git_name:
git_name = input("Git name: ")
while not git_email:
git_email = input("Git email: ")
git_user_inc_contents = f"""[user]
name = {git_name}
email = {git_email}
"""
if args.dry_run:
print(f"[dry run] Would create {git_user_inc}:")
print(git_user_inc_contents)
else:
print(f"Creating {git_user_inc}")
with open(git_user_inc, "w") as f:
f.write(git_user_inc_contents)
def ipython(args, script_path):
copy_glob(
args,
script_path / "cubicle/configs/.ipython",
"**/*",
Path("~/.ipython"),
)
def sqlite(args, script_path):
maybe_copy_file(
args,
script_path / "cubicle/configs/.sqliterc",
Path("~/.sqliterc"),
)
def apt_binary(args, script_path):
package = args.cubicle / "packages/apt-binary"
maybe_copy_file(
args,
package / "bin/apt-binary",
Path("~/bin/apt-binary"),
)
copy_glob(
args,
package / "bashrc.d",
"*.bash",
Path("~/.config/bashrc.d"),
)
copy_glob(
args,
package / "zshrc.d",
"*.zsh",
Path("~/.config/zshrc.d"),
)
def printargv(args, script_path):
maybe_copy_file(
args,
script_path / "cubicle/configs/bin/printargv",
Path("~/bin/printargv"),
)
def update_completions(args, script_path):
maybe_copy_file(
args,
script_path / "bin/update-completions",
Path("~/bin/update-completions"),
)
def notion(args, script_path):
copy_glob(
args,
script_path / ".notion",
"**/*",
Path("~/.notion"),
)
maybe_copy_file(
args,
script_path / "bin/backlight",
Path("~/bin/backlight"),
)
maybe_copy_file(
args,
script_path / "bin/get-workspace",
Path("~/bin/get-workspace"),
)
class Component(object):
def __init__(self, install, missing=lambda args, script_path: None):
self.install = install
self.missing = missing
COMPONENTS = {
"posix shell": Component(posix_shell, needs_cubicle),
"bash": Component(bash, needs_cubicle),
"zsh": Component(zsh, needs_cubicle),
"xsessionrc": Component(xsessionrc),
"xscreensaver": Component(xscreensaver),
"vim": Component(vim),
"git": Component(git),
"ipython": Component(ipython),
"sqlite": Component(sqlite),
"apt-binary": Component(apt_binary, needs_cubicle),
"printargv": Component(printargv),
"notion wm": Component(notion),
"update-completions": Component(update_completions),
}
if __name__ == "__main__":
script_path = Path(os.path.dirname(__file__))
args = parser.parse_args()
for label, component in COMPONENTS.items():
if component.missing is not None:
missing = component.missing(args, script_path)
if missing is not None:
print(f"Skipping {label}: missing {missing}")
continue
if optional(args, label):
component.install(args, script_path)