guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: ivar: Update to 1.4.2.


From: guix-commits
Subject: 03/05: gnu: ivar: Update to 1.4.2.
Date: Tue, 25 Apr 2023 10:30:14 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 1fca85cd8807b0c3a79b7f597136348a5a177944
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Apr 25 16:08:24 2023 +0200

    gnu: ivar: Update to 1.4.2.
    
    * gnu/packages/bioinformatics.scm (ivar): Update to 1.4.2.
    [arguments]: Remove -Werror flag.
---
 gnu/packages/bioinformatics.scm | 15 ++++++++++++---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 042250e46b..c69380b5c8 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17814,7 +17814,7 @@ compute communities on graphs weighted or unweighted.")
 (define-public ivar
   (package
     (name "ivar")
-    (version "1.3.1")
+    (version "1.4.2")
     (source (origin
               (method git-fetch)
               (uri (git-reference
@@ -17823,9 +17823,18 @@ compute communities on graphs weighted or unweighted.")
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "044xa0hm3b8fga64csrdx05ih8w7kwmvcdrdrhkg8j11ml4bi4xv"))))
+                "0v3rsak84ilg4iaynwpmmkj507vham5rjk2pfsmylpaqylgc69yx"))))
     (build-system gnu-build-system)
-    (arguments `(#:parallel-tests? #false)) ; not supported
+    (arguments
+     (list
+      #:parallel-tests? #false          ;not supported
+      #:phases
+      '(modify-phases %standard-phases
+         (add-after 'unpack 'patch-CXXFLAGS
+           (lambda _
+             (substitute* '("src/Makefile.am"
+                            "tests/Makefile.am")
+               (("-Werror") "")))))))
     (inputs
      (list htslib zlib))
     (native-inputs



reply via email to

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