You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by be...@apache.org on 2014/02/13 19:12:53 UTC

[55/57] [abbrv] couchdb commit: updated refs/heads/1994-merge-rcouch-multi-repo to b19d055

small update


Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo
Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/cb4817b4
Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/cb4817b4
Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/cb4817b4

Branch: refs/heads/1994-merge-rcouch-multi-repo
Commit: cb4817b40498bff9bf95fdeb1a8e631ecf587ec6
Parents: c085543
Author: Benoit Chesneau <bc...@gmail.com>
Authored: Thu Feb 13 18:08:08 2014 +0100
Committer: Benoit Chesneau <bc...@gmail.com>
Committed: Thu Feb 13 18:08:08 2014 +0100

----------------------------------------------------------------------
 rebar.config | 73 ++++++++++++++++++++++++++++++++++++++++---------------
 1 file changed, 54 insertions(+), 19 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb/blob/cb4817b4/rebar.config
----------------------------------------------------------------------
diff --git a/rebar.config b/rebar.config
index 81f7e48..232b6ff 100644
--- a/rebar.config
+++ b/rebar.config
@@ -14,42 +14,77 @@
                          {tag, "1.3.8"}}},
 
     %% erlang oauth module
-    {oauth, ".*", {git, "git://github.com/refuge/erlang-oauth.git", {branch,
-        "master"}}},
+    {oauth, ".*",
+     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-oauth.git",
+      {branch, "import"}}},
 
     %% ibrowse module , http client
-    {ibrowse, ".*", {git, "git://github.com/refuge/ibrowse.git",
-                     {branch, "master"}}},
+    {ibrowse, ".*",
+     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-ibrowse.git",
+      {branch, "import"}}},
 
     %% mochiweb module, http framework
-    {mochiweb, ".*", {git,"git://github.com/refuge/mochiweb.git",
-                        {branch, "master"}}},
+    {mochiweb, ".*",
+     {git,"http://git-wip-us.apache.org/repos/asf/couchdb-mochiweb.git",
+      {branch, "import-upstream"}}},
 
     %% snappy module, used for compression
-    {snappy, ".*", {git, "git://github.com/refuge/snappy-erlang.git",
-                   {branch, "refuge"}}},
+    {snappy, ".*",
+     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-snappy.git",
+      {branch, "import"}}},
 
     %% json module, encode/decode module
-    {jiffy, ".*", {git, "git://github.com/refuge/jiffy.git", "master"}},
+    {jiffy, ".*",
+        {git, "http://git-wip-us.apache.org/repos/asf/couchdb-jiffy.git",
+         {branch, "import"}},
 
     %% lager logging module
-    {lager, ".*", {git, "git://github.com/refuge/lager.git", "master"}}
+    {lager, ".*",
+     {git, "http://git-wip-us.apache.org/repos/asf/couchdb-lager.git",
+      {branch, "master"}}},
+
+
+     %% apps
+     {couch_collate, ".*",
+      {git,"http://git-wip-us.apache.org/repos/asf/couchdb-couch-collate.git",
+       {branch, "1994-merge-rcouch"}}},
+
+     {couch, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch.git",
+       {branch, "1994-merge-rcouch"}}},
+
+    {couch_httpd, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-httpd.git",
+       {branch, "1994-merge-rcouch"}}},
+
+    {couch_index, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-index.git",
+       {branch, "1994-merge-rcouch"}}},
+
+    {couch_mrview, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-mrview.git",
+       {branch, "1994-merge-rcouch"}}},
+
+    {couch_replicator, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-replicator.git",
+       {branch, "1994-merge-rcouch"}}},
+
+     {couch_plugins, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-plugins.git",
+       {branch, "import"}}},
+
+     {couch_dbupdates, ".*",
+      {git, "http://git-wip-us.apache.org/repos/asf/couchdb-couch-dbupdates.git",
+       {branch, "import"}}}
+
 ]}.
 
 
 {deps_dir, ["deps"]}.
 
-{libs_dir, ["apps", "deps/"]}.
+{libs_dir, ["deps/"]}.
 
 {sub_dirs, [
-    "apps/couch_collate",
-    "apps/couch",
-    "apps/couch_httpd",
-    "apps/couch_index",
-    "apps/couch_mrview",
-    "apps/couch_replicator",
-    "apps/couch_plugins",
-    "apps/couch_dbupdates",
     "support/couch_rel",
     "rel"
 ]}.