[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
25/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd.
From: |
guix-commits |
Subject: |
25/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd. |
Date: |
Tue, 18 Jul 2023 10:57:02 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit 6d5f627b409a5d4dc7ddc19cd22957685eb2d07f
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 6 20:39:50 2023 +0200
gnu: libgcrypt: Skip hanging benchmark tests on the Hurd.
* gnu/packages/gnupg.scm (libgcrypt)[arguments]: When building natively on
the
Hurd, add phase 'setenv' to set "GCRYPT_NO_BENCHMARKS".
---
gnu/packages/gnupg.scm | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnupg.scm b/gnu/packages/gnupg.scm
index 4a9a8fbb57..8d92c60bf2 100644
--- a/gnu/packages/gnupg.scm
+++ b/gnu/packages/gnupg.scm
@@ -204,7 +204,15 @@ Daemon and possibly more in the future.")
,@(if (%current-target-system)
;; When cross-compiling, _gcry_mpih_lshift etc are
undefined.
`("--disable-asm")
- '()))))
+ '()))
+ ,@(if (system-hurd?)
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'configure 'setenv
+ (lambda _
+ (setenv "GCRYPT_NO_BENCHMARKS" "t")))))
+ '())))
(outputs '("out" "debug"))
(home-page "https://gnupg.org/")
(synopsis "Cryptographic function library")
- branch hurd-team created (now cb0ba5e9a0), guix-commits, 2023/07/18
- 10/67: gnu: guile: Skip hanging and failing pipe tests on the Hurd., guix-commits, 2023/07/18
- 12/67: gnu: grep: Update hanging and failing tests on the Hurd., guix-commits, 2023/07/18
- 19/67: gnu: python: Support native build on the Hurd., guix-commits, 2023/07/18
- 25/67: gnu: libgcrypt: Skip hanging benchmark tests on the Hurd.,
guix-commits <=
- 24/67: gnu: libgpg-error: Skip failing test on the Hurd., guix-commits, 2023/07/18
- 33/67: gnu: libpaper: Disable tests for the Hurd., guix-commits, 2023/07/18
- 31/67: gnu: e2fsprogs: Skip failing tests on the Hurd., guix-commits, 2023/07/18
- 37/67: gnu: tcsh: Skip substitution tests on the Hurd., guix-commits, 2023/07/18
- 61/67: gnu: guix: Update to 1.4.0-8.0a3070bbe9., guix-commits, 2023/07/18
- 45/67: gnu: glib: Disable tests for the Hurd., guix-commits, 2023/07/18
- 17/67: gnu: m4: Skip gnulib stack-overflow tests for the Hurd., guix-commits, 2023/07/18
- 01/67: gnu: commencement: Add autoconf-boot0., guix-commits, 2023/07/18
- 27/67: gnu: curl: Skip failing test on the Hurd., guix-commits, 2023/07/18
- 30/67: gnu: procps: Skip linux-version test for the Hurd., guix-commits, 2023/07/18