forked from moinwiki/moin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
quickinstall.py
executable file
·732 lines (634 loc) · 28.9 KB
/
quickinstall.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
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
#!/usr/bin/python3
# Copyright: 2013 MoinMoin:BastianBlank
# Copyright: 2013-2018 MoinMoin:RogerHaase
# Copyright: 2023-2024 MoinMoin:UlrichB
# License: GNU GPL v2 (or any later version), see LICENSE.txt for details.
"""
Create a virtual environment and install moin2 and all requirements in development mode.
Usage for installation:
<python> quickinstall.py (where <python> is any Python 3.9+ executable)
Requires: Python 3.9+, pip
The first run of quickinstall.py creates these files or symlink in the repo root:
- unix: m, activate, wikiconfig.py, intermap.txt
- windows: m.bat, activate.bat, deactivate.bat, wikiconfig.py, intermap.txt
After initial installation, a menu of frequently used commands is provided for
moin2 developers and desktop wiki users.
- wraps a few commonly used moin commands, do "moin --help" for infrequently used commands
- adds default file names for selected moin commands (backup, restore, ...)
- creates log files for functions with large output, extracts success/failure messages
- displays error messages if user tries to run commands out of sequence
In normal usage, after the initial installation the user will activate the newly created
virtualenv before executing commands.
usage (to display a menu of commands):
- unix: ./m
- windows: m
"""
import os
import subprocess
import sys
import platform
import glob
import shutil
import fnmatch
import timeit
from collections import Counter
import venv
if sys.hexversion < 0x3090000:
sys.exit("Error: MoinMoin requires Python 3.9+, current version is %s\n" % (platform.python_version(),))
WIN_INFO = "m.bat, activate.bat, and deactivate.bat are created by quickinstall.py"
NIX_INFO = "the m bash script and the activate symlink are created by quickinstall.py"
# text files created by commands with high volume output
QUICKINSTALL = "m-quickinstall.txt"
TOX = "m-tox.txt"
CODING_STD = "m-coding-std.txt"
DOCS = "m-docs.txt"
NEWWIKI = "m-new-wiki.txt"
DELWIKI = "m-delete-wiki.txt"
BACKUPWIKI = "m-backup-wiki.txt"
DUMPHTML = "m-dump-html.txt"
EXTRAS = "m-extras.txt"
DIST = "m-create-dist.txt"
# default files used for backup and restore
BACKUP_FILENAME = os.path.normpath("wiki/backup.moin")
JUST_IN_CASE_BACKUP = os.path.normpath("wiki/deleted-backup.moin")
if os.name == "nt":
M = "m" # customize help to local OS
SEP = " & "
WINDOWS_OS = True
ACTIVATE = "activate"
else:
M = "./m"
SEP = ";"
WINDOWS_OS = False
ACTIVATE = ". activate"
# commands that create log files
CMD_LOGS = {
"quickinstall": QUICKINSTALL,
"tests": TOX,
# 'coding-std': CODING_STD, # not logged due to small output
"docs": DOCS,
"new-wiki": NEWWIKI,
"del-wiki": DELWIKI,
"backup": BACKUPWIKI,
"dump-html": DUMPHTML,
"extras": EXTRAS,
"dist": DIST,
}
help = """
Usage: "{} <target>" where <target> is:
quickinstall update virtual environment with required packages
extras install packages required for docs and moin development
docs create moin html documentation (requires extras)
interwiki refresh intermap.txt
log <target> view detailed log generated by <target>, omit to see list
new-wiki create empty wiki
restore * create wiki and restore wiki/backup.moin *option, specify file
backup * roll 3 prior backups and create new backup *option, specify file
dump-html * create a static HTML image of wiki *options, see docs
css run lessc to update basic theme CSS files
tests * run tests, log output (-v -k my_test)
coding-std correct scripts that taint the repository with trailing spaces..
del-all same as running the 4 del-* commands below
del-orig delete all files matching *.orig
del-pyc delete all files matching *.pyc
del-rej delete all files matching *.rej
del-wiki create a backup, then delete all wiki data
Please refer to 'moin help' to learn more about the CLI for wiki administrators.
""".format(
M
)
def search_for_phrase(filename):
"""Search a text file for key phrases and print the lines of interest or print a count by phrase."""
files = {
# filename: (list of phrases)
# Note: phrases must be lower-case
QUICKINSTALL: (
"could not find",
"error",
"fail",
"timeout",
"traceback",
"success",
"cache location",
"must be deactivated",
"no such option",
),
NEWWIKI: ("error", "fail", "timeout", "traceback", "success"),
BACKUPWIKI: ("error", "fail", "timeout", "traceback", "success"),
DUMPHTML: ("fail", "timeout", "traceback", "success", "cannot", "denied", "error"),
# use of 'error ' below is to avoid matching .../Modules/errors.o....
EXTRAS: (
"error ",
"error:",
"error.",
"error,",
"fail",
"timeout",
"traceback",
"active version",
"successfully installed",
"finished",
),
# ': e' matches lines similar to:
# src/moin/converters\_tests\test_moinwiki_in_out.py:294:5: E303 too many blank lines (3)
TOX: ("seconds =", "internalerror", "error:", "traceback", ": e", ": f", " passed, "),
CODING_STD: ("remove trailing blanks", "dos line endings", "unix line endings", "remove empty lines"),
DIST: ("creating", "copying", "adding", "hard linking"),
DOCS: (
"build finished",
"build succeeded",
"traceback",
"failed",
"error",
"usage",
"importerror",
"exception occurred",
),
}
ignore_phrases = {TOX: ("interpreternotfound",)}
# for these file names, display a count of occurrances rather than each found line
print_counts = (CODING_STD, DIST)
with open(filename) as f:
lines = f.readlines()
name = os.path.split(filename)[1]
phrases = files[name]
ignore_phrase = ignore_phrases[name] if name in ignore_phrases else ()
counts = Counter()
for idx, line in enumerate(lines):
for phrase in phrases:
if phrase in line.lower():
if filename in print_counts:
counts[phrase] += 1
else:
skip = False
for ignore in ignore_phrase:
if ignore in line.lower():
skip = True
break
if not skip:
print(idx + 1, line.rstrip())
break
for key in counts:
print('The phrase "%s" was found %s times.' % (key, counts[key]))
def wiki_exists():
"""Return true if a wiki exists."""
return bool(glob.glob("wiki/index/_all_revs_*.toc"))
def copy_config_files():
if not os.path.isfile("wikiconfig.py"):
shutil.copy("src/moin/config/wikiconfig.py", "wikiconfig.py")
if not os.path.isfile("intermap.txt"):
shutil.copy("src/moin/contrib/intermap.txt", "intermap.txt")
if not os.path.isdir("wiki_local"):
os.mkdir("wiki_local")
def make_wiki(command, mode="w", msg="\nSuccess: a new wiki has been created."):
"""Process command to create a new wiki."""
if wiki_exists() and mode == "w":
print("Error: a wiki exists, delete it and try again.")
else:
copy_config_files()
print(f"Output messages redirected to {NEWWIKI}.")
with open(NEWWIKI, mode) as messages:
result = subprocess.call(command, shell=True, stderr=messages, stdout=messages)
if result == 0:
print(msg)
return True
else:
print("Important messages from %s are shown below:" % NEWWIKI)
search_for_phrase(NEWWIKI)
print('\nError: attempt to create wiki failed. Do "%s log new-wiki" to see complete log.' % M)
return False
def delete_files(pattern):
"""Recursively delete all files matching pattern."""
matches = 0
for root, dirnames, filenames in os.walk(os.path.abspath(os.path.dirname(__file__))):
for filename in fnmatch.filter(filenames, pattern):
os.remove(os.path.join(root, filename))
matches += 1
print('Deleted %s files matching "%s".' % (matches, pattern))
def get_bootstrap_data_location():
"""Return the virtualenv site-packages/xstatic/pkg/bootstrap/data location."""
command = 'python -c "from xstatic.pkg.bootstrap import BASE_DIR; print(BASE_DIR)"'
return subprocess.check_output(command, shell=True).decode()
def get_pygments_data_location():
"""Return the virtualenv site-packages/xstatic/pkg/pygments/data location."""
command = 'python -c "from xstatic.pkg.pygments import BASE_DIR; print(BASE_DIR)"'
return subprocess.check_output(command, shell=True).decode()
def create_m():
"""Create an 'm.bat or 'm' bash script that will run quickinstall.py using this Python"""
if WINDOWS_OS:
with open("m.bat", "w") as f:
f.write(f":: {WIN_INFO}\n\n@{sys.executable} quickinstall.py %* --help\n")
else:
with open("m", "w") as f:
f.write(f"#!/bin/sh\n# {NIX_INFO}\n\n{sys.executable} quickinstall.py $* --help\n")
os.fchmod(f.fileno(), 0o775)
class Commands:
"""Each cmd_ method processes a choice on the menu."""
def __init__(self):
self.tic = timeit.default_timer()
def run_time(self, command):
seconds = int(timeit.default_timer() - self.tic)
(t_min, t_sec) = divmod(seconds, 60)
(t_hour, t_min) = divmod(t_min, 60)
print(f"{command} run time (h:mm:ss) {t_hour}:{t_min:0>2}:{t_sec:0>2}")
def cmd_quickinstall(self, *args):
"""create or update a virtual environment with the required packages"""
if os.path.isdir(".tox"):
# keep tox test virtualenvs in sync with moin-env-python
command = "{} quickinstall.py --FirstCall {}{}tox --recreate --notest".format(
sys.executable, " ".join(args), SEP
)
print(
"Running quickinstall.py and tox recreate virtualenvs... output messages redirected to {}".format(
QUICKINSTALL
)
)
else:
command = f"{sys.executable} quickinstall.py --FirstCall"
print(f"Running quickinstall.py... output messages redirected to {QUICKINSTALL}")
with open(QUICKINSTALL, "w") as messages:
# we run ourself as a subprocess so output can be captured in a log file
subprocess.run(command, shell=True, stderr=messages, stdout=messages)
print(
'\nSearching {}, important messages are shown below... Do "{} log quickinstall" '
"to see complete log.\n".format(QUICKINSTALL, M)
)
search_for_phrase(QUICKINSTALL)
self.run_time("Quickinstall")
def cmd_docs(self, *args):
"""create local Sphinx html documentation"""
command = "sphinx-apidoc -f -o docs/devel/api src/moin {0}cd docs{0} make html".format(SEP)
print(f"Creating HTML docs... output messages written to {DOCS}.")
with open(DOCS, "w") as messages:
result = subprocess.call(command, shell=True, stderr=messages, stdout=messages)
print(f"\nSearching {DOCS}, important messages are shown below...\n")
search_for_phrase(DOCS)
if result == 0:
print("HTML docs successfully created in {}.".format(os.path.normpath("docs/_build/html")))
else:
print(
'Error: creation of HTML docs failed with return code "{}".'
' Do "{} log docs" to see complete log.'.format(result, M)
)
self.run_time("Docs")
def cmd_extras(self, *args):
"""install optional packages from requirements.d"""
reqs = ["requirements.d/extras.txt", "requirements.d/development.txt", "docs/requirements.txt"]
if not WINDOWS_OS:
reqs.append("requirements.d/ldap.txt")
reqs_installer = "pip install --upgrade -r "
command = SEP.join(list(reqs_installer + x for x in reqs))
print("Installing {}.".format(", ".join(reqs)))
print(f"Output messages written to {EXTRAS}.")
with open(EXTRAS, "w") as messages:
subprocess.call(command, shell=True, stderr=messages, stdout=messages)
print('\nImportant messages from {} are shown below. Do "{} log extras" to see complete log.'.format(EXTRAS, M))
search_for_phrase(EXTRAS)
self.run_time("Extras")
def cmd_interwiki(self, *args):
"""refresh contrib/interwiki/intermap.txt"""
print("Refreshing {}...".format(os.path.normpath("contrib/interwiki/intermap.txt")))
command = "{} scripts/wget.py http://master19.moinmo.in/InterWikiMap?action=raw intermap.txt".format(
sys.executable
)
subprocess.call(command, shell=True)
def cmd_log(self, *args):
"""View a log file with the default text editor"""
def log_help(logs):
"""Print list of available logs to view."""
print(f"usage: {M} log <target> where <target> is:\n\n")
choices = "{0: <16}- {1}"
for log in sorted(logs):
if os.path.isfile(CMD_LOGS[log]):
print(choices.format(log, CMD_LOGS[log]))
else:
print(choices.format(log, "* file does not exist"))
logs = set(CMD_LOGS.keys())
if args and args[0] in logs and os.path.isfile(CMD_LOGS[args[0]]):
if WINDOWS_OS:
command = f"start {CMD_LOGS[args[0]]}"
else:
# .format requires {{ and }} to escape { and }
command = f"${{VISUAL:-${{FCEDIT:-${{EDITOR:-less}}}}}} {CMD_LOGS[args[0]]}"
subprocess.call(command, shell=True)
else:
log_help(logs)
def cmd_new_wiki(self, *args):
"""create empty wiki"""
command = "moin index-create"
print("Creating a new empty wiki...")
make_wiki(command) # share code with restore command
def cmd_restore(self, *args):
"""create wiki and load data from wiki/backup.moin or user specified path"""
command = "moin index-create{0} moin load --file %s{0} moin index-build".format(SEP)
filename = BACKUP_FILENAME
if args:
filename = args[0]
if os.path.isfile(filename):
command = command % filename
print(f"Creating a new wiki and loading it with data from {filename}...")
make_wiki(command)
else:
print(f"Error: cannot create wiki because {filename} does not exist.")
self.run_time("Restore")
def cmd_import19(self, *args):
"""import a moin 1.9 wiki"""
print("Error: Subcommand import19 not supported. Please use 'moin import19'.")
def cmd_backup(self, *args):
"""roll 3 prior backups and create new wiki/backup.moin or backup to user specified file"""
if wiki_exists():
filename = BACKUP_FILENAME
if args:
filename = args[0]
print(f"Creating a wiki backup to {filename}...")
else:
print(f"Creating a wiki backup to {filename} after rolling 3 prior backups...")
b3 = BACKUP_FILENAME.replace(".", "3.")
b2 = BACKUP_FILENAME.replace(".", "2.")
b1 = BACKUP_FILENAME.replace(".", "1.")
if os.path.exists(b3):
os.remove(b3)
for src, dst in ((b2, b3), (b1, b2), (BACKUP_FILENAME, b1)):
if os.path.exists(src):
os.rename(src, dst)
command = f"moin save --all-backends --file {filename}"
with open(BACKUPWIKI, "w") as messages:
result = subprocess.call(command, shell=True, stderr=messages, stdout=messages)
if result == 0:
print(f"Success: wiki was backed up to {filename}")
else:
print(
'Important messages from {} are shown below. Do "{} log backup" to see complete log.'.format(
BACKUPWIKI, M
)
)
search_for_phrase(BACKUPWIKI)
print("\nError: attempt to backup wiki failed.")
else:
print("Error: cannot backup wiki because it has not been created.")
self.run_time("Backup")
def cmd_dump_html(self, *args):
"""create a static html dump of this wiki"""
if wiki_exists():
print("Creating static HTML image of wiki...")
command = "moin dump-html {}".format(" ".join(args))
with open(DUMPHTML, "w") as messages:
result = subprocess.call(command, shell=True, stderr=messages, stdout=messages)
if result == 0:
print("Success: wiki was dumped to html files")
else:
print("\nError: attempt to dump wiki to html files failed.")
# always show errors because individual items may fail
print(
'Important messages from {} are shown below. Do "{} log dump-html" to see complete log.'.format(
DUMPHTML, M
)
)
search_for_phrase(DUMPHTML)
else:
print("Error: cannot dump wiki because it has not been created.")
self.run_time("HTML Dump")
def cmd_css(self, *args):
"""run lessc to update basic theme CSS files"""
bootstrap_loc = get_bootstrap_data_location().strip() + "/less"
pygments_loc = get_pygments_data_location().strip() + "/css"
basic_loc = "src/moin/themes/basic/static/custom-less"
print("Running lessc to update Basic theme CSS files...")
if WINDOWS_OS:
data_loc = f"{bootstrap_loc};{pygments_loc}"
else:
data_loc = f"{bootstrap_loc}:{pygments_loc}"
include = "--include-path=" + data_loc
command = f"cd {basic_loc}{SEP}lessc {include} theme.less ../css/theme.css"
result = subprocess.call(command, shell=True)
if result == 0:
print("Success: Basic theme CSS files updated.")
else:
print("Error: Basic theme CSS files update failed, see error messages above.")
def cmd_tests(self, *args):
"""run tests, output goes to m-tox.txt"""
print(f"Running tests... output written to {TOX}.")
command = "tox -- {1} > {0} 2>&1".format(TOX, " ".join(args))
subprocess.call(command, shell=True)
print(f'Important messages from {TOX} are shown below. Do "{M} log tests" to see complete log.')
search_for_phrase(TOX)
self.run_time("Tests")
def cmd_coding_std(self, *args):
"""correct scripts that taint the HG repository and clutter subsequent code reviews"""
print("Checking for trailing blanks, DOS line endings, Unix line endings, empty lines at eof...")
command = "%s scripts/coding_std.py" % sys.executable
subprocess.call(command, shell=True)
# not on menu, rarely used, similar code was in moin 1.9
def cmd_dist(self, *args):
"""create distribution archive in dist/"""
print("Deleting wiki data, then creating distribution archive in /dist, output written to {}.".format(DIST))
self.cmd_del_wiki(*args)
command = "pip install build ; python -m build"
with open(DIST, "w") as messages:
result = subprocess.call(command, shell=True, stderr=messages, stdout=messages)
print(f"Summary message from {DIST} is shown below:")
search_for_phrase(DIST)
if result == 0:
print("Success: a distribution archive was created in {}.".format(os.path.normpath("/dist")))
else:
print(
'Error: create dist failed with return code = {}. Do "{} log dist" to see complete log.'.format(
result, M
)
)
def cmd_del_all(self, *args):
"""same as running the 4 del-* commands below"""
self.cmd_del_orig(*args)
self.cmd_del_pyc(*args)
self.cmd_del_rej(*args)
self.cmd_del_wiki(*args)
def cmd_del_orig(self, *args):
"""delete all files matching *.orig"""
delete_files("*.orig")
def cmd_del_pyc(self, *args):
"""delete all files matching *.pyc"""
delete_files("*.pyc")
def cmd_del_rej(self, *args):
"""delete all files matching *.rej"""
delete_files("*.rej")
def cmd_del_wiki(self, *args):
"""create a just-in-case backup, then delete all wiki data"""
command = f"moin save --all-backends --file {JUST_IN_CASE_BACKUP}"
if wiki_exists():
print(f"Creating a backup named {JUST_IN_CASE_BACKUP}; then deleting all wiki data and indexes...")
with open(DELWIKI, "w") as messages:
result = subprocess.call(command, shell=True, stderr=messages, stdout=messages)
if result != 0:
print(f"Error: backup failed with return code = {result}. Complete log is in {DELWIKI}.")
# destroy wiki even if backup fails
if os.path.isdir("wiki/data") or os.path.isdir("wiki/index"):
shutil.rmtree("wiki/data")
shutil.rmtree("wiki/index")
if os.path.isdir("wiki/preview"):
shutil.rmtree("wiki/preview")
if os.path.isdir("wiki/sql"):
shutil.rmtree("wiki/sql")
print("Wiki data successfully deleted.")
else:
print("Wiki data not deleted because it does not exist.")
self.run_time("Delete wiki")
class QuickInstall:
def __init__(self, source):
self.dir_source = source
base, source_name = os.path.split(source)
executable = os.path.basename(sys.executable).split(".exe")[0]
venv_path = os.path.join(base, f"{source_name}-venv-{executable}")
venv_path = os.path.abspath(venv_path)
venv_home, venv_lib, venv_inc, venv_bin = path_locations(venv_path)
self.dir_venv = venv_home
self.dir_venv_bin = venv_bin
def __call__(self):
self.do_venv()
self.do_helpers()
self.do_install()
self.do_catalog()
sys.stdout.write(f"\n\nSuccessfully created or updated venv at {self.dir_venv}\n")
def do_venv(self):
venv.create(self.dir_venv, system_site_packages=False, clear=False, symlinks=False, with_pip=True, prompt=None)
def do_install(self):
args = [
os.path.join(self.dir_venv_bin, "pip"),
"install",
"--upgrade",
"--upgrade-strategy=eager",
"--editable",
self.dir_source,
]
subprocess.check_call(args)
def do_catalog(self):
subprocess.check_call(
(
os.path.join(self.dir_venv_bin, "pybabel"),
"compile",
"--statistics",
# needed in case user runs quickinstall.py with a cwd other than the repo root
"--directory",
os.path.join(os.path.dirname(__file__), "src", "moin", "translations"),
)
)
def create_wrapper(self, filename, target):
r"""Create files in the repo root that wrap files in <path-to-virtual-env>\Scripts.""" # noqa
target = os.path.join(self.dir_venv_bin, target)
with open(filename, "w") as f:
f.write(f":: {WIN_INFO}\n\n@call {target} %*\n")
def do_helpers(self):
"""Create small helper scripts or symlinks in repo root, avoid keying the long path to virtual env."""
create_m()
if WINDOWS_OS:
# windows commands are: activate | deactivate
self.create_wrapper("activate.bat", "activate.bat")
self.create_wrapper("deactivate.bat", "deactivate.bat")
else:
# linux commands are: source activate | deactivate
if os.path.exists("activate"):
os.unlink("activate")
os.symlink(os.path.join(self.dir_venv_bin, "activate"), "activate") # no need to define deactivate on unix
# code below and path_locations copied from virtualenv.py v16.7.10 because path_locations dropped in v20.0.0 rewrite.
PY_VERSION = f"python{sys.version_info[0]}.{sys.version_info[1]}"
IS_PYPY = hasattr(sys, "pypy_version_info")
IS_WIN = sys.platform == "win32"
ABI_FLAGS = getattr(sys, "abiflags", "")
join = os.path.join
def mkdir(at_path):
if not os.path.exists(at_path):
os.makedirs(at_path)
def path_locations(home_dir, dry_run=False):
"""Return the path locations for the environment (where libraries are,
where scripts go, etc)"""
home_dir = os.path.abspath(home_dir)
lib_dir, inc_dir, bin_dir = None, None, None
# XXX: We'd use distutils.sysconfig.get_python_inc/lib but its
# prefix arg is broken: http://bugs.python.org/issue3386
if IS_WIN:
# Windows has lots of problems with executables with spaces in
# the name; this function will remove them (using the ~1
# format):
if not dry_run:
mkdir(home_dir)
if " " in home_dir:
import ctypes
get_short_path_name = ctypes.windll.kernel32.GetShortPathNameW
size = max(len(home_dir) + 1, 256)
buf = ctypes.create_unicode_buffer(size)
try:
# noinspection PyUnresolvedReferences
u = unicode
except NameError:
u = str
ret = get_short_path_name(u(home_dir), buf, size)
if not ret:
print(f'Error: the path "{home_dir}" has a space in it')
print("We could not determine the short pathname for it.")
print("Exiting.")
sys.exit(3)
home_dir = str(buf.value)
lib_dir = join(home_dir, "Lib")
inc_dir = join(home_dir, "Include")
bin_dir = join(home_dir, "Scripts")
if IS_PYPY:
lib_dir = home_dir
inc_dir = join(home_dir, "include")
bin_dir = join(home_dir, "bin")
elif not IS_WIN:
lib_dir = join(home_dir, "lib", PY_VERSION)
inc_dir = join(home_dir, "include", PY_VERSION + ABI_FLAGS)
bin_dir = join(home_dir, "bin")
return home_dir, lib_dir, inc_dir, bin_dir
if __name__ == "__main__":
# create a set of valid menu choices
commands = Commands()
choices = set()
names = dir(commands)
for name in names:
if name.startswith("cmd_"):
choices.add(name)
args = sys.argv[:]
if len(args) > 2 and args[-1] == "--help":
# m and m.bat have trailing --help so "./m" comes across as "python quickinstall.py --help"
# if user did "./m <option>" we have "python quickinstall.py <option> --help"
# then we can delete the --help and do <option>
args = args[:-1]
if (os.path.isfile("activate") or os.path.isfile("activate.bat")) and (
len(args) == 2 and args[1] in ("-h", "--help")
):
# user keyed "./m", "./m -h", or "./m --help"
print(help)
else:
if not (os.path.isfile("m") or os.path.isfile("m.bat")):
# user is running "python quickinstall.py" after fresh clone (or m or m.bat has been deleted)
create_m() # create "m" or "m.bat" file so above IF will be false next time around
command = getattr(commands, "cmd_quickinstall")
# run this same script (quickinstall.py) again in a subprocess to create the virtual env
command()
# a few success/failure messages will have printed on users terminal, suggest next step
print('\n> > > Type "%s" to activate venv, then "%s" for menu < < <' % (ACTIVATE, M))
elif args == ["quickinstall.py", "quickinstall"]:
# user keyed "./m quickinstall" to update virtualenv
command = getattr(commands, "cmd_quickinstall")
# run this same script (quickinstall.py) again in a subprocess to recreate the virtual env
command()
else:
if len(args) == 1 and args[0].endswith("quickinstall.py"):
# user keyed "python quickinstall.py" instead of "./m quickinstall"
# run this same script (quickinstall.py) again in a subprocess to create the virtual env
command = getattr(commands, "cmd_quickinstall")
command()
elif args == ["quickinstall.py", "--FirstCall"]:
# we are in a subprocess call after "python quickinstall.py" or "./m quickinstall"
QuickInstall(os.path.dirname(os.path.realpath(args[0])))()
copy_config_files()
else:
# we have some simple command like "./m css" that does not update virtualenv
choice = "cmd_%s" % args[1]
choice = choice.replace("-", "_")
if choice in choices:
choice = getattr(commands, choice)
choice(*args[2:])
else:
print(help)
print('Error: unknown menu selection "%s"' % args[1])