guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: open-adventure: Update to 1.11.


From: guix-commits
Subject: 01/02: gnu: open-adventure: Update to 1.11.
Date: Mon, 10 Oct 2022 18:19:24 -0400 (EDT)

ngz pushed a commit to branch master
in repository guix.

commit 8fc86d1f6f220691191091fc21de935699ddd66b
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Oct 11 00:10:49 2022 +0200

    gnu: open-adventure: Update to 1.11.
    
    * gnu/packages/games.scm (open-adventure): Update to 1.11.
    [arguments]<#:parallel-tests>: Set to #F.
    <#:phases>: Fix ECHO filename in an additional file.
---
 gnu/packages/games.scm | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/games.scm b/gnu/packages/games.scm
index 246472c699..e5576fbb1e 100644
--- a/gnu/packages/games.scm
+++ b/gnu/packages/games.scm
@@ -6940,7 +6940,7 @@ at their peak of economic growth and military prowess.
 (define-public open-adventure
   (package
     (name "open-adventure")
-    (version "1.9")
+    (version "1.11")
     (source
      (origin
        (method git-fetch)
@@ -6949,16 +6949,17 @@ at their peak of economic growth and military prowess.
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "123svzy7xczdklx6plbafp22yv9bcvwfibjk0jv2c9i22dfsr07f"))))
+        (base32 "1n0fzrdlbc6px88qr574ww2q85xk43bv09jpmsskzv1l2cncwm37"))))
     (build-system gnu-build-system)
     (arguments
      `(#:make-flags (list "CC=gcc")
+       #:parallel-tests? #f             ;some tests fail non-deterministically
        #:phases
        (modify-phases %standard-phases
          (delete 'configure)            ;no configure script
          (add-before 'build 'use-echo
            (lambda _
-             (substitute* "tests/Makefile"
+             (substitute* (list "tests/Makefile" "tests/tapview")
                (("/bin/echo") (which "echo")))
              #t))
          (add-after 'build 'build-manpage



reply via email to

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