diff options
author | Andreas Rumpf <rumpf_a@web.de> | 2019-08-23 16:15:02 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-23 16:15:02 +0200 |
commit | b07694cd90ab7c6eb4660971ddb818b461d4eed8 (patch) | |
tree | a158993297748d4c55b6e069a6636eefcacd9865 /testament | |
parent | f28a47ea7b9c579b172653c15dc2cc054adf599a (diff) | |
download | Nim-b07694cd90ab7c6eb4660971ddb818b461d4eed8.tar.gz |
new gensym handling (#11985)
* new .gensym implementation * make astspec test green again * introduce a --useVersion switch to group compatibility switches * fixes #10180 * fixes #11494 * fixes #11483 * object constructor fields and named parameters are also not gensym'ed * disabled broken package
Diffstat (limited to 'testament')
-rw-r--r-- | testament/important_packages.nim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/testament/important_packages.nim b/testament/important_packages.nim index 93aeb1bbc..a96310ee5 100644 --- a/testament/important_packages.nim +++ b/testament/important_packages.nim @@ -5,9 +5,9 @@ template pkg(name: string; cmd = "nimble test"; hasDeps = false; url = ""): unty var packages*: seq[tuple[name, cmd: string; hasDeps: bool; url: string]] = @[] -pkg "argparse" +#pkg "argparse" pkg "arraymancer", "nim c -r src/arraymancer.nim", true -pkg "ast_pattern_matching", "nim c -r tests/test1.nim" +pkg "ast_pattern_matching", "nim c -r --useVersion=0.19 tests/test1.nim" pkg "binaryheap", "nim c -r binaryheap.nim" pkg "blscurve", "", true pkg "bncurve", "", true @@ -61,7 +61,7 @@ pkg "npeg" pkg "ormin", "nim c -o:orminn ormin.nim", true pkg "parsetoml" pkg "patty" -pkg "plotly", "nim c examples/all.nim", true +pkg "plotly", "nim c --useVersion:0.19 examples/all.nim", true pkg "protobuf", "nim c -o:protobuff -r src/protobuf.nim", true pkg "regex", "nim c src/regex", true pkg "result", "nim c -r result.nim" @@ -71,7 +71,7 @@ pkg "sdl2_nim", "nim c -r sdl2/sdl.nim" pkg "snip", "", false, "https://github.com/genotrance/snip" pkg "stint", "nim c -o:stintt -r stint.nim" pkg "strunicode", "nim c -r src/strunicode.nim", true -pkg "telebot", "nim c -o:tbot -r telebot.nim", true +pkg "telebot", "nim c -o:tbot --useVersion:0.19 -r telebot.nim", true pkg "tiny_sqlite" pkg "unicodedb" pkg "unicodeplus", "", true |