diff options
author | Greg Hogan <code@greghogan.com> | 2025-03-07 14:37:19 +0000 |
---|---|---|
committer | Greg Hogan <code@greghogan.com> | 2025-03-21 19:35:16 +0000 |
commit | 6fbb2f11d2ac08d816b5f087103698319f806430 (patch) | |
tree | 044a80a4957065883028da6fb025b9623e4e72fa /gnu/packages/logging.scm | |
parent | b7f8c13503e48943e4d7684e19f1817d74be15de (diff) |
gnu: spdlog: Update to 1.15.1.
* gnu/packages/logging.scm (spdlog): Update to 1.15.1.
(spdlog-1.13): New variable.
* gnu/packages/messaging.scm (mtxclient, nheko),
* gnu/packages/radio.scm (gr-satellites),
* gnu/packages/upnp.scm (gerbera),
* gnu/packages/wm.scm (waybar)
[inputs]: Replace spdlog with spdlog-1.13.
Change-Id: I2458a03792b967fcf6761aa31b302d041a0abe3e
Diffstat (limited to 'gnu/packages/logging.scm')
-rw-r--r-- | gnu/packages/logging.scm | 17 |
1 files changed, 15 insertions, 2 deletions
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm index 9cc28279d7..b5431566fe 100644 --- a/gnu/packages/logging.scm +++ b/gnu/packages/logging.scm @@ -239,7 +239,7 @@ output in multiple windows in a terminal.") (define-public spdlog (package (name "spdlog") - (version "1.13.0") + (version "1.15.1") (source (origin (method git-fetch) @@ -248,7 +248,7 @@ output in multiple windows in a terminal.") (commit (string-append "v" version)))) (file-name (git-file-name name version)) (sha256 - (base32 "0zgdmdgnp2y36jrlk85d4fiyjkjd6anly8pambyc3f3v6sg02zyy")))) + (base32 "1drpbn7b6iikypdlsvzpcjwyls0rqzl7sz7f7xjbn3d7ic55a1p1")))) (build-system cmake-build-system) ;; TODO run benchmark. Currently not possible, as adding ;; (gnu packages benchmark) forms a dependency cycle @@ -268,6 +268,19 @@ library.") ;; "include/spdlog/fmt/bundled" is under BSD 2 clause license. (license (list license:expat license:bsd-2)))) +(define-public spdlog-1.13 + (package/inherit spdlog + (version "1.13.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gabime/spdlog") + (commit (string-append "v" version)))) + (file-name (git-file-name (package-name spdlog) version)) + (sha256 + (base32 "0zgdmdgnp2y36jrlk85d4fiyjkjd6anly8pambyc3f3v6sg02zyy")))))) + (define-public spdlog-1.10 (package (inherit spdlog) |