Skip to content

Commit 8a36d5c

Browse files
author
Joana Chavez
committed
tarball last version 2.6.0
1 parent 461155e commit 8a36d5c

11 files changed

Lines changed: 93 additions & 32 deletions

_build/doctrees/environment.pickle

-134 Bytes
Binary file not shown.
173 Bytes
Binary file not shown.

_build/html/_sources/installation.rst.txt

Lines changed: 15 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,18 +43,25 @@ into missing dependencies, try installing them like so:
4343
4444
4545
-------------------------
46-
Install the master branch
46+
Install from a tag
4747
-------------------------
4848

49-
The following commands will install the latest version of the `GitHub
50-
repo <https://github.com/singularityware/singularity>`_ master branch to ``/usr/local``.
49+
The following commands will install a tagged version of the `GitHub
50+
repo <https://github.com/singularityware/singularity>`_ to ``/usr/local``.
51+
This will work for pre 3.0 tags.
5152

5253
.. code-block:: none
5354
5455
$ git clone https://github.com/singularityware/singularity.git
5556
5657
$ cd singularity
5758
59+
$ git fetch --all
60+
61+
$ git tag -l
62+
63+
$ git checkout [TAG]
64+
5865
$ ./autogen.sh
5966
6067
$ ./configure --prefix=/usr/local --sysconfdir=/etc
@@ -105,22 +112,20 @@ releases <https://github.com/singularityware/singularity/releases>`_ page to ``/
105112
Install the development branch
106113
------------------------------
107114

108-
If you want to test a development branch the routine above should be
109-
tweaked slightly:
115+
Primary development it now being done in the master branch. As of now (2018-08-16),
116+
this is the development for Singularity 3.0.
110117

111118
.. code-block:: none
112119
113120
$ git clone https://github.com/singularityware/singularity.git
114121
115122
$ cd singularity
116123
117-
$ git fetch
124+
[ Read INSTALL.md -- Some major changes from pre-3.0 ]
118125
119-
$ git checkout development
126+
$ ./mconfig
120127
121-
$ ./autogen.sh
122-
123-
$ ./configure --prefix=/usr/local --sysconfdir=/etc
128+
$ cd builddir
124129
125130
$ make
126131

_build/html/genindex.html

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,17 @@
1818

1919

2020

21+
22+
23+
24+
25+
26+
27+
28+
29+
2130
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
2231
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
23-
2432
<link rel="index" title="Index" href="#" />
2533
<link rel="search" title="Search" href="search.html" />
2634

@@ -37,7 +45,6 @@
3745

3846
<nav data-toggle="wy-nav-shift" class="wy-nav-side">
3947
<div class="wy-side-scroll">
40-
<link rel="stylesheet" href="_static/css/dark.css" type="text/css" />
4148
<div class="wy-side-nav-search">
4249

4350

@@ -198,7 +205,8 @@ <h1 id="index">Index</h1>
198205
</div>
199206

200207

201-
<script type="text/javascript" src="_static/js/footer.js"></script>
208+
209+
<script type="text/javascript" src="_static/js/footer.js"></script>
202210

203211

204212
<script type="text/javascript">

_build/html/index.html

Lines changed: 21 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,29 @@
1010

1111
<title>User Guide &mdash; Singularity container 2.6.0 documentation</title>
1212

13+
14+
15+
1316
<link rel="shortcut icon" href="_static/favicon.png"/>
1417

15-
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
16-
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
29+
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
30+
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
1731
<link rel="index" title="Index" href="genindex.html" />
1832
<link rel="search" title="Search" href="search.html" />
1933
<link rel="next" title="Quick Start" href="quick_start.html" />
2034

35+
2136
<script src="_static/js/modernizr.min.js"></script>
2237

2338
</head>
@@ -52,6 +67,7 @@
5267

5368

5469

70+
5571
<div role="search">
5672
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
5773
<input type="text" name="q" placeholder="Search docs" />
@@ -236,7 +252,7 @@ <h1>User Guide<a class="headerlink" href="#user-guide" title="Permalink to this
236252
</li>
237253
<li class="toctree-l1"><a class="reference internal" href="installation.html">Installation</a><ul>
238254
<li class="toctree-l2"><a class="reference internal" href="installation.html#before-you-begin">Before you begin</a></li>
239-
<li class="toctree-l2"><a class="reference internal" href="installation.html#install-the-master-branch">Install the master branch</a></li>
255+
<li class="toctree-l2"><a class="reference internal" href="installation.html#install-from-a-tag">Install from a tag</a></li>
240256
<li class="toctree-l2"><a class="reference internal" href="installation.html#install-a-specific-release">Install a specific release</a></li>
241257
<li class="toctree-l2"><a class="reference internal" href="installation.html#install-the-development-branch">Install the development branch</a></li>
242258
<li class="toctree-l2"><a class="reference internal" href="installation.html#remove-an-old-version">Remove an old version</a></li>
@@ -727,9 +743,10 @@ <h1>User Guide<a class="headerlink" href="#user-guide" title="Permalink to this
727743
</div>
728744

729745

730-
<script type="text/javascript" src="_static/js/footer.js"></script>
731746

732747

