guix-commits
[Top][All Lists]
Advanced

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

249/435: gnu: texlive-eso-pic: Refresh package definition.


From: guix-commits
Subject: 249/435: gnu: texlive-eso-pic: Refresh package definition.
Date: Tue, 6 Jun 2023 11:39:59 -0400 (EDT)

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

commit d2d7b21a273410495917e517cf9b2465467ef51d
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 23:29:41 2023 +0200

    gnu: texlive-eso-pic: Refresh package definition.
    
    * gnu/packages/tex.scm (texlive-eso-pic): Remove SIMPLE-TEXLIVE-PACKAGE
    call.
---
 gnu/packages/tex.scm | 37 ++++++++++++++++---------------------
 1 file changed, 16 insertions(+), 21 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 15e463c145..df2b13b105 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7448,29 +7448,24 @@ via one of the packages @code{calrsfs} and 
@code{mathrsfs}.")
 (define-deprecated-package texlive-fonts-rsfs texlive-rsfs)
 
 (define-public texlive-eso-pic
-  (let ((template (simple-texlive-package
-                   "texlive-eso-pic"
-                   (list "doc/latex/eso-pic/"
-                         "source/latex/eso-pic/"
-                         "tex/latex/eso-pic/")
-                   (base32
-                    "05bqm4x209wji0q6xk1jrjp0nzqafp44dlq30hlpcagrggjb3d9s"))))
-    (package
-      (inherit template)
-      (outputs '("out" "doc"))
-      (arguments
-       (substitute-keyword-arguments (package-arguments template)
-         ((#:tex-directory _ '())
-          "latex/eso-pic")
-         ((#:build-targets _ '())
-          #~(list "eso-pic.ins"))))
-      (home-page "https://ctan.org/macros/latex/contrib/eso-pic";)
-      (synopsis "Add picture commands (or backgrounds) to every page")
-      (description
-       "The package adds one or more user commands to LaTeX's @code{shipout}
+  (package
+    (name "texlive-eso-pic")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/latex/eso-pic/" "source/latex/eso-pic/"
+                   "tex/latex/eso-pic/")
+             (base32
+              "05bqm4x209wji0q6xk1jrjp0nzqafp44dlq30hlpcagrggjb3d9s")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
+    (home-page "https://ctan.org/pkg/eso-pic";)
+    (synopsis "Add picture commands (or backgrounds) to every page")
+    (description
+     "The package adds one or more user commands to LaTeX's @code{shipout}
 routine, which may be used to place the output at fixed positions.  The
 @code{grid} option may be used to find the correct places.")
-      (license license:lppl1.3+))))
+    (license license:lppl1.3+)))
 
 (define-deprecated-package texlive-latex-eso-pic texlive-eso-pic)
 



reply via email to

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