guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: skopeo: Update to 1.2.0.


From: guix-commits
Subject: branch master updated: gnu: skopeo: Update to 1.2.0.
Date: Thu, 01 Oct 2020 08:42:56 -0400

This is an automated email from the git hooks/post-receive script.

jlicht pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new e65991a  gnu: skopeo: Update to 1.2.0.
e65991a is described below

commit e65991a36325d1ef34e32ff1ea741802e8664144
Author: Jelle Licht <jlicht@fsfe.org>
AuthorDate: Thu Oct 1 14:23:21 2020 +0200

    gnu: skopeo: Update to 1.2.0.
    
    * gnu/packages/virtualization.scm (skopeo): Update to 1.2.0.
    [source]: Update uri.
    [arguments]: Update #:import-path.
    <phases>: In the 'build' phase, update make target.
    [home-page]: Update to current.
---
 gnu/packages/virtualization.scm | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/virtualization.scm b/gnu/packages/virtualization.scm
index 53e9dde..309a29c 100644
--- a/gnu/packages/virtualization.scm
+++ b/gnu/packages/virtualization.scm
@@ -1592,16 +1592,16 @@ Open Container Initiative (OCI) image layout and its 
tagged images.")
 (define-public skopeo
   (package
     (name "skopeo")
-    (version "0.1.40")
+    (version "1.2.0")
     (source (origin
               (method git-fetch)
               (uri (git-reference
-                    (url "https://github.com/projectatomic/skopeo";)
+                    (url "https://github.com/containers/skopeo";)
                     (commit (string-append "v" version))))
               (file-name (git-file-name name version))
               (sha256
                (base32
-                "1bagirzdzjhicn5dr691092ac3q6lhz3xngjzgqiqkxnvpz7p6cn"))))
+                "1v7k3ki10i6082r7zswblyirx6zck674y6bw3plssw4p1l2611rd"))))
     (build-system go-build-system)
     (native-inputs
      `(("pkg-config" ,pkg-config)))
@@ -1615,7 +1615,7 @@ Open Container Initiative (OCI) image layout and its 
tagged images.")
        ("glib" ,glib)
        ("gpgme" ,gpgme)))
     (arguments
-     '(#:import-path "github.com/projectatomic/skopeo"
+     '(#:import-path "github.com/containers/skopeo"
        #:install-source? #f
        #:tests? #f ; The tests require Docker
        #:phases
@@ -1624,13 +1624,13 @@ Open Container Initiative (OCI) image layout and its 
tagged images.")
            (lambda* (#:key import-path #:allow-other-keys)
              (chdir (string-append "src/" import-path))
              ;; TODO: build manpages with 'go-md2man'.
-             (invoke "make" "binary-local")))
+             (invoke "make" "bin/skopeo")))
          (replace 'install
            (lambda* (#:key outputs #:allow-other-keys)
              (let ((out (assoc-ref outputs "out")))
                (invoke "make" "install-binary" "install-completions"
                        (string-append "PREFIX=" out))))))))
-    (home-page "https://github.com/projectatomic/skopeo";)
+    (home-page "https://github.com/containers/skopeo";)
     (synopsis "Interact with container images and container image registries")
     (description
      "@command{skopeo} is a command line utility providing various operations



reply via email to

[Prev in Thread] Current Thread [Next in Thread]