Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/config/deps/sugar-build.json
diff options
context:
space:
mode:
authorDaniel Narvaez <dwnarvaez@gmail.com>2012-11-26 16:46:21 (GMT)
committer Daniel Narvaez <dwnarvaez@gmail.com>2012-11-26 16:46:21 (GMT)
commitef388964f917c25ea866e537f44f2d88f9e6b85c (patch)
tree27d1f59df428e72973c3f45a0f420c49b27588cb /config/deps/sugar-build.json
parentbf0fa30f3ae0b22eba401c0e5f8e675704d55502 (diff)
Normalize deps json
Sort the list, always specify the name, json.dump them.
Diffstat (limited to 'config/deps/sugar-build.json')
-rw-r--r--config/deps/sugar-build.json74
1 files changed, 52 insertions, 22 deletions
diff --git a/config/deps/sugar-build.json b/config/deps/sugar-build.json
index be66df2..0bec31b 100644
--- a/config/deps/sugar-build.json
+++ b/config/deps/sugar-build.json
@@ -1,22 +1,52 @@
-[{ "check": "atk-bridge",
- "checker": "gtkmodule" },
- { "check_name": "gail gtkmodule",
- "check": "gail",
- "checker": "gtkmodule" },
- { "check": "xinit",
- "checker": "binary" },
- { "check": "xz",
- "checker": "binary" },
- { "check": "scp",
- "checker": "binary" },
- { "check": "Xephyr",
- "checker": "binary" },
- { "check": "dbus-launch",
- "checker": "binary" },
- { "check_name": "atspi typelib",
- "check": "from gi.repository import Atspi",
- "checker": "python" },
- { "check": "xrandr",
- "checker": "pkgconfig" },
- { "check": "x11",
- "checker": "pkgconfig" }]
+[
+ {
+ "check": "Xephyr",
+ "checker": "binary",
+ "name": "Xephyr"
+ },
+ {
+ "check": "atk-bridge",
+ "checker": "gtkmodule",
+ "name": "atk-bridge"
+ },
+ {
+ "check": "from gi.repository import Atspi",
+ "checker": "python",
+ "name": "atspi typelib"
+ },
+ {
+ "check": "dbus-launch",
+ "checker": "binary",
+ "name": "dbus-launch"
+ },
+ {
+ "check": "gail",
+ "checker": "gtkmodule",
+ "name": "gail gtkmodule"
+ },
+ {
+ "check": "scp",
+ "checker": "binary",
+ "name": "scp"
+ },
+ {
+ "check": "x11",
+ "checker": "pkgconfig",
+ "name": "x11"
+ },
+ {
+ "check": "xinit",
+ "checker": "binary",
+ "name": "xinit"
+ },
+ {
+ "check": "xrandr",
+ "checker": "pkgconfig",
+ "name": "xrandr"
+ },
+ {
+ "check": "xz",
+ "checker": "binary",
+ "name": "xz"
+ }
+] \ No newline at end of file