diff options
Diffstat (limited to 'gnu/packages/ssh.scm')
-rw-r--r-- | gnu/packages/ssh.scm | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/gnu/packages/ssh.scm b/gnu/packages/ssh.scm index be9891a7ee..245237fc0d 100644 --- a/gnu/packages/ssh.scm +++ b/gnu/packages/ssh.scm @@ -2,7 +2,7 @@ ;;; Copyright © 2012-2023, 2025 Ludovic Courtès <ludo@gnu.org> ;;; Copyright © 2013, 2014 Andreas Enge <andreas@enge.fr> ;;; Copyright © 2014, 2015, 2016 Mark H Weaver <mhw@netris.org> -;;; Copyright © 2015, 2016, 2018-2022, 2024 Efraim Flashner <efraim@flashner.co.il> +;;; Copyright © 2015, 2016, 2018-2022, 2024, 2025 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2016, 2019 Leo Famulari <leo@famulari.name> ;;; Copyright © 2016, 2021, 2023 Nicolas Goaziou <mail@nicolasgoaziou.fr> ;;; Copyright © 2016 Christine Lemmer-Webber <cwebber@dustycloud.org> @@ -15,7 +15,7 @@ ;;; Copyright © 2019, 2020 Mathieu Othacehe <m.othacehe@gmail.com> ;;; Copyright © 2020, 2023, 2024 Janneke Nieuwenhuizen <janneke@gnu.org> ;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com> -;;; Copyright © 2020, 2021, 2022, 2025 Maxim Cournoyer <maxim.cournoyer@gmail.com> +;;; Copyright © 2020, 2021, 2022, 2025 Maxim Cournoyer <maxim@guixotic.coop> ;;; Copyright © 2021 Brice Waegeneire <brice@waegenei.re> ;;; Copyright © 2023 Simon Streit <simon@netpanic.org> ;;; Copyright © 2024 Zheng Junjie <873216071@qq.com> @@ -137,7 +137,7 @@ file names. (define-public libssh (package (name "libssh") - (version "0.11.2") + (version "0.11.3") (source (origin (method url-fetch) (uri (string-append "https://www.libssh.org/files/" @@ -145,7 +145,7 @@ file names. "/libssh-" version ".tar.xz")) (sha256 (base32 - "1rq4dnmaz7zi0y7myvqi5xgdy9mwl80lanhfmw5iyq2viz0rylk9")))) + "1hr5c5n0skagpvx2l4bfk2sqk9nvljjphkln27sw6kh9pdhi72kx")))) (build-system cmake-build-system) (outputs '("out" "debug")) (arguments @@ -175,6 +175,13 @@ file names. (lambda _ (substitute* "tests/unittests/CMakeLists.txt" (("torture_config_match_localnetwork") ""))))) + #~()) + #$@(if (target-ppc32?) + #~((add-after 'unpack 'skip-torture-test + ;; This test times out after 1500 seconds. + (lambda _ + (substitute* "tests/unittests/CMakeLists.txt" + (("torture_threads_pki_rsa") ""))))) #~())))) (native-inputs (list cmocka)) (inputs (list bash-minimal mit-krb5 openssl zlib)) |