* [bug#74460] [PATCH] gnu: ngtcp2: Update to 1.9.0.
@ 2024-11-21 13:24 Tomas Volf
2024-11-24 1:15 ` bug#74460: " Z572
0 siblings, 1 reply; 3+ messages in thread
From: Tomas Volf @ 2024-11-21 13:24 UTC (permalink / raw)
To: 74460; +Cc: Tomas Volf
* gnu/packages/networking.scm (ngtcp2): Update to 1.9.0.
Change-Id: Id6bb599b562fc0eb7c710397fd93855c77a026c5
---
gnu/packages/networking.scm | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index f0f0619161..23cf36006f 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -4643,7 +4643,7 @@ (define-public nbd
(define-public ngtcp2
(package
(name "ngtcp2")
- (version "1.8.1")
+ (version "1.9.0")
(source
(origin
(method url-fetch)
@@ -4651,7 +4651,7 @@ (define-public ngtcp2
"releases/download/v" version "/"
"ngtcp2-" version ".tar.gz"))
(sha256
- (base32 "1vlc2xhvymnxgp4a12m4pja9z5ckzrqkv79z966bb3wva3949dbj"))))
+ (base32 "1nyaai8arhal8pi8yzw06kcq4c8bpqgz9mv9wd2897xgjrxmgrvb"))))
(build-system gnu-build-system)
(arguments
(list
--
2.46.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#74460: [PATCH] gnu: ngtcp2: Update to 1.9.0.
2024-11-21 13:24 [bug#74460] [PATCH] gnu: ngtcp2: Update to 1.9.0 Tomas Volf
@ 2024-11-24 1:15 ` Z572
2024-12-12 15:33 ` [bug#74460] " Tomas Volf
0 siblings, 1 reply; 3+ messages in thread
From: Z572 @ 2024-11-24 1:15 UTC (permalink / raw)
To: Tomas Volf; +Cc: 74460-done
[-- Attachment #1: Type: text/plain, Size: 1151 bytes --]
Tomas Volf <~@wolfsden.cz> writes:
> * gnu/packages/networking.scm (ngtcp2): Update to 1.9.0.
>
> Change-Id: Id6bb599b562fc0eb7c710397fd93855c77a026c5
> ---
> gnu/packages/networking.scm | 4 ++--
> 1 file changed, 2 insertions(+), 2 deletions(-)
>
> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
> index f0f0619161..23cf36006f 100644
> --- a/gnu/packages/networking.scm
> +++ b/gnu/packages/networking.scm
> @@ -4643,7 +4643,7 @@ (define-public nbd
> (define-public ngtcp2
> (package
> (name "ngtcp2")
> - (version "1.8.1")
> + (version "1.9.0")
> (source
> (origin
> (method url-fetch)
> @@ -4651,7 +4651,7 @@ (define-public ngtcp2
> "releases/download/v" version "/"
> "ngtcp2-" version ".tar.gz"))
Are you interested in trying to compile ngtcp2 from git next time?
> (sha256
> - (base32 "1vlc2xhvymnxgp4a12m4pja9z5ckzrqkv79z966bb3wva3949dbj"))))
> + (base32 "1nyaai8arhal8pi8yzw06kcq4c8bpqgz9mv9wd2897xgjrxmgrvb"))))
> (build-system gnu-build-system)
> (arguments
> (list
pushed, closing.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 832 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#74460] [PATCH] gnu: ngtcp2: Update to 1.9.0.
2024-11-24 1:15 ` bug#74460: " Z572
@ 2024-12-12 15:33 ` Tomas Volf
0 siblings, 0 replies; 3+ messages in thread
From: Tomas Volf @ 2024-12-12 15:33 UTC (permalink / raw)
To: Z572; +Cc: 74460-done
[-- Attachment #1: Type: text/plain, Size: 1287 bytes --]
Hi,
Z572 <zhengjunjie@iscas.ac.cn> writes:
> Tomas Volf <~@wolfsden.cz> writes:
>
>> * gnu/packages/networking.scm (ngtcp2): Update to 1.9.0.
>>
>> Change-Id: Id6bb599b562fc0eb7c710397fd93855c77a026c5
>> ---
>> gnu/packages/networking.scm | 4 ++--
>> 1 file changed, 2 insertions(+), 2 deletions(-)
>>
>> diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
>> index f0f0619161..23cf36006f 100644
>> --- a/gnu/packages/networking.scm
>> +++ b/gnu/packages/networking.scm
>> @@ -4643,7 +4643,7 @@ (define-public nbd
>> (define-public ngtcp2
>> (package
>> (name "ngtcp2")
>> - (version "1.8.1")
>> + (version "1.9.0")
>> (source
>> (origin
>> (method url-fetch)
>> @@ -4651,7 +4651,7 @@ (define-public ngtcp2
>> "releases/download/v" version "/"
>> "ngtcp2-" version ".tar.gz"))
>
> Are you interested in trying to compile ngtcp2 from git next time?
I prefer building it from the release archives. Upstream does not sign
git commits, but the archives are signed via GPG. I prefer to have a
signature to verify.
Tomas
--
There are only two hard things in Computer Science:
cache invalidation, naming things and off-by-one errors.
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 853 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2024-12-12 15:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-21 13:24 [bug#74460] [PATCH] gnu: ngtcp2: Update to 1.9.0 Tomas Volf
2024-11-24 1:15 ` bug#74460: " Z572
2024-12-12 15:33 ` [bug#74460] " Tomas Volf
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).