~ruther/guix-local

8cdfbafc1927b6e5b3b0e17722c47a6665a9ed6a — Sharlatan Hellseher 5 months ago 3ad7dcc
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
1 files changed, 12 insertions(+), 8 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +12 -8
@@ 16947,16 16947,21 @@ specification-runtime-spec.")
(define-public go-github-com-opencontainers-runtime-tools
  (package
    (name "go-github-com-opencontainers-runtime-tools")
    (version "0.9.0")
    ;; XXX: See: <https://github.com/opencontainers/runtime-tools/issues/792>.
    (properties '((commit . "0ea5ed0382a279b30530acccafaf070fefeddafd")
                  (revision . "0")))
    (version (git-version "0.9.0"
                          (assoc-ref properties 'revision)
                          (assoc-ref properties 'commit)))
    (source
     (origin
       (method git-fetch)
       (uri (git-reference
              (url "https://github.com/opencontainers/runtime-tools")
              (commit (string-append "v" version))))
              (commit (assoc-ref properties 'commit))))
       (file-name (git-file-name name version))
       (sha256
        (base32 "1pli3jb1rq9lkzzz83f7jw788vijg7x6ly3vgasdlwri7kiph1sa"))
        (base32 "1385hh25ysni83wp5xdn4zajzavmnbrgz9mrpqsj3byk33xqyh3z"))
       (snippet
        #~(begin (use-modules (guix build utils))
                 (delete-file-recursively "vendor")))))


@@ 16964,8 16969,6 @@ specification-runtime-spec.")
    (arguments
     (list
      #:skip-build? #t
      ;; XXX: See: <https://github.com/opencontainers/runtime-tools/issues/792>.
      #:tests? #f
      #:import-path "github.com/opencontainers/runtime-tools"
      #:build-flags
      #~(list (format #f "-ldflags=-X ~s"


@@ 16979,14 16982,15 @@ specification-runtime-spec.")
           go-github-com-stretchr-testify
           go-github-com-urfave-cli))
    (propagated-inputs
     (list go-github-com-blang-semver
     (list go-github-com-blang-semver-v4
           go-github-com-google-uuid
           go-github-com-hashicorp-go-multierror
           go-github-com-moby-sys-capability
           go-github-com-moby-sys-mountinfo
           go-github-com-mrunalp-fileutils
           go-github-com-opencontainers-runtime-spec
           go-github-com-opencontainers-selinux
           go-github-com-satori-go-uuid
           go-github-com-sirupsen-logrus
           go-github-com-syndtr-gocapability
           go-github-com-xeipuuv-gojsonschema
           go-golang-org-x-sys))
    (home-page "https://github.com/opencontainers/runtime-tools")