diff options
author | Jimmy Olgeni <olgeni@FreeBSD.org> | 2015-11-03 11:20:36 +0000 |
---|---|---|
committer | Jimmy Olgeni <olgeni@FreeBSD.org> | 2015-11-03 11:20:36 +0000 |
commit | 6578bcb8e7ea66e6e5dedeb4a095d884f288eeea (patch) | |
tree | 118ab3c1f6973660d59e5d8f0d3ebd8bff77dab5 /www | |
parent | b82dd44af49a83e6df52e130c4aae896347947a7 (diff) | |
download | freebsd-ports-6578bcb8e7ea66e6e5dedeb4a095d884f288eeea.zip |
Upgrade www/erlang-hackney to version 1.4.1.
Diffstat (limited to 'www')
-rw-r--r-- | www/erlang-hackney/Makefile | 2 | ||||
-rw-r--r-- | www/erlang-hackney/distinfo | 4 | ||||
-rw-r--r-- | www/erlang-hackney/files/patch-rebar.config.script | 22 |
3 files changed, 17 insertions, 11 deletions
diff --git a/www/erlang-hackney/Makefile b/www/erlang-hackney/Makefile index 42abf6c8d7a0..08c0da891edd 100644 --- a/www/erlang-hackney/Makefile +++ b/www/erlang-hackney/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ PORTNAME= hackney -PORTVERSION= 1.4.0 +PORTVERSION= 1.4.1 CATEGORIES= www PKGNAMEPREFIX= erlang- diff --git a/www/erlang-hackney/distinfo b/www/erlang-hackney/distinfo index 946180f49230..5c7dc6507fe3 100644 --- a/www/erlang-hackney/distinfo +++ b/www/erlang-hackney/distinfo @@ -1,2 +1,2 @@ -SHA256 (benoitc-hackney-1.4.0_GH0.tar.gz) = 2ae4c150bf9ac5c2e35e821eb262794d2bc6323b858955fee67b046a44e96977 -SIZE (benoitc-hackney-1.4.0_GH0.tar.gz) = 630423 +SHA256 (benoitc-hackney-1.4.1_GH0.tar.gz) = fdbbad483cb4754b0e7e5739b20d512f2bff019d009cb168f0110f44950599f1 +SIZE (benoitc-hackney-1.4.1_GH0.tar.gz) = 834457 diff --git a/www/erlang-hackney/files/patch-rebar.config.script b/www/erlang-hackney/files/patch-rebar.config.script index 387b488970e3..556b66eb1c78 100644 --- a/www/erlang-hackney/files/patch-rebar.config.script +++ b/www/erlang-hackney/files/patch-rebar.config.script @@ -1,11 +1,17 @@ ---- rebar.config.script.orig 2015-10-27 13:33:15 UTC +--- rebar.config.script.orig 2015-11-03 08:42:20 UTC +++ rebar.config.script -@@ -1,7 +1,4 @@ --{ok, VSN} = application:get_key(rebar, vsn), --[VSN1 | _] = string:tokens(VSN, "-"), --[Maj, Min, Patch] = string:tokens(VSN1, "."), --IsRebar3 = (list_to_integer(Maj) >= 3), -+IsRebar3 = true. - +@@ -1,13 +1,4 @@ +-IsRebar3 = case application:get_env(rebar, vsn) of +- {ok, VSN} -> +- [VSN1 | _] = string:tokens(VSN, "-"), +- [Maj, Min, Patch] = string:tokens(VSN1, "."), +- (list_to_integer(Maj) >= 3); +- undefined -> +- %% is mix is used +- lists:keymember(mix, 1, application:loaded_applications()) +- end, +- ++IsRebar3 = true, Rebar2Deps = [ + {idna, ".*", |