mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 07:16:39 +01:00
gnu: putty: Update to 0.77.
* gnu/packages/networking.scm (putty): Update to 0.77. [build-system]: Switch to CMAKE-BUILD-SYSTEM. [arguments]: Remove the old 'chdir phase. Add a custom 'check phase. [native-inputs]: Add perl.
This commit is contained in:
parent
8578b8d8b5
commit
9105c60f0d
1 changed files with 15 additions and 7 deletions
|
@ -4161,7 +4161,7 @@ (define-public netdiscover
|
||||||
(define-public putty
|
(define-public putty
|
||||||
(package
|
(package
|
||||||
(name "putty")
|
(name "putty")
|
||||||
(version "0.76")
|
(version "0.77")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -4170,18 +4170,26 @@ (define-public putty
|
||||||
(string-append "http://www.putty.be/" version
|
(string-append "http://www.putty.be/" version
|
||||||
"/putty-" version ".tar.gz")))
|
"/putty-" version ".tar.gz")))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0gvi8phabszqksj2by5jrjmshm7bpirhgavz0dqyz1xaimxdjz2l"))))
|
(base32 "1rgabc447a5aa9h16krpg3x78vh5jf4l6hkbqzr4bz9qabs7d6j1"))))
|
||||||
(build-system gnu-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases
|
`(#:phases
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-before 'configure 'chdir
|
(replace 'check
|
||||||
(lambda _
|
;; As ‘documented’ in ./Buildscr and the 0.76 Makefile.in.
|
||||||
(chdir "unix"))))))
|
(lambda* (#:key tests? #:allow-other-keys)
|
||||||
|
(when tests?
|
||||||
|
(setenv "PUTTY_TESTCRYPT" "./testcrypt")
|
||||||
|
(invoke (string-append "../putty-" ,version
|
||||||
|
"/test/cryptsuite.py"))))))))
|
||||||
(inputs
|
(inputs
|
||||||
(list gtk+))
|
(list gtk+))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list pkg-config python)) ; for tests
|
(list perl
|
||||||
|
pkg-config
|
||||||
|
|
||||||
|
;; For tests.
|
||||||
|
python))
|
||||||
(synopsis "Graphical @acronym{SSH, Secure SHell} and telnet client")
|
(synopsis "Graphical @acronym{SSH, Secure SHell} and telnet client")
|
||||||
(description "PuTTY is a graphical text terminal client. It supports
|
(description "PuTTY is a graphical text terminal client. It supports
|
||||||
@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good
|
@acronym{SSH, Secure SHell}, telnet, and raw socket connections with good
|
||||||
|
|
Loading…
Reference in a new issue