GNU bug report logs - #70825
[PATCH 0/2] gnu: Add go-github-com-pion-rtp.

Previous Next

Package: guix-patches;

Reported by: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>

Date: Tue, 7 May 2024 19:58:02 UTC

Severity: normal

Tags: patch

Done: Sharlatan Hellseher <sharlatanus <at> gmail.com>

To reply to this bug, email your comments to 70825 AT debbugs.gnu.org.
There is no need to reopen the bug first.

Toggle the display of automated, internal messages from the tracker.

View this report as an mbox folder, status mbox, maintainer mbox


Report forwarded to guix-patches <at> gnu.org:
bug#70825; Package guix-patches. (Tue, 07 May 2024 19:58: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, 07 May 2024 19:58:02 GMT) Full text and rfc822 format available.

Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):

From: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
To: guix-patches <at> gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Subject: [PATCH 0/2] gnu: Add go-github-com-pion-rtp.
Date: Tue,  7 May 2024 22:55:53 +0300
This patch set adds "go-github-com-pion-rtp" which is used by newers version
of Kubo (IPFS.)

Artyom V. Poptsov (2):
  gnu: Add go-github-com-pion-randutil.
  gnu: Add go-github-com-pion-rtp.

 gnu/packages/golang-crypto.scm | 24 +++++++++++++++++++++++-
 gnu/packages/golang-xyz.scm    | 24 ++++++++++++++++++++++++
 2 files changed, 47 insertions(+), 1 deletion(-)


base-commit: 014875b29e68da6357a5323e6dd1eaa74a05b753
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#70825; Package guix-patches. (Tue, 07 May 2024 19:59:02 GMT) Full text and rfc822 format available.

Message #8 received at 70825 <at> debbugs.gnu.org (full text, mbox):

From: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
To: 70825 <at> debbugs.gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Subject: [PATCH 1/2] gnu: Add go-github-com-pion-randutil.
Date: Tue,  7 May 2024 22:58:12 +0300
* gnu/packages/golang-crypto.scm (go-github-com-pion-randutil): New variable.

Change-Id: Ifb190df843022d556bada7927b180c2518f5869d
---
 gnu/packages/golang-crypto.scm | 24 +++++++++++++++++++++++-
 1 file changed, 23 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 273879b47a..09f9d9f696 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -14,7 +14,7 @@
 ;;; Copyright © 2022 Efraim Flashner <efraim <at> flashner.co.il>
 ;;; Copyright © 2022 Tobias Geerinckx-Rice <me <at> tobias.gr>
 ;;; Copyright © 2022, 2023 Nicolas Graves <ngraves <at> ngraves.fr>
-;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
+;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom <at> gmail.com>
 ;;; Copyright © 2023 Benjamin <benjamin <at> uvy.fr>
 ;;; Copyright © 2023 Clément Lassieur <clement <at> lassieur.org>
 ;;; Copyright © 2023 Felix Lechner <felix.lechner <at> lease-up.com>
@@ -916,6 +916,28 @@ (define-public go-github-com-operatorfoundation-ed25519
 algorithm.")
       (license license:bsd-3))))
 
+(define-public go-github-com-pion-randutil
+  (package
+    (name "go-github-com-pion-randutil")
+    (version "v0.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pion/randutil")
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "098isjyvyb8jhrrr57xi45g5m35vb1l92dm5wcy7g2q9x55lvxg5"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/pion/randutil"))
+    (home-page "https://github.com/pion/randutil")
+    (synopsis "Helper library for cryptographic and mathmatical randoms")
+    (description "Helper library for cryptographic and mathmatical randoms.")
+    (license license:expat)))
+
 (define-public go-github-com-protonmail-go-crypto
   (package
     (name "go-github-com-protonmail-go-crypto")
-- 
2.41.0





Information forwarded to guix-patches <at> gnu.org:
bug#70825; Package guix-patches. (Tue, 07 May 2024 19:59:02 GMT) Full text and rfc822 format available.

Message #11 received at 70825 <at> debbugs.gnu.org (full text, mbox):

From: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
To: 70825 <at> debbugs.gnu.org
Cc: "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>
Subject: [PATCH 2/2] gnu: Add go-github-com-pion-rtp.
Date: Tue,  7 May 2024 22:58:13 +0300
* gnu/packages/golang-xyz.scm (go-github-com-pion-rtp): New variable.

Change-Id: I99f1a4363cf5cb5c5ee2ffd7c6aa589107e71de0
---
 gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3ff115dc2a..ee042a3309 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2768,6 +2768,30 @@ (define-public go-github-com-pierrec-cmdflag
 on top of the standard library @code{flag} package.")
     (license license:bsd-3)))
 
+(define-public go-github-com-pion-rtp
+  (package
+    (name "go-github-com-pion-rtp")
+    (version "1.8.6")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/pion/rtp")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1vrdvswvvbqq83kbjlyblarbsn5v0sjcwrcv03nncd605cggnbkx"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:go go-1.21
+      #:import-path "github.com/pion/rtp"))
+    (propagated-inputs (list go-github-com-pion-randutil))
+    (home-page "https://github.com/pion/rtp")
+    (synopsis "Go implementation of RTP")
+    (description "Go implementation of Real-time Transport Protocol (RTP).")
+    (license license:expat)))
+
 (define-public go-github-com-prometheus-client-model
   (let ((commit "14fe0d1b01d4d5fc031dd4bec1823bd3ebbe8016")
         (revision "2"))
-- 
2.41.0





Reply sent to Sharlatan Hellseher <sharlatanus <at> gmail.com>:
You have taken responsibility. (Thu, 16 May 2024 22:32:02 GMT) Full text and rfc822 format available.

Notification sent to "Artyom V. Poptsov" <poptsov.artyom <at> gmail.com>:
bug acknowledged by developer. (Thu, 16 May 2024 22:32:02 GMT) Full text and rfc822 format available.

Message #16 received at 70825-done <at> debbugs.gnu.org (full text, mbox):

From: Sharlatan Hellseher <sharlatanus <at> gmail.com>
To: 70825-done <at> debbugs.gnu.org
Subject: [PATCH 0/2] gnu: Add go-github-com-pion-rtp.
Date: Thu, 16 May 2024 23:29:59 +0100
[Message part 1 (text/plain, inline)]
Hi,

Moved to golang-web and pushed as cc97cec5dd..09535959a9 to master. 

--
Oleg
[signature.asc (application/pgp-signature, inline)]

This bug report was last modified 23 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.