2019-03-20 15:55:57 -07:00
|
|
|
#!/usr/bin/env nomsu -V7.0.0
|
|
|
|
|
|
|
|
###
|
2019-01-08 16:33:23 -08:00
|
|
|
This file defines upgrades from Nomsu <6.14 to 6.14
|
2019-01-15 15:53:31 -08:00
|
|
|
|
2019-01-10 16:33:37 -08:00
|
|
|
use "compatibility/compatibility"
|
2019-01-08 16:33:23 -08:00
|
|
|
|
|
|
|
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
|
|
|
|
|
|
upgrade action
|
|
|
|
try $action and if it succeeds $success or if it barfs $msg $fallback
|
|
|
|
..to "6.14" as (try $action if it succeeds $success if it fails $msg $fallback)
|
|
|
|
|
|
|
|
upgrade action
|
|
|
|
try $action and if it barfs $msg $fallback or if it succeeds $success
|
|
|
|
..to "6.14" as (try $action if it fails $msg $fallback if it succeeds $success)
|
|
|
|
|
|
|
|
upgrade action (try $action and if it barfs $fallback or if it succeeds $success)
|
|
|
|
..to "6.14" as (try $action if it fails $fallback if it succeeds $success)
|
|
|
|
|
|
|
|
upgrade action (try $action and if it barfs $msg $fallback) to "6.14" as
|
|
|
|
try $action if it fails $msg $fallback
|
|
|
|
|
|
|
|
upgrade action (try $action and if it succeeds $success) to "6.14" as
|
|
|
|
try $action if it succeeds $success
|
|
|
|
|
|
|
|
upgrade action (assume $assumption or barf $err) to "6.14" as
|
|
|
|
unless $assumption: fail $err
|
|
|
|
|
|
|
|
upgrade action (barf $msg) to "6.14" as (fail $msg)
|
2019-03-20 15:55:57 -07:00
|
|
|
upgrade action ("Action" tree with 1 "'" "s" "meaning").stub to "6.14" via
|
2019-01-18 14:22:17 -08:00
|
|
|
$tree -> ("Var" tree from $tree.source with $tree.1)
|
2019-01-08 16:33:23 -08:00
|
|
|
upgrade action (log base $b of $n) to "6.14" as (log $n base $b)
|
2019-01-14 16:30:17 -08:00
|
|
|
upgrade action "use" to "6.14" via
|
|
|
|
for $tree:
|
|
|
|
$path = $tree.2.1
|
|
|
|
$path = ($path, with "%.nom$" -> "")
|
|
|
|
$path = ($path, with "^lib/" -> "")
|
2019-03-20 15:55:57 -07:00
|
|
|
return ("Action" tree with "use" ("Text" tree from $tree.2.source with $path))
|