GNU bug report logs -
#74932
[PATCH 0/3] yggdrasil: Update to 0.5.11.
Previous Next
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 74932 in the body.
You can then email your comments to 74932 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#74932
; Package
guix-patches
.
(Tue, 17 Dec 2024 19:46:02 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
"Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 17 Dec 2024 19:46:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
This patchset updates Yggdrasil to the version 0.5.11.
Artyom V. Poptsov (3):
gnu: go-github-com-arceliar-ironwood: Update to
v0.0.0-20241210120540-9deb08d9f8f9.
gnu: Add go-suah-dev-protect.
gnu: yggdrasil: Update to 0.5.11.
gnu/packages/golang-web.scm | 4 ++--
gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
gnu/packages/networking.scm | 7 ++++---
3 files changed, 32 insertions(+), 5 deletions(-)
base-commit: 15c657f80a58b589eda8ae1965c431da6c267dd6
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74932
; Package
guix-patches
.
(Tue, 17 Dec 2024 19:48:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 74932 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang-web.scm (go-github-com-arceliar-ironwood): Update to v0.0.0-20241210120540-9deb08d9f8f9.
Change-Id: I4896468e6ccab9a4c68c72363a99e16b65c3f474
---
gnu/packages/golang-web.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index e895ba59ce..0c95e3c323 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -213,7 +213,7 @@ (define-public go-github-com-alexliesenfeld-health
(define-public go-github-com-arceliar-ironwood
(package
(name "go-github-com-arceliar-ironwood")
- (version "v0.0.0-20241122002527-75a6e82fa380")
+ (version "v0.0.0-20241210120540-9deb08d9f8f9")
(source
(origin
(method git-fetch)
@@ -223,7 +223,7 @@ (define-public go-github-com-arceliar-ironwood
(file-name (git-file-name name version))
(sha256
(base32
- "1xrdy5yn2y8q147n6fafc8cqjf6my06wzlhghv0c5ra9rqg1dii7"))))
+ "08i4zm8jxq89dznxx76marn5zfkyscmbn6cdsx0adz6pzwgpd1cz"))))
(build-system go-build-system)
(arguments
(list
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74932
; Package
guix-patches
.
(Tue, 17 Dec 2024 19:48:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 74932 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/golang-xyz.scm (go-suah-dev-protect): New variable.
Change-Id: Idf224b6571da2aefb99811ee3cd9fead67614d61
---
gnu/packages/golang-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index f8c63976d6..ae19116b51 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -8842,6 +8842,32 @@ (define-public go-sentences
" This package provides an command line interface (CLI)
tool."))))
+(define-public go-suah-dev-protect
+ (package
+ (name "go-suah-dev-protect")
+ (version "1.2.4")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://codeberg.org/qbit/protect")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1f36w2435xivggl4d31813ggk37ya9v8q6w8ygbp35ypzwfgzlh3"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "suah.dev/protect"))
+ (home-page "https://codeberg.org/qbit/protect")
+ (synopsis "Wrapper for OpenBSD's pledge and unveil system calls.")
+ (description
+ "Package protect is a wrapper for OpenBSD's @code{pledge} and @code{unveil}
+system calls.
+
+It allows one to safely call Unveil / Pledge on non-OpenBSD operating systems.")
+ (license license:isc)))
+
(define-public go-tengo
(package
(inherit go-github-com-d5-tengo-v2)
--
2.46.0
Information forwarded
to
guix-patches <at> gnu.org
:
bug#74932
; Package
guix-patches
.
(Tue, 17 Dec 2024 19:49:02 GMT)
Full text and
rfc822 format available.
Message #14 received at 74932 <at> debbugs.gnu.org (full text, mbox):
* gnu/packages/networking.scm (yggdrasil): Update to 0.5.11.
[propagated-inputs]: Add go-suah-dev-protect.
Change-Id: I9a7bfcfb66e76fca18a0cec5ac447d7e3900227f
---
gnu/packages/networking.scm | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 1a2af6d790..ee56631f1e 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4670,7 +4670,7 @@ (define-public ngtcp2
(define-public yggdrasil
(package
(name "yggdrasil")
- (version "0.5.10")
+ (version "0.5.11")
(source
(origin
(method git-fetch)
@@ -4681,7 +4681,7 @@ (define-public yggdrasil
(recursive? #t)))
(file-name (git-file-name name version))
(sha256
- (base32 "0dd5181p07xshbd7q6p0hf3cvq1ahq6q36qjij0vzdil8dka6fmx"))
+ (base32 "0l7lvqmvzw89wv53lpxa44k7y148y7japvy77yir4467ghdmnvyk"))
(patches (search-patches "yggdrasil-extra-config.patch"))))
(build-system go-build-system)
(arguments
@@ -4729,7 +4729,8 @@ (define-public yggdrasil
go-golang-org-x-net
go-golang-org-x-sys
go-golang-org-x-text
- go-golang-zx2c4-com-wireguard))
+ go-golang-zx2c4-com-wireguard
+ go-suah-dev-protect))
(home-page "https://yggdrasil-network.github.io/blog.html")
(synopsis
"Experiment in scalable routing as an encrypted IPv6 overlay network")
--
2.46.0
Reply sent
to
"Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
:
You have taken responsibility.
(Fri, 20 Dec 2024 19:53:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
"Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
:
bug acknowledged by developer.
(Fri, 20 Dec 2024 19:53:02 GMT)
Full text and
rfc822 format available.
Message #19 received at 74932-done <at> debbugs.gnu.org (full text, mbox):
[Message part 1 (text/plain, inline)]
Merged to the "master" branch as the following commits:
--8<---------------cut here---------------start------------->8---
d7bd22a4863214fd1df427bbebd1859eddd71f9b gnu: yggdrasil: Update to 0.5.11.
e518d2f8546a5dfde8d4644e3e9c55ac358efab7 gnu: Add go-suah-dev-protect.
163843c78ebd673044e14320f539462fa5826d14 gnu: go-github-com-arceliar-ironwood: Update to v0.0.0-20241210120540-9deb08d9f8f9.
--8<---------------cut here---------------end--------------->8---
- avp
--
Artyom "avp" Poptsov <poptsov.artyom <at> gmail.com>
Home page: https://memory-heap.org/~avp/
CADR Hackerspace co-founder: https://cadrspace.ru/
GPG: D0C2 EAC1 3310 822D 98DE B57C E9C5 A2D9 0898 A02F
[signature.asc (application/pgp-signature, inline)]
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Sat, 18 Jan 2025 12:24:06 GMT)
Full text and
rfc822 format available.
This bug report was last modified 231 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.