RejectedSoftware Forums

Sign up

dub with vibe.d dependency on macos error

Hi,

I try to create a new project with dub on mac os, but when I want to build the project, I get this error:

Failed to download http://code.dlang.org/packages/libevent/2.0.1%252B2.0.16.zip


this is my dependency section:

"dependencies": {
		"vibe-d": ">=0.7.21-rc.2"
	},


any help?

Thanks,
Bogdan

Re: dub with vibe.d dependency on macos error

Am 10.10.2014 15:42, schrieb szabo bogdan:

Hi,

I try to create a new project with dub on mac os, but when I want to build the project, I get this error:

Failed to download http://code.dlang.org/packages/libevent/2.0.1%252B2.0.16.zip


this is my dependency section:

"dependencies": {
		"vibe-d": ">=0.7.21-rc.2"
	},


any help?

Thanks,
Bogdan

There has been an issue in DUB with version names that contain "+".
Upgrading to 0.9.22 should fix the error.

Re: dub with vibe.d dependency on macos error

On Fri, 10 Oct 2014 18:02:31 +0200, Sönke Ludwig wrote:

Am 10.10.2014 15:42, schrieb szabo bogdan:

Hi,

I try to create a new project with dub on mac os, but when I want to build the project, I get this error:

Failed to download http://code.dlang.org/packages/libevent/2.0.1%252B2.0.16.zip


this is my dependency section:

"dependencies": {
		"vibe-d": ">=0.7.21-rc.2"
	},


any help?

Thanks,
Bogdan

There has been an issue in DUB with version names that contain "+".
Upgrading to 0.9.22 should fix the error.

Thanks!