[bug#63217,2/2] gnu: bear: Fix build.
Commit Message
From ecfd0eb5ac3962efb3404b699b2642006b37bd82 Mon Sep 17 00:00:00 2001
From: Lu Hui <luhux76@gmail.com>
Date: Tue, 2 May 2023 08:22:39 +0800
Subject: [PATCH 2/2] gnu: bear: Fix build.
* gnu/packages/build-tools.scm (bear)[inputs]: use grpc-1.54.0
---
gnu/packages/build-tools.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
Comments
路辉 <luhux76@gmail.com> skribis:
>>From ecfd0eb5ac3962efb3404b699b2642006b37bd82 Mon Sep 17 00:00:00 2001
> From: Lu Hui <luhux76@gmail.com>
> Date: Tue, 2 May 2023 08:22:39 +0800
> Subject: [PATCH 2/2] gnu: bear: Fix build.
>
> * gnu/packages/build-tools.scm (bear)[inputs]: use grpc-1.54.0
Hi! I applied <https://issues.guix.gnu.org/63243>, which is a slightly
different solution.
Should we apply these changes anyway?
Thanks,
Ludo’.
it works, not need this patch :)
https://issues.guix.gnu.org/63217
https://issues.guix.gnu.org/63216
please close this issue
Ludovic Courtès <ludo@gnu.org> 于2023年5月6日周六 05:55写道:
>
> 路辉 <luhux76@gmail.com> skribis:
>
> >>From ecfd0eb5ac3962efb3404b699b2642006b37bd82 Mon Sep 17 00:00:00 2001
> > From: Lu Hui <luhux76@gmail.com>
> > Date: Tue, 2 May 2023 08:22:39 +0800
> > Subject: [PATCH 2/2] gnu: bear: Fix build.
> >
> > * gnu/packages/build-tools.scm (bear)[inputs]: use grpc-1.54.0
>
> Hi! I applied <https://issues.guix.gnu.org/63243>, which is a slightly
> different solution.
>
> Should we apply these changes anyway?
>
> Thanks,
> Ludo’.
Hi,
On Tue, 09 May 2023 at 21:23, 路辉 <luhux76@gmail.com> wrote:
> please close this issue
I am closing. Feel free to reopen if I am missing something.
Cheers,
simon
路辉 <luhux76@gmail.com> skribis:
> it works, not need this patch :)
OK, closing, thank you!
Ludo’.
@@ -15,6 +15,7 @@
;;; Copyright © 2021 qblade <qblade@protonmail.com>
;;; Copyright © 2021, 2023 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2022, 2023 Juliana Sims <jtsims@protonmail.com>
+;;; Copyright © 2023 Lu Hui <luhux76@gmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -118,7 +119,7 @@ (define-public bam
(define-public bear
(package
(name "bear")
- (version "3.0.20")
+ (version "3.1.2")
(source
(origin
(method git-fetch)
@@ -127,7 +128,7 @@ (define-public bear
(commit version)))
(file-name (git-file-name name version))
(sha256
- (base32 "0k89ccp9vz3x71w3r2wfpng9b8s0rxp4qr0ch9q32wq6y1ik847j"))))
+ (base32 "1iq0ciw3x2awpli4k9mhx80c442xbs70y4g6qpwrirbjw15q33n7"))))
(build-system cmake-build-system)
(arguments
`(#:phases (modify-phases %standard-phases
@@ -147,7 +148,7 @@ (define-public bear
(inputs
`(("c-ares" ,c-ares)
("fmt" ,fmt-8)
- ("grpc" ,grpc)
+ ("grpc" ,grpc-1.54.0)
("json-modern-cxx" ,json-modern-cxx)
("protobuf" ,protobuf)
("python" ,python-wrapper)