From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:54365) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1igGvD-0006aV-DY for guix-patches@gnu.org; Sat, 14 Dec 2019 18:34:04 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1igGvC-0003lN-B5 for guix-patches@gnu.org; Sat, 14 Dec 2019 18:34:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:58132) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1igGvB-0003kt-Mk for guix-patches@gnu.org; Sat, 14 Dec 2019 18:34:01 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1igGvB-0007Ya-Iq for guix-patches@gnu.org; Sat, 14 Dec 2019 18:34:01 -0500 Subject: [bug#38541] [PATCH] ssh: Add Kerberos-support to ssh:// daemon URLs Resent-Message-ID: From: Ludovic =?UTF-8?Q?Court=C3=A8s?= References: <20191209083737.GA10190@zpidnp36> Date: Sun, 15 Dec 2019 00:33:46 +0100 In-Reply-To: <20191209083737.GA10190@zpidnp36> (Lars-Dominik Braun's message of "Mon, 9 Dec 2019 09:37:37 +0100") Message-ID: <87a77uwkh1.fsf@gnu.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Lars-Dominik Braun Cc: 38541@debbugs.gnu.org Hello, Lars-Dominik Braun skribis: > * gnu/packages/ssh.scm (libssh): Depend on mit-krb5 > (guile-ssh): Support gssapi functions, see > https://github.com/artyom-poptsov/guile-ssh/pull/15 > * guix/ssh.scm (open-ssh-session): Fall back to GSSAPI if public key > authentication does not work > --- > doc/guix.texi | 5 +- > gnu/packages/patches/guile-ssh-gssapi.patch | 115 ++++++++++++++++++++ > gnu/packages/ssh.scm | 4 +- > guix/ssh.scm | 15 ++- > 4 files changed, 131 insertions(+), 8 deletions(-) > create mode 100644 gnu/packages/patches/guile-ssh-gssapi.patch Nice! (Note that we normally list all the modified files/entities in the commit log; see .) Do you know if a Guile-SSH release is coming? If so, we could wait and avoid carrying the Guile-SSH patch. Other than that, the patch LGTM! Thank you, Ludo=E2=80=99.