www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.announce - Minor updates: gen-package-version v1.0.4 and sdlang-d v0.9.6

reply Nick Sabalausky <SeeWebsiteToContactMe semitwist.com> writes:
Couple very minor updates:

gen-package-version v1.0.4:
-----------------------------
Updated docs to include dub.sdl samples, not just dub.json.

https://github.com/Abscissa/gen-package-version


sdlang-d v0.9.6:
-----------------


https://github.com/Abscissa/SDLang-D

I'm hoping to finally get around to taking care of some of the open 
enhancement requests for sdlang-d soon.
Aug 23 2016
next sibling parent reply Martin Nowak <code dawg.eu> writes:
On Tuesday, 23 August 2016 at 16:19:12 UTC, Nick Sabalausky wrote:
 Couple very minor updates:

 gen-package-version v1.0.4:
 -----------------------------
 Updated docs to include dub.sdl samples, not just dub.json.

 https://github.com/Abscissa/gen-package-version
Great to see that it now works with ~/.dub/packages. What's your stance on including that functionality into dub?
Aug 24 2016
parent reply Nick Sabalausky <SeeWebsiteToContactMe semitwist.com> writes:
On 08/24/2016 11:16 AM, Martin Nowak wrote:
 On Tuesday, 23 August 2016 at 16:19:12 UTC, Nick Sabalausky wrote:
 gen-package-version v1.0.4:
What's your stance on including that functionality into dub?
I have nothing against it, I think it would be a fine optional feature for dub. I won't be putting together a PR for it though, and I don't think there's all that much of a need for it since gen-package-version already exists and works AND doesn't require dub to be used as a project's build system. (As much as I love dub for package management, and having the *option* of using dub as a build system, dub's built-in build system just isn't always the best fit for all projects. Pet peeve: I still find it very problematic that there's really no good way to tell dub "don't attempt to build this project yourself as this project uses a different build system, so just run the following command INSTEAD of directly attempting to build". I've tried to fool it into not actually doing the build itself, but it's quite messy and problematic. It claims to be usable as a package-manager-only, but realistically, that's still only true for top-level projects that are never, ever used as a dependency, and not for library projects or tools that other projects may wish to rely on.)
Aug 25 2016
parent Seb <seb wilzba.ch> writes:
On Thursday, 25 August 2016 at 18:05:13 UTC, Nick Sabalausky 
wrote:
 On 08/24/2016 11:16 AM, Martin Nowak wrote:
 [...]
I have nothing against it, I think it would be a fine optional feature for dub. I won't be putting together a PR for it though, and I don't think there's all that much of a need for it since gen-package-version already exists and works AND doesn't require dub to be used as a project's build system. [...]
Please post your feedback to the DUB issue tracker. Ideally you directly group it off into multiple, actionable issues ;-) https://github.com/dlang/dub/issues
Aug 25 2016
prev sibling next sibling parent reply Chris Wright <dhasenan gmail.com> writes:
On Tue, 23 Aug 2016 12:19:12 -0400, Nick Sabalausky wrote:
 Couple very minor updates:
Please, for the love of potatoes, tell people what the project is for! gen-package-version creates a package version string for D projects. Add a hook to your dub.json and then you can show off what version your binary was built from and when, eg: module awesomeness.main; void main(string[] args) { import awesomeness.packageVersion, std.stdio; if (args[1] == "--version") { writefln("awesomeness version %s built %s", packageVersion, packageTimestamp); } }
Aug 25 2016
parent Nick Sabalausky <SeeWebsiteToContactMe semitwist.com> writes:
On 08/25/2016 06:37 PM, Chris Wright wrote:
 On Tue, 23 Aug 2016 12:19:12 -0400, Nick Sabalausky wrote:
 Couple very minor updates:
Please, for the love of potatoes, tell people what the project is for!
Oops, right, I did forget that this time, didn't I. Posted too hastily!
Aug 25 2016
prev sibling parent MrSmith <mrsmith33 yandex.ru> writes:
On Tuesday, 23 August 2016 at 16:19:12 UTC, Nick Sabalausky wrote:
 I'm hoping to finally get around to taking care of some of the 
 open enhancement requests for sdlang-d soon.
Can you, please, take care of this issue: https://github.com/Abscissa/libInputVisitor/issues/1 ?
Aug 26 2016