diff options
| author | Ralph Amissah <ralph@amissah.com> | 2018-05-17 11:45:56 -0400 | 
|---|---|---|
| committer | Ralph Amissah <ralph@amissah.com> | 2019-04-10 15:14:15 -0400 | 
| commit | 36cab9592fbd775b6e1b0aedec900f4b4d034ca7 (patch) | |
| tree | c0091a8b96538a4ef9d03d7ed38f2f8df0e3b1fa | |
| parent | org cosmetic, minor (diff) | |
imageformats dependency added
| -rw-r--r-- | dub.sdl | 31 | ||||
| -rw-r--r-- | dub.selections.json | 1 | ||||
| -rw-r--r-- | maker.org | 31 | 
3 files changed, 33 insertions, 30 deletions
| @@ -1,18 +1,19 @@ -name              "sdp" -description       "sisu document parser" -homepage          "http://sisudoc.org" -authors           "Ralph Amissah" -copyright         "Copyright © 2016 Ralph Amissah" -license           "AGPL-3+" -targetPath        "./bin" -#sourcePath        "./src/sdp" -stringImportPaths "./views" -buildRequirements "allowWarnings" -dependency        "toml"      version="~>0.4.0-rc.2" # https://code.dlang.org/packages/toml       https://github.com/toml-lang/toml/wiki -dependency        "toml:json" version="~>0.4.0-rc.2" -dependency        "d2sqlite3" version="~>0.16.1"     # https://code.dlang.org/packages/d2sqlite3  http://biozic.github.io/d2sqlite3/d2sqlite3.html -subconfiguration  "d2sqlite3" "all-included" -dependency        "archive"   version="~>0.6.0"      # http://code.dlang.org/packages/archive     https://github.com/rcythr/archive +name                "sdp" +description         "sisu document parser" +homepage            "http://sisudoc.org" +authors             "Ralph Amissah" +copyright           "Copyright © 2016 Ralph Amissah" +license             "AGPL-3+" +targetPath          "./bin" +#sourcePath          "./src/sdp" +stringImportPaths   "./views" +buildRequirements   "allowWarnings" +dependency          "toml"         version="~>0.4.0-rc.2" # https://code.dlang.org/packages/toml       https://github.com/toml-lang/toml/wiki +dependency          "toml:json"    version="~>0.4.0-rc.2" +dependency          "d2sqlite3"    version="~>0.16.1"     # https://code.dlang.org/packages/d2sqlite3  http://biozic.github.io/d2sqlite3/d2sqlite3.html +  subconfiguration  "d2sqlite3"   "all-included" +dependency          "archive"      version="~>0.6.0"      # http://code.dlang.org/packages/archive     https://github.com/rcythr/archive +dependency          "imageformats" version="~>7.0.0"  configuration "reggae" {    name                 "build"    targetType           "executable" diff --git a/dub.selections.json b/dub.selections.json index 61a1ad5..7aae51c 100644 --- a/dub.selections.json +++ b/dub.selections.json @@ -3,6 +3,7 @@  	"versions": {  		"archive": "0.6.0",  		"d2sqlite3": "0.16.1", +		"imageformats": "7.0.0",  		"libinputvisitor": "1.2.2",  		"sdlang-d": "0.10.2",  		"taggedalgebraic": "0.10.9", @@ -809,21 +809,22 @@ Every DUB package should contain a [[http://code.dlang.org/package-format?lang=j  ** header (including dependencies)                                  :header:  #+BEGIN_SRC sh  :tangle dub.sdl -name              "sdp" -description       "sisu document parser" -homepage          "http://sisudoc.org" -authors           "Ralph Amissah" -copyright         "Copyright © 2016 Ralph Amissah" -license           "AGPL-3+" -targetPath        "./bin" -#sourcePath        "./src/sdp" -stringImportPaths "./views" -buildRequirements "allowWarnings" -dependency        "toml"      version="~>0.4.0-rc.2" # https://code.dlang.org/packages/toml       https://github.com/toml-lang/toml/wiki -dependency        "toml:json" version="~>0.4.0-rc.2" -dependency        "d2sqlite3" version="~>0.16.1"     # https://code.dlang.org/packages/d2sqlite3  http://biozic.github.io/d2sqlite3/d2sqlite3.html -subconfiguration  "d2sqlite3" "all-included" -dependency        "archive"   version="~>0.6.0"      # http://code.dlang.org/packages/archive     https://github.com/rcythr/archive +name                "sdp" +description         "sisu document parser" +homepage            "http://sisudoc.org" +authors             "Ralph Amissah" +copyright           "Copyright © 2016 Ralph Amissah" +license             "AGPL-3+" +targetPath          "./bin" +#sourcePath          "./src/sdp" +stringImportPaths   "./views" +buildRequirements   "allowWarnings" +dependency          "toml"         version="~>0.4.0-rc.2" # https://code.dlang.org/packages/toml       https://github.com/toml-lang/toml/wiki +dependency          "toml:json"    version="~>0.4.0-rc.2" +dependency          "d2sqlite3"    version="~>0.16.1"     # https://code.dlang.org/packages/d2sqlite3  http://biozic.github.io/d2sqlite3/d2sqlite3.html +  subconfiguration  "d2sqlite3"   "all-included" +dependency          "archive"      version="~>0.6.0"      # http://code.dlang.org/packages/archive     https://github.com/rcythr/archive +dependency          "imageformats" version="~>7.0.0"  #+END_SRC  ** generic                                                         :generic: | 
