guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: guile-git: Skip test on powerpc-linux.


From: guix-commits
Subject: branch master updated: gnu: guile-git: Skip test on powerpc-linux.
Date: Thu, 17 Mar 2022 14:02:42 -0400

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

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 276a767e2c gnu: guile-git: Skip test on powerpc-linux.
276a767e2c is described below

commit 276a767e2cc215e3a3abc28b3afe5c2939551827
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Thu Mar 17 20:01:04 2022 +0200

    gnu: guile-git: Skip test on powerpc-linux.
    
    * gnu/packages/guile.scm (guile-git)[arguments]: When building on
    powerpc-linux add a phase to skip one test.
---
 gnu/packages/guile.scm | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/guile.scm b/gnu/packages/guile.scm
index 328d4506c2..79680a2c29 100644
--- a/gnu/packages/guile.scm
+++ b/gnu/packages/guile.scm
@@ -820,7 +820,16 @@ type system, elevating types to first-class status.")
                         "guile-git-adjust-for-libgit2-1.2.0.patch"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:make-flags '("GUILE_AUTO_COMPILE=0")))     ; to prevent guild warnings
+     `(#:make-flags '("GUILE_AUTO_COMPILE=0")       ; to prevent guild warnings
+       ;; https://gitlab.com/guile-git/guile-git/-/issues/20
+       ,@(if (target-ppc32?)
+           `(#:phases
+             (modify-phases %standard-phases
+               (add-after 'unpack 'skip-failing-test
+                 (lambda _
+                   (substitute* "Makefile.am"
+                     ((".*tests/blob\\.scm.*") ""))))))
+           '())))
     (native-inputs
      (list pkg-config autoconf automake texinfo guile-3.0 
guile-bytestructures))
     (inputs



reply via email to

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