diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-05-28 09:12:17 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-11 21:42:35 +0100 |
| commit | a505ffc146fc9452dc51854520e2b79f9de5fab5 (patch) | |
| tree | 05e51817a528be31c6ef328e15d1245bd0186b61 | |
| parent | 09b2d45b9a9790e24f8c42b2a00b5fcde64b990d (diff) | |
gnu: go-github-com-ipfs-go-datastore: Update to 0.8.2.
* gnu/packages/ipfs.scm (go-github-com-ipfs-go-datastore): Update to 0.8.2.
[source] <snippet>: Remove module with it's own go.mod file.
[arguments] <test-subdirs>: Simplify.
[propagated-inputs]: Remove go-github-com-jbenet-goprocess and
go-golang-org-x-xerrors; add go-go-opentelemetry-io-otel and
go-go-opentelemetry-io-otel-trace.
Change-Id: I3e8f1bc401ea39eda92b37ea40dcf964ca46b4b3
| -rw-r--r-- | gnu/packages/ipfs.scm | 33 |
1 files changed, 12 insertions, 21 deletions
diff --git a/gnu/packages/ipfs.scm b/gnu/packages/ipfs.scm index 0c56078bd63..54fe0d0cee8 100644 --- a/gnu/packages/ipfs.scm +++ b/gnu/packages/ipfs.scm @@ -728,36 +728,27 @@ keys used by @code{go-ipfs} (Kubo).") (define-public go-github-com-ipfs-go-datastore (package (name "go-github-com-ipfs-go-datastore") - (version "0.6.0") + (version "0.8.2") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/ipfs/go-datastore") (commit (string-append "v" version)))) + (modules '((guix build utils))) + (snippet + #~(begin + ;; Submodules with their own go.mod files and packaged separately: + ;; + ;; - github.com/ipfs/go-datastore/fuzz + (delete-file-recursively "fuzz"))) (file-name (git-file-name name version)) (sha256 - (base32 "1xbhh3gm7bgd2d1p821w8gmbh87aix1g1ynhbl7gjaxxyhrsh68n")))) + (base32 "02n38i09f8ffr894fzlsl80ahf32mpap5q004acz9cdg9a67pdz3")))) (build-system go-build-system) (arguments (list #:import-path "github.com/ipfs/go-datastore" - #:test-subdirs - #~(list "autobatch/..." - "delayed/..." - "examples/..." - "failstore/..." - ;; "fuzz/..." ; introduces cycle, for CLI - "keytransform/..." - "mount/..." - "namespace/..." - "query/..." - "retrystore/..." - "scoped/..." - "sync/..." - "test/..." - "trace/..." - ".") #:phases #~(modify-phases %standard-phases (add-after 'unpack 'remove-examples @@ -771,9 +762,9 @@ keys used by @code{go-ipfs} (Kubo).") (list go-github-com-google-uuid go-github-com-ipfs-go-detect-race go-github-com-ipfs-go-ipfs-delay - go-github-com-jbenet-goprocess - go-go-uber-org-multierr - go-golang-org-x-xerrors)) + go-go-opentelemetry-io-otel + go-go-opentelemetry-io-otel-trace + go-go-uber-org-multierr)) (home-page "https://github.com/ipfs/go-datastore") (synopsis "Key-value datastore interfaces") (description |
