You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by wo...@apache.org on 2020/02/01 02:26:49 UTC

[couchdb] branch add-recon created (now 670d45f)

This is an automated email from the ASF dual-hosted git repository.

wohali pushed a change to branch add-recon
in repository https://gitbox.apache.org/repos/asf/couchdb.git.


      at 670d45f  Add recon for user convenience

This branch includes the following new commits:

     new 670d45f  Add recon for user convenience

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[couchdb] 01/01: Add recon for user convenience

Posted by wo...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

wohali pushed a commit to branch add-recon
in repository https://gitbox.apache.org/repos/asf/couchdb.git

commit 670d45fd45b687533abf49b16c3f19a3d445e53e
Author: Joan Touzet <jo...@atypical.net>
AuthorDate: Fri Jan 31 21:26:23 2020 -0500

    Add recon for user convenience
---
 .gitignore          | 1 +
 rebar.config.script | 3 ++-
 rel/reltool.config  | 9 +++++++--
 3 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/.gitignore b/.gitignore
index e2f3df0..78eccc1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -65,6 +65,7 @@ src/oauth/
 src/parse_trans/
 src/proper/
 src/rebar/
+src/recon/
 src/smoosh/
 src/snappy/
 src/ssl_verify_fun/
diff --git a/rebar.config.script b/rebar.config.script
index ace09ae..0708606 100644
--- a/rebar.config.script
+++ b/rebar.config.script
@@ -159,7 +159,8 @@ DepDescs = [
 {ibrowse,          "ibrowse",          {tag, "CouchDB-4.0.1-1"}},
 {jiffy,            "jiffy",            {tag, "CouchDB-1.0.1-1"}},
 {mochiweb,         "mochiweb",         {tag, "v2.20.0"}},
-{meck,             "meck",             {tag, "0.8.8"}}
+{meck,             "meck",             {tag, "0.8.8"}},
+{recon,            "recon",            {tag, "2.5.0"}}
 ],
 
 WithProper = lists:keyfind(with_proper, 1, CouchConfig) == {with_proper, true},
diff --git a/rel/reltool.config b/rel/reltool.config
index 1be2ccc..5285504 100644
--- a/rel/reltool.config
+++ b/rel/reltool.config
@@ -59,7 +59,9 @@
         rexi,
         setup,
         smoosh,
-        snappy
+        snappy,
+        %% extra
+        recon
     ]},
     {rel, "start_clean", "", [kernel, stdlib]},
     {boot_rel, "couchdb"},
@@ -116,7 +118,10 @@
     {app, rexi, [{incl_cond, include}]},
     {app, setup, [{incl_cond, include}]},
     {app, smoosh, [{incl_cond, include}]},
-    {app, snappy, [{incl_cond, include}]}
+    {app, snappy, [{incl_cond, include}]},
+
+    %% extra
+    {app, recon, [{incl_cond, include}]}
 ]}.
 
 {overlay_vars, "couchdb.config"}.