guix-commits
[Top][All Lists]
Advanced

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

209/418: gnu: texlive-beamer: Refresh package definition.


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

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

commit e0252d5191773c1769aefeed41aa390eb078314a
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 21:29:09 2023 +0200

    gnu: texlive-beamer: Refresh package definition.
    
    * gnu/packages/tex.scm (texlive-beamer): Remove SIMPLE-TEXLIVE-PACKAGE
    call.
    [propagated-inputs]: Add TEXLIVE-AMSFONTS, TEXLIVE-AMSMATH, 
TEXLIVE-ATBEGSHI,
    TEXLIVE-ETOOLBOX, TEXLIVE-GRAPHICS, TEXLIVE-HYPERREF, TEXLIVE-IFTEX,
    TEXLIVE-OBERDIEK, TEXLIVE-PGF, TEXLIVE-TOOLS, TEXLIVE-TRANSLATOR, 
TEXLIVE-UCS, TEXLIVE-XCOLOR.
---
 gnu/packages/tex.scm | 35 +++++++++++++++++++++++++----------
 1 file changed, 25 insertions(+), 10 deletions(-)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 40ee557680..e004c224a9 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -10345,19 +10345,34 @@ for a wealth of support information.")
 
 (define-public texlive-beamer
   (package
-    (inherit (simple-texlive-package
-              "texlive-beamer"
-              (list "/doc/latex/beamer/"
-                    "/tex/latex/beamer/")
-              (base32
-               "091n27n4l3iac911bvmpp735ffryyzaq46mkclgn3q9jsvc4ngiv")
-              #:trivial? #t))
+    (name "texlive-beamer")
+    (version (number->string %texlive-revision))
+    (source (texlive-origin
+             name version
+             (list "doc/latex/beamer/"
+                   "tex/latex/beamer/")
+             (base32
+              "091n27n4l3iac911bvmpp735ffryyzaq46mkclgn3q9jsvc4ngiv")))
+    (outputs '("out" "doc"))
+    (build-system texlive-build-system)
     (propagated-inputs
-     (list texlive-hyperref texlive-oberdiek texlive-etoolbox
-           texlive-pgf))
+     (list texlive-amsfonts
+           texlive-amsmath
+           texlive-atbegshi
+           texlive-etoolbox
+           texlive-graphics
+           texlive-hyperref
+           texlive-iftex
+           texlive-oberdiek
+           texlive-pgf
+           texlive-tools
+           texlive-translator
+           texlive-ucs
+           texlive-xcolor))
     (home-page "https://www.ctan.org/pkg/beamer";)
     (synopsis "LaTeX class for producing presentations and slides")
-    (description "The beamer LaTeX class can be used for producing slides.
+    (description
+     "The @code{beamer} LaTeX class can be used for producing slides.
 The class works in both PostScript and direct PDF output modes, using the
 @code{pgf} graphics system for visual effects.  Content is created in the
 @code{frame} environment, and each frame can be made up of a number of slides



reply via email to

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