guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/08: import/texlive: Only process description if it exists.


From: guix-commits
Subject: 06/08: import/texlive: Only process description if it exists.
Date: Wed, 29 Mar 2023 15:08:45 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 03a83c290603c2c4b6b9af7086e876448a7a8e41
Author: Ricardo Wurmus <rekado@elephly.net>
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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]