guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch version-1.4.0 updated: gnu: texinfo: Disable tests on GNU/Hurd.


From: guix-commits
Subject: branch version-1.4.0 updated: gnu: texinfo: Disable tests on GNU/Hurd.
Date: Mon, 28 Nov 2022 06:24:53 -0500

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch version-1.4.0
in repository guix.

The following commit(s) were added to refs/heads/version-1.4.0 by this push:
     new a3264f31df gnu: texinfo: Disable tests on GNU/Hurd.
a3264f31df is described below

commit a3264f31df9774ea514e18ed8e7b6bcb44061edc
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Nov 27 23:44:45 2022 +0100

    gnu: texinfo: Disable tests on GNU/Hurd.
    
    * gnu/packages/texinfo.scm (texinfo)[arguments]: Add #:tests? argument.
---
 gnu/packages/texinfo.scm | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/texinfo.scm b/gnu/packages/texinfo.scm
index 0deec8fb3a..25498ae36e 100644
--- a/gnu/packages/texinfo.scm
+++ b/gnu/packages/texinfo.scm
@@ -40,6 +40,7 @@
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages gettext)
+  #:use-module ((gnu packages hurd) #:select (hurd-target?))
   #:use-module (gnu packages ncurses)
   #:use-module (gnu packages perl)
   #:use-module (gnu packages readline))
@@ -71,7 +72,10 @@
                     (("env -i")
                      "env "))
                   #t)))
-            %standard-phases)))
+            %standard-phases)
+
+       ;; XXX: Work around <https://issues.guix.gnu.org/59616>.
+       #:tests? ,(not (hurd-target?))))
     (inputs (list ncurses perl))
     ;; When cross-compiling, texinfo will build some of its own binaries with
     ;; the native compiler. This means ncurses is needed both in both inputs



reply via email to

[Prev in Thread] Current Thread [Next in Thread]