[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
234/452: gnu: texlive-bigfoot: Refresh package definition.
From: |
guix-commits |
Subject: |
234/452: gnu: texlive-bigfoot: Refresh package definition. |
Date: |
Fri, 9 Jun 2023 13:43:29 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 98c21d75f59010969651b9da3c0f62ee97793bb2
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Mon May 15 22:43:13 2023 +0200
gnu: texlive-bigfoot: Refresh package definition.
* gnu/packages/tex.scm (texlive-bigfoot): Remove SIMPLE-TEXLIVE-PACKAGE
call.
---
gnu/packages/tex.scm | 45 +++++++++++++++++++--------------------------
1 file changed, 19 insertions(+), 26 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 381d415409..1ba076d1f2 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -5136,31 +5136,24 @@ either in conjunction with BibTeX or as a replacement
for BibTeX.")
(define-deprecated-package texlive-latex-amsrefs texlive-amsrefs)
(define-public texlive-bigfoot
- (let ((template (simple-texlive-package
- "texlive-bigfoot"
- (list "doc/latex/bigfoot/"
- "source/latex/bigfoot/"
- "tex/latex/bigfoot/")
- (base32
- "140b4bbjcgajd1flznmi3ga6lx5pna2nxybr2dqm9515lny8gwf0"))))
- (package
- (inherit template)
- (outputs '("out" "doc"))
- (arguments
- (substitute-keyword-arguments (package-arguments template)
- ((#:tex-directory _ #t) "latex/bigfoot")
- ((#:build-targets _ '()) '(list "bigfoot.ins"))
- ((#:phases phases)
- #~(modify-phases #$phases
- (add-after 'chdir 'delete-drv-files
- (lambda _
- (for-each delete-file (find-files "." "\\.drv$"))))))))
- (propagated-inputs
- (list texlive-etex texlive-ncctools))
- (home-page "https://ctan.org/pkg/bigfoot")
- (synopsis "Footnotes for critical editions")
- (description
- "The package aims to provide a one-stop solution to requirements for
+ (package
+ (name "texlive-bigfoot")
+ (version (number->string %texlive-revision))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/bigfoot/"
+ "source/latex/bigfoot/"
+ "tex/latex/bigfoot/")
+ (base32
+ "140b4bbjcgajd1flznmi3ga6lx5pna2nxybr2dqm9515lny8gwf0")))
+ (outputs '("out" "doc"))
+ (build-system texlive-build-system)
+ (propagated-inputs
+ (list texlive-etex texlive-ncctools))
+ (home-page "https://ctan.org/pkg/bigfoot")
+ (synopsis "Footnotes for critical editions")
+ (description
+ "The package aims to provide a one-stop solution to requirements for
footnotes. It offers multiple footnote apparatus superior to that of
@code{manyfoot}. Footnotes can be formatted in separate paragraphs, or be run
into a single paragraph. Note that the majority of the @code{bigfoot}
@@ -5169,7 +5162,7 @@ information from that package's documentation.
The @code{bigfoot} bundle also provides the @code{perpage} and @code{suffix}
packages.")
- (license license:gpl2+))))
+ (license license:gpl2+)))
(define-deprecated-package texlive-latex-bigfoot texlive-bigfoot)
- 424/452: gnu: texlive-pdftex: Create formats., (continued)
- 424/452: gnu: texlive-pdftex: Create formats., guix-commits, 2023/06/09
- 438/452: gnu: Add texlive-hyphenex., guix-commits, 2023/06/09
- 440/452: gnu: Add texlive-xdvi., guix-commits, 2023/06/09
- 444/452: gnu: Add texlive-latex-bin., guix-commits, 2023/06/09
- 450/452: gnu: Add texlive-collection-latex., guix-commits, 2023/06/09
- 443/452: gnu: Add texlive-fix2col., guix-commits, 2023/06/09
- 22/452: gnu: Add texlive-currfile., guix-commits, 2023/06/09
- 56/452: gnu: texlive-generic-babel-english -> texlive-babel-english., guix-commits, 2023/06/09
- 125/452: gnu: texlive-wasysym: Refresh package definition., guix-commits, 2023/06/09
- 143/452: gnu: texlive-substr: Refresh package definition., guix-commits, 2023/06/09
- 234/452: gnu: texlive-bigfoot: Refresh package definition.,
guix-commits <=