unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* [PATCH] Add sshpass
@ 2016-07-27 17:50 Nicolas Goaziou
  2016-07-27 17:55 ` [PATCH] Add sshpass v2 Nicolas Goaziou
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2016-07-27 17:50 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 130 bytes --]

Hello,

Here is a patch adding sshpass.


Regards,

-- 
Nicolas Goaziou                                                0x80A93738

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: Add sshpass --]
[-- Type: text/x-diff, Size: 1443 bytes --]

From 4175eaf2f440738ca29755f61de31383f3b4c506 Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
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 | 20 ++++++++++++++++++++
 1 file changed, 20 insertions(+)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 61a6a5b..c9ca87f 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -492,3 +492,23 @@ providing shell access to the server system from the client.  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+)))
-- 
2.8.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Add sshpass v2
  2016-07-27 17:50 [PATCH] Add sshpass Nicolas Goaziou
@ 2016-07-27 17:55 ` Nicolas Goaziou
  2016-07-28 21:02   ` Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Goaziou @ 2016-07-27 17:55 UTC (permalink / raw)
  To: guix-devel

[-- Attachment #1: Type: text/plain, Size: 57 bytes --]

I forgot to add myself to the Hall of Fame. Here is v2.


[-- Attachment #2: Add sshpass --]
[-- Type: text/x-diff, Size: 1810 bytes --]

From c43bddaf22e3bc81c1e42180962c36279f5bf49c Mon Sep 17 00:00:00 2001
From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
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 © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
+;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -492,3 +493,23 @@ providing shell access to the server system from the client.  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+)))
-- 
2.8.4


[-- Attachment #3: Type: text/plain, Size: 10 bytes --]


Regards,

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] Add sshpass v2
  2016-07-27 17:55 ` [PATCH] Add sshpass v2 Nicolas Goaziou
@ 2016-07-28 21:02   ` Ludovic Courtès
  0 siblings, 0 replies; 3+ messages in thread
From: Ludovic Courtès @ 2016-07-28 21:02 UTC (permalink / raw)
  To: Nicolas Goaziou; +Cc: guix-devel

Nicolas Goaziou <mail@nicolasgoaziou.fr> skribis:

> From c43bddaf22e3bc81c1e42180962c36279f5bf49c Mon Sep 17 00:00:00 2001
> From: Nicolas Goaziou <mail@nicolasgoaziou.fr>
> Date: Wed, 27 Jul 2016 19:45:02 +0200
> Subject: [PATCH] gnu: Add sshpass.
>
> * gnu/packages/ssh.scm (sshpass): New variable.

[...]

> +    (description "sshpass is a tool for non-interactivly performing
> +password authentication with SSH's so called ``interactive keyboard
> +password authentication''.")

I changed the quotes to @dfn and applied.

Thanks!

Ludo’.

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-07-28 21:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-27 17:50 [PATCH] Add sshpass Nicolas Goaziou
2016-07-27 17:55 ` [PATCH] Add sshpass v2 Nicolas Goaziou
2016-07-28 21:02   ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).