[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
224/418: gnu: texlive-stmaryrd: Fix build.
From: |
guix-commits |
Subject: |
224/418: gnu: texlive-stmaryrd: Fix build. |
Date: |
Mon, 29 May 2023 17:39:19 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 4abeba4f7c47b20f68511f3626ce3530418c2c1a
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 22:22:45 2023 +0200
gnu: texlive-stmaryrd: Fix build.
* gnu/packages/tex.scm (texlive-stmaryrd): Remove SIMPLE-TEXLIVE-PACKAGE
call.
[arguments]: Remove unnecessary #:TEX-DIRECTORY keyword.
---
gnu/packages/tex.scm | 61 +++++++++++++++++++++++++++-------------------------
1 file changed, 32 insertions(+), 29 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 65eba5395d..7a6a6a0823 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -7936,39 +7936,42 @@ captions sideways. Options include
@code{outercaption}, @code{innercaption},
(define-deprecated-package texlive-latex-sidecap texlive-sidecap)
(define-public texlive-stmaryrd
- (let ((template (simple-texlive-package
- "texlive-stmaryrd"
- (list "/fonts/afm/public/stmaryrd/"
- "/fonts/map/dvips/stmaryrd/"
- "/fonts/source/public/stmaryrd/"
- "/fonts/tfm/public/stmaryrd/"
- "/fonts/type1/public/stmaryrd/"
- "/source/fonts/stmaryrd/"
- "/doc/fonts/stmaryrd/")
- (base32
- "0yn0yl6x1z9ab5gb56lhvkqabd2agz3ggxifwxkiysrj5780j29z"))))
- (package
- (inherit template)
- (arguments (substitute-keyword-arguments (package-arguments template)
- ((#:tex-directory _ #t)
- "latex/stmaryrd")
- ((#:phases phases)
- `(modify-phases ,phases
- (add-after 'unpack 'patch-ins
- (lambda _
- (substitute* "source/fonts/stmaryrd/stmaryrd.ins"
- (("^%% LaTeX2e.*") "\\input docstrip\n")
- (("fontdef\\}\\}" line)
- (string-append line "\n\\endbatchfile")))))))))
- (home-page "https://www.ctan.org/pkg/stmaryrd")
- (synopsis "St Mary Road symbols for theoretical computer science")
- (description
- "The fonts were originally distributed as Metafont sources only, but
+ (package
+ (name "texlive-stmaryrd")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/fonts/stmaryrd/"
+ "fonts/afm/public/stmaryrd/"
+ "fonts/map/dvips/stmaryrd/"
+ "fonts/source/public/stmaryrd/"
+ "fonts/tfm/public/stmaryrd/"
+ "fonts/type1/public/stmaryrd/"
+ "source/fonts/stmaryrd/"
+ "tex/latex/stmaryrd/")
+ (base32
+ "0ljrxbf2p301p4cmadf2w0qb5idvgmx4j6y3kq7qg2v8x4maqqj4")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (arguments
+ (list
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-ins
+ (lambda _
+ (substitute* "source/fonts/stmaryrd/stmaryrd.ins"
+ (("^%% LaTeX2e.*") "\\input docstrip\n")
+ (("fontdef\\}\\}" line)
+ (string-append line "\n\\endbatchfile"))))))))
+ (home-page "https://ctan.org/pkg/stmaryrd")
+ (synopsis "St Mary Road symbols for theoretical computer science")
+ (description
+ "The fonts were originally distributed as METAFONT sources only, but
Adobe Type 1 versions are also now available. Macro support is provided for
use under LaTeX; the package supports the @code{only} option (provided by the
@code{somedefs} package) to restrict what is loaded, for those who don't need
the whole font.")
- (license license:lppl))))
+ (license license:lppl)))
(define-deprecated-package texlive-fonts-stmaryrd texlive-stmaryrd)
- 407/418: gnu: Add texlive-sansmathfonts., (continued)
- 407/418: gnu: Add texlive-sansmathfonts., guix-commits, 2023/05/29
- 403/418: gnu: texlive-cbfonts: Fix build., guix-commits, 2023/05/29
- 373/418: gnu: texlive-unicode-math: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/05/29
- 394/418: gnu: texlive-mflogo-font: Fix build., guix-commits, 2023/05/29
- 406/418: gnu: texlive-xypic: Fix build., guix-commits, 2023/05/29
- 383/418: gnu: texlive-lastpage: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/05/29
- 401/418: gnu: texlive-stmaryrd: Fix build., guix-commits, 2023/05/29
- 193/418: gnu: texlive-fpl: Refresh package definition., guix-commits, 2023/05/29
- 207/418: gnu: texlive-pst-text: Refresh package definition., guix-commits, 2023/05/29
- 200/418: gnu: texlive-units: Refresh package definition., guix-commits, 2023/05/29
- 224/418: gnu: texlive-stmaryrd: Fix build.,
guix-commits <=
- 402/418: gnu: texlive-wasy: Fix build., guix-commits, 2023/05/29
- 418/418: gnu: texlive: Improve package style., guix-commits, 2023/05/29
- 368/418: gnu: texlive-morefloats: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/05/29
- 395/418: gnu: texlive-ec: Fix build., guix-commits, 2023/05/29
- 415/418: gnu: Add texlive-mfware., guix-commits, 2023/05/29
- 398/418: gnu: texlive-rsfs: Fix build., guix-commits, 2023/05/29
- 363/418: gnu: texlive-amsmath: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/05/29
- 387/418: gnu: texlive-totpages: Remove SIMPLE-TEXLIVE-PACKAGE call., guix-commits, 2023/05/29
- 216/418: gnu: texlive-wrapfig: Refresh package definition., guix-commits, 2023/05/29
- 220/418: gnu: texlive-dejavu: Refresh package definition., guix-commits, 2023/05/29