guix-commits
[Top][All Lists]
Advanced

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

05/08: gnu: spdlog: Update to 1.12.0.


From: guix-commits
Subject: 05/08: gnu: spdlog: Update to 1.12.0.
Date: Sun, 17 Sep 2023 09:37:21 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit c69dc48da684c338fb8fc991a5d95a238df7573a
Author: Greg Hogan <code@greghogan.com>
AuthorDate: Tue Jul 18 17:46:16 2023 +0000

    gnu: spdlog: Update to 1.12.0.
    
    * gnu/packages/logging.scm (spdlog): Update to 1.12.0.
    [native-inputs]: Add catch2-3.3.
    
    Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
 gnu/packages/logging.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index dbaf9fa7aa..c204a013b4 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -37,6 +37,7 @@
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages c)
+  #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
   #:use-module (gnu packages curl)
   #:use-module (gnu packages cyrus-sasl)
@@ -212,7 +213,7 @@ output in multiple windows in a terminal.")
 (define-public spdlog
   (package
     (name "spdlog")
-    (version "1.11.0")
+    (version "1.12.0")
     (source
      (origin
        (method git-fetch)
@@ -222,7 +223,7 @@ output in multiple windows in a terminal.")
        (file-name (git-file-name name version))
        (patches (search-patches "spdlog-fix-tests.patch"))
        (sha256
-        (base32 "0i3a1cqrg1sz0w50g7zz9x73rf838igqri12q8ijh4rzpq0qq3ch"))))
+        (base32 "0yyncv6wjs5rqm76rkqyxpfbsingk1dq5zfcqhy1a7fpw8xdl53k"))))
     (build-system cmake-build-system)
     ;; TODO run benchmark. Currently not possible, as adding
     ;; (gnu packages benchmark) forms a dependency cycle
@@ -231,6 +232,7 @@ output in multiple windows in a terminal.")
        (list "-DSPDLOG_BUILD_BENCH=OFF"
              "-DSPDLOG_BUILD_SHARED=ON"
              "-DSPDLOG_BUILD_TESTS=ON")))
+    (native-inputs (list catch2-3.3))
     (home-page "https://github.com/gabime/spdlog";)
     (synopsis "Fast C++ logging library")
     (description "Spdlog is a very fast header-only/compiled C++ logging



reply via email to

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