unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* half-package of autossh
@ 2016-02-09  0:05 Christopher Allan Webber
  2016-02-09  5:16 ` Eric Bavier
  2016-10-20 22:39 ` Christopher Allan Webber
  0 siblings, 2 replies; 5+ messages in thread
From: Christopher Allan Webber @ 2016-02-09  0:05 UTC (permalink / raw)
  To: Guix-devel

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

Hello all!  I got autossh packaged, at least in theory.  I use this all
the time when on Debian.

And yet, though the binary appears on my profile, it seems to do nothing
in Guix.  I'm not sure why this is.

I should be able to do:

  autossh fencepost.gnu.org

and it should work, but instead I just see the help text printed.

Any ideas?  Or if anyone wanting to finish a mysteriously busted
package, have at it.


[-- Attachment #2: 0001-gnu-Add-autossh.patch --]
[-- Type: text/x-patch, Size: 2256 bytes --]

From 0cec8160220239fa6945a2f7823cf2b14512cf1e Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <cwebber@dustycloud.org>
Date: Mon, 8 Feb 2016 16:01:49 -0800
Subject: [PATCH] gnu: Add autossh.

* gnu/packages/ssh.scm (autossh): New variable.
---
 gnu/packages/ssh.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index d4bf29c..602a443 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -2,6 +2,7 @@
 ;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr>
 ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org>
 ;;; Copyright © 2015 Efraim Flashner <efraim@flashner.co.il>
+;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -349,3 +350,30 @@ client.  It runs on a variety of POSIX-based platforms.  Dropbear is
 particularly useful for embedded systems, such as wireless routers.")
     (home-page "https://matt.ucc.asn.au/dropbear/dropbear.html")
     (license (license:x11-style "" "See file LICENSE."))))
+
+(define-public autossh
+  (package
+    (name "autossh")
+    (version "1.4e")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://www.harding.motd.ca/autossh/autossh-"
+             version ".tgz"))
+       (sha256
+        (base32 "0mlicw28vq2jxa0jf0dys5ja75v0fxpjavlq9dpif6bnknji13ly"))))
+    (build-system gnu-build-system)
+    (arguments `(#:tests? #f)) ; There is no "make check" or anything similar
+    (inputs `(("openssh" ,openssh)))
+    (synopsis "Automatically restart SSH sessions and tunnels")
+    (description "autossh is a program to start a copy of ssh and 
+monitor it, restarting it as necessary should it die or stop 
+passing traffic. The idea is from rstunnel (Reliable SSH Tunnel), 
+but implemented in C.")
+    (home-page "http://www.harding.motd.ca/autossh/")
+    (license
+     ;; Why point to a source file?  Well, all the individual files have a
+     ;; copy of this license in their headers, but there's no seprate file
+     ;; with that information.
+     (license:non-copyleft "file://autossh.c"))))
-- 
2.6.3


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

* Re: half-package of autossh
  2016-02-09  0:05 half-package of autossh Christopher Allan Webber
@ 2016-02-09  5:16 ` Eric Bavier
  2016-10-20 22:39 ` Christopher Allan Webber
  1 sibling, 0 replies; 5+ messages in thread
From: Eric Bavier @ 2016-02-09  5:16 UTC (permalink / raw)
  To: Christopher Allan Webber; +Cc: Guix-devel

On Mon, 08 Feb 2016 16:05:19 -0800
Christopher Allan Webber <cwebber@dustycloud.org> wrote:

> Hello all!  I got autossh packaged, at least in theory.  I use this all
> the time when on Debian.
> 
> And yet, though the binary appears on my profile, it seems to do nothing
> in Guix.  I'm not sure why this is.
> 
> I should be able to do:
> 
>   autossh fencepost.gnu.org
> 
> and it should work, but instead I just see the help text printed.
> 
> Any ideas?  Or if anyone wanting to finish a mysteriously busted
> package, have at it.
> 

My guess is this snippet in autossh.c:

> #ifndef SSH_PATH
> #  define SSH_PATH "/usr/bin/ssh"
> #endif

Maybe just need to (string-append "-DSSH_PATH=" (assoc-ref
%build-inputs "openssh")) in #:make-flags?

`~Eric

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

* Re: half-package of autossh
  2016-02-09  0:05 half-package of autossh Christopher Allan Webber
  2016-02-09  5:16 ` Eric Bavier
@ 2016-10-20 22:39 ` Christopher Allan Webber
  2016-10-26 11:48   ` Ludovic Courtès
  1 sibling, 1 reply; 5+ messages in thread
From: Christopher Allan Webber @ 2016-10-20 22:39 UTC (permalink / raw)
  To: Guix-devel

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

Christopher Allan Webber writes:

> Hello all!  I got autossh packaged, at least in theory.  I use this all
> the time when on Debian.
>
> And yet, though the binary appears on my profile, it seems to do nothing
> in Guix.  I'm not sure why this is.
>
> I should be able to do:
>
>   autossh fencepost.gnu.org
>
> and it should work, but instead I just see the help text printed.
>
> Any ideas?  Or if anyone wanting to finish a mysteriously busted
> package, have at it.

Well, guess what!  It turns out my patch was just fine.  It turns out
what you need to do is:

  autossh -M 0 fencepost.gnu.org

