[PATCH 0/3]: Update fmt and spdlog.

  • Done
  • quality assurance status badge
Details
2 participants
  • Greg Hogan
  • Ludovic Courtès
Owner
unassigned
Submitted by
Greg Hogan
Severity
normal
G
G
Greg Hogan wrote on 28 Apr 2022 21:35
(address . guix-patches@gnu.org)
CA+3U0Z=8ywdhw3DCr8g46Vk5txsUQQz=+8KaCvjpF9HG+Qvf5w@mail.gmail.com
$ ./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: file
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(-)

Toggle diff (23 lines)
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
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(-)

Toggle diff (24 lines)
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
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(-)

Toggle diff (24 lines)
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
L
L
Ludovic Courtès wrote on 2 May 2022 15:14
(name . Greg Hogan)(address . code@greghogan.com)(address . 55172-done@debbugs.gnu.org)
87sfpsrs9d.fsf@gnu.org
Hi,

Greg Hogan <code@greghogan.com> skribis:

Toggle quote (3 lines)
> All dependent packages successfully build except hyperledger-iroha, which
> is currently failing on master.

Alright.

Toggle quote (8 lines)
> 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.

[...]

Toggle quote (7 lines)
> 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.

[...]

Toggle quote (7 lines)
> 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’.
Closed
?