guix-commits
[Top][All Lists]
Advanced

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

branch master updated: gnu: ubuntu-keyring: Update to 2023.11.28.1.


From: guix-commits
Subject: branch master updated: gnu: ubuntu-keyring: Update to 2023.11.28.1.
Date: Sun, 10 Dec 2023 04:45:00 -0500

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

efraim pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 63e06f30ce gnu: ubuntu-keyring: Update to 2023.11.28.1.
63e06f30ce is described below

commit 63e06f30ce20fa846a7e2e814976fefcd9eda7d3
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Dec 10 10:24:45 2023 +0200

    gnu: ubuntu-keyring: Update to 2023.11.28.1.
    
    * gnu/packages/debian.scm (ubuntu-keyring): Update to 2023.11.28.1.
    [native-inputs]: Remove gzip; add xz.
    
    Change-Id: Id90acc7a58085321ac96b6ab520f54b20911a8c1
---
 gnu/packages/debian.scm | 13 ++++++-------
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm
index 728f2cc845..b0a0b9e5d3 100644
--- a/gnu/packages/debian.scm
+++ b/gnu/packages/debian.scm
@@ -149,15 +149,15 @@ contains the archive keys used for that.")
 (define-public ubuntu-keyring
   (package
     (name "ubuntu-keyring")
-    (version "2021.03.26")
+    (version "2023.11.28.1")
     (source
       (origin
         (method url-fetch)
         (uri (string-append "https://launchpad.net/ubuntu/+archive/primary/";
-                            "+files/" name "_" version ".tar.gz"))
+                            "+files/" name "_" version ".tar.xz"))
         (sha256
          (base32
-          "1ccvwh4s51viyhcg8gh189jmvbrhc5wv1bbp4minz3200rffsbj9"))))
+          "0bmafky67hrb79baaydmw7al21lz0wgi4ks5dqfkfqamw5d4bkdf"))))
     (build-system trivial-build-system)
     (arguments
      `(#:modules ((guix build utils))
@@ -167,7 +167,7 @@ contains the archive keys used for that.")
                           (apt (string-append out "/etc/apt/trusted.gpg.d/"))
                           (key (string-append out "/share/keyrings/")))
                      (setenv "PATH" (string-append
-                                      (assoc-ref %build-inputs "gzip") "/bin:"
+                                      (assoc-ref %build-inputs "xz") "/bin:"
                                       (assoc-ref %build-inputs "tar") "/bin"))
                      (invoke "tar" "xvf" (assoc-ref %build-inputs "source"))
                      (for-each (lambda (file)
@@ -175,10 +175,9 @@ contains the archive keys used for that.")
                                (find-files "." "ubuntu-[^am].*\\.gpg$"))
                      (for-each (lambda (file)
                                  (install-file file key))
-                               (find-files "." "ubuntu-[am].*\\.gpg$")))
-                   #t)))
+                               (find-files "." "ubuntu-[am].*\\.gpg$"))))))
     (native-inputs
-     (list tar gzip))
+     (list tar xz))
     (home-page "https://launchpad.net/ubuntu/+source/ubuntu-keyring";)
     (synopsis "GnuPG keys of the Ubuntu archive")
     (description



reply via email to

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