summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-10-22 15:55:43 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-22 16:03:58 +0100
commit8cdfbafc1927b6e5b3b0e17722c47a6665a9ed6a (patch)
tree5fc14ae7e6c47087d08c87be947811395e8ae294 /gnu
parent3ad7dcc88cd31f53ba88c5d22c082c13c83cfb6a (diff)
gnu: go-github-com-opencontainers-runtime-tools: Update to 0.9.0-0.0ea5ed0.
* gnu/packages/golang-xyz.scm (go-github-com-opencontainers-runtime-tools): Update to 0ea5ed0382a279b30530acccafaf070fefeddafd commit. [arguments] <tests?>: Enable them. [propagated-inputs]: Remove go-github-com-blang-semver, go-github-com-satori-go-uuid, and go-github-com-syndtr-gocapability; add go-github-com-blang-semver-v4, go-github-com-google-uuid, go-github-com-moby-sys-capability, and go-github-com-moby-sys-mountinfo. Change-Id: Ia539b34872e81b1aea4a886fb8bd87a7b6589157
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm20
1 files changed, 12 insertions, 8 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 1a6aff3c490..a28aca3173d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -16947,16 +16947,21 @@ specification-runtime-spec.")
16947(define-public go-github-com-opencontainers-runtime-tools 16947(define-public go-github-com-opencontainers-runtime-tools
16948 (package 16948 (package
16949 (name "go-github-com-opencontainers-runtime-tools") 16949 (name "go-github-com-opencontainers-runtime-tools")
16950 (version "0.9.0") 16950 ;; XXX: See: <https://github.com/opencontainers/runtime-tools/issues/792>.
16951 (properties '((commit . "0ea5ed0382a279b30530acccafaf070fefeddafd")
16952 (revision . "0")))
16953 (version (git-version "0.9.0"
16954 (assoc-ref properties 'revision)
16955 (assoc-ref properties 'commit)))
16951 (source 16956 (source
16952 (origin 16957 (origin
16953 (method git-fetch) 16958 (method git-fetch)
16954 (uri (git-reference 16959 (uri (git-reference
16955 (url "https://github.com/opencontainers/runtime-tools") 16960 (url "https://github.com/opencontainers/runtime-tools")
16956 (commit (string-append "v" version)))) 16961 (commit (assoc-ref properties 'commit))))
16957 (file-name (git-file-name name version)) 16962 (file-name (git-file-name name version))
16958 (sha256 16963 (sha256
16959 (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa")) 16964 (base32 "1385hh25ysni83wp5xdn4zajzavmnbrgz9mrpqsj3byk33xqyh3z"))
16960 (snippet 16965 (snippet
16961 #~(begin (use-modules (guix build utils)) 16966 #~(begin (use-modules (guix build utils))
16962 (delete-file-recursively "vendor"))))) 16967 (delete-file-recursively "vendor")))))
@@ -16964,8 +16969,6 @@ specification-runtime-spec.")
16964 (arguments 16969 (arguments
16965 (list 16970 (list
16966 #:skip-build? #t 16971 #:skip-build? #t
16967 ;; XXX: See: <https://github.com/opencontainers/runtime-tools/issues/792>.
16968 #:tests? #f
16969 #:import-path "github.com/opencontainers/runtime-tools" 16972 #:import-path "github.com/opencontainers/runtime-tools"
16970 #:build-flags 16973 #:build-flags
16971 #~(list (format #f "-ldflags=-X ~s" 16974 #~(list (format #f "-ldflags=-X ~s"
@@ -16979,14 +16982,15 @@ specification-runtime-spec.")
16979 go-github-com-stretchr-testify 16982 go-github-com-stretchr-testify
16980 go-github-com-urfave-cli)) 16983 go-github-com-urfave-cli))
16981 (propagated-inputs 16984 (propagated-inputs
16982 (list go-github-com-blang-semver 16985 (list go-github-com-blang-semver-v4
16986 go-github-com-google-uuid
16983 go-github-com-hashicorp-go-multierror 16987 go-github-com-hashicorp-go-multierror
16988 go-github-com-moby-sys-capability
16989 go-github-com-moby-sys-mountinfo
16984 go-github-com-mrunalp-fileutils 16990 go-github-com-mrunalp-fileutils
16985 go-github-com-opencontainers-runtime-spec 16991 go-github-com-opencontainers-runtime-spec
16986 go-github-com-opencontainers-selinux 16992 go-github-com-opencontainers-selinux
16987 go-github-com-satori-go-uuid
16988 go-github-com-sirupsen-logrus 16993 go-github-com-sirupsen-logrus
16989 go-github-com-syndtr-gocapability
16990 go-github-com-xeipuuv-gojsonschema 16994 go-github-com-xeipuuv-gojsonschema
16991 go-golang-org-x-sys)) 16995 go-golang-org-x-sys))
16992 (home-page "https://github.com/opencontainers/runtime-tools") 16996 (home-page "https://github.com/opencontainers/runtime-tools")