emacs-bug-tracker
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[debbugs-tracker] bug#27575: closed (Subject: [PATCH] gnu: Add et.)


From: GNU bug Tracking System
Subject: [debbugs-tracker] bug#27575: closed (Subject: [PATCH] gnu: Add et.)
Date: Mon, 10 Jul 2017 10:25:02 +0000

Your message dated Mon, 10 Jul 2017 12:24:47 +0200
with message-id <address@hidden>
and subject line Re: [bug#27575] Subject: [PATCH] gnu: Add et.
has caused the debbugs.gnu.org bug report #27575,
regarding Subject: [PATCH] gnu: Add et.
to be marked as done.

(If you believe you have received this mail in error, please contact
address@hidden)


-- 
27575: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=27575
GNU Bug Tracking System
Contact address@hidden with problems
--- Begin Message --- Subject: Subject: [PATCH] gnu: Add et. Date: Tue, 04 Jul 2017 22:04:09 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/24.5 (gnu/linux)
>From 75b605b35bc938485ceabd6617d7c3f2c202791b Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <address@hidden>
Date: Tue, 4 Jul 2017 22:02:48 +0200
Subject: [PATCH] gnu: Add et.

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

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index d03686c..d7fd124 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -7,6 +7,7 @@
 ;;; Copyright © 2016 Nicolas Goaziou <address@hidden>
 ;;; Copyright © 2016 Christopher Allan Webber <address@hidden>
 ;;; Copyright © 2017 Tobias Geerinckx-Rice <address@hidden>
+;;; Copyright © 2017 Stefan Reichör <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -29,12 +30,14 @@
   #:use-module (gnu packages base)
   #:autoload   (gnu packages boost) (boost)
   #:use-module (gnu packages compression)
+  #:use-module (gnu packages crypto)
   #:use-module (gnu packages elf)
   #:use-module (gnu packages gnupg)
   #:use-module (gnu packages gperf)
   #:use-module (gnu packages groff)
   #:use-module (gnu packages guile)
   #:use-module (gnu packages linux)
+  #:use-module (gnu packages logging)
   #:use-module (gnu packages m4)
   #:use-module (gnu packages multiprecision)
   #:use-module (gnu packages ncurses)
@@ -42,6 +45,7 @@
   #:use-module (gnu packages kerberos)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages pkg-config)
+  #:use-module (gnu packages popt)
   #:autoload   (gnu packages protobuf) (protobuf)
   #:use-module (gnu packages readline)
   #:use-module (gnu packages texinfo)
@@ -381,6 +385,34 @@ keystrokes.  Mosh is a replacement for SSH.  It's more 
robust and responsive,
 especially over Wi-Fi, cellular, and long-distance links.")
     (license license:gpl3+)))
 
+(define-public et
+  (package
+    (name "et")
+    (version "3.1.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/MisterTea/EternalTCP/archive/et-v";
+             version ".tar.gz"))
+       (sha256
+        (base32 "1n2w2kqbshdmbb0gz4yizyw9gqfls6qm2dnwx1d9c2hz7hmi7521"))))
+    (build-system cmake-build-system)
+    (arguments `(#:tests? #f))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs `(("glog" ,glog)
+              ("gflags" ,gflags)
+              ("libsodium" ,libsodium)
+              ("protobuf" ,protobuf)))
+    (synopsis "Remote shell that automatically reconnects without interrupting
+the session.")
+    (description "Eternal Terminal (ET) is a remote shell that automatically
+reconnects without interrupting the session. Unlike the normal SSH session, ET
+session will survive even after the network outages or IP changes.")
+    (home-page "https://mistertea.github.io/EternalTCP/";)
+    (license license:asl2.0)))
+
 (define-public dropbear
   (package
     (name "dropbear")
-- 
2.7.4




--- End Message ---
--- Begin Message --- Subject: Re: [bug#27575] Subject: [PATCH] gnu: Add et. Date: Mon, 10 Jul 2017 12:24:47 +0200 User-agent: Gnus/5.13 (Gnus v5.13) Emacs/25.2 (gnu/linux)
Hi Stefan,

Stefan Reichör <address@hidden> skribis:

> From 75b605b35bc938485ceabd6617d7c3f2c202791b Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Stefan=20Reich=C3=B6r?= <address@hidden>
> Date: Tue, 4 Jul 2017 22:02:48 +0200
> Subject: [PATCH] gnu: Add et.
>
> * gnu/packages/ssh.scm (et): New variable.

Applied with this change:

diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index d7fd124fd..c11976a12 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -405,11 +405,12 @@ especially over Wi-Fi, cellular, and long-distance 
links.")
               ("gflags" ,gflags)
               ("libsodium" ,libsodium)
               ("protobuf" ,protobuf)))
-    (synopsis "Remote shell that automatically reconnects without interrupting
-the session.")
-    (description "Eternal Terminal (ET) is a remote shell that automatically
-reconnects without interrupting the session. Unlike the normal SSH session, ET
-session will survive even after the network outages or IP changes.")
+    (synopsis "Remote shell that automatically reconnects")
+    (description
+     "Eternal Terminal (ET) is a remote shell that automatically reconnects
+without interrupting the session.  Unlike SSH sessions, ET sessions will
+survive even after the network outages or IP changes.  ET uses a custom
+protocol over TCP, not the SSH protocol.")
     (home-page "https://mistertea.github.io/EternalTCP/";)
     (license license:asl2.0)))
 
Thank you,
Ludo’.

--- End Message ---

reply via email to

[Prev in Thread] Current Thread [Next in Thread]