Include pkg authors in status web page.
This commit is contained in:
parent
77f2a02149
commit
f98a912e0c
|
@ -405,6 +405,7 @@
|
|||
installed-pkgs))
|
||||
|
||||
(define (pkg-checksum pkg) (hash-ref (hash-ref pkg-details pkg) 'checksum ""))
|
||||
(define (pkg-author pkg) (hash-ref (hash-ref pkg-details pkg) 'author ""))
|
||||
(define (pkg-checksum-file pkg) (build-path built-pkgs-dir (~a pkg ".orig-CHECKSUM")))
|
||||
(define (pkg-zip-file pkg) (build-path built-pkgs-dir (~a pkg ".zip")))
|
||||
(define (pkg-zip-checksum-file pkg) (build-path built-pkgs-dir (~a pkg ".zip.CHECKSUM")))
|
||||
|
@ -1101,6 +1102,7 @@
|
|||
(doc/salvage doc path))
|
||||
(doc/none doc))
|
||||
(doc/main doc path)))
|
||||
'author (pkg-author pkg)
|
||||
'conflicts-log (and conflicts?
|
||||
(if (set-member? conflict-pkgs pkg)
|
||||
"conflicts"
|
||||
|
|
|
@ -45,8 +45,10 @@
|
|||
'success)
|
||||
'unknown))
|
||||
(define docs (hash-ref ht 'docs))
|
||||
(define author (hash-ref ht 'author))
|
||||
(define conflicts-log (hash-ref ht 'conflicts-log))
|
||||
(tr (td pkg)
|
||||
(td author)
|
||||
(td (if (null? docs)
|
||||
""
|
||||
(list
|
||||
|
|
Loading…
Reference in New Issue
Block a user