summaryrefslogtreecommitdiff
path: root/gnu/packages/ssh.scm
diff options
context:
space:
mode:
authorMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-04-26 10:00:28 +0900
committerMaxim Cournoyer <maxim.cournoyer@gmail.com>2025-04-26 20:40:02 +0900
commit9acef235e131d4cb2bcbeb2e7358fbf3af4ad9fe (patch)
tree24988279dd3b3e9c84171039f7cd46a418529525 /gnu/packages/ssh.scm
parent7ff20b9e94c429f1160bd8f0db86b153a03e4683 (diff)
gnu: libssh: Apply upstream patch and enable all tests.
* gnu/packages/patches/libssh-openssh-banner.patch: New patch. * gnu/local.mk (dist_patch_DATA): Register it. * gnu/packages/ssh.scm (libssh) [source]: Apply it. [arguments] <#:phase>: Remove disable-problematic-tests phase. Add patch-commands and prepare-for-tests phases. Change-Id: Iaead28f77b81fdf42b77f15dd37e6450537cba30
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r--gnu/packages/ssh.scm31
1 files changed, 19 insertions, 12 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm
index 0b1ebfad56e..9fa765c2108 100644
--- a/gnu/packages/ssh.scm
+++ b/gnu/packages/ssh.scm
@@ -154,7 +154,8 @@ file names.
154 (string-append all "\n" 154 (string-append all "\n"
155 "#ifndef PATH_MAX\n" 155 "#ifndef PATH_MAX\n"
156 "# define PATH_MAX 4096\n" 156 "# define PATH_MAX 4096\n"
157 "#endif\n")))))) 157 "#endif\n"))))
158 (patches (search-patches "libssh-openssh-banner.patch"))))
158 (build-system cmake-build-system) 159 (build-system cmake-build-system)
159 (outputs '("out" "debug")) 160 (outputs '("out" "debug"))
160 (arguments 161 (arguments
@@ -172,19 +173,25 @@ file names.
172 #~())) 173 #~()))
173 #:phases 174 #:phases
174 #~(modify-phases %standard-phases 175 #~(modify-phases %standard-phases
175 (add-after 'unpack 'disable-problematic-tests 176 (add-after 'unpack 'patch-commands
177 (lambda* (#:key inputs #:allow-other-keys)
178 ;; Runtime sources.
179 (substitute* '("src/config.c"
180 "src/socket.c")
181 (("\"/bin/sh\"")
182 (format #f "~s" (search-input-file inputs "/bin/sh"))))
183 ;; Test sources.
184 (substitute* '("tests/server/test_server/default_cb.c")
185 (("\"/bin/sh\"")
186 (format #f "~s" (which "sh"))))))
187 (add-before 'check 'prepare-for-tests
188 ;; A few test rely on the assumption that HOME == user's pw_dir,
189 ;; which is not satisfied in Guix, where `pw_dir' is '/' while
190 ;; HOME is '/homeless-shelter'.
176 (lambda _ 191 (lambda _
177 ;; XXX: There is no finer-grain control on skipping tests using 192 (setenv "HOME" "/"))))))
178 ;; cmocka, short of patching sources, which isn't trivial with
179 ;; substitute*/sed.
180 (substitute* "tests/unittests/CMakeLists.txt"
181 ;; Some torture tests fail due to assuming the user directory
182 ;; (from the passwd database) matches HOME, and other fail for
183 ;; unknown reasons (see:
184 ;; https://gitlab.com/libssh/libssh-mirror/-/issues/302).
185 (("^ torture_(config|misc|options).*$") "")))))))
186 (native-inputs (list cmocka)) 193 (native-inputs (list cmocka))
187 (inputs (list zlib libgcrypt mit-krb5)) 194 (inputs (list bash-minimal mit-krb5 libgcrypt zlib))
188 (synopsis "SSH client library") 195 (synopsis "SSH client library")
189 (description 196 (description
190 "libssh is a C library implementing the SSHv2 and SSHv1 protocol for client 197 "libssh is a C library implementing the SSHv2 and SSHv1 protocol for client