all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Greg Hogan <code@greghogan.com>
To: 55172@debbugs.gnu.org
Subject: [bug#55172] [PATCH 0/3]: Update fmt and spdlog.
Date: Thu, 28 Apr 2022 15:35:14 -0400	[thread overview]
Message-ID: <CA+3U0Z=8ywdhw3DCr8g46Vk5txsUQQz=+8KaCvjpF9HG+Qvf5w@mail.gmail.com> (raw)


[-- Attachment #1.1: Type: text/plain, Size: 243 bytes --]

$ ./pre-inst-env guix refresh -l fmt spdlog
Building the following 23 packages would ensure 38 dependent packages are
rebuilt ...

All dependent packages successfully build except hyperledger-iroha, which
is currently failing on master.

Greg

[-- Attachment #1.2: Type: text/html, Size: 327 bytes --]

[-- Attachment #2: 0001-gnu-fmt-Update-to-8.1.1.patch --]
[-- Type: text/x-patch, Size: 1156 bytes --]

From 42b7010eb28101e0b8028ed87c004492c7fd501e Mon Sep 17 00:00:00 2001
From: Greg Hogan <code@greghogan.com>
Date: Tue, 19 Apr 2022 17:37:23 +0000
Subject: [PATCH 1/3] gnu: fmt: Update to 8.1.1.

* gnu/packages/pretty-print.scm (fmt): Update to 8.1.1.
---
 gnu/packages/pretty-print.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/pretty-print.scm b/gnu/packages/pretty-print.scm
index 05960f6f48..4ee46b4e89 100644
--- a/gnu/packages/pretty-print.scm
+++ b/gnu/packages/pretty-print.scm
@@ -165,14 +165,14 @@ (define-public enscript
 (define-public fmt
   (package
     (name "fmt")
-    (version "8.0.1")
+    (version "8.1.1")
     (source
      (origin
        (method url-fetch)
        (uri (string-append "https://github.com/fmtlib/fmt/releases/download/"
                            version "/fmt-" version ".zip"))
        (sha256
-        (base32 "1gqmsk4r93x65cqs8w7zhfiv70w5fv8279nrblggqm4mmdpaa9x6"))))
+        (base32 "0p8f82ijqa57sk72hjf0qviv1wwinmns0p87wiv2v8fvisnqnxr3"))))
     (build-system cmake-build-system)
     (arguments
      '(#:configure-flags '("-DBUILD_SHARED_LIBS=ON")))
-- 
2.36.0


[-- Attachment #3: 0002-gnu-spdlog-Update-to-1.10.0.patch --]
[-- Type: text/x-patch, Size: 1192 bytes --]

From 4c30a77233efd15a7f6d2835f07b6822b068730e Mon Sep 17 00:00:00 2001
From: Greg Hogan <code@greghogan.com>
Date: Fri, 22 Apr 2022 16:56:21 +0000
Subject: [PATCH 2/3] gnu: spdlog: Update to 1.10.0.

* gnu/packages/logging.scm (spdlog): Update to 1.10.0.
---
 gnu/packages/logging.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/logging.scm b/gnu/packages/logging.scm
index 8c518de07d..9be882b45b 100644
--- a/gnu/packages/logging.scm
+++ b/gnu/packages/logging.scm
@@ -192,7 +192,7 @@ (define-public multitail
 (define-public spdlog
   (package
     (name "spdlog")
-    (version "1.9.2")
+    (version "1.10.0")
     (source
      (origin
        (method git-fetch)
@@ -201,7 +201,7 @@ (define-public spdlog
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1img03ka63hf3sb62v5f02ax5jc9mlpz5cijr38xxzymvcg1s98r"))))
+        (base32 "02xz017ba9fssm1rp1fcfld7h79awbr6fqai9dxaqp02akp3davk"))))
     (build-system cmake-build-system)
     ;; TODO run benchmark. Currently not possible, as adding
     ;; (gnu packages benchmark) forms a dependency cycle
-- 
2.36.0


[-- Attachment #4: 0003-gnu-bear-Update-to-3.0.19.patch --]
[-- Type: text/x-patch, Size: 1126 bytes --]

From 698f1863141eaf0a69093abf605e5e2264af6e7c Mon Sep 17 00:00:00 2001
From: Greg Hogan <code@greghogan.com>
Date: Thu, 21 Apr 2022 19:03:09 +0000
Subject: [PATCH 3/3] gnu: bear: Update to 3.0.19.

* gnu/packages/build-tools.scm (bear): Update to 3.0.19.
---
 gnu/packages/build-tools.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index 437b0d3550..1134b8eb3c 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -102,7 +102,7 @@ (define-public bam
 (define-public bear
   (package
     (name "bear")
-    (version "3.0.17")
+    (version "3.0.19")
     (source
      (origin
        (method git-fetch)
@@ -111,7 +111,7 @@ (define-public bear
              (commit version)))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "0klbk99qphibrp2944w8gn6x1dwwgrbm7f2bh530wjp5h3bpkr45"))))
+        (base32 "05jbcx5m923dg27j3i442hc73hdci5n7vp7a671x1w7bdivgqg96"))))
     (build-system cmake-build-system)
     (arguments
      `(#:phases (modify-phases %standard-phases
-- 
2.36.0


             reply	other threads:[~2022-04-28 19:36 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-28 19:35 Greg Hogan [this message]
2022-05-02 13:14 ` bug#55172: [PATCH 0/3]: Update fmt and spdlog Ludovic Courtès

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CA+3U0Z=8ywdhw3DCr8g46Vk5txsUQQz=+8KaCvjpF9HG+Qvf5w@mail.gmail.com' \
    --to=code@greghogan.com \
    --cc=55172@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.