From b7590f1bb3d85c47fbbf00b31c3f6cb8c70ab82b Mon Sep 17 00:00:00 2001 From: Thomas Applencourt Date: Mon, 24 Oct 2016 16:54:54 -0500 Subject: [PATCH 1/4] fix #169 --- doc/source/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/source/conf.py b/doc/source/conf.py index c77267ea..e461323a 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -25,7 +25,7 @@ import sys, os # Add any Sphinx extension module names here, as strings. They can be extensions # coming with Sphinx (named 'sphinx.ext.*') or your custom ones. -extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.pngmath', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode'] +extensions = ['sphinx.ext.autodoc', 'sphinx.ext.doctest', 'sphinx.ext.todo', 'sphinx.ext.mathjax', 'sphinx.ext.viewcode'] # Add any paths that contain templates here, relative to this directory. templates_path = ['_templates'] From f340c3eb993d8b7f7106dbb12255be2a112e8d31 Mon Sep 17 00:00:00 2001 From: Thomas Applencourt Date: Tue, 25 Oct 2016 15:42:43 -0500 Subject: [PATCH 2/4] Try to fix the opam dependency for conf-gmp.1 --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 18a13949..c9990d79 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ sudo: false addons: apt: packages: + - libgmp3-dev - gfortran - gcc - liblapack-dev From e96446e305d20468df6c9968c3e16859f34f6fbc Mon Sep 17 00:00:00 2001 From: Thomas Applencourt Date: Tue, 25 Oct 2016 16:05:14 -0500 Subject: [PATCH 3/4] Add zlib in travis (Maybe solve cryptokit error) --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index c9990d79..99299662 100644 --- a/.travis.yml +++ b/.travis.yml @@ -9,6 +9,7 @@ sudo: false addons: apt: packages: + - zlib1g-dev - libgmp3-dev - gfortran - gcc From c78101882fe0d12a532e6713e21336e8b6124d08 Mon Sep 17 00:00:00 2001 From: Anthony Scemama Date: Tue, 25 Oct 2016 23:42:32 +0200 Subject: [PATCH 4/4] Add zarith in ocaml install (missing dep. of cryptokit) --- install/scripts/install_ocaml.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/scripts/install_ocaml.sh b/install/scripts/install_ocaml.sh index a7462b2e..913ae75d 100755 --- a/install/scripts/install_ocaml.sh +++ b/install/scripts/install_ocaml.sh @@ -5,7 +5,7 @@ QP_ROOT=$PWD cd - # Normal installation -PACKAGES="core cryptokit ocamlfind sexplib ZMQ" +PACKAGES="core cryptokit zarith ocamlfind sexplib ZMQ" #ppx_sexp_conv # Needed for ZeroMQ