You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@couchdb.apache.org by wo...@apache.org on 2017/10/12 05:15:52 UTC

couchdb-ci git commit: Add new Sphinx documentation theme

Repository: couchdb-ci
Updated Branches:
  refs/heads/master a9b33efe0 -> eceb98d86


Add new Sphinx documentation theme


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

Branch: refs/heads/master
Commit: eceb98d8624fbe381e41446a8ea4202aa69fe13a
Parents: a9b33ef
Author: Joan Touzet <wo...@apache.org>
Authored: Wed Oct 11 22:15:40 2017 -0700
Committer: Joan Touzet <wo...@apache.org>
Committed: Wed Oct 11 22:15:40 2017 -0700

----------------------------------------------------------------------
 ansible/roles/dependencies-centos/tasks/main.yml | 4 ++--
 ansible/roles/dependencies-debian/tasks/main.yml | 4 ++++
 2 files changed, 6 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/couchdb-ci/blob/eceb98d8/ansible/roles/dependencies-centos/tasks/main.yml
----------------------------------------------------------------------
diff --git a/ansible/roles/dependencies-centos/tasks/main.yml b/ansible/roles/dependencies-centos/tasks/main.yml
index 3932be7..6dd8e81 100644
--- a/ansible/roles/dependencies-centos/tasks/main.yml
+++ b/ansible/roles/dependencies-centos/tasks/main.yml
@@ -98,8 +98,8 @@
   when: ansible_distribution == 'CentOS' and ansible_distribution_major_version == '6'
   command: "/usr/bin/python3.4 /tmp/get-pip.py"
 
-- name: install up to date version of sphinx via pip
-  shell: pip install docutils==0.13.1 sphinx==1.5.3
+- name: install up to date version of various packages via pip
+  shell: pip install docutils==0.13.1 sphinx==1.5.3 sphinx_rtd_theme nose requests hypothesis
 
 - name: dependencies for packages
   yum: name={{item}} state=present

http://git-wip-us.apache.org/repos/asf/couchdb-ci/blob/eceb98d8/ansible/roles/dependencies-debian/tasks/main.yml
----------------------------------------------------------------------
diff --git a/ansible/roles/dependencies-debian/tasks/main.yml b/ansible/roles/dependencies-debian/tasks/main.yml
index 178670d..a945407 100644
--- a/ansible/roles/dependencies-debian/tasks/main.yml
+++ b/ansible/roles/dependencies-debian/tasks/main.yml
@@ -61,6 +61,10 @@
   shell: pip install docutils==0.13.1 sphinx==1.5.3
   when: ansible_distribution == "Ubuntu" and ansible_distribution_version == "12.04"
 
+# Install Sphinx RTD theme and Mango test dependencies
+- name: install Sphinx documentation theme and Mango test dependencies
+  shell: pip install sphinx_rtd_theme  nose requests hypothesis
+
 # dependencies for Debian/Ubuntu package building
 - name: install packages required to build Debian pkgs
   apt: name={{item}} state=present install_recommends=no