guix-commits
[Top][All Lists]
Advanced

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

04/10: gnu: xtl: Update to 0.7.4.


From: guix-commits
Subject: 04/10: gnu: xtl: Update to 0.7.4.
Date: Sat, 19 Feb 2022 04:49:45 -0500 (EST)

mbakke pushed a commit to branch master
in repository guix.

commit 93cc9fb1408dd76ef7c38cbc011cb483880bcf5d
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Feb 18 21:37:05 2022 +0100

    gnu: xtl: Update to 0.7.4.
    
    * gnu/packages/cpp.scm (xtl): Update to 0.7.4.
    [native-inputs]: Add DOCTEST.
    [arguments]: Remove trailing #t.
---
 gnu/packages/cpp.scm | 11 +++++------
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/cpp.scm b/gnu/packages/cpp.scm
index 86138531c0..07a0898a59 100644
--- a/gnu/packages/cpp.scm
+++ b/gnu/packages/cpp.scm
@@ -566,7 +566,7 @@ intuitive syntax and trivial integration.")
 (define-public xtl
   (package
     (name "xtl")
-    (version "0.6.23")
+    (version "0.7.4")
     (source (origin
               (method git-fetch)
               (uri
@@ -575,20 +575,19 @@ intuitive syntax and trivial integration.")
                 (commit version)))
               (sha256
                (base32
-                "1kd9zl4h6nrsg29hq13vwp4zhfj8sa90vj40726lpw6vxz48k4di"))
+                "134pgvmf9cx5dxs0m0m3qhp3m3r1gl86ic3xax21zc4sdj8sdq46"))
               (file-name (git-file-name name version))))
     (native-inputs
-     (list googletest json-modern-cxx))
+     (list doctest googletest json-modern-cxx))
     (arguments
-     `(#:configure-flags
+     '(#:configure-flags
        '("-DBUILD_TESTS=ON")
        #:phases
        (modify-phases %standard-phases
          (replace 'check
            (lambda* _
              (with-directory-excursion "test"
-               (invoke "./test_xtl")
-               #t))))))
+               (invoke "./test_xtl")))))))
     (home-page "https://github.com/QuantStack/xtl";)
     (build-system cmake-build-system)
     (synopsis "C++ template library providing some basic tools")



reply via email to

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