diff --git a/Bron-Dijkstra-Strings.json b/Bron-Dijkstra-Strings.json index 31a5739..e12ba09 100644 --- a/Bron-Dijkstra-Strings.json +++ b/Bron-Dijkstra-Strings.json @@ -10,7 +10,7 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "bdStrings.Mod" - } + [ + {"command": "voc -s", "file": "bdStrings.Mod"} + ] } diff --git a/Internet.json b/Internet.json index cbb62d9..82861e1 100644 --- a/Internet.json +++ b/Internet.json @@ -13,15 +13,14 @@ { "time": "0.1" }, - "Build": - { - "voc -s": "src/netTypes.Mod", - "voc -s": "src/netdb.Mod", - "voc -s": "src/netSockets.Mod", - "voc -s": "src/Internet.Mod", - "voc -s": "src/netForker.Mod", - "voc -s": "src/server.Mod", - "voc -m": "tst/testClient.Mod", - "voc -m": "tst/testServer.Mod" - } + "Build": [ + {"command": "voc -s", "file": "src/netTypes.Mod"}, + {"command": "voc -s", "file": "src/netdb.Mod"}, + {"command": "voc -s", "file": "src/netSockets.Mod"}, + {"command": "voc -s", "file": "src/Internet.Mod"}, + {"command": "voc -s", "file": "src/netForker.Mod"}, + {"command": "voc -s", "file": "src/server.Mod"}, + {"command": "voc -m", "file": "tst/testClient.Mod"}, + {"command": "voc -m", "file": "tst/testServer.Mod"} + ] } diff --git a/armscii.json b/armscii.json index 202684e..aa434fb 100644 --- a/armscii.json +++ b/armscii.json @@ -10,7 +10,7 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "ArmsciiUTF.Mod" - } + [ + {"command": "voc -s", "file": "ArmsciiUTF.Mod"} + ] } diff --git a/dbg.json b/dbg.json new file mode 100644 index 0000000..d6b69b7 --- /dev/null +++ b/dbg.json @@ -0,0 +1,20 @@ +{ + "Package": "dbg", + "Author": "noch", + "License": "GPL-3", + "Version": "0.1", + "Remote": + { + "type": "git", + "path": "https://github.com/norayr/dbg", + "tag" : "0.1" + }, + "Dependencies": + { + "strutils": "0.1" + }, + "Build": + [ + {"command": "voc -s", "file": "src/dbg.Mod"} + ] +} diff --git a/diaspora.json b/diaspora.json index 8577443..4d2308a 100644 --- a/diaspora.json +++ b/diaspora.json @@ -15,8 +15,8 @@ "postgres": "0.1" }, "Build": - { - "voc -s": "src/diasporadb.Mod", - "voc -s": "src/diasporaPost.Mod" - } + [ + {"command": "voc -s", "file": "src/diasporadb.Mod"}, + }"command": "voc -s", "file": "src/diasporaPost.Mod"} + ] } diff --git a/fifo.json b/fifo.json index 6e2fa1a..133a761 100644 --- a/fifo.json +++ b/fifo.json @@ -10,7 +10,7 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/fifo.Mod" - } + [ + {"command": "voc -s", "file": "src/fifo.Mod"} + ] } diff --git a/irc.json b/irc.json index c6636f5..8de17ce 100644 --- a/irc.json +++ b/irc.json @@ -13,10 +13,11 @@ { "time": "0.1", "Internet": "0.1", - "lists": "0.1" + "lists": "0.1", + "dbg": "0.1" }, "Build": - { - "voc -s": "src/IRC.Mod" - } + [ + {"command": "voc -s", "file": "src/IRC.Mod"} + ] } diff --git a/irc_bot.json b/irc_bot.json index 48a2ea1..748f308 100644 --- a/irc_bot.json +++ b/irc_bot.json @@ -18,7 +18,7 @@ "irc": "0.1" }, "Build": - { - "voc -m": "src/vocbot.Mod" - } + [ + {"command": "voc -m", "file": "src/vocbot.Mod"} + ] } diff --git a/libucl.json b/libucl.json index e639bb1..a9cfffe 100644 --- a/libucl.json +++ b/libucl.json @@ -10,9 +10,9 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/ucl.Mod", - "CFLAGS=-lucl voc -m": "test/libucl_test.Mod", - "cp": "test/example.ucl .", - } + [ + {"command": "voc -s", "file": "src/ucl.Mod"}, + {"command": "CFLAGS=-lucl voc -m", "file": "test/libucl_test.Mod"}, + {"command": "cp", "file": "test/example.ucl ."} + ] } diff --git a/libxo.json b/libxo.json index 43d878b..760ebad 100644 --- a/libxo.json +++ b/libxo.json @@ -10,8 +10,8 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/xo.Mod", - "CFLAGS=-lxo voc -m": "test/libxo_test.Mod", - } + [ + {"command": "voc -s", "file": "src/xo.Mod"}, + {"command": "CFLAGS=-lxo voc -m", "file": "test/libxo_test.Mod"} + ] } diff --git a/lists.json b/lists.json index 6e13b4a..6b04e38 100644 --- a/lists.json +++ b/lists.json @@ -14,9 +14,9 @@ "strutils": "0.1" }, "Build": - { - "voc -s": "src/List.Mod", - "voc -s": "src/StringList.Mod", - "voc -m": "test/TestList.Mod", - } + [ + {"command": "voc -s", "file": "src/List.Mod"}, + {"command": "voc -s", "file": "src/StringList.Mod"}, + {"command": "voc -m", "file": "test/testList.Mod"} + ] } diff --git a/manush.json b/manush.json index 28a4c23..5ff3573 100644 --- a/manush.json +++ b/manush.json @@ -18,15 +18,15 @@ "skprJson": "0.1" }, "Build": - { - "voc -s": "src/mnshList.Mod", - "voc -s": "src/mnshUnix.Mod", - "voc -s": "src/mnshDefs.Mod", - "voc -s": "src/mnshCrt.Mod", - "voc -s": "src/mnshStorage.Mod", - "voc -s": "src/mnshExtTools.Mod", - "voc -s": "src/mnshTerm.Mod", - "voc -s": "src/mnshInput.Mod", - "voc -M": "src/manush.Mod" - } + [ + {"command": "voc -s", "file": "src/mnshList.Mod"}, + {"command": "voc -s", "file": "src/mnshUnix.Mod"}, + {"command": "voc -s", "file": "src/mnshDefs.Mod"}, + {"command": "voc -s", "file": "src/mnshCrt.Mod"}, + {"command": "voc -s", "file": "src/mnshStorage.Mod"}, + {"command": "voc -s", "file": "src/mnshExtTools.Mod"}, + {"command": "voc -s", "file": "src/mnshTerm.Mod"}, + {"command": "voc -s", "file": "src/mnshInput.Mod"}, + {"command": "voc -M", "file": "src/manush.Mod"} + ] } diff --git a/oberonDS.json b/oberonDS.json index 9f85179..5b15749 100644 --- a/oberonDS.json +++ b/oberonDS.json @@ -10,12 +10,12 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/DynamicArray.Mod" - "voc -s": "src/HashMap.Mod", - "voc -s": "src/Map.Mod", - "voc -m": "test/DynamicArrayTest.Mod", - "voc -m": "test/HashMapTest.Mod", - "voc -m": "test/MapTest.Mod", - } + [ + {"command": "voc -s", "file": "src/DynamicArray.Mod"}, + {"command": "voc -s", "file": "src/HashMap.Mod"}, + {"command": "voc -s", "file": "src/Map.Mod"}, + {"command": "voc -m", "file": "test/DynamicArrayTest.Mod"}, + {"command": "voc -m", "file": "test/HashMapTest.Mod"}, + {"command": "voc -m", "file": "test/MapTest.Mod"} + ] } diff --git a/opts.json b/opts.json index cbd06f1..2398ac1 100644 --- a/opts.json +++ b/opts.json @@ -14,9 +14,9 @@ "lists": "0.1" }, "Build": - { - "voc -s": "src/optsos.Mod", - "voc -s": "src/opts.Mod", - "voc -m": "src/testopts.Mod" - } + [ + {"command": "voc -s", "file": "src/optsos.Mod"}, + {"command": "voc -s", "file": "src/opts.Mod"}, + {"command": "voc -m", "file": "src/testopts.Mod"} + ] } diff --git a/pipes.json b/pipes.json index 10255fe..fa9fc81 100644 --- a/pipes.json +++ b/pipes.json @@ -10,8 +10,8 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/pipes.Mod", - "voc -m": "src/testPipes.Mod" - } + [ + {"command": "voc -s", "file": "src/pipes.Mod"}, + {"command": "voc -m", "file": "src/testPipes.Mod"} + ] } diff --git a/postgres.json b/postgres.json index 2e3346d..5cf2919 100644 --- a/postgres.json +++ b/postgres.json @@ -14,8 +14,8 @@ "pipes": "0.1" }, "Build": - { - "voc -s": "postgres.Mod", - "voc -m": "PostgresTests.Mod" - } + [ + {"command": "voc -s", "file": "postgres.Mod"}, + {"command": "voc -m", "file": "PostgresTests.Mod"} + ] } diff --git a/skprJson.json b/skprJson.json index 5355846..fe4718e 100644 --- a/skprJson.json +++ b/skprJson.json @@ -15,8 +15,8 @@ "skprLogger": "0.1" }, "Build": - { - "voc -s": "src/skprCharStack.Mod", - "voc -s": "src/skprJson.Mod" - } + [ + {"command": "voc -s", "file": "src/skprCharStack.Mod"}, + {"command": "voc -s", "file": "src/skprJson.Mod"} + ] } diff --git a/skprLogger.json b/skprLogger.json index 6b0cd5e..c461c6b 100644 --- a/skprLogger.json +++ b/skprLogger.json @@ -14,7 +14,7 @@ "time": "0.1" }, "Build": - { - "voc -s": "src/skprLogger.Mod" - } + [ + {"command": "voc -s", "file": "src/skprLogger.Mod"} + ] } diff --git a/strutils.json b/strutils.json index c3feb8e..e3cdb01 100644 --- a/strutils.json +++ b/strutils.json @@ -10,9 +10,9 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/strTypes.Mod", - "voc -s": "src/strUtils.Mod", - "voc -m": "test/testStrUtils.Mod" - } + [ + {"command": "voc -s", "file": "src/strTypes.Mod"}, + {"command": "voc -s", "file": "src/strUtils.Mod"}, + {"command": "voc -m", "file": "test/testStrUtils.Mod"} + ] } diff --git a/test_server.json b/test_server.json index e0a2b5e..f948a52 100644 --- a/test_server.json +++ b/test_server.json @@ -17,8 +17,8 @@ "fifo": "0.1", }, "Build": - { - "voc -m": "src/testServer.Mod" - "voc -m": "src/testClient.Mod" - } + [ + {"command": "voc -m", "file": "src/testServer.Mod"}, + {"command": "voc -m", "file": "src/testClient.Mod"} + ] } diff --git a/time.json b/time.json index 2effc73..3546e0a 100644 --- a/time.json +++ b/time.json @@ -10,7 +10,7 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/time.Mod" - } + [ + {"command": "voc -s", "file": "src/time.Mod"} + ] } diff --git a/unixfs.json b/unixfs.json index b0dbfe0..9db7498 100644 --- a/unixfs.json +++ b/unixfs.json @@ -10,7 +10,7 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "src/unixFiles.Mod" - } + [ + {"command": "voc -s", "file": "src/unixFiles.Mod"} + ] } diff --git a/vpicl.json b/vpicl.json index 3f459fb..3f5c30e 100644 --- a/vpicl.json +++ b/vpicl.json @@ -10,10 +10,10 @@ "tag" : "0.1" }, "Build": - { - "voc -s": "POutput.Mod", - "voc -s": "PErrors.Mod", - "voc -s": "PICS.Mod", - "voc -m": "PICL.Mod" - } + [ + {"command": "voc -s", "file": "POutput.Mod"}, + {"command": "voc -s", "file": "PErrors.Mod"}, + {"command": "voc -s", "file": "PICS.Mod"}, + {"command": "voc -m", "file": "PICL.Mod"} + ] }