unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#63217] [PATCH 2/2] gnu: bear: Fix build.
@ 2023-05-02  0:28 路辉
  2023-05-05 21:55 ` Ludovic Courtès
  0 siblings, 1 reply; 5+ messages in thread
From: 路辉 @ 2023-05-02  0:28 UTC (permalink / raw)
  To: 63217

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(-)

diff --git a/gnu/packages/build-tools.scm b/gnu/packages/build-tools.scm
index bcca229466..b5666f4306 100644
--- a/gnu/packages/build-tools.scm
+++ b/gnu/packages/build-tools.scm
@@ -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)
-- 
2.39.2




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

* [bug#63217] [PATCH 2/2] gnu: bear: Fix build.
  2023-05-02  0:28 [bug#63217] [PATCH 2/2] gnu: bear: Fix build 路辉
@ 2023-05-05 21:55 ` Ludovic Courtès
  2023-05-09 13:23   ` 路辉
  0 siblings, 1 reply; 5+ messages in thread
From: Ludovic Courtès @ 2023-05-05 21:55 UTC (permalink / raw)
  To: 路辉; +Cc: 63217

路辉 <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’.




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

* [bug#63217] [PATCH 2/2] gnu: bear: Fix build.
  2023-05-05 21:55 ` Ludovic Courtès
@ 2023-05-09 13:23   ` 路辉
  2023-05-10  9:47     ` zimoun
  2023-05-10 16:50     ` bug#63217: " Ludovic Courtès
  0 siblings, 2 replies; 5+ messages in thread
From: 路辉 @ 2023-05-09 13:23 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 63217

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




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

* [bug#63217] [PATCH 2/2] gnu: bear: Fix build.
  2023-05-09 13:23   ` 路辉
@ 2023-05-10  9:47     ` zimoun
  2023-05-10 16:50     ` bug#63217: " Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: zimoun @ 2023-05-10  9:47 UTC (permalink / raw)
  To: 路辉; +Cc: Ludovic Courtès, 63217

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




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

* bug#63217: [PATCH 2/2] gnu: bear: Fix build.
  2023-05-09 13:23   ` 路辉
  2023-05-10  9:47     ` zimoun
@ 2023-05-10 16:50     ` Ludovic Courtès
  1 sibling, 0 replies; 5+ messages in thread
From: Ludovic Courtès @ 2023-05-10 16:50 UTC (permalink / raw)
  To: 路辉; +Cc: 63217-done

路辉 <luhux76@gmail.com> skribis:

> it works, not need this patch :)

OK, closing, thank you!

Ludo’.




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

end of thread, other threads:[~2023-05-13 11:35 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-02  0:28 [bug#63217] [PATCH 2/2] gnu: bear: Fix build 路辉
2023-05-05 21:55 ` Ludovic Courtès
2023-05-09 13:23   ` 路辉
2023-05-10  9:47     ` zimoun
2023-05-10 16:50     ` bug#63217: " Ludovic Courtès

Code repositories for project(s) associated with this public inbox

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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).