all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Marius Bakke <marius@gnu.org>
To: 48622@debbugs.gnu.org
Subject: [bug#48622] [PATCH core-updates 30/29] gnu: Add texlive-tex-gyre.
Date: Mon, 24 May 2021 22:09:16 +0200	[thread overview]
Message-ID: <20210524200923.28867-1-marius@gnu.org> (raw)
In-Reply-To: <20210524144333.15566-1-marius@gnu.org>

* gnu/packages/tex.scm (texlive-tex-gyre): New public variable.
---
 gnu/packages/tex.scm | 40 ++++++++++++++++++++++++++++++++++++++++
 1 file changed, 40 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index ea89036e7f..85d8f0b732 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -942,6 +942,46 @@ font from Adobe's basic set.")
     ;; No license version specified.
     (license license:gpl3+)))
 
+(define-public texlive-tex-gyre
+  (package
+    (inherit (simple-texlive-package
+              "texlive-tex-gyre"
+              '("/doc/fonts/tex-gyre/GUST-FONT-LICENSE.txt"
+                "/fonts/afm/public/tex-gyre/"
+                "/fonts/enc/dvips/tex-gyre/"
+                "/fonts/map/dvips/tex-gyre/"
+                "/fonts/opentype/public/tex-gyre/"
+                ;;"/fonts/opentype/public/tex-gyre-math/"
+                "/fonts/tfm/public/tex-gyre/"
+                "/fonts/type1/public/tex-gyre/"
+                "/tex/latex/tex-gyre/")
+              (base32
+               "1ldnlmclghm3gnyv02r8a6cqybygz2ifq07mhykhf43h1pw3aq7k")
+              #:trivial? #t))
+    (home-page "https://ctan.org/pkg/tex-gyre")
+    (synopsis "TeX fonts extending URW fonts")
+    (description
+     "The TeX-GYRE bundle consist of multiple font families:
+@itemize @bullet
+@item Adventor, based on the URW Gothic L family of fonts;
+@item Bonum, based on the URW Bookman L family;
+@item Chorus, based on URW Chancery L Medium Italic;
+@item Cursor, based on URW Nimbus Mono L;
+@item Heros, based on URW Nimbus Sans L;
+@item Pagella, based on URW Palladio L;
+@item Schola, based on the URW Century Schoolbook L family;
+@item Termes, based on the URW Nimbus Roman No9 L family of fonts.
+@end itemize
+
+The constituent standard faces of each family have been greatly extended
+(though Chorus omits Greek support and has no small-caps family).  Each
+family is available in Adobe Type 1 and Open Type formats, and LaTeX
+support (for use with a variety of encodings) is provided.")
+    ;; The GUST font license (GFL) is legally identical to the LaTeX Project
+    ;; Public License (LPPL), version 1.3c or later, but comes with an
+    ;; additional but not legally binding clause.
+    (license license:lppl1.3c+)))
+
 (define-public texlive-lm
   (package
     (inherit (simple-texlive-package
-- 
2.31.1





  parent reply	other threads:[~2021-05-24 20:10 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-24 14:40 [bug#48622] [PATCH core-updates 00/29] TeX Live 2020 Marius Bakke
2021-05-24 14:43 ` [bug#48622] [PATCH core-updates 01/29] gnu: TeX Live: Update to 2020.0 Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 02/29] gnu: Add texlive-latex-refcount Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 03/29] gnu: Add texlive-latex-bookmark Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 04/29] gnu: dblatex: Update to 0.3.12 Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 05/29] gnu: simple-texlive-package: Fix shebang patching Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 06/29] gnu: Add texlive-latex-atveryend Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 07/29] gnu: Add texlive-latex-auxhook Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 08/29] gnu: Add texlive-latex-epstopdf-pkg Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 09/29] gnu: Add texlive-latex-hycolor Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 10/29] gnu: Add texlive-generic-infwarerr Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 11/29] gnu: Add texlive-generic-ltxcmds Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 12/29] gnu: Add texlive-latex-pdftexcmds Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 13/29] gnu: Add texlive-latex-letltxmacro Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 14/29] gnu: Add texlive-generic-atbegshi Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 15/29] gnu: Add texlive-generic-intcalc Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 16/29] gnu: Add texlive-generic-bigintcalc Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 17/29] gnu: Add texlive-generic-bitset Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 18/29] gnu: Add texlive-generic-etexcmds Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 19/29] gnu: Add texlive-generic-gettitlestring Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 20/29] gnu: Add texlive-generic-kvdefinekeys Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 21/29] gnu: Add texlive-generic-kvsetkeys Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 22/29] gnu: Add texlive-latex-kvoptions Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 23/29] gnu: Add texlive-generic-pdfescape Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 24/29] gnu: Add texlive-generic-uniquecounter Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 25/29] gnu: Add texlive-latex-rerunfilecheck Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 26/29] gnu: texlive-base: Propagate texlive-kpathsea Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 27/29] gnu: texlive-hyperref: Don't propagate texlive-oberdiek Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 28/29] gnu: texlive-graphics-def: Propagate missing dependency Marius Bakke
2021-05-24 14:43   ` [bug#48622] [PATCH core-updates 29/29] gnu: dblatex: Remove unused TeX inputs Marius Bakke
2021-05-24 20:09   ` Marius Bakke [this message]
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 31/29] gnu: Add texlive-latex-etoc Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 32/29] gnu: Add texlive-latex-hanging Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 33/29] gnu: Add texlive-latex-newunicodechar Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 34/29] gnu: Add texlive-latex-stackengine Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 35/29] gnu: Add texlive-latex-tocloft Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 36/29] gnu: texlive-latex-tools: Provide array-2016-10-06.sty Marius Bakke
2021-05-24 20:09     ` [bug#48622] [PATCH core-updates 37/29] gnu: hypre: Update to 2020.0 Marius Bakke
2021-05-24 20:13 ` [bug#48622] [PATCH core-updates 00/29] TeX Live 2020 Marius Bakke
2021-06-05 22:26 ` bug#48622: " Marius Bakke

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210524200923.28867-1-marius@gnu.org \
    --to=marius@gnu.org \
    --cc=48622@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.