It appears Debian must have applied a patch (I haven't verified this)
that makes "-M 0" the default.  Otherwise this works just fine.

I've actually been using it for a while but forgot to contribute it.

Here's the updated patch!  If people are ok with it, I'd like to push
it.


[-- Attachment #2: 0001-gnu-Add-autossh.patch --]
[-- Type: text/x-patch, Size: 2140 bytes --]

From c718ca3986750c255a58b87d9e6805e56c1ffc72 Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <cwebber@dustycloud.org>
Date: Mon, 8 Feb 2016 16:01:49 -0800
Subject: [PATCH] gnu: Add autossh.

* gnu/packages/ssh.scm (autossh): New variable.
---
 gnu/packages/ssh.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index af5aae1..9c76f48 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -5,6 +5,7 @@
 ;;; Copyright © 2015, 2016 Efraim Flashner <efraim@flashner.co.il>
 ;;; Copyright © 2016 Leo Famulari <leo@famulari.name>
 ;;; Copyright © 2016 Nicolas Goaziou <mail@nicolasgoaziou.fr>
+;;; Copyright © 2016 Christopher Allan Webber <cwebber@dustycloud.org>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -506,3 +507,30 @@ manipulating key files.")
 authentication with SSH's so-called @dfn{interactive keyboard password
 authentication}.")
     (license license:gpl2+)))
+
+(define-public autossh
+  (package
+    (name "autossh")
+    (version "1.4e")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "http://www.harding.motd.ca/autossh/autossh-"
+             version ".tgz"))
+       (sha256
+        (base32 "0mlicw28vq2jxa0jf0dys5ja75v0fxpjavlq9dpif6bnknji13ly"))))
+    (build-system gnu-build-system)
+    (arguments `(#:tests? #f)) ; There is no "make check" or anything similar
+    (inputs `(("openssh" ,openssh)))
+    (synopsis "Automatically restart SSH sessions and tunnels")
+    (description "autossh is a program to start a copy of ssh and 
+monitor it, restarting it as necessary should it die or stop 
+passing traffic. The idea is from rstunnel (Reliable SSH Tunnel), 
+but implemented in C.")
+    (home-page "http://www.harding.motd.ca/autossh/")
+    (license
+     ;; Why point to a source file?  Well, all the individual files have a
+     ;; copy of this license in their headers, but there's no seprate file
+     ;; with that information.
+     (license:non-copyleft "file://autossh.c"))))
-- 
2.10.1


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

* Re: half-package of autossh
  2016-10-20 22:39 ` Christopher Allan Webber
@ 2016-10-26 11:48   ` Ludovic Courtès
  2016-10-26 16:27     ` Christopher Allan Webber
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2016-10-26 11:48 UTC (permalink / raw)
  To: Christopher Allan Webber; +Cc: Guix-devel

Christopher Allan Webber <cwebber@dustycloud.org> skribis:

> From c718ca3986750c255a58b87d9e6805e56c1ffc72 Mon Sep 17 00:00:00 2001
> From: Christopher Allan Webber <cwebber@dustycloud.org>
> Date: Mon, 8 Feb 2016 16:01:49 -0800
> Subject: [PATCH] gnu: Add autossh.
>
> * gnu/packages/ssh.scm (autossh): New variable.

[...]

> +    (synopsis "Automatically restart SSH sessions and tunnels")
> +    (description "autossh is a program to start a copy of ssh and 

@command{ssh}

> +monitor it, restarting it as necessary should it die or stop 
> +passing traffic. The idea is from rstunnel (Reliable SSH Tunnel), 
> +but implemented in C.")

Maybe remove the last sentence?

> +     ;; copy of this license in their headers, but there's no seprate file

“separate”

Go for it!

Thanks!

Ludo’.

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

* Re: half-package of autossh
  2016-10-26 11:48   ` Ludovic Courtès
@ 2016-10-26 16:27     ` Christopher Allan Webber
  0 siblings, 0 replies; 5+ messages in thread
From: Christopher Allan Webber @ 2016-10-26 16:27 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: Guix-devel

Ludovic Courtès writes:

> Christopher Allan Webber <cwebber@dustycloud.org> skribis:
>
>> From c718ca3986750c255a58b87d9e6805e56c1ffc72 Mon Sep 17 00:00:00 2001
>> From: Christopher Allan Webber <cwebber@dustycloud.org>
>> Date: Mon, 8 Feb 2016 16:01:49 -0800
>> Subject: [PATCH] gnu: Add autossh.
>>
>> * gnu/packages/ssh.scm (autossh): New variable.
>
> [...]
>
>> +    (synopsis "Automatically restart SSH sessions and tunnels")
>> +    (description "autossh is a program to start a copy of ssh and 
>
> @command{ssh}
>
>> +monitor it, restarting it as necessary should it die or stop 
>> +passing traffic. The idea is from rstunnel (Reliable SSH Tunnel), 
>> +but implemented in C.")
>
> Maybe remove the last sentence?
>
>> +     ;; copy of this license in their headers, but there's no seprate file
>
> “separate”
>
> Go for it!
>
> Thanks!
>
> Ludo’.

Pushed with those changes, thanks!

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

end of thread, other threads:[~2016-10-26 16:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-09  0:05 half-package of autossh Christopher Allan Webber
2016-02-09  5:16 ` Eric Bavier
2016-10-20 22:39 ` Christopher Allan Webber
2016-10-26 11:48   ` Ludovic Courtès
2016-10-26 16:27     ` Christopher Allan Webber

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).