guix-commits
[Top][All Lists]
Advanced

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

02/06: gnu: gama: Update to 2.30.


From: guix-commits
Subject: 02/06: gnu: gama: Update to 2.30.
Date: Wed, 17 Apr 2024 12:56:56 -0400 (EDT)

cbaines pushed a commit to branch master
in repository guix.

commit 46e54988057ece26b81cad20d33f39d383287e18
Author: Andy Tai <atai@atai.org>
AuthorDate: Tue Apr 16 00:11:33 2024 -0700

    gnu: gama: Update to 2.30.
    
    * gnu/packages/gps.scm (gama): Update to 2.30.
    [arguments]<configure-flags>: Add option to force not to use bundled copy of
    expat.
    
    Change-Id: I41f3f037b60b3dd89c8ccb990a800edb041cbc62
    Signed-off-by: Christopher Baines <mail@cbaines.net>
---
 gnu/packages/gps.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/gps.scm b/gnu/packages/gps.scm
index 75197ad23c..09a419d7e9 100644
--- a/gnu/packages/gps.scm
+++ b/gnu/packages/gps.scm
@@ -27,6 +27,7 @@
 (define-module (gnu packages gps)
   #:use-module (guix packages)
   #:use-module (guix download)
+  #:use-module (guix gexp)
   #:use-module (guix git-download)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system scons)
@@ -141,7 +142,7 @@ between two other data points.")
 (define-public gama
   (package
     (name "gama")
-    (version "2.29")
+    (version "2.30")
     (source
       (origin
         (method url-fetch)
@@ -149,14 +150,19 @@ between two other data points.")
                             version ".tar.gz"))
         (sha256
          (base32
-          "04dlh1pdaiq059ssrxa4yn24iqgjrzy2mq7s9n1pgrzlzz3a63y0"))
+          "0yph6q7a0dy2r2vsrkjg26q8v988pcvnaay5lk6q7k06plpr2x1m"))
         (modules '((guix build utils)))
         (snippet
          '(begin
             (delete-file-recursively "lib/expat")
             (for-each delete-file (find-files "doc/fig" "\\.pdf$"))))))
     (build-system gnu-build-system)
-    (arguments '(#:parallel-tests? #f)) ; race condition
+    (arguments
+     (list
+      #:configure-flags #~(list
+                           ;; force not to use of bundled copy of expat
+                           "--enable-expat_1_1=no")
+      #:parallel-tests? #f)) ; race condition
     (native-inputs
      (list libxml2 yaml-cpp))
     (inputs



reply via email to

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