nomsu/tools/upgrade.nom

60 lines
1.7 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env nomsu -V4.8.10
2018-07-23 15:54:27 -07:00
#
Tool to automatically update code from old versions of Nomsu. Usage:
2018-10-31 15:05:17 -07:00
nomsu tools/upgrade.nom [-i] file1 file2 directory1 ...
2018-07-23 15:54:27 -07:00
If "-i" is the first argument, upgrades will be performed in-place. Otherwise, the
upgraded code will be printed.
use "compatibility"
use "lib/os.nom"
%args = (command line args)
%inplace = (no)
2018-10-31 15:05:17 -07:00
%start_version = (nil)
%version = (Nomsu version)
repeat:
if %args.1 is:
"-i":
%inplace = (yes)
%args::remove index 1
2018-10-31 15:05:17 -07:00
"-t":
use "lib/consolecolor.nom"
%test = (yes)
%args::remove index 1
2018-10-31 15:05:17 -07:00
"-V":
%version = %args.2
%args::remove index 1
%args::remove index 1
2018-10-31 15:05:17 -07:00
"-S":
%start_version = %args.2
%args::remove index 1
%args::remove index 1
else: stop
for %path in %args:
for file %filename in %path:
unless (%filename::matches "%.nom$"): do next %filename
%tree = (parse (read file %filename) from %filename)
2018-10-31 15:05:17 -07:00
%uptree = (..)
%tree upgraded from (%start_version or (%tree.version or (Nomsu version))) to %version
2018-09-14 19:17:09 -07:00
%text = "\
..#!/usr/bin/env nomsu -V\%version
2018-09-14 19:17:09 -07:00
\(%uptree as nomsu)"
if:
%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