import: gnome: Update for Guile-JSON 3.x.
This is a followup to 81c3dc3224
.
* guix/import/gnome.scm (jsonish->upstream-source): Use 'assoc-ref'
instead of 'hash-ref'.
(latest-gnome-release): Match a vector containing an alist, not a hash
table. Use 'fold' instead of 'hash-fold' over RELEASES.
This commit is contained in:
parent
d88b811adf
commit
8d64ef567f
|
@ -1,5 +1,5 @@
|
|||
;;; GNU Guix --- Functional package management for GNU
|
||||
;;; Copyright © 2017 Ludovic Courtès <ludo@gnu.org>
|
||||
;;; Copyright © 2017, 2019 Ludovic Courtès <ludo@gnu.org>
|
||||
;;;
|
||||
;;; This file is part of GNU Guix.
|
||||
;;;
|
||||
|
@ -46,7 +46,7 @@ source for metadata."
|
|||
(package name)
|
||||
(version version)
|
||||
(urls (filter-map (lambda (extension)
|
||||
(match (hash-ref dictionary extension)
|
||||
(match (assoc-ref dictionary extension)
|
||||
(#f
|
||||
#f)
|
||||
((? string? relative-url)
|
||||
|
@ -86,9 +86,10 @@ not be determined."
|
|||
(json (json->scm port)))
|
||||
(close-port port)
|
||||
(match json
|
||||
((4 (? hash-table? releases) _ ...)
|
||||
(let* ((releases (hash-ref releases upstream-name))
|
||||
(latest (hash-fold (lambda (key value result)
|
||||
(#(4 releases _ ...)
|
||||
(let* ((releases (assoc-ref releases upstream-name))
|
||||
(latest (fold (match-lambda*
|
||||
(((key . value) result)
|
||||
(cond ((even-minor-version? key)
|
||||
(match result
|
||||
(#f
|
||||
|
@ -98,7 +99,7 @@ not be determined."
|
|||
(cons key value)
|
||||
result))))
|
||||
(else
|
||||
result)))
|
||||
result))))
|
||||
#f
|
||||
releases)))
|
||||
(and latest
|
||||
|
|
Loading…
Reference in New Issue