all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#49472] [PATCH core-updates] gnu: texlive-bin: Use ‘--with-banner-add’ configure option
@ 2021-07-08 22:13 Thiago Jung Bauermann via Guix-patches via
  2021-07-24 14:17 ` bug#49472: " Ludovic Courtès
  0 siblings, 1 reply; 3+ messages in thread
From: Thiago Jung Bauermann via Guix-patches via @ 2021-07-08 22:13 UTC (permalink / raw)
  To: 49472; +Cc: Thiago Jung Bauermann

The “Building TeX Live” manual has a section about configure options for
distro builds¹. They mention this option:

    --with-banner-add=/SomeDistro

    This isn’t technically required, but is strongly recommended, so your
    build and your distro can be distinguished from others.

Therefore add it to texlive-bin. This is how it appears on LuaTeX, for
example (it also shows up in other engines’ banners):

    $ luatex
    This is LuaTeX, Version 1.13.0 (TeX Live 2021/GNU Guix)
    restricted system commands enabled.
    **

The other options mentioned in that section are already being used.

¹ http://www.tug.org/texlive/doc/tlbuild.html#Distro-builds

* gnu/packages/tex.scm (texlive-bin)[arguments]: Add ‘--with-banner-add’
option.
---
 gnu/packages/tex.scm | 1 +
 1 file changed, 1 insertion(+)

Hello,

This is something I saw on the TeX Live build manual after I sent the
TeX Live 2021 patches. I’m tracking it in a separate bug because it’s
orthogonal to whether the 2021 update is applied.

The patch applies cleanly both on core-updates and on top of the
TeX Live 2021 patches in bug 49408.

FWIW, Debian and Ubuntu also use this option:

$ luatex
This is LuaTeX, Version 1.12.0 (TeX Live 2020/Debian)
 restricted system commands enabled.
**


Thanks,
Thiago


diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index e4144e00edbe..5ea1921dc2a5 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -317,6 +317,7 @@ files from LOCATIONS with expected checksum HASH.  CODE is not currently in use.
        '("--disable-static"
          "--disable-native-texlive-build"
          "--enable-shared"
+         "--with-banner-add=/GNU Guix"
          "--with-system-cairo"
          "--with-system-freetype2"
          "--with-system-gd"




^ permalink raw reply related	[flat|nested] 3+ messages in thread

* bug#49472: [PATCH core-updates] gnu: texlive-bin: Use ‘--with-banner-add’ configure option
  2021-07-08 22:13 [bug#49472] [PATCH core-updates] gnu: texlive-bin: Use ‘--with-banner-add’ configure option Thiago Jung Bauermann via Guix-patches via
@ 2021-07-24 14:17 ` Ludovic Courtès
  2021-07-24 22:21   ` [bug#49472] " Thiago Jung Bauermann via Guix-patches via
  0 siblings, 1 reply; 3+ messages in thread
From: Ludovic Courtès @ 2021-07-24 14:17 UTC (permalink / raw)
  To: Thiago Jung Bauermann; +Cc: 49472-done

Hi,

Thiago Jung Bauermann <bauermann@kolabnow.com> skribis:

> The “Building TeX Live” manual has a section about configure options for
> distro builds¹. They mention this option:
>
>     --with-banner-add=/SomeDistro
>
>     This isn’t technically required, but is strongly recommended, so your
>     build and your distro can be distinguished from others.
>
> Therefore add it to texlive-bin. This is how it appears on LuaTeX, for
> example (it also shows up in other engines’ banners):
>
>     $ luatex
>     This is LuaTeX, Version 1.13.0 (TeX Live 2021/GNU Guix)
>     restricted system commands enabled.
>     **
>
> The other options mentioned in that section are already being used.
>
> ¹ http://www.tug.org/texlive/doc/tlbuild.html#Distro-builds
>
> * gnu/packages/tex.scm (texlive-bin)[arguments]: Add ‘--with-banner-add’
> option.

Applied, thanks!

Ludo’.




^ permalink raw reply	[flat|nested] 3+ messages in thread

* [bug#49472] [PATCH core-updates] gnu: texlive-bin: Use ‘--with-banner-add’ configure option
  2021-07-24 14:17 ` bug#49472: " Ludovic Courtès
@ 2021-07-24 22:21   ` Thiago Jung Bauermann via Guix-patches via
  0 siblings, 0 replies; 3+ messages in thread
From: Thiago Jung Bauermann via Guix-patches via @ 2021-07-24 22:21 UTC (permalink / raw)
  To: Ludovic Courtès; +Cc: 49472-done

Hello,

Em sábado, 24 de julho de 2021, às 11:17:18 -03, Ludovic Courtès escreveu:
> Hi,
> 
> Thiago Jung Bauermann <bauermann@kolabnow.com> skribis:
> > The “Building TeX Live” manual has a section about configure options
> > for
> > 
> > distro builds¹. They mention this option:
> >     --with-banner-add=/SomeDistro
> >     
> >     This isn’t technically required, but is strongly recommended, so
> >     your
> >     build and your distro can be distinguished from others.
> > 
> > Therefore add it to texlive-bin. This is how it appears on LuaTeX, for
> > 
> > example (it also shows up in other engines’ banners):
> >     $ luatex
> >     This is LuaTeX, Version 1.13.0 (TeX Live 2021/GNU Guix)
> >     restricted system commands enabled.
> >     **
> > 
> > The other options mentioned in that section are already being used.
> > 
> > ¹ http://www.tug.org/texlive/doc/tlbuild.html#Distro-builds
> > 
> > * gnu/packages/tex.scm (texlive-bin)[arguments]: Add
> > ‘--with-banner-add’
> > option.
> 
> Applied, thanks!

Thank you!

I appreciate your attention even to minor patches such as this one.

-- 
Thanks,
Thiago






^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-07-24 22:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-07-08 22:13 [bug#49472] [PATCH core-updates] gnu: texlive-bin: Use ‘--with-banner-add’ configure option Thiago Jung Bauermann via Guix-patches via
2021-07-24 14:17 ` bug#49472: " Ludovic Courtès
2021-07-24 22:21   ` [bug#49472] " 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.