[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/07: gnu: guile-ssh: Update to 0.10.2.
From: |
Ludovic Courtès |
Subject: |
01/07: gnu: guile-ssh: Update to 0.10.2. |
Date: |
Fri, 25 Nov 2016 22:45:43 +0000 (UTC) |
civodul pushed a commit to branch master
in repository guix.
commit 6634180f9eabc70cdc5bc8e9ce2ff0f9250625bc
Author: Ludovic Courtès <address@hidden>
Date: Fri Nov 25 17:30:32 2016 +0100
gnu: guile-ssh: Update to 0.10.2.
* gnu/packages/ssh.scm (guile-ssh): Update to 0.10.2.
[home-page]: Update.
[source]: Use the 'url-fetch' method and a GitHub generated
tarball.
[arguments] <autoreconf>: Remove now unneeded 'chmod' call.
---
gnu/packages/ssh.scm | 17 ++++++++---------
1 file changed, 8 insertions(+), 9 deletions(-)
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 5fdeeb7..ea5ec81 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -204,24 +204,24 @@ Additionally, various channel-specific options can be
negotiated.")
(define-public guile-ssh
(package
(name "guile-ssh")
- (version "0.10.1")
+ (version "0.10.2")
+ (home-page "https://github.com/artyom-poptsov/guile-ssh")
(source (origin
;;
ftp://memory-heap.org/software/guile-ssh/guile-ssh-VERSION.tar.gz
;; exists, but the server appears to be too slow and unreliable.
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/artyom-poptsov/libguile-ssh.git")
- (commit (string-append "v" version))))
- (file-name (string-append name "-" version "-checkout"))
+ ;; Also, using this URL allows the GitHub updater to work.
+ (method url-fetch)
+ (uri (string-append home-page "/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32
- "0ky77kr7rnkhbq938bir61mlr8b86lfjcjjb1bxx1y1fhimsiz72"))))
+ "0pkiq3fm15pr4w1r420rrwwfmi4jz492r6l6vzjk6v73xlyfyfl3"))))
(build-system gnu-build-system)
(arguments
'(#:phases (modify-phases %standard-phases
(add-after 'unpack 'autoreconf
(lambda* (#:key inputs #:allow-other-keys)
- (chmod "doc/version.texi" #o777) ;make it writable
(zero? (system* "autoreconf" "-vfi"))))
(add-before 'build 'fix-libguile-ssh-file-name
(lambda* (#:key outputs #:allow-other-keys)
@@ -255,7 +255,6 @@ Additionally, various channel-specific options can be
negotiated.")
"Guile-SSH is a library that provides access to the SSH protocol for
programs written in GNU Guile interpreter. It is a wrapper to the underlying
libssh library.")
- (home-page "https://github.com/artyom-poptsov/libguile-ssh")
(license license:gpl3+)))
(define-public corkscrew
- branch master updated (7276b56 -> bc1ad4e), Ludovic Courtès, 2016/11/25
- 04/07: store: 'open-connection' can taken an open port., Ludovic Courtès, 2016/11/25
- 05/07: offload: Remove 'with-nar-error-handling' macro., Ludovic Courtès, 2016/11/25
- 07/07: offload: Drop 'remote-pipe'., Ludovic Courtès, 2016/11/25
- 01/07: gnu: guile-ssh: Update to 0.10.2.,
Ludovic Courtès <=
- 03/07: offload: Reuse SSH session during 'transfer-and-offload'., Ludovic Courtès, 2016/11/25
- 02/07: offload: Use Guile-SSH instead of GNU lsh., Ludovic Courtès, 2016/11/25
- 06/07: offload: Rewrite to make direct RPCs to the remote daemon., Ludovic Courtès, 2016/11/25