all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#71501] [PATCH 0/3] gnu: kubo: Unbundle more inputs.
@ 2024-06-12  5:35 Artyom V. Poptsov
  2024-06-12  5:37 ` [bug#71501] [PATCH 1/3] gnu: Add go-github-com-ipfs-go-block-format Artyom V. Poptsov
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-06-12  5:35 UTC (permalink / raw)
  To: 71501; +Cc: Artyom V. Poptsov

This patchset unbundles go-github-com-ipfs-go-ipld-format and
go-github-com-ipfs-go-block-format from Kubo (IPFS.)

Artyom V. Poptsov (3):
  gnu: Add go-github-com-ipfs-go-block-format.
  gnu: Add go-github-com-ipfs-go-ipld-format.
  gnu: kubo: Unbundle more inputs.

 gnu/packages/ipfs.scm | 65 +++++++++++++++++++++++++++++++++++++++++--
 1 file changed, 63 insertions(+), 2 deletions(-)


base-commit: f1756e2697b867abe21dcf08e047a3dc4d4c96e7
-- 
2.45.1





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

* [bug#71501] [PATCH 1/3] gnu: Add go-github-com-ipfs-go-block-format.
  2024-06-12  5:35 [bug#71501] [PATCH 0/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
@ 2024-06-12  5:37 ` Artyom V. Poptsov
  2024-06-12  5:37 ` [bug#71501] [PATCH 2/3] gnu: Add go-github-com-ipfs-go-ipld-format Artyom V. Poptsov
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-06-12  5:37 UTC (permalink / raw)
  To: 71501; +Cc: Artyom V. Poptsov

* gnu/packages/ipfs.scm (go-github-com-ipfs-go-block-format): New variable.

Change-Id: I1120be12ff6c10149e227d679c1c532cb3548a5c
---
 gnu/packages/ipfs.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index a44c4b0139..4a09993cb5 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -38,6 +38,36 @@ (define-module (gnu packages ipfs)
   #:use-module (gnu packages python)
   #:use-module (gnu packages shells))
 
+(define-public go-github-com-ipfs-go-block-format
+  (package
+    (name "go-github-com-ipfs-go-block-format")
+    (version "0.2.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ipfs/go-block-format")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0pd8ww06ss922g3w2fgi3w0q66y2mkb9b2q9x5qxabrjj65xranz"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:go go-1.21
+      #:import-path "github.com/ipfs/go-block-format"))
+    (propagated-inputs
+     (list go-github-com-multiformats-go-multihash
+           go-github-com-multiformats-go-varint
+           go-github-com-ipfs-go-cid
+           go-github-com-ipfs-go-ipfs-util))
+    (home-page "https://github.com/ipfs/go-block-format")
+    (synopsis "Set of interfaces for CID addressable blocks of data")
+    (description
+     "@code{go-block-format} is a set of interfaces that a type needs to implement in
+order to be a CID addressable block of data.")
+    (license license:expat)))
+
 (define-public go-github-com-ipfs-go-cid
   (package
     (name "go-github-com-ipfs-go-cid")
-- 
2.45.1





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

* [bug#71501] [PATCH 2/3] gnu: Add go-github-com-ipfs-go-ipld-format.
  2024-06-12  5:35 [bug#71501] [PATCH 0/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
  2024-06-12  5:37 ` [bug#71501] [PATCH 1/3] gnu: Add go-github-com-ipfs-go-block-format Artyom V. Poptsov
@ 2024-06-12  5:37 ` Artyom V. Poptsov
  2024-06-12  5:37 ` [bug#71501] [PATCH 3/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
  2024-06-17 21:57 ` bug#71501: [PATCH 0/3] " Sharlatan Hellseher
  3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-06-12  5:37 UTC (permalink / raw)
  To: 71501; +Cc: Artyom V. Poptsov

* gnu/packages/ipfs.scm (go-github-com-ipfs-go-ipld-format): New variable.

Change-Id: I65aa1c71cf092c4923c9c4484498d6af684b215a
---
 gnu/packages/ipfs.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index 4a09993cb5..faf529b6a7 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -205,6 +205,35 @@ (define-public go-github-com-ipfs-go-ipfs-util
      "Common utilities used by @code{go-ipfs} and other related Go packages.")
     (license license:expat)))
 
+(define-public go-github-com-ipfs-go-ipld-format
+  (package
+    (name "go-github-com-ipfs-go-ipld-format")
+    (version "0.6.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/ipfs/go-ipld-format")
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0zl172ncmx9h5z2p3d0j1377xm9glw4zfyamks31p0pvvx2kyn7c"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:go go-1.21
+      #:import-path "github.com/ipfs/go-ipld-format"))
+    (propagated-inputs
+     (list go-github-com-multiformats-go-multihash
+           go-github-com-ipfs-go-block-format
+           go-github-com-ipfs-go-cid))
+    (home-page "https://github.com/ipfs/go-ipld-format")
+    (synopsis "IPLD Node and Resolver interfaces in Go")
+    (description
+     "@code{go-ipld-format} is a set of interfaces that a type needs to implement in
+order to be a part of the @acronym{IPLD, InterPlanetary Linked Data} merkle-forest.")
+    (license license:expat)))
+
 (define-public go-github-com-ipfs-go-ipfs-api
   (let ((commit
           "dafc2a13a4389ac1a6c2786e34ab70a4f26d3a3f")
-- 
2.45.1





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

* [bug#71501] [PATCH 3/3] gnu: kubo: Unbundle more inputs.
  2024-06-12  5:35 [bug#71501] [PATCH 0/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
  2024-06-12  5:37 ` [bug#71501] [PATCH 1/3] gnu: Add go-github-com-ipfs-go-block-format Artyom V. Poptsov
  2024-06-12  5:37 ` [bug#71501] [PATCH 2/3] gnu: Add go-github-com-ipfs-go-ipld-format Artyom V. Poptsov
@ 2024-06-12  5:37 ` Artyom V. Poptsov
  2024-06-17 21:57 ` bug#71501: [PATCH 0/3] " Sharlatan Hellseher
  3 siblings, 0 replies; 5+ messages in thread
From: Artyom V. Poptsov @ 2024-06-12  5:37 UTC (permalink / raw)
  To: 71501; +Cc: Artyom V. Poptsov

* gnu/packages/ipfs.scm (kubo): Unbundle more inputs.
  [inputs]: Add go-github-com-ipfs-go-block-format,
  go-github-com-ipfs-go-ipld-format.

Change-Id: Ia2f7a936d2af4f75c65cc0c0dc230982cc646ef8
---
 gnu/packages/ipfs.scm | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm
index faf529b6a7..0681ab8575 100644
--- a/gnu/packages/ipfs.scm
+++ b/gnu/packages/ipfs.scm
@@ -480,8 +480,10 @@ (define-public kubo
                              "vendor/github.com/google/uuid"
                              "vendor/github.com/gorilla"
                              "vendor/github.com/hashicorp"
+                             "vendor/github.com/ipfs/go-block-format"
                              "vendor/github.com/ipfs/go-cid"
                              "vendor/github.com/ipfs/go-cidutil"
+                             "vendor/github.com/ipfs/go-ipld-format"
                              "vendor/github.com/ipfs/go-ipfs-util"
                              "vendor/github.com/ipfs/go-log"
                              "vendor/github.com/jackpal"
@@ -553,7 +555,7 @@ (define-public kubo
                   go-github-com-google-uuid
                   go-github-com-hashicorp-go-multierror
                   ;;go-github-com-ipfs-boxo
-                  ;;go-github-com-ipfs-go-block-format
+                  go-github-com-ipfs-go-block-format
                   go-github-com-ipfs-go-cid
                   go-github-com-ipfs-go-cidutil
                   ;;go-github-com-ipfs-go-datastore
@@ -565,7 +567,7 @@ (define-public kubo
                   ;;go-github-com-ipfs-go-fs-lock
                   ;;go-github-com-ipfs-go-ipfs-cmds
                   ;;go-github-com-ipfs-go-ipld-cbor
-                  ;;go-github-com-ipfs-go-ipld-format
+                  go-github-com-ipfs-go-ipld-format
                   ;;go-github-com-ipfs-go-ipld-git
                   ;;go-github-com-ipfs-go-ipld-legacy
                   go-github-com-ipfs-go-log
-- 
2.45.1





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

* bug#71501: [PATCH 0/3] gnu: kubo: Unbundle more inputs.
  2024-06-12  5:35 [bug#71501] [PATCH 0/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
                   ` (2 preceding siblings ...)
  2024-06-12  5:37 ` [bug#71501] [PATCH 3/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
@ 2024-06-17 21:57 ` Sharlatan Hellseher
  3 siblings, 0 replies; 5+ messages in thread
From: Sharlatan Hellseher @ 2024-06-17 21:57 UTC (permalink / raw)
  To: 71501-done

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


Hi,

Pushed as 4797bbb12c..dbd078a5c9 to master.

--
Oleg

[-- 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-06-17 21:59 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-12  5:35 [bug#71501] [PATCH 0/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
2024-06-12  5:37 ` [bug#71501] [PATCH 1/3] gnu: Add go-github-com-ipfs-go-block-format Artyom V. Poptsov
2024-06-12  5:37 ` [bug#71501] [PATCH 2/3] gnu: Add go-github-com-ipfs-go-ipld-format Artyom V. Poptsov
2024-06-12  5:37 ` [bug#71501] [PATCH 3/3] gnu: kubo: Unbundle more inputs Artyom V. Poptsov
2024-06-17 21:57 ` bug#71501: [PATCH 0/3] " Sharlatan Hellseher

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.