gnu: texlive-latex-backend -> texlive-backend.
* gnu/packages/tex.scm (texlive-l3backend): New variable. (texlive-latex-l3backend): Deprecate package. (texlive-latex-base): (texlive-xetex): * gnu/packages/maths.scm (cddlib): Apply renaming.
parent
b02b841390
commit
a9634e2f23
|
@ -30,7 +30,7 @@
|
||||||
;;; Copyright © 2018 Eric Brown <brown@fastmail.com>
|
;;; Copyright © 2018 Eric Brown <brown@fastmail.com>
|
||||||
;;; Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
|
;;; Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
|
||||||
;;; Copyright © 2018 Amin Bandali <bandali@gnu.org>
|
;;; Copyright © 2018 Amin Bandali <bandali@gnu.org>
|
||||||
;;; Copyright © 2019, 2021, 2022 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2019, 2021-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2019 Steve Sprang <scs@stevesprang.com>
|
;;; Copyright © 2019 Steve Sprang <scs@stevesprang.com>
|
||||||
;;; Copyright © 2019 Robert Smith <robertsmith@posteo.net>
|
;;; Copyright © 2019 Robert Smith <robertsmith@posteo.net>
|
||||||
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
|
||||||
|
@ -846,7 +846,7 @@ integer programming problems and computes Markov bases for statistics.")
|
||||||
texlive-amsfonts
|
texlive-amsfonts
|
||||||
texlive-dvips-l3backend
|
texlive-dvips-l3backend
|
||||||
texlive-graphics
|
texlive-graphics
|
||||||
texlive-latex-l3backend
|
texlive-l3backend
|
||||||
texlive-tiny))
|
texlive-tiny))
|
||||||
(arguments
|
(arguments
|
||||||
(list #:configure-flags
|
(list #:configure-flags
|
||||||
|
|
|
@ -3205,7 +3205,7 @@ formats.")
|
||||||
texlive-ukrhyph
|
texlive-ukrhyph
|
||||||
texlive-ruhyphen
|
texlive-ruhyphen
|
||||||
texlive-l3kernel
|
texlive-l3kernel
|
||||||
texlive-latex-l3backend
|
texlive-l3backend
|
||||||
;; TODO: This dependency isn't needed for LaTeX version 2021-06-01
|
;; TODO: This dependency isn't needed for LaTeX version 2021-06-01
|
||||||
;; and later. See:
|
;; and later. See:
|
||||||
;; https://tug.org/pipermail/tex-live/2021-June/047180.html
|
;; https://tug.org/pipermail/tex-live/2021-June/047180.html
|
||||||
|
@ -3912,26 +3912,28 @@ LaTeX3 conventions can be used with regular LaTeX2e packages.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-latex-l3kernel texlive-l3kernel)
|
(define-deprecated-package texlive-latex-l3kernel texlive-l3kernel)
|
||||||
|
|
||||||
(define-public texlive-latex-l3backend
|
(define-public texlive-l3backend
|
||||||
(package
|
(package
|
||||||
(name "texlive-latex-l3backend")
|
(name "texlive-l3backend")
|
||||||
(version (number->string %texlive-revision))
|
(version (number->string %texlive-revision))
|
||||||
(source (origin
|
(source (texlive-origin
|
||||||
(method svn-fetch)
|
name version
|
||||||
(uri (texlive-ref "latex" "l3backend"))
|
(list "doc/latex/l3backend/"
|
||||||
(file-name (string-append name "-" version "-checkout"))
|
"dvips/l3backend/"
|
||||||
(sha256
|
"source/latex/l3backend/"
|
||||||
|
"tex/latex/l3backend/")
|
||||||
(base32
|
(base32
|
||||||
"0mlwyzssqn6wkyv9hzp24d40p8f20zrjqgvqyqs1rd7q7awan42a"))))
|
"18i6aczhj7pvqgdwfgkbmjz7a8xgd5w2jhibrv8khqlvxp62in94")))
|
||||||
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(build-system texlive-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:tex-directory "latex/l3backend"
|
(list
|
||||||
#:tex-engine "tex"
|
#:tex-engine "tex"
|
||||||
#:tex-format #f
|
#:tex-format #f
|
||||||
#:texlive-latex-base #f))
|
#:texlive-latex-base #f))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list texlive-docstrip))
|
(list texlive-docstrip))
|
||||||
(home-page "https://www.ctan.org/pkg/l3backend")
|
(home-page "https://ctan.org/pkg/l3backend")
|
||||||
(synopsis "LaTeX3 backend drivers")
|
(synopsis "LaTeX3 backend drivers")
|
||||||
(description
|
(description
|
||||||
"This package forms parts of expl3, and contains the code used to
|
"This package forms parts of expl3, and contains the code used to
|
||||||
|
@ -3939,7 +3941,9 @@ interface with backends (drivers) across the expl3 codebase. The functions
|
||||||
here are defined differently depending on the engine in use. As such, these
|
here are defined differently depending on the engine in use. As such, these
|
||||||
are distributed separately from l3kernel to allow this code to be updated on
|
are distributed separately from l3kernel to allow this code to be updated on
|
||||||
an independent schedule.")
|
an independent schedule.")
|
||||||
(license license:lppl1.3c+)))
|
(license license:lppl1.3c)))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-latex-l3backend texlive-l3backend)
|
||||||
|
|
||||||
(define-public texlive-latex-l3packages
|
(define-public texlive-latex-l3packages
|
||||||
(package
|
(package
|
||||||
|
@ -12903,7 +12907,7 @@ itself may be shipped out to the DVI file.")
|
||||||
texlive-hyphen-base
|
texlive-hyphen-base
|
||||||
texlive-latex-base
|
texlive-latex-base
|
||||||
texlive-fonts-latex
|
texlive-fonts-latex
|
||||||
texlive-latex-l3backend
|
texlive-l3backend
|
||||||
texlive-l3kernel
|
texlive-l3kernel
|
||||||
texlive-latex-l3packages
|
texlive-latex-l3packages
|
||||||
texlive-lm
|
texlive-lm
|
||||||
|
|
Reference in New Issue