diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-06-23 14:33:18 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-07-23 21:15:02 +0100 |
| commit | 3eb861c3a288fbc631e7a2f0462205e80efc3939 (patch) | |
| tree | e2d3ecd90c6af535a28da7ce2dd7c2034f1186e7 | |
| parent | 48f4c9deb6d123805aa8e852b8d54cb0c34147eb (diff) | |
gnu: go-github-com-google-go-containerregistry: Update to 0.21.7.
* gnu/packages/golang-web.scm (go-github-com-google-go-containerregistry): Update to 0.21.7.
[arguments] <test-flags>: Drop all.
[propagated-inputs]: Remove go-github-com-containerd-stargz-snapshotter-estargz,
go-github-com-docker-distribution, go-github-com-docker-docker, and
go-github-com-mitchellh-go-homedir; add
go-github-com-moby-docker-image-spec, go-github-com-moby-moby-api, and
go-github-com-moby-moby-client.
| -rw-r--r-- | gnu/packages/golang-web.scm | 29 |
1 files changed, 8 insertions, 21 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index e0a5238cbf4..e51af379ac6 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm | |||
| @@ -9182,7 +9182,7 @@ certificates.") | |||
| 9182 | (define-public go-github-com-google-go-containerregistry | 9182 | (define-public go-github-com-google-go-containerregistry |
| 9183 | (package | 9183 | (package |
| 9184 | (name "go-github-com-google-go-containerregistry") | 9184 | (name "go-github-com-google-go-containerregistry") |
| 9185 | (version "0.20.2") | 9185 | (version "0.21.7") |
| 9186 | (source | 9186 | (source |
| 9187 | (origin | 9187 | (origin |
| 9188 | (method git-fetch) | 9188 | (method git-fetch) |
| @@ -9191,16 +9191,11 @@ certificates.") | |||
| 9191 | (commit (string-append "v" version)))) | 9191 | (commit (string-append "v" version)))) |
| 9192 | (file-name (git-file-name name version)) | 9192 | (file-name (git-file-name name version)) |
| 9193 | (sha256 | 9193 | (sha256 |
| 9194 | (base32 "0gmbvpcbp6n9hx8dpggbxl7540b6vq3p0rm5a6lsjj2gw62p7zp5")) | 9194 | (base32 "002qa02i1ai3qqysjzgi01v9gcx5zcx6f8bgwkik8yb415ijk80d")) |
| 9195 | (modules '((guix build utils))) | 9195 | (modules '((guix build utils))) |
| 9196 | (snippet | 9196 | (snippet |
| 9197 | #~(begin | 9197 | #~(begin |
| 9198 | ;; Submodules with their own go.mod files and packed as separated | 9198 | ;; Submodules with their own go.mod files and packaged separately: |
| 9199 | ;; packages: | ||
| 9200 | ;; | ||
| 9201 | ;; - github.com/google/go-containerregistry/cmd/krane | ||
| 9202 | ;; - github.com/google/go-containerregistry/pkg/authn/k8schain | ||
| 9203 | ;; - github.com/google/go-containerregistry/pkg/authn/kubernetes | ||
| 9204 | (for-each delete-file-recursively | 9199 | (for-each delete-file-recursively |
| 9205 | (list "cmd/krane" | 9200 | (list "cmd/krane" |
| 9206 | "pkg/authn/k8schain" | 9201 | "pkg/authn/k8schain" |
| @@ -9210,25 +9205,17 @@ certificates.") | |||
| 9210 | (arguments | 9205 | (arguments |
| 9211 | (list | 9206 | (list |
| 9212 | #:skip-build? #t | 9207 | #:skip-build? #t |
| 9213 | #:import-path "github.com/google/go-containerregistry" | 9208 | #:import-path "github.com/google/go-containerregistry")) |
| 9214 | #:test-flags | ||
| 9215 | #~(list "-vet=off" | ||
| 9216 | "-skip" (string-join | ||
| 9217 | (list "TestGcloudErrors" | ||
| 9218 | "TestGcloudSuccess" | ||
| 9219 | "TestKeychainGCRandAR") | ||
| 9220 | "|")))) | ||
| 9221 | (native-inputs | 9209 | (native-inputs |
| 9222 | ;; For the CLI commands. | 9210 | ;; For the CLI commands. |
| 9223 | (list go-github-com-spf13-cobra | 9211 | (list go-github-com-spf13-cobra |
| 9224 | go-github-com-google-go-cmp)) | 9212 | go-github-com-google-go-cmp)) |
| 9225 | (propagated-inputs | 9213 | (propagated-inputs |
| 9226 | (list go-github-com-containerd-stargz-snapshotter-estargz | 9214 | (list go-github-com-docker-cli |
| 9227 | go-github-com-docker-cli | ||
| 9228 | go-github-com-docker-distribution | ||
| 9229 | go-github-com-docker-docker | ||
| 9230 | go-github-com-klauspost-compress | 9215 | go-github-com-klauspost-compress |
| 9231 | go-github-com-mitchellh-go-homedir | 9216 | go-github-com-moby-docker-image-spec |
| 9217 | go-github-com-moby-moby-api | ||
| 9218 | go-github-com-moby-moby-client | ||
| 9232 | go-github-com-opencontainers-go-digest | 9219 | go-github-com-opencontainers-go-digest |
| 9233 | go-github-com-opencontainers-image-spec | 9220 | go-github-com-opencontainers-image-spec |
| 9234 | go-golang-org-x-oauth2 | 9221 | go-golang-org-x-oauth2 |
