From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 31 11:17:28 2018 Received: (at submit) by debbugs.gnu.org; 31 Aug 2018 15:17:28 +0000 Received: from localhost ([127.0.0.1]:40796 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fvlAq-0006Mo-An for submit@debbugs.gnu.org; Fri, 31 Aug 2018 11:17:27 -0400 Received: from eggs.gnu.org ([208.118.235.92]:47448) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fvl5l-0006Dn-Qv for submit@debbugs.gnu.org; Fri, 31 Aug 2018 11:12:10 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvl5e-0008HI-R3 for submit@debbugs.gnu.org; Fri, 31 Aug 2018 11:12:04 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=0.8 required=5.0 tests=BAYES_50 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:36283) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fvl5Z-0008FT-Kp for submit@debbugs.gnu.org; Fri, 31 Aug 2018 11:11:59 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39515) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fvl5W-0006OQ-5i for guix-patches@gnu.org; Fri, 31 Aug 2018 11:11:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fvktD-0007tg-H1 for guix-patches@gnu.org; Fri, 31 Aug 2018 10:59:15 -0400 Received: from kerio.init.at ([62.99.204.240]:42582) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fvkt9-0007sD-Oh for guix-patches@gnu.org; Fri, 31 Aug 2018 10:59:09 -0400 Received: from mri2.init.at ([62.99.204.235]) by kerio.init.at (Kerio Connect 8.3.2) (using TLSv1.2 with cipher DHE-RSA-AES256-GCM-SHA384 (256 bits)) for guix-patches@gnu.org; Fri, 31 Aug 2018 16:59:02 +0200 Received: from mri2.init.at (localhost [127.0.0.1]) by mri2.init.at (Postfix) with ESMTP id 2DC8A2BA3; Fri, 31 Aug 2018 17:00:03 +0200 (CEST) Received: from graf.valhalla.init.at (62-99-204-250.static.upcbusiness.at [62.99.204.250]) by mri2.init.at (Postfix) with ESMTP id 17A592873; Fri, 31 Aug 2018 17:00:03 +0200 (CEST) From: Manuel Graf To: guix-patches@gnu.org Subject: [PATCH] gnu: Add python-clustershell. Date: Fri, 31 Aug 2018 16:55:57 +0200 Message-Id: <20180831145557.4435-1-graf@init.at> X-Mailer: git-send-email 2.14.4 X-Virus-Scanned: ClamAV using ClamSMTP X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x [fuzzy] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: submit X-Mailman-Approved-At: Fri, 31 Aug 2018 11:17:23 -0400 Cc: Manuel Graf X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.0 (------) * 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 From debbugs-submit-bounces@debbugs.gnu.org Fri Aug 31 19:59:21 2018 Received: (at 32602) by debbugs.gnu.org; 31 Aug 2018 23:59:21 +0000 Received: from localhost ([127.0.0.1]:41105 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fvtJw-000497-W8 for submit@debbugs.gnu.org; Fri, 31 Aug 2018 19:59:21 -0400 Received: from mout.web.de ([212.227.17.12]:56427) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1fvtJu-00048s-Lx for 32602@debbugs.gnu.org; Fri, 31 Aug 2018 19:59:19 -0400 Received: from [192.168.178.109] ([89.247.127.191]) by smtp.web.de (mrweb101 [213.165.67.124]) with ESMTPSA (Nemesis) id 0Lvjiy-1fqCuX3RAy-017UIn; Sat, 01 Sep 2018 01:59:09 +0200 Subject: Re: [bug#32602] [PATCH] gnu: Add python-clustershell. To: Manuel Graf , 32602@debbugs.gnu.org References: <20180831145557.4435-1-graf@init.at> From: Jonathan Brielmaier Openpgp: preference=signencrypt Autocrypt: addr=jonathan.brielmaier@web.de; prefer-encrypt=mutual; keydata= xsBNBFLri3sBCAC70cM07IJUQ2ZJaIsJy3gIDyNhtbRCFuu5zpuzhbqQ/+CsNX7zFGRn47xx O/QnByEA5FIUspgXFaSX72tMGD1MnydJ6PO+i1OuspEcpneqtaIn74TWq/tJxwll0A8qwJXD HZ9r4lQrTsJkUkaWgIeWJfwy2bi/Eu2RwcgApa3fKCBXbNCIif1/LkM6Y9xH7vedYiSE6yDs Tuy5xQmZqkoRnpr/Gfc0JrNFRWZr99VNIHDvIkqczfuYHqfCTxndFbc9WjBj7XgumAi/4Il5 RaUHlBpG19IV0kO8OfJxyfLvOa1vjX0vTXt5WxpnCXk/r7Fux0BwImFbysCEjL+picGPABEB AAHNJGpvbnNnZXIgPGpvbmF0aGFuLmJyaWVsbWFpZXJAd2ViLmRlPsLAfgQTAQIAKAUCUuuL ewIbIwUJCWYBgAYLCQgHAwIGFQgCCQoLBBYCAwECHgECF4AACgkQ7PyDmItOS5/85Af+P+sR 77QOP7eJFJ8s0GPGWPTrf/Elewba3XQaRIi9WDrUs8UlM+cdk6et4//NCJkgF3I/YJL6mT4K yKqi8Q6kgbdjg4mIzQyTcZwQT4xxprEyBJjnCQmpeefT41eD11Dy24USKhWtdl+a2rUeSXzs z+bxTKegTHI5OZ4xVmB7xV9BQ4CiyYKq/t+gsmupvAXkJqVoQOO7YH3il+MI9dW7hvOlr5l7 8oRi8INfdBBkZaBK+Z8WLu7UjHTwl0C4ZG89Nz4L9qj2tPP99IVxeNxrX9xWUW9rgnaVVHBy xt1WRjSBfE5odDhwZmmABq0bNeiIuYERooSRqedsnmahV8vw/87ATQRS64t7AQgAsGeviVjk 7WAilEQrbjW5scL8U5nj2JictUTl9xVAJKebKfd1wYeEMditJI59qVbzF0QgvEmBdyH/8YVS fwZe1XWQfAGZQV3cS32IhXJqqg6YT2XEblW9rkTV5SWxs15FiMzVC+bkWY/xnqao+vjoq4rJ Funm49G4HN1yemibP2NmOjuwHE3QOhQPCjYuYkX6u26ARlwakmsj/qQ8fSHgAciVTH9VKPam 1ZzO47x3JM36bB7GmLaW+qij9k36Q+I6Wn6EuyYP56YBsLa0lTxumzu6VANdGnALdjJZRIDY p4jkgpXwUx+5szs85uSScDutmeSgnSAxptCn8ZR5AlFjfQARAQABwsBlBBgBAgAPBQJS64t7 AhsMBQkJZgGAAAoJEOz8g5iLTkufjZkIAINZXpGGMi4H1/9VagiRtY8A1fv55aYXnNROJ3w9 78bHEOAY0TwVm9gnSIXPzpBjRamBPOgiwXGhhb06V9qeowBzbGa/3Z1gUzWkbkQj8qpa9JaV SB3oBphKpZ0Sx/SF/5FHXiSucxE0lx/8PwDAbHTMsXFkzEMxJabxmNrN4/WJ+udCr7Yfd+q7 BjGzY/jKyj5irVyqcF8gn7pfvi9XUKi+fQr7e9dgCWBWp+yJyDC5VZYO3P38qjszph9lLFYP CpUQp+QO2WlHryydPmhE2AJxDOgCtpI3yCltWJ2ZG5q0LEilQLJ1ZAbZ5PAZK5bT8GSUdoKt 1AhLnzyFQXpb0ac= Message-ID: Date: Sat, 1 Sep 2018 01:59:09 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 In-Reply-To: <20180831145557.4435-1-graf@init.at> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit X-Provags-ID: V03:K1:JuDv+ZkLqTeKQPCAK0FgNP0QDHHwDPzfGothmdU+Dc5SuZg99vJ viPPpCGVi5IJelMuqIZRRZtc9UpCdYOARQzOzTmwlfWhwNc4xnrAVImhE1DXiyvvqo3LVPL aiauKQdbw7qOp3xcHv3PNDegi7RAROtWiiQpV5TEB+LU7l0itJRJXDQbWq8yxpaya5qTSsU 7GW6yQtWu6Gg5KL48Csfg== X-UI-Out-Filterresults: notjunk:1;V01:K0:qPiqyZVC4+k=:cNJdHo8SwxHb0WK0LuZmU7 K+YIonUigSime3aubKyJhp+Ws/C3hoMzpFVqHFvD6NK/ElEEI+N2v6wZIsYGbuiIxz8G7qmda vWea/ShxTVNf9beywSjB9Bp02hpWlLlDYRMpPXSHuCtSCblkaQvCtHgOzYtXHzCrg5PhouRMI ODetVRASutMowlF3scPZYlw5f3dIiA1GYnDlob64/SwluDmvMSGatnQXzlJuNAhmSFdxBGm1o AEOlbKNwo/bFq84eHpIWUSthZm+QkJuR39mWOkPLY3T9gaeZQVtZvoUWHqLW1L/YN/ob1rnjf lzGmBbqsDNwLDGpPHMt1kNU9Rla6DhBcB4Te9kGCbrYz5t0Wt6COaHUagJZMD2QTF7uSoP+iS vwsPcN1VCroBoCmmgxRzMZOXwpcqb3SyvFXA6jjG/+HO51SYYPV0LgwuXHZXcGroGBUvbgNrO X9q/Tafxcv0S+/DgKfZjj8rTVRadCuqmb0JrR7GQn6s2jGtz3l23huRa5hooaz6QhrmZVEE0U 6bqetpfrDwsbj068raN9WgTFhpn7kvf7tcXib3iOyL2vwSDH35c4E7inTM6yu+4e0TwbTPfZV UQcrWGNaUwv5ANW3FgMXmniNHnC08UYPTZ2/ksnkagFgliw6xuYpIDRXh0INGIa0maL5kIY35 914sjJMpJDkofI1SUhaqmO5DRuLc+1/QWXcb5FMQvu6X/Q+IEG1MoGl3KLZvx8wVqJ6bxNbis dzPgpQXWzroHzrONFJyw4RjAms9SZRijYIIobFWYXbLhcJDo1F9fQ+lkSfP00HReOCv4JBTbD Z97gMP7 X-Spam-Score: -0.7 (/) X-Debbugs-Envelope-To: 32602 X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.7 (-) Hello Manuel, welcome to the Guix project. I have just two nitpicks: On 8/31/18 4:55 PM, Manuel Graf wrote: > * gnu/packages/python.scm (python-clustershell): New variable. > --- > gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) Please add also your copyright line at the top of the file. > + (license license:lgpl2.1))) According to the source files the license is lgpl2.1+. Jonathan From debbugs-submit-bounces@debbugs.gnu.org Thu Sep 13 13:02:33 2018 Received: (at 32602-done) by debbugs.gnu.org; 13 Sep 2018 17:02:33 +0000 Received: from localhost ([127.0.0.1]:39531 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g0V0j-0002xt-7X for submit@debbugs.gnu.org; Thu, 13 Sep 2018 13:02:33 -0400 Received: from eggs.gnu.org ([208.118.235.92]:42908) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g0V0f-0002xT-NP for 32602-done@debbugs.gnu.org; Thu, 13 Sep 2018 13:02:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g0V0Z-0001Z5-VJ for 32602-done@debbugs.gnu.org; Thu, 13 Sep 2018 13:02:24 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:39741) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g0V0Z-0001Yx-Qt; Thu, 13 Sep 2018 13:02:23 -0400 Received: from [2a01:e0a:1d:7270:af76:b9b:ca24:c465] (port=47508 helo=ribbon) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1g0V0Z-0001Qf-J4; Thu, 13 Sep 2018 13:02:23 -0400 From: ludo@gnu.org (Ludovic =?utf-8?Q?Court=C3=A8s?=) To: Jonathan Brielmaier Subject: Re: [bug#32602] [PATCH] gnu: Add python-clustershell. References: <20180831145557.4435-1-graf@init.at> Date: Thu, 13 Sep 2018 19:02:22 +0200 In-Reply-To: (Jonathan Brielmaier's message of "Sat, 1 Sep 2018 01:59:09 +0200") Message-ID: <87in39nxep.fsf@gnu.org> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.1 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-Spam-Score: -5.0 (-----) X-Debbugs-Envelope-To: 32602-done Cc: Manuel Graf , 32602-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -6.0 (------) Hello, Thanks for the review Jonathan. Manuel, I made the changes that Jonathan suggested on your behalf, and also a couple of other things: =E2=80=A2 Moved the package to ssh.scm; =E2=80=A2 Renamed it to =E2=80=9Cclusterssh=E2=80=9D since it=E2=80=99s p= rimarily/often used from the command line and not as a Python library. =E2=80=A2 Added a phase to record the absolute file name of the =E2=80=9C= ssh=E2=80=9D binary. Let me know if you have any comments! Thank you! Ludo=E2=80=99. From debbugs-submit-bounces@debbugs.gnu.org Fri Sep 14 04:01:53 2018 Received: (at 32602-done) by debbugs.gnu.org; 14 Sep 2018 08:01:53 +0000 Received: from localhost ([127.0.0.1]:40003 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g0j2x-0007KC-W3 for submit@debbugs.gnu.org; Fri, 14 Sep 2018 04:01:53 -0400 Received: from freya.init.at ([62.99.204.253]:1612) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g0j2v-0007Ju-Vv for 32602-done@debbugs.gnu.org; Fri, 14 Sep 2018 04:01:46 -0400 From: Manuel Graf To: =?Windows-1252?Q?Ludovic_Court=E8s?= , Jonathan Brielmaier Subject: Re: [bug#32602] [PATCH] gnu: Add python-clustershell. Thread-Topic: [bug#32602] [PATCH] gnu: Add python-clustershell. Thread-Index: AQHUQTsmsQMcFvqPc0WRUTtbRZamIqTaaTmAgBQbci6AAPpr9w== Date: Fri, 14 Sep 2018 08:01:38 +0000 Message-ID: <45df41ee993a49bdac61ba1a5d6338ed@init.at> References: <20180831145557.4435-1-graf@init.at> ,<87in39nxep.fsf@gnu.org> In-Reply-To: <87in39nxep.fsf@gnu.org> Accept-Language: en-US, de-AT Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-symprex-messageprocessed: true x-symprex-signatureinjected: false Content-Type: multipart/alternative; boundary="_000_45df41ee993a49bdac61ba1a5d6338edinitat_" MIME-Version: 1.0 X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 32602-done Cc: "32602-done@debbugs.gnu.org" <32602-done@debbugs.gnu.org> X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) --_000_45df41ee993a49bdac61ba1a5d6338edinitat_ Content-Type: text/plain; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable Hi! Thanks to both of you, Sorry, that I didn't find the time to add the suggest so far, thanks to bot= h of you. I also created an issue on the github project regarding the new guix packag= e. Plese see https://github.com/cea-hpc/clustershell/issues/392 for details Cheers, -- [http://freya.init.at/img/init-logo.jpg] Manuel Graf Teamlead & Technical Expert for HPC [ t ] +43 1 522 53 77 61 [ m ] +43 676 84 66 30 61 [ e ] graf@init.at [ w ] https://www.init.at website | vCard = | map | email [Senat der Wirtschaft] [http://freya.init.at/img/facebook.png] [http://freya.init.at/img/twitter.png] = [http://freya.init.at/img/linkedin.png] [http://freya.init.at/img/google.png= ] [Klimaneutrales Unternehmen] init.at informationstechnologie GmbH | Fockygasse 29-31 | 1120 Wien Firmenbuchnr.: FN 194213 h | Gerichtsstand: Wien Diese Nachricht ist vertraulich und nur f=FCr den Adressaten bestimmt. Soll= ten Sie kein autorisierter Empf=E4nger sein, ist jede Offenlegung, Weiterle= itung oder sonstige Verwendung dieser Nachricht nicht gestattet. Bitte info= rmieren Sie in diesem Fall den Absender und l=F6schen Sie alle Kopien - vie= len Dank. This message is confidential and only intended for its recipient. If you ar= e not the intended recipient, any disclosure, distribution or any other use= of this mail is prohibited. In this case, please notify the sender and del= ete all copies of the message - thank you. ________________________________ From: Ludovic Court=E8s Sent: Thursday, September 13, 2018 19:02 To: Jonathan Brielmaier Cc: Manuel Graf; 32602-done@debbugs.gnu.org Subject: Re: [bug#32602] [PATCH] gnu: Add python-clustershell. Hello, Thanks for the review Jonathan. Manuel, I made the changes that Jonathan suggested on your behalf, and also a couple of other things: =95 Moved the package to ssh.scm; =95 Renamed it to =93clusterssh=94 since it=92s primarily/often used from= the command line and not as a Python library. =95 Added a phase to record the absolute file name of the =93ssh=94 binar= y. Let me know if you have any comments! Thank you! Ludo=92. --_000_45df41ee993a49bdac61ba1a5d6338edinitat_ Content-Type: text/html; charset="Windows-1252" Content-Transfer-Encoding: quoted-printable

Hi!

Thanks to both of you, 

Sorry, that I didn't find the time to add the suggest so far, thank= s to both of you.

I also created an issue on the github project regarding the new guix pac= kage.

Plese see https:/= /github.com/cea-hpc/clustershell/issues/392 for details


Cheers,


--

Manuel Graf
Teamlead & Technical Expert for HPC
[
t
]
+43 1 522 53 77 61
[
m
]
+43 676 84 66 30 61
[
e
]
graf@init.at
[ w
]
https://ww= w.init.at
website | vCard | map | email
3D"Senat
=
3D"Klimaneutrales

init.at informationstechnologie GmbH | Fockygasse = 29-31 | 1120 Wien
Firmenbuchnr.: FN 194213 h | Gerichtsstand: Wien

Diese Nachricht ist vertraulich und nur f=FCr den Adressaten bestimmt. Soll= ten Sie kein autorisierter Empf=E4nger sein, ist jede Offenlegung, Weiterle= itung oder sonstige Verwendung dieser Nachricht nicht gestattet. Bitte info= rmieren Sie in diesem Fall den Absender und l=F6schen Sie alle Kopien - vielen Dank.

This message is confidential and only intended for its recipient. If you ar= e not the intended recipient, any disclosure, distribution or any other use= of this mail is prohibited. In this case, please notify the sender and del= ete all copies of the message - thank you.

 



From: Ludovic Court=E8s &= lt;ludo@gnu.org>
Sent: Thursday, September 13, 2018 19:02
To: Jonathan Brielmaier
Cc: Manuel Graf; 32602-done@debbugs.gnu.org
Subject: Re: [bug#32602] [PATCH] gnu: Add python-clustershell.
 
Hello,

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

  =95 Moved the package to ssh.scm;

  =95 Renamed it to =93clusterssh=94 since it=92s primarily/often used= from the
    command line and not as a Python library.

  =95 Added a phase to record the absolute file name of the =93ssh=94 = binary.

Let me know if you have any comments!

Thank you!

Ludo=92.
--_000_45df41ee993a49bdac61ba1a5d6338edinitat_-- From unknown Thu Sep 11 10:42:23 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Fri, 12 Oct 2018 11:24:03 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator