guix-commits
[Top][All Lists]
Advanced

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

169/418: gnu: texlive-endfloat: Refresh package definition.


From: guix-commits
Subject: 169/418: gnu: texlive-endfloat: Refresh package definition.
Date: Fri, 2 Jun 2023 17:24:27 -0400 (EDT)

ngz pushed a commit to branch tex-team-next
in repository guix.

commit df993003142b039a1e75ae1e1b715a82aa565329
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 12:45:44 2023 +0200

    gnu: texlive-endfloat: Refresh package definition.
    
    * gnu/packages/tex.scm (texlive-endfloat): Remove SIMPLE-TEXLIVE-PACKAGE
    call.
    [propagated-inputs]: Add TEXLIVE-GRAPHICS.
---
 gnu/packages/tex.scm | 34 ++++++++++++++++++----------------
 1 file changed, 18 insertions(+), 16 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 20a1203925..d05de5f85a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -12170,23 +12170,25 @@ index for a document.")
 
 (define-public texlive-endfloat
   (package
-    (inherit (simple-texlive-package
-              "texlive-endfloat"
-              (list "doc/latex/endfloat/"
-                    "source/latex/endfloat/"
-                    "tex/latex/endfloat/")
-              (base32
-               "1zslmc5g28z6adfyd8bdlbw03jawxmgafq0mgwy811hrbcppb2kg")
-              #:trivial? #t))
-    (home-page "https://www.ctan.org/pkg/endfloat";)
+    (name "texlive-endfloat")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/latex/endfloat/" "source/latex/endfloat/"
+                   "tex/latex/endfloat/")
+             (base32
+              "1zslmc5g28z6adfyd8bdlbw03jawxmgafq0mgwy811hrbcppb2kg")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (propagated-inputs
+     (list texlive-graphics))
+    (home-page "https://ctan.org/pkg/endfloat";)
     (synopsis "Move floats to the end, leaving markers where they belong")
-    (description "Place all floats on pages by themselves at the end of
-the document, optionally leaving markers like “[Figure 3 about here]”
-in the text near to where the figure (or table) would normally have
-occurred.  Float types figure and table are recognised by the package,
-unmodified.  Since several packages define other types of float, it is
-possible to register these float types with endfloat.")
-    (license license:gpl2+)))
+    (description
+     "The @code{endfloat} package places all floats on pages by themselves at
+the end of the document, optionally leaving markers in the text near to where
+the figure (or table) would normally have occurred.")
+    (license license:gpl3+)))
 
 (define-public texlive-was
   (package



reply via email to

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