From 28e958773075b9ddf669c062b348c122e592bfef Mon Sep 17 00:00:00 2001 From: "Adam D. Ruppe" Date: Sat, 22 Jul 2017 22:17:27 -0400 Subject: [PATCH] moar subpackages --- dub.json | 75 ++++++++++++++++++++++++++++++++++++++++++-------------- 1 file changed, 57 insertions(+), 18 deletions(-) diff --git a/dub.json b/dub.json index 67bde37..20161bc 100644 --- a/dub.json +++ b/dub.json @@ -2,16 +2,7 @@ "name": "arsd-official", "targetType": "none", "sourcePaths": ["."], - "dependencies": { - "arsd-official:simpledisplay":"~master", - "arsd-official:minigui":"~master", - "arsd-official:dom":"~master", - "arsd-official:cgi":"~master", - "arsd-official:http":"~master", - "arsd-official:script":"~master", - "arsd-official:terminal":"~master" - }, - "description": "A container of various subpackages that do lots of different things. Do not use this as a package itself, instead use the subpackages for what you need (or better yet, ditch dub and do things the simple, reliable way of dmd *.d). So make your dependency like \"arsd-official:simpledisplay\" rather than \"arsd-official\".", + "description": "A container of various subpackages that do lots of different things. You should use one of the subpackages instead of the main package in most cases, but you can try the complete package if you get duplicated dependency issues.", "license":"BSL-1.0", "subPackages": [ { @@ -19,15 +10,16 @@ "description": "Window creation and basic drawing", "targetType": "sourceLibrary", "libs-posix": ["X11", "Xext", "GL", "GLU"], - "libs-windows": ["gdi32"], + "libs-windows": ["gdi32", "opengl32", "glu32"], "configurations": [ { "name": "normal" }, { - "name": "with-opengl", - "versions": ["with_opengl"], - "libs-windows": ["opengl32", "glu32"] + "name": "without-opengl", + "versions": ["without_opengl"], + "libs-windows": ["gdi32"], + "libs-posix": ["X11", "Xext"] } ], "sourceFiles": ["simpledisplay.d", "color.d"] @@ -37,19 +29,33 @@ "description": "Small GUI widget library for Windows and Linux", "targetType": "sourceLibrary", "libs-posix": ["X11", "Xext", "GL", "GLU"], - "libs-windows": ["gdi32"], + "libs-windows": ["gdi32", "opengl32", "glu32"], "configurations": [ { "name": "normal" }, { - "name": "with-opengl", - "versions": ["with_opengl"], - "libs-windows": ["opengl32", "glu32"] + "name": "without-opengl", + "versions": ["without_opengl"], + "libs-windows": ["gdi32"], + "libs-posix": ["X11", "Xext"] } ], "sourceFiles": ["simpledisplay.d", "color.d", "minigui.d"] }, + { + "name": "email", + "description": "Email helper library, both sending MIME messages and parsing incoming mbox/maildir messages", + "targetType": "sourceLibrary", + "sourceFiles": ["email.d", "htmltotext.d", "dom.d", "characterencodings.d"] + + }, + { + "name": "image_files", + "description": "Image file format support - PNG read/write, JPEG, TGA, BMP read.", + "targetType": "sourceLibrary", + "sourceFiles": ["color.d", "image.d", "png.d", "bmp.d", "jpeg.d", "targa.d"] + }, { "name": "dom", "description": "HTML tag soup DOM library", @@ -62,6 +68,33 @@ "targetType": "sourceLibrary", "sourceFiles": ["cgi.d"] }, + { + "name": "mysql", + "description": "MySQL client library. Wraps the official C library with my database.d interface.", + "targetType": "sourceLibrary", + "sourceFiles": ["database.d","mysql.d"] + }, + { + "name": "postgres", + "description": "Postgresql client library. Wraps the libpq C library with my database.d interface.", + "targetType": "sourceLibrary", + "sourceFiles": ["database.d","postgres.d"] + }, + + { + "name": "sqlite", + "description": "sqlite wrapper. Wraps the official C library with my database.d interface.", + "targetType": "sourceLibrary", + "sourceFiles": ["database.d","sqlite.d"] + }, + + { + "name": "mssql", + "description": "Microsoft SQL Server client library. Wraps the official ODBC library with my database.d interface.", + "targetType": "sourceLibrary", + "sourceFiles": ["database.d","mssql.d"] + }, + { "name": "http", "description": "HTTP client library", @@ -70,6 +103,12 @@ "targetType": "sourceLibrary", "sourceFiles": ["http2.d"] }, + { + "name": "jsvar", + "description": "Javascript-like object in D, capable of json read/write/manipulation.", + "targetType": "sourceLibrary", + "sourceFiles": ["jsvar.d"] + }, { "name": "script", "description": "Small Javascript-like script interpreter with easy D API",