From 05c53c577adc383f933d247e44c02335629e5b4c Mon Sep 17 00:00:00 2001 From: Anthony Scopatz Date: Mon, 11 May 2015 18:23:55 -0500 Subject: [PATCH 1/3] Update quickinstall clone URL --- docs/source/quickinstall.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/quickinstall.rst b/docs/source/quickinstall.rst index 89e5ad4503..137bf07423 100644 --- a/docs/source/quickinstall.rst +++ b/docs/source/quickinstall.rst @@ -40,7 +40,7 @@ the following commands in a terminal: .. code-block:: sh - git clone git://github.com/mit-crpg/openmc.git + git clone git@github.com:mit-crpg/openmc.git cd openmc git checkout -b master origin/master mkdir src/build From 60fd9b88dcb6e7739b4ca571db60e175e84e9f5b Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Tue, 12 May 2015 09:12:35 +0700 Subject: [PATCH 2/3] Update clone URL to https protocol in documentation --- docs/source/quickinstall.rst | 2 +- docs/source/usersguide/install.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/quickinstall.rst b/docs/source/quickinstall.rst index 137bf07423..1ffebbebeb 100644 --- a/docs/source/quickinstall.rst +++ b/docs/source/quickinstall.rst @@ -40,7 +40,7 @@ the following commands in a terminal: .. code-block:: sh - git clone git@github.com:mit-crpg/openmc.git + git clone https://github.com/mit-crpg/openmc.git cd openmc git checkout -b master origin/master mkdir src/build diff --git a/docs/source/usersguide/install.rst b/docs/source/usersguide/install.rst index 162ac69c30..d06806d982 100644 --- a/docs/source/usersguide/install.rst +++ b/docs/source/usersguide/install.rst @@ -107,7 +107,7 @@ with GitHub since this involves setting up ssh_ keys. With git installed and setup, the following command will download the full source code from the GitHub repository:: - git clone git://github.com/mit-crpg/openmc.git + git clone https://github.com/mit-crpg/openmc.git By default, the cloned repository will be set to the development branch. To switch to the source of the latest stable release, run the following commands:: From 0699771a2674fd7301ec3bdd75820ed9a047fc44 Mon Sep 17 00:00:00 2001 From: Paul Romano Date: Wed, 20 May 2015 05:42:41 +0700 Subject: [PATCH 3/3] Update URL for downloading HDF5 during Travis pull request runs. A new release of HDF5 caused the old URL to become non-existent. --- tests/travis_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/travis_install.sh b/tests/travis_install.sh index b929455517..ec797b9310 100755 --- a/tests/travis_install.sh +++ b/tests/travis_install.sh @@ -15,7 +15,7 @@ if [ "$TRAVIS_PULL_REQUEST" != "false" ]; then cd .. # Build PHDF5 - wget -q http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.14.tar.gz + wget -q http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.8.14/src/hdf5-1.8.14.tar.gz tar -xzvf hdf5-1.8.14.tar.gz >/dev/null 2>&1 mv hdf5-1.8.14 phdf5-1.8.14; cd phdf5-1.8.14 CC=$PWD/../mpich_install/bin/mpicc FC=$PWD/../mpich_install/bin/mpif90 \