Re: LDC 0.12.1 has been released

2013-12-03 Thread Rory McGuire
On Mon, Dec 2, 2013 at 9:02 AM, Kai Nacke wrote: > Hi everyone, > > LDC 0.12.1, the LLVM-based D compiler, is available for download! > This is a bug-fix only release. It is built on the 2.063.2 frontend and > standard library and supports LLVM 3.1-3.3 (OS X: 3.2 only). > > As usual, you can find

Re: DUB 0.9.21 beta 1

2013-12-03 Thread Atila Neves
It also supports setting a custom file containing main(), so that for example custom unit test runners can be specified and similar Awesome! things. In this case, the generated file looks like this: --- module test_main; import ; import ; --- For packages with only executable configurations

Re: vibe.d 0.7.18 has been released

2013-12-03 Thread Atila Neves
On Friday, 29 November 2013 at 17:31:41 UTC, Robert M. Münch wrote: On 2013-11-26 19:31:44 +, Sönke Ludwig said: Homepage: http://vibed.org/ DUB package: http://code.dlang.org/packages/vibe-d GitHub: https://github.com/rejectedsoftware/vibe.d Out of curiosity, it looks like vibe.d could b

Re: LDC 0.12.1 has been released

2013-12-03 Thread Kai Nacke
Hi Rory! On Tuesday, 3 December 2013 at 09:00:25 UTC, Rory McGuire wrote: Nice. Any chance that the packages are able to have a similar layout to dmd? The binary packages follow the simple pattern that you can extract them into /opt, add the path to the bin folder and start using LDC. The

Re: DUB 0.9.21 beta 1

2013-12-03 Thread Sönke Ludwig
Am 03.12.2013 10:34, schrieb Atila Neves: >> It also supports setting a custom file containing main(), so that for >> example custom unit test runners can be specified and similar > > > Awesome! > >> things. In >> this case, the generated file looks like this: >> --- >> module test_main; >> impo

Re: DUB 0.9.20

2013-12-03 Thread Bruno Medeiros
On 29/11/2013 17:01, Sönke Ludwig wrote: A fresh DUB release is out. Apart from the usual bug fixes, there are a few considerable changes: Quick question: is there a way to install/fetch the dependencies of a package, without having to build? That is, without using "dub build" ? -- Bruno M

Re: DUB 0.9.20

2013-12-03 Thread Mike Parker
On 12/3/2013 9:47 PM, Bruno Medeiros wrote: On 29/11/2013 17:01, Sönke Ludwig wrote: A fresh DUB release is out. Apart from the usual bug fixes, there are a few considerable changes: Quick question: is there a way to install/fetch the dependencies of a package, without having to build? That i

Re: DUB 0.9.20

2013-12-03 Thread Bruno Medeiros
On 03/12/2013 13:00, Mike Parker wrote: On 12/3/2013 9:47 PM, Bruno Medeiros wrote: On 29/11/2013 17:01, Sönke Ludwig wrote: A fresh DUB release is out. Apart from the usual bug fixes, there are a few considerable changes: Quick question: is there a way to install/fetch the dependencies of a

Re: DUB 0.9.20

2013-12-03 Thread ponce
On Tuesday, 3 December 2013 at 13:18:13 UTC, Bruno Medeiros wrote: That only works if packageName is a package in the DUB registry. It won't work for a locally created package. You can make dub aware of such a package with: $ dub all-local . ~master In which case, this particular package do

Re: DUB 0.9.20

2013-12-03 Thread ponce
You can make dub aware of such a package with: $ dub all-local . ~master In which case, this particular package doesn't need to be dub-installed. I meant "add-local" not "all-local".

Re: DUB 0.9.20

2013-12-03 Thread Dicebot
On Tuesday, 3 December 2013 at 13:00:06 UTC, Mike Parker wrote: On 12/3/2013 9:47 PM, Bruno Medeiros wrote: On 29/11/2013 17:01, Sönke Ludwig wrote: A fresh DUB release is out. Apart from the usual bug fixes, there are a few considerable changes: Quick question: is there a way to install/fe

Re: vibe.d 0.7.18 has been released

2013-12-03 Thread Robert M. Münch
On 2013-12-03 09:37:07 +, Atila Neves said: I wrote an MQTT broker on top of vibe.d's TCP functionality: https://github.com/atilaneves/mqtt Hi, thanks & cool stuff. Since I'm still a big fan of the BEEP protocol (framework for application protocols), I'm wondering if we could use vibe.d

Re: DUB 0.9.20

2013-12-03 Thread Sönke Ludwig
Am 03.12.2013 13:47, schrieb Bruno Medeiros: > On 29/11/2013 17:01, Sönke Ludwig wrote: >> A fresh DUB release is out. Apart from the usual bug fixes, there are a >> few considerable changes: >> > > Quick question: is there a way to install/fetch the dependencies of a > package, without having to

Re: LDC 0.12.1 has been released

2013-12-03 Thread David Nadlinger
On Tuesday, 3 December 2013 at 09:00:25 UTC, Rory McGuire wrote: Nice. Any chance that the packages are able to have a similar layout to dmd? It is easy to just rearrange the files to match DMD's directory structure, you just have to update ldc2.conf accordingly. However, as we don't ship on

Re: DUB 0.9.21 beta 1

2013-12-03 Thread Jacob Carlborg
On 2013-12-02 10:10, Sönke Ludwig wrote: Using "dub test --main-file=...". See also "dub test --help". * Can this be specified in the package.json file so invoking "dub test" will always use a custom main file? * Don't know how it works now but it would be nice if dub could pass all remain