3
5
Fork 0
mirror of git://git.savannah.gnu.org/guix.git synced 2023-12-14 03:33:07 +01:00

gnu: guile-ssh: Update to 0.13.1.

* gnu/packages/ssh.scm (guile-ssh): Update to 0.13.1.
This commit is contained in:
Ludovic Courtès 2020-08-28 23:27:18 +02:00
parent 4ec66950f0
commit 096f442d7d
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -296,29 +296,27 @@ Additionally, various channel-specific options can be negotiated.")
(synopsis "OpenSSH client and server without X11 support"))) (synopsis "OpenSSH client and server without X11 support")))
(define-public guile-ssh (define-public guile-ssh
;; This unreleased commit fixes for <https://issues.guix.gnu.org/42740>.
(let ((commit "688d7f3797b5155257a6c2ee4ea5084b3d8cc244")
(revision "1"))
(package (package
(name "guile-ssh") (name "guile-ssh")
(version (git-version "0.13.0" revision commit)) (version "0.13.1")
(home-page "https://github.com/artyom-poptsov/guile-ssh") (home-page "https://github.com/artyom-poptsov/guile-ssh")
(source (origin (source (origin
(method git-fetch) (method git-fetch)
(uri (git-reference (uri (git-reference
(url home-page) (url home-page)
(commit commit))) (commit (string-append "v" version))))
(file-name (git-file-name name version)) (file-name (string-append name "-" version ".tar.gz"))
(sha256 (sha256
(base32 (base32
"0mbff4v8738pmcs6sdma4b9gqb0bklraj346i5g5b1mwdywhzljj")) "1xpxkvgj7wgcl450djkcrmrf957mcy2f36hfs5g6kpla1gax2d1g"))
(modules '((guix build utils))))) (modules '((guix build utils)))))
(build-system gnu-build-system) (build-system gnu-build-system)
(outputs '("out" "debug")) (outputs '("out" "debug"))
(arguments (arguments
`(#:configure-flags '("--disable-static") `(;; It makes no sense to build libguile-ssh.a.
#:phases #:configure-flags '("--disable-static")
(modify-phases %standard-phases
#:phases (modify-phases %standard-phases
(add-before 'build 'fix-libguile-ssh-file-name (add-before 'build 'fix-libguile-ssh-file-name
(lambda* (#:key outputs #:allow-other-keys) (lambda* (#:key outputs #:allow-other-keys)
;; Build and install libguile-ssh.so so that we can use ;; Build and install libguile-ssh.so so that we can use
@ -367,10 +365,11 @@ Additionally, various channel-specific options can be negotiated.")
("libssh" ,libssh) ("libssh" ,libssh)
("libgcrypt" ,libgcrypt))) ("libgcrypt" ,libgcrypt)))
(synopsis "Guile bindings to libssh") (synopsis "Guile bindings to libssh")
(description "Guile-SSH is a library that provides access to the SSH (description
protocol for programs written in GNU Guile interpreter. It is a wrapper to "Guile-SSH is a library that provides access to the SSH protocol for
the underlying libssh library.") programs written in GNU Guile interpreter. It is a wrapper to the underlying
(license license:gpl3+)))) libssh library.")
(license license:gpl3+)))
(define-public guile2.0-ssh (define-public guile2.0-ssh
(package (package