748+
<script type="text/javascript" src="_static/js/footer.js"></script>
749+
733750
<script type="text/javascript">
734751
var DOCUMENTATION_OPTIONS = {
735752
URL_ROOT:'./',

_build/html/installation.html

Lines changed: 32 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,18 @@
1414

1515

1616
<link rel="shortcut icon" href="_static/favicon.png"/>
17+
18+
19+
20+
21+
22+
23+
24+
25+
26+
27+
28+
1729
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
1830
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
1931
<link rel="index" title="Index" href="genindex.html" />
@@ -56,6 +68,7 @@
5668

5769

5870

71+
5972
<div role="search">
6073
<form id="rtd-search-form" class="wy-form" action="search.html" method="get">
6174
<input type="text" name="q" placeholder="Search docs" />
@@ -79,7 +92,7 @@
7992
<li class="toctree-l1"><a class="reference internal" href="introduction.html">Introduction</a></li>
8093
<li class="toctree-l1 current"><a class="current reference internal" href="#">Installation</a><ul>
8194
<li class="toctree-l2"><a class="reference internal" href="#before-you-begin">Before you begin</a></li>
82-
<li class="toctree-l2"><a class="reference internal" href="#install-the-master-branch">Install the master branch</a></li>
95+
<li class="toctree-l2"><a class="reference internal" href="#install-from-a-tag">Install from a tag</a></li>
8396
<li class="toctree-l2"><a class="reference internal" href="#install-a-specific-release">Install a specific release</a></li>
8497
<li class="toctree-l2"><a class="reference internal" href="#install-the-development-branch">Install the development branch</a></li>
8598
<li class="toctree-l2"><a class="reference internal" href="#remove-an-old-version">Remove an old version</a></li>
@@ -238,14 +251,21 @@ <h2>Before you begin<a class="headerlink" href="#before-you-begin" title="Permal
238251
</pre></div>
239252
</div>
240253
</div>
241-
<div class="section" id="install-the-master-branch">
242-
<h2>Install the master branch<a class="headerlink" href="#install-the-master-branch" title="Permalink to this headline"></a></h2>
243-
<p>The following commands will install the latest version of the <a class="reference external" href="https://github.com/singularityware/singularity">GitHub
244-
repo</a> master branch to <code class="docutils literal notranslate"><span class="pre">/usr/local</span></code>.</p>
254+
<div class="section" id="install-from-a-tag">
255+
<h2>Install from a tag<a class="headerlink" href="#install-from-a-tag" title="Permalink to this headline"></a></h2>
256+
<p>The following commands will install a tagged version of the <a class="reference external" href="https://github.com/singularityware/singularity">GitHub
257+
repo</a> to <code class="docutils literal notranslate"><span class="pre">/usr/local</span></code>.
258+
This will work for pre 3.0 tags.</p>
245259
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ git clone https://github.com/singularityware/singularity.git
246260

247261
$ cd singularity
248262

263+
$ git fetch --all
264+
265+
$ git tag -l
266+
267+
$ git checkout [TAG]
268+
249269
$ ./autogen.sh
250270

251271
$ ./configure --prefix=/usr/local --sysconfdir=/etc
@@ -285,19 +305,17 @@ <h2>Install a specific release<a class="headerlink" href="#install-a-specific-re
285305
</div>
286306
<div class="section" id="install-the-development-branch">
287307
<h2>Install the development branch<a class="headerlink" href="#install-the-development-branch" title="Permalink to this headline"></a></h2>
288-
<p>If you want to test a development branch the routine above should be
289-
tweaked slightly:</p>
308+
<p>Primary development it now being done in the master branch. As of now (2018-08-16),
309+
this is the development for Singularity 3.0.</p>
290310
<div class="highlight-none notranslate"><div class="highlight"><pre><span></span>$ git clone https://github.com/singularityware/singularity.git
291311

292312
$ cd singularity
293313

294-
$ git fetch
314+
[ Read INSTALL.md -- Some major changes from pre-3.0 ]
295315

296-
$ git checkout development
316+
$ ./mconfig
297317

298-
$ ./autogen.sh
299-
300-
$ ./configure --prefix=/usr/local --sysconfdir=/etc
318+
$ cd builddir
301319

302320
$ make
303321

@@ -866,7 +884,8 @@ <h4>Presentations<a class="headerlink" href="#presentations" title="Permalink to
866884
</div>
867885

868886

869-
<script type="text/javascript" src="_static/js/footer.js"></script>
887+
888+
<script type="text/javascript" src="_static/js/footer.js"></script>
870889

871890

872891
<script type="text/javascript">

_build/html/search.html

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,15 @@
1717

1818

1919

20+
21+
22+
23+
24+
25+
26+
27+
28+
2029
<link rel="stylesheet" href="_static/css/theme.css" type="text/css" />
2130
<link rel="stylesheet" href="_static/pygments.css" type="text/css" />
2231
<link rel="index" title="Index" href="genindex.html" />
@@ -42,6 +51,8 @@
4251
<a href="index.html" class="icon icon-home"> Singularity container
4352

4453

54+
55+
4556
<img src="_static/logo.png" class="logo" alt="Logo"/>
4657

4758
</a>
@@ -199,7 +210,8 @@
199210
</div>
200211

201212

202-
<script type="text/javascript" src="_static/js/footer.js"></script>
213+
<script type="text/javascript" src="_static/js/footer.js"></script>
214+
203215

204216

205217
<script type="text/javascript">

_build/html/searchindex.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

_build/user-docs.tar.xz

4.69 MB
Binary file not shown.

_build/user-guide-index.tar.xz

-4.58 MB
Binary file not shown.

0 commit comments

Comments
 (0)