import: go: Handle extra whitespace in "go-import" meta tags.
Some packages sites use extra whitespace in the content portion of <meta name="go-import" ...> tags, so handle that. Example: <https://k8s.io/api?go-get=1> * guix/import/go.scm (fetch-module-meta-data)[go-import->module-meta]: Use 'string-tokenize' instead of 'string-split'. Signed-off-by: Ludovic Courtès <ludo@gnu.org>master
parent
f666b9b478
commit
ac43ead774
|
@ -474,7 +474,7 @@ Optionally include a VERSION string to append to the name."
|
|||
because goproxy servers don't currently provide all the information needed to
|
||||
build a package."
|
||||
(define (go-import->module-meta content-text)
|
||||
(match (string-split content-text #\space)
|
||||
(match (string-tokenize content-text char-set:graphic)
|
||||
((root-path vcs repo-url)
|
||||
(make-module-meta root-path (string->symbol vcs)
|
||||
(strip-.git-suffix/maybe repo-url)))))
|
||||
|
|
Reference in New Issue