mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu-maintenance: 'generic-html' computes the right source URL.
Fixes a regression introduced in
84f8bae0f8
, whereby the URL computed for
the new ffmpeg (for instance) would be:
https://ffmpeg.org/ffmpeg-4.4.tar.xz
instead of:
https://ffmpeg.org/releases/ffmpeg-4.4.tar.xz
Reported by Maxim Cournoyer.
* guix/gnu-maintenance.scm (latest-html-release)[url->release]: Adjust
computation in the case of a URI-reference with a relative path.
This commit is contained in:
parent
fe509e017f
commit
1e8ebb16c9
1 changed files with 9 additions and 2 deletions
|
@ -507,12 +507,19 @@ (define (url->release url)
|
|||
#:port (uri-port uri)
|
||||
#:path url))))
|
||||
|
||||
;; URL is relative path and BASE-URL may or may not
|
||||
;; URL is a relative path and BASE-URL may or may not
|
||||
;; end in slash.
|
||||
((string-suffix? "/" base-url)
|
||||
(string-append base-url url))
|
||||
(else
|
||||
(string-append (dirname base-url) "/" url)))))
|
||||
;; If DIRECTORY is non-empty, assume BASE-URL
|
||||
;; denotes a directory; otherwise, assume BASE-URL
|
||||
;; denotes a file within a directory, and that URL
|
||||
;; is relative to that directory.
|
||||
(string-append (if (string-null? directory)
|
||||
(dirname base-url)
|
||||
base-url)
|
||||
"/" url)))))
|
||||
(and (release-file? package base)
|
||||
(let ((version (tarball->version base)))
|
||||
(upstream-source
|
||||
|
|
Loading…
Reference in a new issue