all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#55172] [PATCH 0/3]: Update fmt and spdlog.
@ 2022-04-28 19:35 Greg Hogan
  2022-05-02 13:14 ` bug#55172: " Ludovic Courtès
  0 siblings, 1 reply; 2+ messages in thread
From: Greg Hogan @ 2022-04-28 19:35 UTC (permalink / raw)
  To: 55172


[-- 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


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* bug#55172: [PATCH 0/3]: Update fmt and spdlog.
  2022-04-28 19:35 [bug#55172] [PATCH 0/3]: Update fmt and spdlog Greg Hogan
@ 2022-05-02 13:14 ` Ludovic Courtès
  0 siblings, 0 replies; 2+ messages in thread
From: Ludovic Courtès @ 2022-05-02 13:14 UTC (permalink / raw)
  To: Greg Hogan; +Cc: 55172-done

Hi,

Greg Hogan <code@greghogan.com> skribis:

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

Alright.

> Greg
> 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.

[...]

> 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.

[...]

> 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.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-05-02 13:15 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-04-28 19:35 [bug#55172] [PATCH 0/3]: Update fmt and spdlog Greg Hogan
2022-05-02 13:14 ` bug#55172: " Ludovic Courtès

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.