This is an automated email from the git hooks/post-receive script.
guix_mirror_bot pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new a3ae7cb106 gnu: Remove spdlog-1.13.
a3ae7cb106 is described below
commit a3ae7cb1065a610a135745b0861f7e81e3601216
Author: Andreas Enge <[email protected]>
AuthorDate: Fri Jul 17 10:58:25 2026 +0200
gnu: Remove spdlog-1.13.
* gnu/packages/logging.scm (spdlog-1.13): Delete variable.
---
gnu/packages/logging.scm | 18 ------------------
1 file changed, 18 deletions(-)
diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index b2469e254a..9888b70570 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -303,24 +303,6 @@ output in multiple windows in a terminal.")
library.")
(license license:expat)))
-(define-public spdlog-1.13
- (package/inherit spdlog-1.15
- (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-1.15) version))
- (sha256
- (base32 "0zgdmdgnp2y36jrlk85d4fiyjkjd6anly8pambyc3f3v6sg02zyy"))
- (modules '((guix build utils)))
- (snippet #~(delete-file-recursively "include/spdlog/fmt/bundled"))))
- (propagated-inputs
- (modify-inputs (package-propagated-inputs spdlog-1.15)
- (replace "fmt" fmt-9)))))
-
;; Update when changing the pinned version of fmt.
(define-public spdlog spdlog-1.15)