version is just defined as a list at the top of nomsu.moon, and uses X.Y.Z form instead of X.Y.Z.W. Added a ([...], from 2) method and a ([...], up to 5) method, and fixed a few upgrade bugs.
49 lines
1.7 KiB
Plaintext
Executable File
49 lines
1.7 KiB
Plaintext
Executable File
#!/usr/bin/env nomsu -V6.15.13.8
|
|
#
|
|
Tool to automatically update code from old versions of Nomsu. Usage:
|
|
nomsu tools/upgrade.nom [-i] file1 file2 directory1 ...
|
|
If "-i" is the first argument, upgrades will be performed in-place. Otherwise, the
|
|
upgraded code will be printed.
|
|
|
|
use "compatibility"
|
|
use "filesystem"
|
|
use "consolecolor"
|
|
use "commandline"
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
command line program with $args:
|
|
$inplace = ($args.i or $args.inplace)
|
|
$start_version = $args."upgrade-from"
|
|
if $start_version:
|
|
try:
|
|
use $start_version
|
|
..if it fails:
|
|
fail "Could not find upgrade rules for \$start_version"
|
|
$version = ($args."upgrade-to" or $(NOMSU VERSION))
|
|
$test = ($args.t or $args.test)
|
|
for $filename in $args.extras:
|
|
$file = (read file $filename)
|
|
unless $file:
|
|
fail "File does not exist: \$filename"
|
|
$leading_indent = ($file, matching "\n*([ ]*)")
|
|
$code = (NomsuCode from (Source $filename 1 (size of $file)) $file)
|
|
$tree = ($code parsed $start_version)
|
|
$uptree =
|
|
$tree upgraded from ($start_version or ($tree.version or $(NOMSU VERSION))) to
|
|
$version
|
|
$text = "\$leading_indent\($uptree as nomsu, text, with "\n" -> "\n\$leading_indent")"
|
|
when:
|
|
$inplace:
|
|
say "Upgraded \$filename"
|
|
write $text to file $filename
|
|
|
|
$test:
|
|
if ($uptree == $tree):
|
|
say (dim "\$filename will not be changed")
|
|
..else:
|
|
say (bright "\$filename will be changed")
|
|
|
|
else:
|
|
say $text inline
|