digitalmars.D.learn - dub getting stuck
- Joel (24/27) Mar 17 2019 macOS 10.13.6
- Eugene Wissner (6/33) Mar 17 2019 dub 1.3.0 is something old. Is it reproducable with a newer
macOS 10.13.6
dmd 2.085.0
dub 1.3.0
{
"name": "server",
"targetType": "executable",
"description": "A testing D application.",
"sourcePaths" : ["source"],
"dependencies":
{
"vibe-d" : "~>0.8.0"
}
}
void main()
{
import vibe.d;
listenHTTP(":8080", (req, res) {
res.writeBody("Hello, World: " ~ req.path);
});
runApplication();
}
dub -v
..
Sub package vibe-d:diet doesn't exist in vibe-d 0.8.1-alpha.1.
(gets as far as that line?!)
On another program, it gets stuck in a completely different
situation.
Mar 17 2019
On Sunday, 17 March 2019 at 07:20:47 UTC, Joel wrote:
macOS 10.13.6
dmd 2.085.0
dub 1.3.0
{
"name": "server",
"targetType": "executable",
"description": "A testing D application.",
"sourcePaths" : ["source"],
"dependencies":
{
"vibe-d" : "~>0.8.0"
}
}
void main()
{
import vibe.d;
listenHTTP(":8080", (req, res) {
res.writeBody("Hello, World: " ~ req.path);
});
runApplication();
}
dub -v
..
Sub package vibe-d:diet doesn't exist in vibe-d 0.8.1-alpha.1.
(gets as far as that line?!)
On another program, it gets stuck in a completely different
situation.
dub 1.3.0 is something old. Is it reproducable with a newer
version?
Otherwise can be related:
https://github.com/dlang/dub/issues/1345
https://github.com/dlang/dub/issues/1001
Mar 17 2019
On Sunday, 17 March 2019 at 09:04:37 UTC, Eugene Wissner wrote:On Sunday, 17 March 2019 at 07:20:47 UTC, Joel wrote:[snip]macOS 10.13.6 dmd 2.085.0 dub 1.3.0dub 1.3.0 is something old. Is it reproducable with a newer version?Can one safely update dub by it's self (Home Brew), when it comes with DMD (Home Brew also)?Otherwise can be related: https://github.com/dlang/dub/issues/1345 https://github.com/dlang/dub/issues/1001
Mar 18 2019
On Monday, 18 March 2019 at 20:25:14 UTC, Joel wrote:On Sunday, 17 March 2019 at 09:04:37 UTC, Eugene Wissner wrote:Well, I went ahead and updated dub. Looks like it's working now. Yay!On Sunday, 17 March 2019 at 07:20:47 UTC, Joel wrote:[snip]macOS 10.13.6 dmd 2.085.0 dub 1.3.0dub 1.3.0 is something old. Is it reproducable with a newer version?Can one safely update dub by it's self (Home Brew), when it comes with DMD (Home Brew also)?Otherwise can be related: https://github.com/dlang/dub/issues/1345 https://github.com/dlang/dub/issues/1001
Mar 19 2019








Joel <joelcnz gmail.com>