summaryrefslogtreecommitdiff
path: root/gnu/packages/debian.scm
diff options
context:
space:
mode:
authorEfraim Flashner <efraim@flashner.co.il>2023-02-27 15:06:20 +0200
committerEfraim Flashner <efraim@flashner.co.il>2023-02-27 15:29:23 +0200
commit90188a66b420ef9d700c053f99ade2bc393b43e3 (patch)
tree91ba40aaf465f37c8897a16d0bde1622d82f61f0 /gnu/packages/debian.scm
parent55054c1235ff2048079d4b83840cf22a61d04e5a (diff)
gnu: debian-ports-archive-keyring: Update to 2023.02.21.
* gnu/packages/debian.scm (debian-ports-archive-keyring): Update to 2023.02.01. [arguments]: Remove trailing #t from phases.
Diffstat (limited to 'gnu/packages/debian.scm')
-rw-r--r--gnu/packages/debian.scm12
1 files changed, 5 insertions, 7 deletions
diff --git a/gnu/packages/debian.scm b/gnu/packages/debian.scm
index c962adf27f2..dd2d68d482a 100644
--- a/gnu/packages/debian.scm
+++ b/gnu/packages/debian.scm
@@ -1,5 +1,5 @@
1;;; GNU Guix --- Functional package management for GNU 1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2018, 2020, 2021, 2022 Efraim Flashner <efraim@flashner.co.il> 2;;; Copyright © 2018, 2020-2023 Efraim Flashner <efraim@flashner.co.il>
3;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr> 3;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
4;;; Copyright © 2020 Marius Bakke <marius@gnu.org> 4;;; Copyright © 2020 Marius Bakke <marius@gnu.org>
5;;; 5;;;
@@ -89,7 +89,7 @@ contains the archive keys used for that.")
89(define-public debian-ports-archive-keyring 89(define-public debian-ports-archive-keyring
90 (package 90 (package
91 (name "debian-ports-archive-keyring") 91 (name "debian-ports-archive-keyring")
92 (version "2022.02.15") 92 (version "2023.02.01")
93 (source 93 (source
94 (origin 94 (origin
95 (method url-fetch) 95 (method url-fetch)
@@ -98,7 +98,7 @@ contains the archive keys used for that.")
98 "/debian-ports-archive-keyring_" version ".tar.xz")) 98 "/debian-ports-archive-keyring_" version ".tar.xz"))
99 (sha256 99 (sha256
100 (base32 100 (base32
101 "096m45l7g8vbk67gwc6bmkzpx8mhn6xfglgrzlg9xkgcs5gxqyc0")))) 101 "1xq7i6plgfbf4drqdmmk1yija48x11jmhnk2av3cajn2cdhkw73s"))))
102 (build-system gnu-build-system) 102 (build-system gnu-build-system)
103 (arguments 103 (arguments
104 '(#:tests? #f ; No test suite. 104 '(#:tests? #f ; No test suite.
@@ -127,8 +127,7 @@ contains the archive keys used for that.")
127 (string-append "trusted.gpg/" (basename key ".key") ".gpg") 127 (string-append "trusted.gpg/" (basename key ".key") ".gpg")
128 (lambda _ 128 (lambda _
129 (apply invoke "gpg" (append gpg-options (list key)))))) 129 (apply invoke "gpg" (append gpg-options (list key))))))
130 (find-files "active-keys")) 130 (find-files "active-keys")))))
131 #t)))
132 (replace 'install 131 (replace 'install
133 (lambda* (#:key outputs #:allow-other-keys) 132 (lambda* (#:key outputs #:allow-other-keys)
134 (let* ((out (assoc-ref outputs "out")) 133 (let* ((out (assoc-ref outputs "out"))
@@ -138,8 +137,7 @@ contains the archive keys used for that.")
138 (install-file "debian-ports-archive-keyring-removed.gpg" key) 137 (install-file "debian-ports-archive-keyring-removed.gpg" key)
139 (for-each (lambda (file) 138 (for-each (lambda (file)
140 (install-file file apt)) 139 (install-file file apt))
141 (find-files "trusted.gpg" "\\.gpg$"))) 140 (find-files "trusted.gpg" "\\.gpg$"))))))))
142 #t)))))
143 (native-inputs 141 (native-inputs
144 (list gnupg)) 142 (list gnupg))
145 (home-page "https://tracker.debian.org/pkg/debian-ports-archive-keyring") 143 (home-page "https://tracker.debian.org/pkg/debian-ports-archive-keyring")