Jump to page: 1 2
Thread overview
DUB 0.9.24 release
Sep 20, 2015
Sönke Ludwig
Sep 20, 2015
ZombineDev
Sep 21, 2015
CraigDillabaugh
Sep 24, 2015
Suliman
Sep 24, 2015
Suliman
Sep 24, 2015
Sönke Ludwig
Sep 24, 2015
Suliman
Sep 24, 2015
Suliman
Sep 24, 2015
Nick Sabalausky
Sep 25, 2015
Jacob Carlborg
Sep 24, 2015
John Colvin
Sep 24, 2015
John Colvin
Sep 24, 2015
Sönke Ludwig
Sep 24, 2015
Chris
Sep 24, 2015
Nick Sabalausky
Sep 24, 2015
Chris
Sep 25, 2015
Bruno Medeiros
September 20, 2015
Getting close to the 1.0.0 milestone, this release implements all of the major missing features except for a reviewed/cleaned up D API. The most important changes in this release are:

 - Support for SDLang [1] based package recipes. While JSON is and will
   stay available, this format is a lot more enjoyable, with support
   for comments and a much cleaner syntax. See the package format
   specification [2] for an overview.

 - Greatly enhanced "dub describe" support - includes a "targets" field
   usable for external build tools, adds a --data=... switch to output
   in shell-friendly format instead of JSON, supports a bunch of new
   environment variables for pre/post build/generate commands and more.

 - An experimental ARM build is now available on the download page.

 - Builds with DMD frontends 2.064.2 through 2.068.2.

Also new is an online documentation page of the command line interface [3], which is generated from the same information as the command line --help pages.


Download:
http://code.dlang.org/download

Change log:
https://github.com/D-Programming-Language/dub/blob/master/CHANGELOG.md

[1]: https://github.com/Abscissa/SDLang-D/
[2]: http://code.dlang.org/package-format?lang=sdl
[3]: http://code.dlang.org/docs/commandline
September 20, 2015
On Sunday, 20 September 2015 at 19:36:13 UTC, Sönke Ludwig wrote:
> [...]

Congrats! I really like the new SDLang format.
BTW, I was just looking to update dub on my machine a moment before I saw this :P
September 21, 2015
On Sunday, 20 September 2015 at 19:36:13 UTC, Sönke Ludwig wrote:
> Getting close to the 1.0.0 milestone, this release implements all of the major missing features except for a reviewed/cleaned up D API. The most important changes in this release are:
>
clip
>
>
> Download:
> http://code.dlang.org/download
>
> Change log:
> https://github.com/D-Programming-Language/dub/blob/master/CHANGELOG.md
>
> [1]: https://github.com/Abscissa/SDLang-D/
> [2]: http://code.dlang.org/package-format?lang=sdl
> [3]: http://code.dlang.org/docs/commandline

Thanks for all your hard work.  The SDLang looks good, and the improved
documentation is attractive.
September 24, 2015
How I can add multiple dependencies? In json I was can wrote:
dependencies": {
		"dini": ">=1.0.0",
		"colorize": ">=1.0.5",
		"ddbc": ">=0.2.11",
	}

How it will be in SDL?
September 24, 2015
Does DUB still can't generate sdl package format after dub init?
It's a little bit not comfortable to have docs that describe SDL, when dub generate json.
September 24, 2015
On Thursday, 24 September 2015 at 08:23:54 UTC, Suliman wrote:
> How I can add multiple dependencies? In json I was can wrote:
> dependencies": {
> 		"dini": ">=1.0.0",
> 		"colorize": ">=1.0.5",
> 		"ddbc": ">=0.2.11",
> 	}
>
> How it will be in SDL?

http://code.dlang.org/package-format?lang=sdl
September 24, 2015
On Thursday, 24 September 2015 at 09:21:06 UTC, John Colvin wrote:
> On Thursday, 24 September 2015 at 08:23:54 UTC, Suliman wrote:
>> How I can add multiple dependencies? In json I was can wrote:
>> dependencies": {
>> 		"dini": ">=1.0.0",
>> 		"colorize": ">=1.0.5",
>> 		"ddbc": ">=0.2.11",
>> 	}
>>
>> How it will be in SDL?
>
> http://code.dlang.org/package-format?lang=sdl

woops, sorry, I see it's not actually mentioned there
September 24, 2015
Am 24.09.2015 um 10:40 schrieb Suliman:
> Does DUB still can't generate sdl package format after dub init?
> It's a little bit not comfortable to have docs that describe SDL, when
> dub generate json.

No, it generates a dub.sdl file.
September 24, 2015
Am 24.09.2015 um 11:22 schrieb John Colvin:
> On Thursday, 24 September 2015 at 09:21:06 UTC, John Colvin wrote:
>> On Thursday, 24 September 2015 at 08:23:54 UTC, Suliman wrote:
>>> How I can add multiple dependencies? In json I was can wrote:
>>> dependencies": {
>>>         "dini": ">=1.0.0",
>>>         "colorize": ">=1.0.5",
>>>         "ddbc": ">=0.2.11",
>>>     }
>>>
>>> How it will be in SDL?
>>
>> http://code.dlang.org/package-format?lang=sdl
>
> woops, sorry, I see it's not actually mentioned there

It's only mentioned implicitly by stating that all directives can be used multiple times to override/append. I'll mention this more explicitly.

So the above example is:

dependency "dini" version=">=1.0.0"
dependency "colorize" version=">=1.0.5"
dependency "ddbc" version=">=0.2.11"

September 24, 2015
On Thursday, 24 September 2015 at 09:48:10 UTC, Sönke Ludwig wrote:
> Am 24.09.2015 um 10:40 schrieb Suliman:
>> Does DUB still can't generate sdl package format after dub init?
>> It's a little bit not comfortable to have docs that describe SDL, when
>> dub generate json.
>
> No, it generates a dub.sdl file.

Oh, I see I had conflict with double mention DUB is PATH. Yes now I see that it's work.




« First   ‹ Prev
1 2