aboutsummaryrefslogtreecommitdiff
path: root/lib/compatibility/6.15.9.nom
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2019-02-06 14:34:10 -0800
committerBruce Hill <bruce@bruce-hill.com>2019-02-06 14:34:10 -0800
commit618e48ad98c0e2b36eb22c75251dddc141d822e6 (patch)
tree5928f913e91af50289e119bfef820ad59d888bf6 /lib/compatibility/6.15.9.nom
parent9e9bcad6fab72fe66a52c174d27fce63dcae106c (diff)
Added compat files
Diffstat (limited to 'lib/compatibility/6.15.9.nom')
-rw-r--r--lib/compatibility/6.15.9.nom20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/compatibility/6.15.9.nom b/lib/compatibility/6.15.9.nom
new file mode 100644
index 0000000..d10167f
--- /dev/null
+++ b/lib/compatibility/6.15.9.nom
@@ -0,0 +1,20 @@
+#!/usr/bin/env nomsu -V6.15.9
+#
+ This file defines upgrades from Nomsu <6.15.9 to 6.15.9
+
+use "compatibility/compatibility"
+
+~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+upgrade action (assume $a == $b) to "6.15.9" as (assume ($a == $b))
+upgrade action (assume $a != $b) to "6.15.9" as (assume ($a != $b))
+upgrade action ($x to the nearest $r) to "6.15.9" as ($x, to the nearest $r)
+upgrade action [ceil $x, ceiling $x] to "6.15.9" as ($x, rounded up)
+upgrade action (floor $x) to "6.15.9" as ($x, rounded down)
+upgrade action (for $x in $start to $stop $body) to "6.15.9" as
+ for $x in ($start to $stop) $body
+
+upgrade action [
+ for $x in $start to $stop by $step $body
+ for $x in $start to $stop via $step $body
+] to "6.15.9" as (for $x in ($start to $stop by $step) $body)