From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nicolas Goaziou Subject: Re: [PATCH] Add sshpass v2 Date: Wed, 27 Jul 2016 19:55:44 +0200 Message-ID: <87eg6fnexr.fsf@saiph.selenimh> References: <87lh0nnf5w.fsf@saiph.selenimh> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:54269) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bST3e-0006Ae-4p for guix-devel@gnu.org; Wed, 27 Jul 2016 13:55:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bST3a-0005tM-8G for guix-devel@gnu.org; Wed, 27 Jul 2016 13:55:50 -0400 Received: from relay4-d.mail.gandi.net ([217.70.183.196]:35498) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bST3a-0005tC-0H for guix-devel@gnu.org; Wed, 27 Jul 2016 13:55:46 -0400 Received: from saiph.selenimh (unknown [IPv6:2a03:a0a0:0:4301::b3c]) (Authenticated sender: mail@nicolasgoaziou.fr) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id E6C8B1720AC for ; Wed, 27 Jul 2016 19:55:43 +0200 (CEST) In-Reply-To: <87lh0nnf5w.fsf@saiph.selenimh> (Nicolas Goaziou's message of "Wed, 27 Jul 2016 19:50:51 +0200") List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org --=-=-= Content-Type: text/plain I forgot to add myself to the Hall of Fame. Here is v2. --=-=-= Content-Type: text/x-diff; charset=utf-8 Content-Disposition: attachment; filename=0001-gnu-Add-sshpass.patch Content-Transfer-Encoding: quoted-printable Content-Description: Add sshpass >From c43bddaf22e3bc81c1e42180962c36279f5bf49c Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 27 Jul 2016 19:45:02 +0200 Subject: [PATCH] gnu: Add sshpass. * gnu/packages/ssh.scm (sshpass): New variable. --- gnu/packages/ssh.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index 61a6a5b..2f85c40 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -4,6 +4,7 @@ ;;; Copyright =C2=A9 2014, 2015, 2016 Mark H Weaver ;;; Copyright =C2=A9 2015, 2016 Efraim Flashner ;;; Copyright =C2=A9 2016 Leo Famulari +;;; Copyright =C2=A9 2016 Nicolas Goaziou ;;; ;;; This file is part of GNU Guix. ;;; @@ -492,3 +493,23 @@ providing shell access to the server system from the c= lient. It provides both the server daemon and the client application, as well as tools for manipulating key files.") (license license:gpl2+))) + +(define-public sshpass + (package + (name "sshpass") + (version "1.06") + (synopsis "Non-interactive password authentication with SSH") + (home-page "https://sourceforge.net/projects/sshpass/") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://sourceforge/sshpass/sshpass/" + version "/sshpass-" version ".tar.gz")) + (sha256 + (base32 + "0q7fblaczb7kwbsz0gdy9267z0sllzgmf0c7z5c9mf88wv74ycn6")))) + (build-system gnu-build-system) + (description "sshpass is a tool for non-interactivly performing +password authentication with SSH's so called ``interactive keyboard +password authentication''.") + (license license:gpl2+))) --=20 2.8.4 --=-=-= Content-Type: text/plain Regards, --=-=-=--