[arvados] updated: 2.6.0-366-gb2c813295

git repository hosting git at public.arvados.org
Mon Jul 10 15:57:54 UTC 2023


Summary of changes:
 doc/_includes/_tutorial_expectations.liquid        |  2 +-
 .../python/arvados-cwl-runner.html.textile.liquid  | 23 +++++++--------
 doc/sdk/python/arvados-fuse.html.textile.liquid    |  7 ++++-
 doc/sdk/python/sdk-python.html.textile.liquid      |  9 +++---
 doc/user/cwl/costanalyzer.html.textile.liquid      |  2 ++
 .../cwl/crunchstat-summary.html.textile.liquid     |  4 ++-
 .../container-shell-access.html.textile.liquid     |  2 ++
 .../getting_started/setup-cli.html.textile.liquid  | 33 +++++++++++++++++++---
 8 files changed, 60 insertions(+), 22 deletions(-)

       via  b2c81329578a6688ca3f845ec72b4009ca4053cd (commit)
       via  7da1ea409e4327a52dcf634ff51ffb6b596624fc (commit)
       via  08070181ee3510a7adf71a62b3f23047113da72a (commit)
       via  0e21f0f4f9a5f828a339894bc8eb1882a42946ab (commit)
       via  d457f4781318aa4428830742c9956c427b2ca4ff (commit)
       via  69994ab5950595ba50abdb616004dcb3b99566c0 (commit)
       via  531475b372ee4052f24d4931095ef4f0dd632507 (commit)
       via  e450259e10ade43c5f24772896bb0f1fdc892cc8 (commit)
      from  8d3aec7a9485d0bec6b672d0b9097e02a1ceea09 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit b2c81329578a6688ca3f845ec72b4009ca4053cd
Merge: 8d3aec7a9 7da1ea409
Author: Brett Smith <brett.smith at curii.com>
Date:   Mon Jul 10 11:56:21 2023 -0400

    Merge branch '20684-user-install-doc-fixes'
    
    Closes #20684.
    
    Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>


commit 7da1ea409e4327a52dcf634ff51ffb6b596624fc
Author: Brett Smith <brett.smith at curii.com>
Date:   Mon Jul 10 11:50:56 2023 -0400

    20684: Modernize pycurl dependency discussion
    
    These instructions should be good for Debian 10+ and I'm assuming
    corresponding Ubuntu too.
    
    * Update libssl package name
    * Clarify the command is good for multiple distros
    * Prefer apt over apt-get
    
    Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>

diff --git a/doc/sdk/python/arvados-cwl-runner.html.textile.liquid b/doc/sdk/python/arvados-cwl-runner.html.textile.liquid
index 284bb210e..237721ac1 100644
--- a/doc/sdk/python/arvados-cwl-runner.html.textile.liquid
+++ b/doc/sdk/python/arvados-cwl-runner.html.textile.liquid
@@ -32,10 +32,10 @@ Run @pip install arvados-cwl-runner@ in an appropriate installation environment,
 
 Note:
 
-The CWL Runner uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian 10 this is:
+The CWL Runner uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian-based distributions you can install them by running:
 
 <notextile>
-<pre><code># <span class="userinput">apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl1.0-dev</span>
+<pre><code># <span class="userinput">apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev</span>
 </code></pre>
 </notextile>
 
diff --git a/doc/sdk/python/arvados-fuse.html.textile.liquid b/doc/sdk/python/arvados-fuse.html.textile.liquid
index 04dca2c84..8b71c7d69 100644
--- a/doc/sdk/python/arvados-fuse.html.textile.liquid
+++ b/doc/sdk/python/arvados-fuse.html.textile.liquid
@@ -32,7 +32,12 @@ Run @pip install arvados_fuse@ in an appropriate installation environment, such
 
 Note:
 
-The SDK uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian 10 this is:
+The FUSE driver uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian-based distributions you can install them by running:
+
+<notextile>
+<pre><code># <span class="userinput">apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev</span>
+</code></pre>
+</notextile>
 
 <pre>
 $ apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl-dev python3-llfuse
diff --git a/doc/sdk/python/sdk-python.html.textile.liquid b/doc/sdk/python/sdk-python.html.textile.liquid
index 463930692..fd1ff36c5 100644
--- a/doc/sdk/python/sdk-python.html.textile.liquid
+++ b/doc/sdk/python/sdk-python.html.textile.liquid
@@ -69,11 +69,12 @@ h2(#pip-install). Install from PyPI with pip
 
 This installation method is recommended to use the SDK in your own Python programs. If installed into a @virtualenv@, it can coexist with the system-wide installation method from a distribution package.
 
-The SDK uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian 10 you can do this by running:
+Note the Python SDK uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian-based distributions you can install them by running:
 
-<pre>
-$ apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl-dev
-</pre>
+<notextile>
+<pre><code># <span class="userinput">apt install git build-essential python3-dev libcurl4-openssl-dev libssl-dev</span>
+</code></pre>
+</notextile>
 
 Run @python3 -m pip install arvados-python-client@ in an appropriate installation environment, such as a @virtualenv at .
 

commit 08070181ee3510a7adf71a62b3f23047113da72a
Author: Brett Smith <brett.smith at curii.com>
Date:   Mon Jul 10 11:48:21 2023 -0400

    20684: Simplify curl dependency background
    
    Specifying that the "Python SDK" depends on curl is needless detail
    here.
    
    Arvados-DCO-1.1-Signed-off-by: Brett Smith <brett.smith at curii.com>

diff --git a/doc/sdk/python/arvados-cwl-runner.html.textile.liquid b/doc/sdk/python/arvados-cwl-runner.html.textile.liquid
index b721b4f1e..284bb210e 100644
--- a/doc/sdk/python/arvados-cwl-runner.html.textile.liquid
+++ b/doc/sdk/python/arvados-cwl-runner.html.textile.liquid
@@ -32,7 +32,7 @@ Run @pip install arvados-cwl-runner@ in an appropriate installation environment,
 
 Note:
 
-The Python SDK uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian 10 this is:
+The CWL Runner uses @pycurl@ which depends on the @libcurl@ C library.  To build the module you may have to first install additional packages.  On Debian 10 this is:
 
 <notextile>
 <pre><code># <span class="userinput">apt-get install git build-essential python3-dev libcurl4-openssl-dev libssl1.0-dev</span>

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list