emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#32602: closed ([PATCH] gnu: Add python-clustershel


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#32602: closed ([PATCH] gnu: Add python-clustershell.)
Date: Thu, 13 Sep 2018 17:03:02 +0000

Your message dated Thu, 13 Sep 2018 19:02:22 +0200
with message-id <address@hidden>
and subject line Re: [bug#32602] [PATCH] gnu: Add python-clustershell.
has caused the debbugs.gnu.org bug report #32602,
regarding [PATCH] gnu: Add python-clustershell.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
32602: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=32602
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: [PATCH] gnu: Add python-clustershell. Date: Fri, 31 Aug 2018 16:55:57 +0200
* gnu/packages/python.scm (python-clustershell): New variable.
---
 gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f59e24d5f..9dbeb0cf3 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14005,3 +14005,31 @@ scalable way of keeping track of data together with 
learned annotations and
 reduces the code overhead typically encountered when using a mostly
 object-oriented library such as @code{scikit-learn}.")
     (license license:bsd-3)))
+
+(define-public python-clustershell
+  (package
+    (name "python-clustershell")
+    (version "1.8")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/cea-hpc/clustershell/archive/v";
+                           version
+                           ".tar.gz"))
+       (sha256
+        (base32 "1qyf6zp5ikk8rk7zvx5ssbgr9si2bqv3a3415590kd07s7i16nmd"))))
+    (build-system python-build-system)
+    (propagated-inputs `(("python-pyyaml" ,python-pyyaml)
+                         ("openssh" ,openssh)))
+    (home-page "https://cea-hpc.github.io/clustershell/";)
+    (synopsis
+     "Scalable event-driven Python Framework for cluster administration")
+    (description
+     "ClusterShell is an event-driven open source Python framework, designed to
+run local or distant commands in parallel on server farms or on large Linux
+clusters. It will take care of common issues encountered on HPC clusters, such
+as operating on groups of nodes, running distributed commands using optimized
+execution algorithms, as well as gathering results and merging identical
+outputs, or retrieving return codes. ClusterShell takes advantage of existing
+remote shell facilities already installed on your systems, like SSH.")
+    (license license:lgpl2.1)))
-- 
2.14.4





--- End Message ---
--- Begin Message --- Subject: Re: [bug#32602] [PATCH] gnu: Add python-clustershell. Date: Thu, 13 Sep 2018 19:02:22 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux)
Hello,

Thanks for the review Jonathan.  Manuel, I made the changes that
Jonathan suggested on your behalf, and also a couple of other things:

  • Moved the package to ssh.scm;

  • Renamed it to “clusterssh” since it’s primarily/often used from the
    command line and not as a Python library.

  • Added a phase to record the absolute file name of the “ssh” binary.

Let me know if you have any comments!

Thank you!

Ludo’.


--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]