mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu-maintenance: Support URI list of mixed mirrors, HTTP URLs.
This reinstate commit a5b5df7f7f
with a fix to
the inner expand-uri procedure.
This commit is contained in:
parent
a9d5d1d9dd
commit
2a7f031ca9
1 changed files with 18 additions and 11 deletions
|
@ -975,17 +975,24 @@ (define (html-updatable-package? package)
|
|||
((url-predicate http-url?) package)))
|
||||
|
||||
(define* (import-html-updatable-release package #:key (version #f))
|
||||
"Return the latest release of PACKAGE. Do that by crawling the HTML page of
|
||||
the directory containing its source tarball. Optionally include a VERSION
|
||||
string to fetch a specific version."
|
||||
(let* ((uri (string->uri
|
||||
(match (origin-uri (package-source package))
|
||||
((and (? string?)
|
||||
(? (cut string-prefix? "mirror://" <>) url))
|
||||
;; Retrieve the authoritative HTTP URL from a mirror.
|
||||
(http-url? url))
|
||||
((? string? url) url)
|
||||
((url _ ...) url))))
|
||||
"Return the latest release of PACKAGE else #f. Do that by crawling the HTML
|
||||
page of the directory containing its source tarball. Optionally include a
|
||||
VERSION string to fetch a specific version."
|
||||
|
||||
(define (expand-uri uri)
|
||||
(match uri
|
||||
((and (? string?) (? (cut string-prefix? "mirror://" <>) url))
|
||||
;; Retrieve the authoritative HTTP URL from a mirror.
|
||||
(http-url? url))
|
||||
((? string? url)
|
||||
url)
|
||||
((url _ ...)
|
||||
;; This case is for when the URI is a list of possibly
|
||||
;; mirror URLs as well as HTTP URLs.
|
||||
(expand-uri url))))
|
||||
|
||||
(let* ((uri (string->uri
|
||||
(expand-uri (origin-uri (package-source package)))))
|
||||
(custom (assoc-ref (package-properties package)
|
||||
'release-monitoring-url))
|
||||
(base (or custom
|
||||
|
|
Loading…
Reference in a new issue