diff options
author | Nicolas Goaziou <[email protected]> | 2023-07-03 22:04:36 +0200 |
---|---|---|
committer | Nicolas Goaziou <[email protected]> | 2023-07-18 18:16:49 +0200 |
commit | 29cc6b1cd6a20f7b077eaf9557db585af019c5f6 (patch) | |
tree | 061cebde47d35d38b15f48cc970d6fcef4c4811d /gnu/packages/tex.scm | |
parent | 582ec648c9986a0e267a07da59c9f9712805610d (diff) |
gnu: Deprecate `texlive-tiny'.
At this point, there are three equivalent TeX Live sub-systems:
texlive-scheme-basic, texlive-tiny, and (texlive-updmap.cfg). It is confusing
to keep so many around.
* doc/contributing.texi (Submitting Patches): Remove reference to
TEXLIVE-TINY.
* gnu/packages/algebra.scm (pari-gp)[native-inputs]:
(giac)[native-inputs]:
* gnu/packages/chez.scm (chez-sockets)[native-inputs]:
* gnu/packages/engineering.scm (fastcap)[native-inputs]:
* gnu/packages/gettext.scm (po4a)[native-inputs]:
* gnu/packages/maths.scm (cddlib)[native-inputs]:
(gnuplot)[native-inputs]:
(itpp)[native-inputs]:
* gnu/packages/ocaml.scm (unison)[native-inputs]:
* gnu/packages/pdf.scm (extractpdfmark)[native-inputs]:
* gnu/packages/photo.scm (enblend-enfuse): Replace TEXLIVE-TINY with a call to TEXLIVE-UPDMAP.CFG.
* gnu/packages/radio.scm (gnuradio)[native-inputs]: Remove unnecessary
TEXLIVE-TINY.
* gnu/packages/tex.scm (texlive-tiny): Deprecate it in favor of TEXLIVE-SCHEME-BASIC.
(texlive-makecmds)[native-inputs]: Replace TEXLIVE-TINY with a call to TEXLIVE-UPDMAP.CFG.
* guix/lint.scm (check-inputs-should-be-native): Check only for
"texlive-updmap.cfg" input name.
Diffstat (limited to 'gnu/packages/tex.scm')
-rw-r--r-- | gnu/packages/tex.scm | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 1cb96f0bfb..888c572a86 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -135,9 +135,7 @@ ;;; module also provides TEXLIVE-UPDMAP.CFG function, which creates a TeX Live ;;; tree with font map files updates. It should be used exclusively for ;;; package definitions, as a native input. It is possible to augment that -;;; tree, in particular with additional font packages. TEXLIVE-TINY package -;;; is a shortcut for TEXLIVE-UPDMAP.CFG called without any additional -;;; package. +;;; tree, in particular with additional font packages. ;;; ;;; Unlike font map files, TeX formats are not built from a profile hook, as ;;; the process would be too time-consuming, e.g., when invoking "guix shell". @@ -984,17 +982,10 @@ ones.") '() (append default-packages packages)))))))) +(define-deprecated-package texlive-tiny texlive-scheme-basic) (define-deprecated/alias texlive-union texlive-updmap.cfg) (export texlive-union) -;; For use in package definitions only -(define-public texlive-tiny - (package - (inherit (texlive-updmap.cfg)) - (name "texlive-tiny") - (description "This is a very limited subset of the TeX Live distribution. -It includes little more than the required set of LaTeX packages."))) - (define-public texlive-tex (package (name "texlive-tex") @@ -8263,7 +8254,7 @@ diagrams.") "05y5n265in7mrbpgjxqg339l8r8dmp6lvl4k528pr3rkb8z94qaf"))) (outputs '("out" "doc")) (build-system texlive-build-system) - (native-inputs (list texlive-tiny)) + (native-inputs (list (texlive-updmap.cfg))) (home-page "https://www.ctan.org/pkg/makecmds") (synopsis "TeX macro to define or redefine a command") (description "The package provides a @code{\\makecommand} command, which |