summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2026-06-22 21:30:24 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2026-07-23 21:15:00 +0100
commit52b4c2f0de7dbac69a1f729e643d192635271e06 (patch)
tree796fedc09aa3c0cf1ef947429e22e71d97284d86 /gnu
parent9e3be88340b98ff1adda2f06d5dcd013b8a7dd0c (diff)
gnu: go-github-com-containerd-cgroups-v3: Update to 3.1.3.
* gnu/packages/golang-xyz.scm (go-github-com-containerd-cgroups-v3): Update to 3.1.3. [arguments]: Do not inherit and skip more failing tests,
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm37
1 files changed, 30 insertions, 7 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index dc4098be044..274efb05c64 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6926,19 +6926,20 @@ cgroup uses the OCI runtime-spec found
6926 (license license:asl2.0))) 6926 (license license:asl2.0)))
6927 6927
6928(define-public go-github-com-containerd-cgroups-v3 6928(define-public go-github-com-containerd-cgroups-v3
6929 ;; TODO: Move to (gnu packages containers).
6929 (package 6930 (package
6930 (inherit go-github-com-containerd-cgroups) 6931 (inherit go-github-com-containerd-cgroups)
6931 (name "go-github-com-containerd-cgroups-v3") 6932 (name "go-github-com-containerd-cgroups-v3")
6932 (version "3.0.4") 6933 (version "3.1.3")
6933 (source 6934 (source
6934 (origin 6935 (origin
6935 (method git-fetch) 6936 (method git-fetch)
6936 (uri (git-reference 6937 (uri (git-reference
6937 (url "https://github.com/containerd/cgroups") 6938 (url "https://github.com/containerd/cgroups")
6938 (commit (string-append "v" version)))) 6939 (commit (string-append "v" version))))
6939 (file-name (git-file-name name version)) 6940 (file-name (git-file-name name version))
6940 (sha256 6941 (sha256
6941 (base32 "09fkbhkx0hmcfcym3zl0dshbhj3p692xg7d6y8pj732g64zk6v4k")) 6942 (base32 "0afqvid6178kaxlba7kb9575b5w5g88aw3r7wdrrahbk1fjskaaq"))
6942 (modules '((guix build utils))) 6943 (modules '((guix build utils)))
6943 (snippet 6944 (snippet
6944 #~(begin 6945 #~(begin
@@ -6948,9 +6949,31 @@ cgroup uses the OCI runtime-spec found
6948 ;; - github.com/containerd/cgroups/cmd cgctl 6949 ;; - github.com/containerd/cgroups/cmd cgctl
6949 (delete-file-recursively "cmd"))))) 6950 (delete-file-recursively "cmd")))))
6950 (arguments 6951 (arguments
6951 (substitute-keyword-arguments 6952 (list
6952 (package-arguments go-github-com-containerd-cgroups) 6953 #:import-path "github.com/containerd/cgroups/v3"
6953 ((#:import-path _) "github.com/containerd/cgroups/v3"))) 6954 #:test-flags
6955 #~(list "-skip" (string-join
6956 ;; Tests requiring root access to cgrups.
6957 (list "TestCPUQuotaPeriodUSec"
6958 "TestCgroupType"
6959 "TestCgroupv2CpuStats"
6960 "TestCgroupv2MemoryStats"
6961 "TestCgroupv2PSIStats"
6962 "TestCgroupv2PidsStats"
6963 "TestErrorsWhenUnitAlreadyExists"
6964 "TestEventChanCleanupAfterOOMKill"
6965 "TestEventChanCleanupOnCgroupRemoval"
6966 "TestIgnoreUnitExistsWhenPidNegativeOne"
6967 "TestKill"
6968 "TestMoveTo"
6969 "TestStatFiltered"
6970 "TestSystemd240"
6971 "TestSystemdCgroupCpuController"
6972 "TestSystemdCgroupCpuController_NilWeight"
6973 "TestSystemdCgroupMemoryController"
6974 "TestSystemdCgroupPSIController"
6975 "TestSystemdCgroupPidsController")
6976 "|"))))
6954 (propagated-inputs 6977 (propagated-inputs
6955 (list go-github-com-cilium-ebpf 6978 (list go-github-com-cilium-ebpf
6956 go-github-com-containerd-log 6979 go-github-com-containerd-log