[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
287/452: gnu: texlive-tools: Refresh package definition.
From: |
guix-commits |
Subject: |
287/452: gnu: texlive-tools: Refresh package definition. |
Date: |
Fri, 9 Jun 2023 13:43:43 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 9edc1d7c2b749b845e66906826e7320f723ebc56
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue May 16 00:29:36 2023 +0200
gnu: texlive-tools: Refresh package definition.
* gnu/packages/tex.scm (texlive-tools): Remove SIMPLE-TEXLIVE-PACKAGE
call.
---
gnu/packages/tex.scm | 74 +++++++++++++++++++++++++---------------------------
1 file changed, 35 insertions(+), 39 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 8d9e77f811..f952ba1e47 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4026,52 +4026,48 @@ have changed. It is based on MD5 checksum, provided by
pdfTeX.")
(define-deprecated-package texlive-latex-rerunfilecheck texlive-rerunfilecheck)
(define-public texlive-onedown
- (let ((template
- (simple-texlive-package
- "texlive-onedown"
- (list "doc/latex/onedown/"
- "source/latex/onedown/"
- "tex/latex/onedown/")
- (base32
- "04ih7i4v96ggwk4k1mpfx3dzcpi2siqablv93wryg7dk4cks5wkl"))))
- (package
- (inherit template)
- (outputs '("doc" "out"))
- (arguments
- (substitute-keyword-arguments (package-arguments template)
- ((#:tex-directory _ #t) "latex/onedown")))
- (home-page "https://ctan.org/pkg/onedown")
- (synopsis "Typeset bridge diagrams")
- (description
- "This is a comprehensive package to draw all sorts of bridge diagrams,
+ (package
+ (name "texlive-onedown")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/onedown/"
+ "source/latex/onedown/"
+ "tex/latex/onedown/")
+ (base32
+ "04ih7i4v96ggwk4k1mpfx3dzcpi2siqablv93wryg7dk4cks5wkl")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/onedown")
+ (synopsis "Typeset bridge diagrams")
+ (description
+ "This is a comprehensive package to draw all sorts of bridge diagrams,
including hands, bidding tables, trick tables, and expert quizzes.
It works for all font sizes. Different fonts for hands, bidding diagrams and
compass are possible. It also provides annotations to card and bidding
diagrams, automated check on consistency of suit and hands, and multilingual
output of bridge terms.")
- (license license:lppl1.3+))))
+ (license license:lppl1.3+)))
(define-public texlive-tools
- (let ((template (simple-texlive-package
- "texlive-tools"
- (list "doc/latex/tools/"
- "source/latex/tools/"
- "tex/latex/tools/")
- (base32
- "0c0ixkcvrlzx6sdj25ak3bx0j65qghf51w66yg5wlnpg08d3awrs"))))
- (package
- (inherit template)
- (outputs '("out" "doc"))
- (arguments
- (substitute-keyword-arguments (package-arguments template)
- ((#:tex-directory _ '())
- "latex/tools")
- ((#:build-targets _ '())
- #~(list "tools.ins"))))
- (home-page
"https://www.ctan.org/tex-archive/macros/latex/required/tools/")
- (synopsis "LaTeX standard tools bundle")
- (description "This package provides a collection of simple tools that
+ (package
+ (name "texlive-tools")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/tools/"
+ "source/latex/tools/"
+ "tex/latex/tools/")
+ (base32
+ "0c0ixkcvrlzx6sdj25ak3bx0j65qghf51w66yg5wlnpg08d3awrs")))
+ (outputs '("out" "doc"))
+ (arguments
+ (list #:build-targets #~(list "tools.ins")))
+ (build-system texlive-build-system)
+ (home-page "https://ctan.org/pkg/tools")
+ (synopsis "The LaTeX standard tools bundle")
+ (description "This package provides a collection of simple tools that
are part of the LaTeX required tools distribution, comprising the packages:
@code{afterpage}, @code{array}, @code{bm}, @code{calc}, @code{dcolumn},
@code{delarray}, @code{enumerate}, @code{fileerr}, @code{fontsmpl},
@@ -4079,7 +4075,7 @@ are part of the LaTeX required tools distribution,
comprising the packages:
@code{longtable}, @code{multicol}, @code{rawfonts}, @code{showkeys},
@code{somedefs}, @code{tabularx}, @code{theorem}, @code{trace},
@code{varioref}, @code{verbatim}, @code{xr}, and @code{xspace}.")
- (license license:lppl1.3+))))
+ (license license:lppl1.3+)))
(define-deprecated-package texlive-latex-tools texlive-tools)
- 243/452: gnu: texlive-fontspec: Refresh package definition., (continued)
- 243/452: gnu: texlive-fontspec: Refresh package definition., guix-commits, 2023/06/09
- 246/452: gnu: texlive-letltxmacro: Refresh package definition., guix-commits, 2023/06/09
- 253/452: gnu: texlive-acronym: Refresh package definition., guix-commits, 2023/06/09
- 257/452: gnu: texlive-atbegshi: Refresh package definition., guix-commits, 2023/06/09
- 265/452: gnu: texlive-kvsetkeys: Refresh package definition., guix-commits, 2023/06/09
- 261/452: gnu: texlive-gettitlestring: Refresh package definition., guix-commits, 2023/06/09
- 271/452: gnu: texlive-marginnote: Refresh package definition., guix-commits, 2023/06/09
- 276/452: gnu: texlive-atveryend: Refresh package definition., guix-commits, 2023/06/09
- 272/452: gnu: texlive-alphalph: Refresh package definition., guix-commits, 2023/06/09
- 284/452: gnu: texlive-hyperref: Refresh package definition., guix-commits, 2023/06/09
- 287/452: gnu: texlive-tools: Refresh package definition.,
guix-commits <=
- 289/452: gnu: texlive-jadetex: Refresh package definition., guix-commits, 2023/06/09
- 291/452: gnu: texlive-stix2-otf: Refresh package definition., guix-commits, 2023/06/09
- 295/452: gnu: texlive-zapfding: Refresh package definition., guix-commits, 2023/06/09
- 292/452: gnu: texlive-enumitem: Refresh package definition., guix-commits, 2023/06/09
- 300/452: gnu: texlive-textcase: Refresh package definition., guix-commits, 2023/06/09
- 302/452: gnu: texlive-doi: Refresh package definition., guix-commits, 2023/06/09
- 314/452: gnu: texlive-lualibs: Refresh package definition., guix-commits, 2023/06/09
- 319/452: gnu: texlive-graphics-def: Refresh package definition., guix-commits, 2023/06/09
- 323/452: gnu: texlive-latexconfig: Refresh package definition., guix-commits, 2023/06/09
- 326/452: gnu: texlive-inputenx: Refresh package definition., guix-commits, 2023/06/09