unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#70825] [PATCH 0/2] gnu: Add go-github-com-pion-rtp.
@ 2024-05-07 19:55 Artyom V. Poptsov
  2024-05-07 19:58 ` [bug#70825] [PATCH 1/2] gnu: Add go-github-com-pion-randutil Artyom V. Poptsov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Artyom V. Poptsov @ 2024-05-07 19:55 UTC (permalink / raw)
  To: 70825; +Cc: Artyom V. Poptsov

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





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

* [bug#70825] [PATCH 1/2] gnu: Add go-github-com-pion-randutil.
  2024-05-07 19:55 [bug#70825] [PATCH 0/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
@ 2024-05-07 19:58 ` Artyom V. Poptsov
  2024-05-07 19:58 ` [bug#70825] [PATCH 2/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
  2024-05-16 22:29 ` bug#70825: [PATCH 0/2] " Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Artyom V. Poptsov @ 2024-05-07 19:58 UTC (permalink / raw)
  To: 70825; +Cc: Artyom V. Poptsov

* 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@flashner.co.il>
 ;;; Copyright © 2022 Tobias Geerinckx-Rice <me@tobias.gr>
 ;;; Copyright © 2022, 2023 Nicolas Graves <ngraves@ngraves.fr>
-;;; Copyright © 2023 Artyom V. Poptsov <poptsov.artyom@gmail.com>
+;;; Copyright © 2023, 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com>
 ;;; Copyright © 2023 Benjamin <benjamin@uvy.fr>
 ;;; Copyright © 2023 Clément Lassieur <clement@lassieur.org>
 ;;; Copyright © 2023 Felix Lechner <felix.lechner@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





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

* [bug#70825] [PATCH 2/2] gnu: Add go-github-com-pion-rtp.
  2024-05-07 19:55 [bug#70825] [PATCH 0/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
  2024-05-07 19:58 ` [bug#70825] [PATCH 1/2] gnu: Add go-github-com-pion-randutil Artyom V. Poptsov
@ 2024-05-07 19:58 ` Artyom V. Poptsov
  2024-05-16 22:29 ` bug#70825: [PATCH 0/2] " Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Artyom V. Poptsov @ 2024-05-07 19:58 UTC (permalink / raw)
  To: 70825; +Cc: Artyom V. Poptsov

* 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





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

* bug#70825: [PATCH 0/2] gnu: Add go-github-com-pion-rtp.
  2024-05-07 19:55 [bug#70825] [PATCH 0/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
  2024-05-07 19:58 ` [bug#70825] [PATCH 1/2] gnu: Add go-github-com-pion-randutil Artyom V. Poptsov
  2024-05-07 19:58 ` [bug#70825] [PATCH 2/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
@ 2024-05-16 22:29 ` Sharlatan Hellseher
  2 siblings, 0 replies; 4+ messages in thread
From: Sharlatan Hellseher @ 2024-05-16 22:29 UTC (permalink / raw)
  To: 70825-done

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


Hi,

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

--
Oleg

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

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

end of thread, other threads:[~2024-05-16 22:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-07 19:55 [bug#70825] [PATCH 0/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
2024-05-07 19:58 ` [bug#70825] [PATCH 1/2] gnu: Add go-github-com-pion-randutil Artyom V. Poptsov
2024-05-07 19:58 ` [bug#70825] [PATCH 2/2] gnu: Add go-github-com-pion-rtp Artyom V. Poptsov
2024-05-16 22:29 ` bug#70825: [PATCH 0/2] " Sharlatan Hellseher

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