[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: libssh: Update to 0.9.0.
From: |
guix-commits |
Subject: |
01/05: gnu: libssh: Update to 0.9.0. |
Date: |
Sat, 28 Sep 2019 16:56:51 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 44941fd7dbc77a7bf84a9be63a309eca3ffdc1c2
Author: Ludovic Courtès <address@hidden>
Date: Sat Sep 28 17:20:51 2019 +0200
gnu: libssh: Update to 0.9.0.
* gnu/packages/ssh.scm (libssh): Update to 0.9.0. Of particular
interest for robust offloading is libssh commit
e4e51ccc1340e313c203842d0180a1c4e33c95cc, which fixes a bug whereby,
instead of honoring the per-session timeout, 'ssh_channel_read_timeout'
would end up passing an infinite timeout to 'poll':
see <https://bugs.libssh.org/T33>
---
gnu/packages/ssh.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 010ed40..f7eee35 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -70,7 +70,7 @@
(define-public libssh
(package
(name "libssh")
- (version "0.8.7")
+ (version "0.9.0")
(source (origin
(method git-fetch)
(uri (git-reference
@@ -78,7 +78,7 @@
(commit (string-append "libssh-" version))))
(sha256
(base32
- "1iqik1ba0g008k1mb1n85iih1azi7giy0c485jnlmsrjxik4q3j2"))
+ "0hxws8vl56cbjwchmj0x78ywv2b8spv6h90sgma1vj1y9dybgs7s"))
(file-name (git-file-name name version))))
(build-system cmake-build-system)
(outputs '("out" "debug"))