|
1 | | -template pkg1(name: string; hasDeps = false; cmd = "nimble test"; url = "", useHead = true): untyped = |
2 | | - packages1.add((name, cmd, hasDeps, url, useHead)) |
| 1 | +template pkg1(name: string; cmd = "nimble test"; url = "", useHead = true): untyped = |
| 2 | + packages1.add((name, cmd, url, useHead)) |
3 | 3 |
|
4 | | -template pkg2(name: string; hasDeps = false; cmd = "nimble test"; url = "", useHead = true): untyped = |
5 | | - packages2.add((name, cmd, hasDeps, url, useHead)) |
6 | | - |
7 | | -var packages1*: seq[tuple[name, cmd: string; hasDeps: bool; url: string, useHead: bool]] = @[] |
8 | | -var packages2*: seq[tuple[name, cmd: string; hasDeps: bool; url: string, useHead: bool]] = @[] |
| 4 | +template pkg2(name: string; cmd = "nimble test"; url = "", useHead = true): untyped = |
| 5 | + packages2.add((name, cmd, url, useHead)) |
9 | 6 |
|
| 7 | +var packages1*: seq[tuple[name, cmd: string; url: string, useHead: bool]] = @[] |
| 8 | +var packages2*: seq[tuple[name, cmd: string; url: string, useHead: bool]] = @[] |
10 | 9 |
|
11 | 10 | # packages A-M |
12 | | -# pkg1 "alea", true |
| 11 | +# pkg1 "alea" |
13 | 12 | pkg1 "argparse" |
14 | | -pkg1 "arraymancer", true, "nim c tests/tests_cpu.nim" |
15 | | -#pkg1 "ast_pattern_matching", false, "nim c -r --oldgensym:on tests/test1.nim" |
16 | | -pkg1 "awk", true |
| 13 | +pkg1 "arraymancer", "nim c tests/tests_cpu.nim" |
| 14 | +#pkg1 "ast_pattern_matching", "nim c -r --oldgensym:on tests/test1.nim" |
| 15 | +pkg1 "awk" |
17 | 16 | pkg1 "bigints", url = "https://github.com/Araq/nim-bigints" |
18 | | -pkg1 "binaryheap", false, "nim c -r binaryheap.nim" |
| 17 | +pkg1 "binaryheap", "nim c -r binaryheap.nim" |
19 | 18 | pkg1 "BipBuffer" |
20 | | -# pkg1 "blscurve", true # pending https://github.com/status-im/nim-blscurve/issues/39 |
21 | | -pkg1 "bncurve", true |
22 | | -pkg1 "brainfuck", true, "nim c -d:release -r tests/compile.nim" |
23 | | -pkg1 "bump", true, "nim c --gc:arc -r tests/tbump.nim", "https://github.com/disruptek/bump" |
24 | | -pkg1 "c2nim", false, "nim c testsuite/tester.nim" |
| 19 | +# pkg1 "blscurve" # pending https://github.com/status-im/nim-blscurve/issues/39 |
| 20 | +pkg1 "bncurve" |
| 21 | +pkg1 "brainfuck", "nim c -d:release -r tests/compile.nim" |
| 22 | +pkg1 "bump", "nim c --gc:arc -r tests/tbump.nim", "https://github.com/disruptek/bump" |
| 23 | +pkg1 "c2nim", "nim c testsuite/tester.nim" |
25 | 24 | pkg1 "cascade" |
26 | | -pkg1 "cello", true |
| 25 | +pkg1 "cello" |
27 | 26 | pkg1 "chroma" |
28 | | -pkg1 "chronicles", true, "nim c -o:chr -r chronicles.nim" |
| 27 | +pkg1 "chronicles", "nim c -o:chr -r chronicles.nim" |
29 | 28 | when not defined(osx): # testdatagram.nim(560, 54): Check failed |
30 | | - pkg1 "chronos", true, "nim c -r -d:release tests/testall" |
31 | | -pkg1 "cligen", false, "nim c -o:cligenn -r cligen.nim" |
32 | | -pkg1 "combparser", false, "nimble test --gc:orc" |
| 29 | + pkg1 "chronos", "nim c -r -d:release tests/testall" |
| 30 | +pkg1 "cligen", "nim c --path:. -r cligen.nim" |
| 31 | +pkg1 "combparser", "nimble test --gc:orc" |
33 | 32 | pkg1 "compactdict" |
34 | | -pkg1 "comprehension", false, "nimble test", "https://github.com/alehander42/comprehension" |
35 | | -pkg1 "dashing", false, "nim c tests/functional.nim" |
| 33 | +pkg1 "comprehension", "nimble test", "https://github.com/alehander42/comprehension" |
| 34 | +pkg1 "dashing", "nim c tests/functional.nim" |
36 | 35 | pkg1 "delaunay" |
37 | 36 | pkg1 "docopt" |
38 | | -pkg1 "easygl", true, "nim c -o:egl -r src/easygl.nim", "https://github.com/jackmott/easygl" |
| 37 | +pkg1 "easygl", "nim c -o:egl -r src/easygl.nim", "https://github.com/jackmott/easygl" |
39 | 38 | pkg1 "elvis" |
40 | | -pkg1 "fidget", true |
41 | | -pkg1 "fragments", false, "nim c -r fragments/dsl.nim" |
| 39 | +pkg1 "fidget" |
| 40 | +pkg1 "fragments", "nim c -r fragments/dsl.nim" |
42 | 41 | pkg1 "gara" |
43 | | -pkg1 "ggplotnim", true, "nim c -d:noCairo -r tests/tests.nim" |
44 | | -# pkg1 "gittyup", true, "nimble test", "https://github.com/disruptek/gittyup" |
| 42 | +pkg1 "ggplotnim", "nim c -d:noCairo -r tests/tests.nim" |
| 43 | +# pkg1 "gittyup", "nimble test", "https://github.com/disruptek/gittyup" |
45 | 44 | # pkg1 "glob" # pending https://github.com/citycide/glob/issues/49 |
46 | | -pkg1 "gnuplot", false, "nim c gnuplot.nim" |
47 | | -pkg1 "hts", false, "nim c -o:htss src/hts.nim" |
48 | | -# pkg1 "httpauth", true |
49 | | -pkg1 "illwill", false, "nimble examples" |
50 | | -pkg1 "inim", true |
51 | | -pkg1 "itertools", false, "nim doc src/itertools.nim" |
| 45 | +pkg1 "gnuplot", "nim c gnuplot.nim" |
| 46 | +pkg1 "hts", "nim c -o:htss src/hts.nim" |
| 47 | +# pkg1 "httpauth" |
| 48 | +pkg1 "illwill", "nimble examples" |
| 49 | +pkg1 "inim" |
| 50 | +pkg1 "itertools", "nim doc src/itertools.nim" |
52 | 51 | pkg1 "iterutils" |
53 | 52 | pkg1 "jstin" |
54 | | -pkg1 "karax", false, "nim c -r tests/tester.nim" |
55 | | -pkg1 "kdtree", false, "nimble test", "https://github.com/jblindsay/kdtree" |
| 53 | +pkg1 "karax", "nim c -r tests/tester.nim" |
| 54 | +pkg1 "kdtree", "nimble test", "https://github.com/jblindsay/kdtree" |
56 | 55 | pkg1 "loopfusion" |
57 | 56 | pkg1 "macroutils" |
58 | 57 | pkg1 "markdown" |
59 | 58 | pkg1 "memo" |
60 | | -pkg1 "msgpack4nim", false, "nim c -r tests/test_spec.nim" |
| 59 | +pkg1 "msgpack4nim", "nim c -r tests/test_spec.nim" |
61 | 60 |
|
62 | 61 | # these two are special snowflakes |
63 | | -pkg1 "nimcrypto", false, "nim c -r tests/testall.nim" |
64 | | -pkg1 "stint", false, "nim c -o:stintt -r stint.nim" |
| 62 | +pkg1 "nimcrypto", "nim c -r tests/testall.nim" |
| 63 | +pkg1 "stint", "nim c -o:stintt -r stint.nim" |
65 | 64 |
|
66 | 65 |
|
67 | 66 | # packages N-Z |
68 | | -pkg2 "nake", false, "nim c nakefile.nim" |
69 | | -pkg2 "neo", true, "nim c -d:blas=openblas tests/all.nim" |
70 | | -# pkg2 "nesm", false, "nimble tests" # notice plural 'tests' |
71 | | -# pkg2 "nico", true |
72 | | -pkg2 "nicy", false, "nim c -r src/nicy.nim" |
73 | | -pkg2 "nigui", false, "nim c -o:niguii -r src/nigui.nim" |
74 | | -pkg2 "NimData", true, "nim c -o:nimdataa src/nimdata.nim" |
75 | | -pkg2 "nimes", true, "nim c src/nimes.nim" |
76 | | -pkg2 "nimfp", true, "nim c -o:nfp -r src/fp.nim" |
77 | | -pkg2 "nimgame2", true, "nim c nimgame2/nimgame.nim" |
78 | | -pkg2 "nimgen", true, "nim c -o:nimgenn -r src/nimgen/runcfg.nim" |
79 | | -pkg2 "nimlsp", true |
80 | | -pkg2 "nimly", true, "nim c -r tests/test_readme_example.nim" |
81 | | -# pkg2 "nimongo", true, "nimble test_ci" |
82 | | -# pkg2 "nimph", true, "nimble test", "https://github.com/disruptek/nimph" |
83 | | -pkg2 "nimpy", false, "nim c -r tests/nimfrompy.nim" |
| 67 | +pkg2 "nake", "nim c nakefile.nim" |
| 68 | +pkg2 "neo", "nim c -d:blas=openblas tests/all.nim" |
| 69 | +# pkg2 "nesm", "nimble tests" # notice plural 'tests' |
| 70 | +# pkg2 "nico" |
| 71 | +pkg2 "nicy", "nim c -r src/nicy.nim" |
| 72 | +pkg2 "nigui", "nim c -o:niguii -r src/nigui.nim" |
| 73 | +pkg2 "NimData", "nim c -o:nimdataa src/nimdata.nim" |
| 74 | +pkg2 "nimes", "nim c src/nimes.nim" |
| 75 | +pkg2 "nimfp", "nim c -o:nfp -r src/fp.nim" |
| 76 | +pkg2 "nimgame2", "nim c nimgame2/nimgame.nim" |
| 77 | +pkg2 "nimgen", "nim c -o:nimgenn -r src/nimgen/runcfg.nim" |
| 78 | +pkg2 "nimlsp" |
| 79 | +pkg2 "nimly", "nim c -r tests/test_readme_example.nim" |
| 80 | +# pkg2 "nimongo", "nimble test_ci" |
| 81 | +# pkg2 "nimph", "nimble test", "https://github.com/disruptek/nimph" |
| 82 | +pkg2 "nimpy", "nim c -r tests/nimfrompy.nim" |
84 | 83 | pkg2 "nimquery" |
85 | | -pkg2 "nimsl", true |
| 84 | +pkg2 "nimsl" |
86 | 85 | pkg2 "nimsvg" |
87 | | -pkg2 "nimterop", true, "nimble minitest" |
88 | | -pkg2 "nimwc", true, "nim c nimwc.nim" |
89 | | -# pkg2 "nimx", true, "nim c --threads:on test/main.nim" |
90 | | -# pkg2 "nitter", true, "nim c src/nitter.nim", "https://github.com/zedeus/nitter" |
91 | | -pkg2 "norm", true, "nim c -r tests/tsqliterows.nim" |
92 | | -pkg2 "npeg", false, "nimble testarc" |
93 | | -pkg2 "numericalnim", true, "nim c -r tests/test_integrate.nim" |
| 86 | +pkg2 "nimterop", "nimble minitest" |
| 87 | +pkg2 "nimwc", "nim c nimwc.nim" |
| 88 | +# pkg2 "nimx", "nim c --threads:on test/main.nim" |
| 89 | +# pkg2 "nitter", "nim c src/nitter.nim", "https://github.com/zedeus/nitter" |
| 90 | +pkg2 "norm", "nim c -r tests/tsqliterows.nim" |
| 91 | +pkg2 "npeg", "nimble testarc" |
| 92 | +pkg2 "numericalnim", "nim c -r tests/test_integrate.nim" |
94 | 93 | pkg2 "optionsutils" |
95 | | -pkg2 "ormin", true, "nim c -o:orminn ormin.nim" |
| 94 | +pkg2 "ormin", "nim c -o:orminn ormin.nim" |
96 | 95 | pkg2 "parsetoml" |
97 | 96 | pkg2 "patty" |
98 | | -pkg2 "plotly", true, "nim c examples/all.nim" |
| 97 | +pkg2 "plotly", "nim c examples/all.nim" |
99 | 98 | pkg2 "pnm" |
100 | 99 | pkg2 "polypbren" |
101 | | -pkg2 "prologue", true, "nimble tcompile" |
102 | | -pkg2 "protobuf", true, "nim c -o:protobuff -r src/protobuf.nim" |
| 100 | +pkg2 "prologue", "nimble tcompile" |
| 101 | +pkg2 "protobuf", "nim c -o:protobuff -r src/protobuf.nim" |
103 | 102 | pkg2 "pylib" |
104 | 103 | pkg2 "rbtree" |
105 | | -pkg2 "react", false, "nimble example" |
106 | | -pkg2 "regex", true, "nim c src/regex" |
107 | | -pkg2 "result", false, "nim c -r result.nim" |
108 | | -pkg2 "RollingHash", false, "nim c -r tests/test_cyclichash.nim" |
109 | | -pkg2 "rosencrantz", false, "nim c -o:rsncntz -r rosencrantz.nim" |
110 | | -pkg2 "sdl1", false, "nim c -r src/sdl.nim" |
111 | | -pkg2 "sdl2_nim", false, "nim c -r sdl2/sdl.nim" |
112 | | -pkg2 "sigv4", true, "nim c --gc:arc -r sigv4.nim", "https://github.com/disruptek/sigv4" |
113 | | -pkg2 "snip", false, "nimble test", "https://github.com/genotrance/snip" |
| 104 | +pkg2 "react", "nimble example" |
| 105 | +pkg2 "regex", "nim c src/regex" |
| 106 | +pkg2 "result", "nim c -r result.nim" |
| 107 | +pkg2 "RollingHash", "nim c -r tests/test_cyclichash.nim" |
| 108 | +pkg2 "rosencrantz", "nim c -o:rsncntz -r rosencrantz.nim" |
| 109 | +pkg2 "sdl1", "nim c -r src/sdl.nim" |
| 110 | +pkg2 "sdl2_nim", "nim c -r sdl2/sdl.nim" |
| 111 | +pkg2 "sigv4", "nim c --gc:arc -r sigv4.nim", "https://github.com/disruptek/sigv4" |
| 112 | +pkg2 "snip", "nimble test", "https://github.com/genotrance/snip" |
114 | 113 | pkg2 "strslice" |
115 | | -pkg2 "strunicode", true, "nim c -r src/strunicode.nim" |
| 114 | +pkg2 "strunicode", "nim c -r src/strunicode.nim" |
116 | 115 | pkg2 "synthesis" |
117 | | -pkg2 "telebot", true, "nim c -o:tbot -r src/telebot.nim" |
| 116 | +pkg2 "telebot", "nim c -o:tbot -r src/telebot.nim" |
118 | 117 | pkg2 "tempdir" |
119 | 118 | pkg2 "templates" |
120 | | -pkg2 "tensordsl", false, "nim c -r tests/tests.nim", "https://[email protected]/krux02/tensordslnim.git" |
121 | | -pkg2 "terminaltables", false, "nim c src/terminaltables.nim" |
122 | | -pkg2 "termstyle", false, "nim c -r termstyle.nim" |
| 119 | +pkg2 "tensordsl", "nim c -r tests/tests.nim", "https://[email protected]/krux02/tensordslnim.git" |
| 120 | +pkg2 "terminaltables", "nim c src/terminaltables.nim" |
| 121 | +pkg2 "termstyle", "nim c -r termstyle.nim" |
123 | 122 | pkg2 "timeit" |
124 | 123 | pkg2 "timezones" |
125 | 124 | pkg2 "tiny_sqlite" |
126 | | -pkg2 "unicodedb", false, "nim c -d:release -r tests/tests.nim" |
127 | | -pkg2 "unicodeplus", true, "nim c -d:release -r tests/tests.nim" |
| 125 | +pkg2 "unicodedb", "nim c -d:release -r tests/tests.nim" |
| 126 | +pkg2 "unicodeplus", "nim c -d:release -r tests/tests.nim" |
128 | 127 | pkg2 "unpack" |
129 | | -pkg2 "websocket", false, "nim c websocket.nim" |
130 | | -# pkg2 "winim", true |
| 128 | +pkg2 "websocket", "nim c websocket.nim" |
| 129 | +# pkg2 "winim" |
131 | 130 | pkg2 "with" |
132 | 131 | pkg2 "ws" |
133 | | -pkg2 "yaml", false, "nim build" |
134 | | -pkg2 "zero_functional", false, "nim c -r -d:nimWorkaround14447 test.nim" |
| 132 | +pkg2 "yaml", "nim build" |
| 133 | +pkg2 "zero_functional", "nim c -r -d:nimWorkaround14447 test.nim" |
0 commit comments