all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#68247] [PATCH 0/3] gnu: yggdrasil: Fix build.
@ 2024-01-05  2:58 Sharlatan Hellseher
  2024-01-05  3:03 ` [bug#68247] [PATCH 1/3] gnu: go-github-com-hjson-hjson-go: Fix commit Sharlatan Hellseher
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-01-05  2:58 UTC (permalink / raw)
  To: 68247; +Cc: Sharlatan Hellseher

Hi Guix,

The merge of the patch series from https://issues.guix.gnu.org/issue/66827
introduced some inconsistencie with updated version of
go-github-com-hjson-hjson-go.

This small patch set has fixed it.

> ./pre-inst-env guix build yggdrasil
/gnu/store/42n899nzfng6ybnjh41115y6vaa5w30v-yggdrasil-0.5.2

Sharlatan Hellseher (3):
  gnu: go-github-com-hjson-hjson-go: Fix commit.
  gnu: yggdrasil: Sort inputs alphabetically.
  gnu: yggdrasil: Remove duplicated input.

 gnu/packages/golang-web.scm |  5 +++--
 gnu/packages/networking.scm | 39 ++++++++++++++++++-------------------
 2 files changed, 22 insertions(+), 22 deletions(-)


base-commit: be1d05c10766a979dd0720b677889ed950d3b895
-- 
2.41.0





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

* [bug#68247] [PATCH 1/3] gnu: go-github-com-hjson-hjson-go: Fix commit.
  2024-01-05  2:58 [bug#68247] [PATCH 0/3] gnu: yggdrasil: Fix build Sharlatan Hellseher
@ 2024-01-05  3:03 ` Sharlatan Hellseher
  2024-01-05  3:03 ` [bug#68247] [PATCH 2/3] gnu: yggdrasil: Sort inputs alphabetically Sharlatan Hellseher
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-01-05  3:03 UTC (permalink / raw)
  To: 68247; +Cc: Sharlatan Hellseher

This package was updated in ada2152893eda2301890e6a438c3e9fb4e0f190d and
moved with lower version which broke yggdrasil.

Author:     Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Wed Nov 1 00:15:16 2023 +0300
Commit:     Christopher Baines <mail@cbaines.net>
CommitDate: Fri Nov 3 10:14:06 2023 +0000

gnu: go-github-com-hjson-hjson-go: Update to 4.3.1.

* gnu/packages/golang.scm (go-github-com-hjson-hjson-go): Update to 4.3.1.

Change-Id: Iee2aef614686cbf79f388e2dd9435745d5502e2a
---
 gnu/packages/golang-web.scm | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 7759916c35..3e60bfaf33 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -21,6 +21,7 @@
 ;;; Copyright © 2023 Hilton Chain <hako@ultrarare.space>
 ;;; Copyright © 2023 Katherine Cox-Buday <cox.katherine.e@gmail.com>
 ;;; Copyright © 2023 Nicolas Graves <ngraves@ngraves.fr>
+;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -870,7 +871,7 @@ (define-public go-github-com-gorilla-websocket
 (define-public go-github-com-hjson-hjson-go
   (package
     (name "go-github-com-hjson-hjson-go")
-    (version "3.1.0")
+    (version "4.3.1")
     (source
      (origin
        (method git-fetch)
@@ -879,7 +880,7 @@ (define-public go-github-com-hjson-hjson-go
              (commit (string-append "v" version))))
        (file-name (git-file-name name version))
        (sha256
-        (base32 "1dfdiahimg6z9idg8jiqxwnlwjnmasbjccx8gnag49cz4yfqskaz"))))
+        (base32 "138vmbnrwzxf64cia27k407clrydvs2jx927dlv6ziydiqyvy7m3"))))
     (build-system go-build-system)
     (arguments
      '(#:import-path "github.com/hjson/hjson-go"))
-- 
2.41.0





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

* [bug#68247] [PATCH 2/3] gnu: yggdrasil: Sort inputs alphabetically.
  2024-01-05  2:58 [bug#68247] [PATCH 0/3] gnu: yggdrasil: Fix build Sharlatan Hellseher
  2024-01-05  3:03 ` [bug#68247] [PATCH 1/3] gnu: go-github-com-hjson-hjson-go: Fix commit Sharlatan Hellseher
@ 2024-01-05  3:03 ` Sharlatan Hellseher
  2024-01-05  3:03 ` [bug#68247] [PATCH 3/3] gnu: yggdrasil: Remove duplicated input Sharlatan Hellseher
  2024-01-06 14:25 ` bug#68247: [PATCH 0/3] gnu: yggdrasil: Fix build Andrew Tropin via Guix-patches via
  3 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-01-05  3:03 UTC (permalink / raw)
  To: 68247; +Cc: Sharlatan Hellseher

* gnu/packages/networking.scm (yggdrasil)[propagated-inputs]: Sort
alphabetically to ease maintenance.

Change-Id: I336307433842bd1dce0cfb62d93be767e0a92dbb
---
 gnu/packages/networking.scm | 40 ++++++++++++++++++-------------------
 1 file changed, 20 insertions(+), 20 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index c3796f7328..bf72fd7de2 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4450,31 +4450,31 @@ (define-public yggdrasil
                #:deep? #true)))
        (cons go-golang-org-x-sys-0.8
              (map p
-                  (list go-golang-zx2c4-com-wireguard
-                        go-golang-org-x-text
-                        go-golang-org-x-net
-                        go-golang-org-x-crypto
-                        go-golang-org-x-tools
-                        go-netns
-                        go-netlink
+                  (list go-github-com-arceliar-ironwood
+                        go-github-com-arceliar-phony
                         go-github-com-bits-and-blooms-bitset
                         go-github-com-bits-and-blooms-bloom
-                        go-github-com-quic-go-quic-go
+                        go-github-com-cheggaaa-pb-v3
+                        go-github-com-fatih-color
+                        go-github-com-gologme-log
+                        go-github-com-hashicorp-go-syslog
                         go-github-com-hjson-hjson-go
-                        go-github-com-olekukonko-tablewriter
-                        go-github-com-mitchellh-mapstructure
-                        go-github-com-mattn-go-runewidth
-                        go-github-com-mattn-go-isatty
-                        go-github-com-mattn-go-colorable
-                        go-github-com-kardianos-minwinsvc
                         go-github-com-hjson-hjson-go
-                        go-github-com-hashicorp-go-syslog
-                        go-github-com-gologme-log
-                        go-github-com-fatih-color
-                        go-github-com-cheggaaa-pb-v3
+                        go-github-com-kardianos-minwinsvc
+                        go-github-com-mattn-go-colorable
+                        go-github-com-mattn-go-isatty
+                        go-github-com-mattn-go-runewidth
+                        go-github-com-mitchellh-mapstructure
+                        go-github-com-olekukonko-tablewriter
+                        go-github-com-quic-go-quic-go
                         go-github-com-vividcortex-ewma
-                        go-github-com-arceliar-phony
-                        go-github-com-arceliar-ironwood)))))
+                        go-golang-org-x-crypto
+                        go-golang-org-x-net
+                        go-golang-org-x-text
+                        go-golang-org-x-tools
+                        go-golang-zx2c4-com-wireguard
+                        go-netlink
+                        go-netns)))))
     (home-page "https://yggdrasil-network.github.io/blog.html")
     (synopsis
      "Experiment in scalable routing as an encrypted IPv6 overlay network")
-- 
2.41.0





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

* [bug#68247] [PATCH 3/3] gnu: yggdrasil: Remove duplicated input.
  2024-01-05  2:58 [bug#68247] [PATCH 0/3] gnu: yggdrasil: Fix build Sharlatan Hellseher
  2024-01-05  3:03 ` [bug#68247] [PATCH 1/3] gnu: go-github-com-hjson-hjson-go: Fix commit Sharlatan Hellseher
  2024-01-05  3:03 ` [bug#68247] [PATCH 2/3] gnu: yggdrasil: Sort inputs alphabetically Sharlatan Hellseher
@ 2024-01-05  3:03 ` Sharlatan Hellseher
  2024-01-06 14:25 ` bug#68247: [PATCH 0/3] gnu: yggdrasil: Fix build Andrew Tropin via Guix-patches via
  3 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-01-05  3:03 UTC (permalink / raw)
  To: 68247; +Cc: Sharlatan Hellseher

* gnu/packages/networking.scm (yggdrasil)[propagated-inputs]: Remove
duplicated go-github-com-hjson-hjson-go.

Change-Id: I13b1808ffcbf80a2b4fd17188a8b62557a943d24
---
 gnu/packages/networking.scm | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index bf72fd7de2..9844430656 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4459,7 +4459,6 @@ (define-public yggdrasil
                         go-github-com-gologme-log
                         go-github-com-hashicorp-go-syslog
                         go-github-com-hjson-hjson-go
-                        go-github-com-hjson-hjson-go
                         go-github-com-kardianos-minwinsvc
                         go-github-com-mattn-go-colorable
                         go-github-com-mattn-go-isatty
-- 
2.41.0





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

* bug#68247: [PATCH 0/3] gnu: yggdrasil: Fix build.
  2024-01-05  2:58 [bug#68247] [PATCH 0/3] gnu: yggdrasil: Fix build Sharlatan Hellseher
                   ` (2 preceding siblings ...)
  2024-01-05  3:03 ` [bug#68247] [PATCH 3/3] gnu: yggdrasil: Remove duplicated input Sharlatan Hellseher
@ 2024-01-06 14:25 ` Andrew Tropin via Guix-patches via
  3 siblings, 0 replies; 5+ messages in thread
From: Andrew Tropin via Guix-patches via @ 2024-01-06 14:25 UTC (permalink / raw)
  To: Sharlatan Hellseher, 68247-done; +Cc: Sharlatan Hellseher

[-- Attachment #1: Type: text/plain, Size: 995 bytes --]

On 2024-01-05 02:58, Sharlatan Hellseher wrote:

> Hi Guix,
>
> The merge of the patch series from https://issues.guix.gnu.org/issue/66827
> introduced some inconsistencie with updated version of
> go-github-com-hjson-hjson-go.
>
> This small patch set has fixed it.
>
>> ./pre-inst-env guix build yggdrasil
> /gnu/store/42n899nzfng6ybnjh41115y6vaa5w30v-yggdrasil-0.5.2
>
> Sharlatan Hellseher (3):
>   gnu: go-github-com-hjson-hjson-go: Fix commit.
>   gnu: yggdrasil: Sort inputs alphabetically.
>   gnu: yggdrasil: Remove duplicated input.
>
>  gnu/packages/golang-web.scm |  5 +++--
>  gnu/packages/networking.scm | 39 ++++++++++++++++++-------------------
>  2 files changed, 22 insertions(+), 22 deletions(-)
>
>
> base-commit: be1d05c10766a979dd0720b677889ed950d3b895

Hi Sharlatan!

Applied, pushed as
https://git.savannah.gnu.org/cgit/guix.git/commit/?id=e994bc0abf

Thank you for the prompt fix!  Much appreciate! :)

-- 
Best regards,
Andrew Tropin

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]

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

end of thread, other threads:[~2024-01-06 14:26 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-01-05  2:58 [bug#68247] [PATCH 0/3] gnu: yggdrasil: Fix build Sharlatan Hellseher
2024-01-05  3:03 ` [bug#68247] [PATCH 1/3] gnu: go-github-com-hjson-hjson-go: Fix commit Sharlatan Hellseher
2024-01-05  3:03 ` [bug#68247] [PATCH 2/3] gnu: yggdrasil: Sort inputs alphabetically Sharlatan Hellseher
2024-01-05  3:03 ` [bug#68247] [PATCH 3/3] gnu: yggdrasil: Remove duplicated input Sharlatan Hellseher
2024-01-06 14:25 ` bug#68247: [PATCH 0/3] gnu: yggdrasil: Fix build Andrew Tropin via Guix-patches via

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.