* [bug#49779] [PATCH core-updates-frozen] gnu: texlive-latex-base: Propagate ‘texlive-latex-l3backend’
@ 2021-07-30 2:26 Thiago Jung Bauermann via Guix-patches via
2021-08-03 15:48 ` bug#49779: " Ludovic Courtès
0 siblings, 1 reply; 3+ messages in thread
From: Thiago Jung Bauermann via Guix-patches via @ 2021-07-30 2:26 UTC (permalink / raw)
To: 49779; +Cc: Thiago Jung Bauermann
Some packages need files from ‘texlive-latex-l3backend’ – which is a
supporting package of LaTeX3 – so propagate it from ‘texlive-latex-base’.
* gnu/packages/statistics.scm (r-with-tests)[native-inputs]: Remove
‘texlive-latex-l3backend’ from the texlive union.
* gnu/packages/tex.scm (texlive-latex-base)[propagated-inputs]: Add
‘texlive-latex-l3backend’.
(texlive-latex-xkeyval)[native-inputs]: Remove ‘texlive-latex-l3backend’.
---
gnu/packages/statistics.scm | 1 -
gnu/packages/tex.scm | 2 +-
2 files changed, 1 insertion(+), 2 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index dd8965312bfd..e02a5cbaf6ff 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -346,7 +346,6 @@ as.POSIXct(if (\"\" != Sys.getenv(\"SOURCE_DATE_EPOCH\")) {\
texlive-latex-fancyvrb
texlive-latex-graphics
texlive-latex-hyperref
- texlive-latex-l3backend
texlive-latex-oberdiek
texlive-latex-tools
texlive-latex-upquote
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index b23b5256d7aa..70166941d554 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -2869,6 +2869,7 @@ formats.")
("texlive-ukrhyph" ,texlive-ukrhyph)
("texlive-ruhyphen" ,texlive-ruhyphen)
("texlive-latex-l3kernel" ,texlive-latex-l3kernel)
+ ("texlive-latex-l3backend" ,texlive-latex-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
@@ -8449,7 +8450,6 @@ are part of the LaTeX required tools distribution, comprising the packages:
#t))))))
(native-inputs
`(("texlive-latex-base" ,texlive-latex-base)
- ("texlive-latex-l3backend" ,texlive-latex-l3backend)
("texlive-cm" ,texlive-cm)
("texlive-lm" ,texlive-lm)
("texlive-url" ,texlive-url)
^ permalink raw reply related [flat|nested] 3+ messages in thread
* bug#49779: [PATCH core-updates-frozen] gnu: texlive-latex-base: Propagate ‘texlive-latex-l3backend’
2021-07-30 2:26 [bug#49779] [PATCH core-updates-frozen] gnu: texlive-latex-base: Propagate ‘texlive-latex-l3backend’ Thiago Jung Bauermann via Guix-patches via
@ 2021-08-03 15:48 ` Ludovic Courtès
2021-08-03 17:07 ` [bug#49779] " Thiago Jung Bauermann via Guix-patches via
0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2021-08-03 15:48 UTC (permalink / raw)
To: Thiago Jung Bauermann; +Cc: 49779-done
Hi,
Thiago Jung Bauermann <bauermann@kolabnow.com> skribis:
> Some packages need files from ‘texlive-latex-l3backend’ – which is a
> supporting package of LaTeX3 – so propagate it from ‘texlive-latex-base’.
>
> * gnu/packages/statistics.scm (r-with-tests)[native-inputs]: Remove
> ‘texlive-latex-l3backend’ from the texlive union.
> * gnu/packages/tex.scm (texlive-latex-base)[propagated-inputs]: Add
> ‘texlive-latex-l3backend’.
> (texlive-latex-xkeyval)[native-inputs]: Remove ‘texlive-latex-l3backend’.
I’m no expert but it seems better than adding ‘texlive-latex-l3backend’
basically everywhere.
Applied, thanks!
Ludo’.
^ permalink raw reply [flat|nested] 3+ messages in thread
* [bug#49779] [PATCH core-updates-frozen] gnu: texlive-latex-base: Propagate ‘texlive-latex-l3backend’
2021-08-03 15:48 ` bug#49779: " Ludovic Courtès
@ 2021-08-03 17:07 ` Thiago Jung Bauermann via Guix-patches via
0 siblings, 0 replies; 3+ messages in thread
From: Thiago Jung Bauermann via Guix-patches via @ 2021-08-03 17:07 UTC (permalink / raw)
To: Ludovic Courtès; +Cc: 49779
Hello Ludo’,
Em terça-feira, 3 de agosto de 2021, às 12:48:57 -03, Ludovic Courtès
escreveu:
> Hi,
>
> Thiago Jung Bauermann <bauermann@kolabnow.com> skribis:
> > Some packages need files from ‘texlive-latex-l3backend’ – which is a
> > supporting package of LaTeX3 – so propagate it from
> > ‘texlive-latex-base’.
> >
> > * gnu/packages/statistics.scm (r-with-tests)[native-inputs]: Remove
> > ‘texlive-latex-l3backend’ from the texlive union.
> > * gnu/packages/tex.scm (texlive-latex-base)[propagated-inputs]: Add
> > ‘texlive-latex-l3backend’.
> > (texlive-latex-xkeyval)[native-inputs]: Remove
> > ‘texlive-latex-l3backend’.
> I’m no expert but it seems better than adding ‘texlive-latex-l3backend’
> basically everywhere.
>
> Applied, thanks!
Thank you!
--
Thanks,
Thiago
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-08-03 17:09 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-07-30 2:26 [bug#49779] [PATCH core-updates-frozen] gnu: texlive-latex-base: Propagate ‘texlive-latex-l3backend’ Thiago Jung Bauermann via Guix-patches via
2021-08-03 15:48 ` bug#49779: " Ludovic Courtès
2021-08-03 17:07 ` [bug#49779] " Thiago Jung Bauermann via Guix-patches via
Code repositories for project(s) associated with this external index
https://git.savannah.gnu.org/cgit/guix.git
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.