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
This commit is contained in:
Efraim Flashner 2023-12-10 10:24:45 +02:00
parent 9c30fb27a4
commit 63e06f30ce
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351

View File

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