[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
36/409: gnu: texlive-latex-backend -> texlive-backend.
From: |
guix-commits |
Subject: |
36/409: gnu: texlive-latex-backend -> texlive-backend. |
Date: |
Sat, 20 May 2023 04:02:17 -0400 (EDT) |
ngz pushed a commit to branch tex-team-next
in repository guix.
commit 8a3f2b5f6b2776776b35d786cfb23e4321830971
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Fri May 12 23:52:11 2023 +0200
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.
---
gnu/packages/maths.scm | 4 ++--
gnu/packages/tex.scm | 42 +++++++++++++++++++++++-------------------
2 files changed, 25 insertions(+), 21 deletions(-)
diff --git a/gnu/packages/maths.scm b/gnu/packages/maths.scm
index 6a19f89d2b..ccd06b07f5 100644
--- a/gnu/packages/maths.scm
+++ b/gnu/packages/maths.scm
@@ -30,7 +30,7 @@
;;; Copyright © 2018 Eric Brown <brown@fastmail.com>
;;; Copyright © 2018, 2021 Julien Lepiller <julien@lepiller.eu>
;;; 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 Robert Smith <robertsmith@posteo.net>
;;; Copyright © 2020 Jakub Kądziołka <kuba@kadziolka.net>
@@ -845,7 +845,7 @@ integer programming problems and computes Markov bases for
statistics.")
texlive-amsfonts
texlive-dvips-l3backend
texlive-graphics
- texlive-latex-l3backend
+ texlive-l3backend
texlive-tiny))
(arguments
(list #:configure-flags
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 7080c93a38..d559ea4d07 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3205,7 +3205,7 @@ formats.")
texlive-ukrhyph
texlive-ruhyphen
texlive-l3kernel
- texlive-latex-l3backend
+ texlive-l3backend
;; TODO: This dependency isn't needed for LaTeX version 2021-06-01
;; and later. See:
;; https://tug.org/pipermail/tex-live/2021-June/047180.html
@@ -3912,34 +3912,38 @@ LaTeX3 conventions can be used with regular LaTeX2e
packages.")
(define-deprecated-package texlive-latex-l3kernel texlive-l3kernel)
-(define-public texlive-latex-l3backend
+(define-public texlive-l3backend
(package
- (name "texlive-latex-l3backend")
+ (name "texlive-l3backend")
(version (number->string %texlive-revision))
- (source (origin
- (method svn-fetch)
- (uri (texlive-ref "latex" "l3backend"))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "0mlwyzssqn6wkyv9hzp24d40p8f20zrjqgvqyqs1rd7q7awan42a"))))
+ (source (texlive-origin
+ name version
+ (list "doc/latex/l3backend/"
+ "dvips/l3backend/"
+ "source/latex/l3backend/"
+ "tex/latex/l3backend/")
+ (base32
+ "18i6aczhj7pvqgdwfgkbmjz7a8xgd5w2jhibrv8khqlvxp62in94")))
+ (outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments
- '(#:tex-directory "latex/l3backend"
- #:tex-engine "tex"
- #:tex-format #f
- #:texlive-latex-base #f))
+ (list
+ #:tex-engine "tex"
+ #:tex-format #f
+ #:texlive-latex-base #f))
(native-inputs
(list texlive-docstrip))
- (home-page "https://www.ctan.org/pkg/l3backend")
+ (home-page "https://ctan.org/pkg/l3backend")
(synopsis "LaTeX3 backend drivers")
(description
"This package forms parts of expl3, and contains the code used to
-interface with backends (drivers) across the expl3 codebase. The functions
-here are defined differently depending on the engine in use. As such, these
+interface with backends (drivers) across the expl3 codebase. The functions
+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
an independent schedule.")
- (license license:lppl1.3c+)))
+ (license license:lppl1.3c)))
+
+(define-deprecated-package texlive-latex-l3backend texlive-l3backend)
(define-public texlive-latex-l3packages
(package
@@ -12899,7 +12903,7 @@ itself may be shipped out to the DVI file.")
texlive-hyphen-base
texlive-latex-base
texlive-fonts-latex
- texlive-latex-l3backend
+ texlive-l3backend
texlive-l3kernel
texlive-latex-l3packages
texlive-lm
- 47/409: gnu: texlive-latex-seqsplit -> texlive-seqsplit., (continued)
- 47/409: gnu: texlive-latex-seqsplit -> texlive-seqsplit., guix-commits, 2023/05/20
- 51/409: gnu: texlive-latex-fncychap -> texlive-fncychap., guix-commits, 2023/05/20
- 52/409: gnu: texlive-latex-framed -> texlive-framed., guix-commits, 2023/05/20
- 54/409: gnu: texlive-latex-galois -> texlive-galois., guix-commits, 2023/05/20
- 09/409: gnu: texlive-latex-dinbrief -> texlive-dinbrief., guix-commits, 2023/05/20
- 21/409: gnu: Add texlive-filehook., guix-commits, 2023/05/20
- 24/409: gnu: Add texlive-enctex., guix-commits, 2023/05/20
- 28/409: gnu: Add texlive-refstyle., guix-commits, 2023/05/20
- 31/409: gnu: Add texlive-chngcntr., guix-commits, 2023/05/20
- 40/409: gnu: texlive-latex-amsrefs -> texlive-amsrefs., guix-commits, 2023/05/20
- 36/409: gnu: texlive-latex-backend -> texlive-backend.,
guix-commits <=
- 37/409: gnu: texlive-dvips-l3backend -> texlive-l3backend., guix-commits, 2023/05/20
- 53/409: gnu: texlive-latex-g-brief -> texlive-g-brief., guix-commits, 2023/05/20
- 55/409: gnu: texlive-latex-gcite -> texlive-gcite., guix-commits, 2023/05/20
- 60/409: gnu: texlive-latex-mdwtools -> texlive-mdwtools., guix-commits, 2023/05/20
- 71/409: gnu: texlive-zref: Fix build., guix-commits, 2023/05/20
- 74/409: gnu: texlive-latex-cmap -> texlive-cmap., guix-commits, 2023/05/20
- 10/409: gnu: Add texlive-everypage., guix-commits, 2023/05/20
- 44/409: gnu: texlive-latex-newfloat -> texlive-newfloat., guix-commits, 2023/05/20
- 58/409: gnu: texlive-grffile: Fix build., guix-commits, 2023/05/20
- 22/409: gnu: Add texlive-currfile., guix-commits, 2023/05/20