diff options
author | Robert Newson <rnewson@apache.org> | 2020-04-01 15:56:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-01 15:56:35 +0100 |
commit | 4707af418eefe2988a061c53e122c774c52c339a (patch) | |
tree | f9db8bb91dea93b78fdc7db5f218db21067639aa | |
parent | 9b325b75814418b85ffb3642a5115635416f56a8 (diff) | |
parent | 24524a442ac8c7c56f8af595526c16023bdfb032 (diff) | |
download | couchdb-4707af418eefe2988a061c53e122c774c52c339a.tar.gz |
Merge pull request #2743 from apache/switch-erlfdb-couch
Switch erlfdb to the couchdb repo at tag v1.0.0
-rw-r--r-- | rebar.config.script | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/rebar.config.script b/rebar.config.script index d315c75ad..269511d8e 100644 --- a/rebar.config.script +++ b/rebar.config.script @@ -150,6 +150,7 @@ DepDescs = [ %% Independent Apps {config, "config", {tag, "2.1.7"}}, {b64url, "b64url", {tag, "1.0.2"}}, +{erlfdb, "erlfdb", {tag, "v1.0.0"}}, {ets_lru, "ets-lru", {tag, "1.1.0"}}, {khash, "khash", {tag, "1.1.0"}}, {snappy, "snappy", {tag, "CouchDB-1.0.4"}}, @@ -170,10 +171,7 @@ DepDescs = [ {meck, "meck", {tag, "0.8.8"}}, {recon, "recon", {tag, "2.5.0"}}, {passage, "passage", {tag, "0.2.6"}}, -{thrift_protocol, "thrift-protocol", {tag, "0.1.5"}}, - -%% TMP - Until this is moved to a proper Apache repo -{erlfdb, "erlfdb", {branch, "master"}} +{thrift_protocol, "thrift-protocol", {tag, "0.1.5"}} ], WithProper = lists:keyfind(with_proper, 1, CouchConfig) == {with_proper, true}, @@ -188,8 +186,6 @@ end, BaseUrl = "https://github.com/apache/", MakeDep = fun - ({erlfdb, _, Version}) -> - {erlfdb, ".*", {git, "https://github.com/cloudant-labs/couchdb-erlfdb", {branch, "master"}}}; ({AppName, {url, Url}, Version}) -> {AppName, ".*", {git, Url, Version}}; ({AppName, {url, Url}, Version, Options}) -> |