rekado pushed a commit to branch master
in repository guix.
commit 03a83c290603c2c4b6b9af7086e876448a7a8e41
Author: Ricardo Wurmus <[email protected]>
AuthorDate: Wed Mar 29 21:04:13 2023 +0200
import/texlive: Only process description if it exists.
* guix/import/texlive.scm (tlpdb->package): Run beautify-description only
when
the "longdesc" field exists.
---
guix/import/texlive.scm | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/guix/import/texlive.scm b/guix/import/texlive.scm
index a81805bdca..f1557fcd0f 100644
--- a/guix/import/texlive.scm
+++ b/guix/import/texlive.scm
@@ -298,10 +298,9 @@ of those files are returned that are unexpectedly
installed."
`((home-page ,(string-append "https://ctan.org" url)))))
'((home-page "https://www.tug.org/texlive/")))
(synopsis ,(assoc-ref data 'shortdesc))
- (description ,(beautify-description
- (assoc-ref data 'longdesc)))
(license ,(string->license
(assoc-ref data 'catalogue-license))))
+ (description ,(and=> (assoc-ref data 'longdesc) beautify-description))
filtered-depends)))
(define texlive->guix-package