Skip to content
Snippets Groups Projects
Commit 572bcdf0 authored by Ludovic Courtès's avatar Ludovic Courtès
Browse files

list-packages: Handle 'origin' patches.

* build-aux/list-packages.scm (package->sxml)[patches]: Handle the case
  where PATCH is an 'origin'.
parent 14e84b2d
No related branches found
No related tags found
No related merge requests found
...@@ -100,10 +100,25 @@ (define ->sxml ...@@ -100,10 +100,25 @@ (define ->sxml
(->sxml (package-license package))) (->sxml (package-license package)))
(define (patches package) (define (patches package)
(define (patch-url patch) (define patch-url
(string-append (match-lambda
"http://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/patches/" ((? string? patch)
(basename patch))) (string-append
"http://git.savannah.gnu.org/cgit/guix.git/tree/gnu/packages/patches/"
(basename patch)))
((? origin? patch)
(match (origin-uri patch)
((? string? uri) uri)
((head . tail) head)))))
(define patch-name
(match-lambda
((? string? patch)
(basename patch))
((? origin? patch)
(match (origin-uri patch)
((? string? uri) (basename uri))
((head . tail) (basename head))))))
(define (snippet-link snippet) (define (snippet-link snippet)
(let ((loc (or (package-field-location package 'source) (let ((loc (or (package-field-location package 'source)
...@@ -134,7 +149,7 @@ (define (snippet-link snippet) ...@@ -134,7 +149,7 @@ (define (snippet-link snippet)
(cons `(a (@ (href ,(patch-url patch)) (cons `(a (@ (href ,(patch-url patch))
(title ,(string-append (title ,(string-append
"Link to " "Link to "
(basename patch)))) (patch-name patch))))
,(number->string number)) ,(number->string number))
links)))))))))) links))))))))))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment