unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#56849] [PATCH 0/8] gnu: Add several TeX packages.
@ 2022-07-31  1:06 Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 1/8] gnu: Add texlive-abstract Philip McGrath
                   ` (8 more replies)
  0 siblings, 9 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:06 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

Hi,

This patch series adds several TeX Live packages. There isn't really a
unifying theme---they can all be applied independently---but I hoped sending
them as a series might be easier to review.

 -Philip

Philip McGrath (8):
  gnu: Add texlive-abstract.
  gnu: Add texlive-breqn.
  gnu: Add texlive-comment.
  gnu: Add texlive-datatool.
  gnu: Add texlive-physics.
  gnu: Add texlive-sourcesanspro.
  gnu: Add texlive-sourceserifpro.
  gnu: Add texlive-sourcecodepro.

 gnu/packages/tex.scm | 223 +++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 223 insertions(+)


base-commit: d1c6b8db5a30f9e428d018156dadb12927c485f8
-- 
2.32.0





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

* [bug#56849] [PATCH 1/8] gnu: Add texlive-abstract.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 2/8] gnu: Add texlive-breqn Philip McGrath
                   ` (7 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index ddcd0043c4..768cce2550 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -21,6 +21,7 @@
 ;;; Copyright © 2021 Julien Lepiller <julien@lepiller.eu>
 ;;; Copyright © 2021 Thiago Jung Bauermann <bauermann@kolabnow.com>
 ;;; Copyright © 2022 Jack Hill <jackhill@jackhill.us>
+;;; Copyright © 2022 Philip McGrath <philip@philipmcgrath.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -11082,3 +11083,39 @@ (define-public texlive-babel-danish
 Danish in @code{babel}.  It provides all the necessary macros, definitions and
 settings to typeset Danish documents.")
       (license license:lppl1.3c+))))
+
+(define-public texlive-abstract
+  (let ((template (simple-texlive-package
+                   "texlive-abstract"
+                   '("/doc/latex/abstract/"
+                     "/source/latex/abstract/")
+                   (base32
+                    "1v8ks9gn28ixlpb9cih02xds3c807027370ax3fbsymll1jx2rjg"))))
+    (package
+      (inherit template)
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ #f)
+          "latex/abstract")
+         ((#:build-targets _ #t)
+          #~(list "abstract.ins"))
+         ((#:phases std-phases)
+          #~(modify-phases #$std-phases
+              (add-after 'unpack 'chdir
+                (lambda args
+                  (chdir "source/latex/abstract")))
+              (add-before 'copy-files 'unchdir
+                (lambda args
+                  (chdir "../../..")))
+              (add-after 'copy-files 'remove-extra-files
+                (lambda args
+                  (delete-file-recursively
+                   (string-append #$output
+                                  "/share/texmf-dist"
+                                  "/source/latex/abstract/build"))))))))
+      (home-page "https://ctan.org/pkg/abstract")
+      (synopsis "Control the typesetting of the abstract environment")
+      (description "The abstract package gives you control over the typesetting
+of the abstract environment, and in particular provides for a one column
+abstract in a two column paper.")
+      (license license:lppl))))
-- 
2.32.0





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

* [bug#56849] [PATCH 2/8] gnu: Add texlive-breqn.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 1/8] gnu: Add texlive-abstract Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 3/8] gnu: Add texlive-comment Philip McGrath
                   ` (6 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 768cce2550..65245c7b8a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11119,3 +11119,44 @@ (define-public texlive-abstract
 of the abstract environment, and in particular provides for a one column
 abstract in a two column paper.")
       (license license:lppl))))
+
+(define-public texlive-breqn
+  (let ((template (simple-texlive-package
+                   "texlive-breqn"
+                   '("/doc/latex/breqn/"
+                     "/source/latex/breqn/")
+                   (base32
+                    "186cypxiyf30fq6dxvvlbwn5yx7c8d4cd243wvvb3243n5l4rpl3"))))
+    (package
+      (inherit template)
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ #f)
+          "latex/breqn")
+         ((#:build-targets _ #t)
+          #~(list "breqnbundle.ins"))
+         ((#:phases std-phases)
+          #~(modify-phases #$std-phases
+              (add-after 'unpack 'chdir
+                (lambda args
+                  (chdir "source/latex/breqn")))
+              (add-before 'copy-files 'unchdir
+                (lambda args
+                  (chdir "../../..")))
+              (add-after 'copy-files 'remove-extra-files
+                (lambda args
+                  (delete-file-recursively
+                   (string-append #$output
+                                  "/share/texmf-dist"
+                                  "/source/latex/breqn/build"))))))))
+      (home-page "https://wspr.io/breqn/")
+      (synopsis "Automatic line breaking of displayed equations")
+      (description "This package provides solutions to a number of common
+difficulties in writing displayed equations and getting high-quality output.
+The single most ambitious goal of the package is to support automatic
+linebreaking of displayed equations.  Such linebreaking cannot be done without
+substantial changes under the hood in the way formulae are processed; the code
+must be watched carefully, keeping an eye on possible glitches.  The bundle
+also contains the @code{flexisym} and @code{mathstyle} packages, which are
+both designated as support for @code{breqn}.")
+      (license license:lppl1.3+))))
-- 
2.32.0





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

* [bug#56849] [PATCH 3/8] gnu: Add texlive-comment.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 1/8] gnu: Add texlive-abstract Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 2/8] gnu: Add texlive-breqn Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 4/8] gnu: Add texlive-datatool Philip McGrath
                   ` (5 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 65245c7b8a..c4e8bdfd82 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11160,3 +11160,19 @@ (define-public texlive-breqn
 also contains the @code{flexisym} and @code{mathstyle} packages, which are
 both designated as support for @code{breqn}.")
       (license license:lppl1.3+))))
+
+(define-public texlive-comment
+  (package
+    (inherit (simple-texlive-package
+              "texlive-comment"
+              '("/doc/latex/comment/"
+                "/tex/latex/comment/")
+              (base32
+               "1c1mqziwxyf1bqzpw6ji65n7ypygm3lyknblxmf0c70w0ivw76pa")
+              #:trivial? #t))
+    (home-page "https://ctan.org/pkg/comment")
+    (synopsis "Selectively include/exclude portions of text")
+    (description "This package provides environments for selectively including
+or excluding pieces of text, allowing the user to define new, separately
+controlled comment versions.")
+    (license license:gpl2+)))
-- 
2.32.0





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

* [bug#56849] [PATCH 4/8] gnu: Add texlive-datatool.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
                   ` (2 preceding siblings ...)
  2022-07-31  1:08 ` [bug#56849] [PATCH 3/8] gnu: Add texlive-comment Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 5/8] gnu: Add texlive-physics Philip McGrath
                   ` (4 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index c4e8bdfd82..9f867f287d 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11176,3 +11176,42 @@ (define-public texlive-comment
 or excluding pieces of text, allowing the user to define new, separately
 controlled comment versions.")
     (license license:gpl2+)))
+
+(define-public texlive-datatool
+  (let ((template (simple-texlive-package
+                   "texlive-datatool"
+                   '("/bibtex/bst/datatool/"
+                     "/doc/latex/datatool/"
+                     "/source/latex/datatool/")
+                   (base32
+                    "0hh2623zlwgq8zb2lv4d8yfaqwzrz54dqhc1xk0jd1k4fp281kl5"))))
+    (package
+      (inherit template)
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ #f)
+          "latex/datatool")
+         ((#:build-targets _ #t)
+          #~(list "datatool.ins"))
+         ((#:phases std-phases)
+          #~(modify-phases #$std-phases
+              (add-after 'unpack 'chdir
+                (lambda args
+                  (chdir "source/latex/datatool")))
+              (add-before 'copy-files 'unchdir
+                (lambda args
+                  (chdir "../../..")))
+              (add-after 'copy-files 'remove-extra-files
+                (lambda args
+                  (delete-file-recursively
+                   (string-append #$output
+                                  "/share/texmf-dist"
+                                  "/source/latex/datatool/build"))))))))
+      (home-page "https://ctan.org/pkg/datatool")
+      (synopsis "Tools to load and manipulate data")
+      (description "This package provides tools to create databases using LaTeX
+commands or by importing external files.  Databases may be sorted, filtered,
+and visualized using several kinds of configurable plots.  Particular support
+is provided for mail merging, indexing, creating glossaries, manipulating
+bibliographies, and displaying personal pronouns.")
+      (license license:lppl1.3+))))
-- 
2.32.0





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

* [bug#56849] [PATCH 5/8] gnu: Add texlive-physics.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
                   ` (3 preceding siblings ...)
  2022-07-31  1:08 ` [bug#56849] [PATCH 4/8] gnu: Add texlive-datatool Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 6/8] gnu: Add texlive-sourcesanspro Philip McGrath
                   ` (3 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 9f867f287d..d3185f5256 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11215,3 +11215,19 @@ (define-public texlive-datatool
 is provided for mail merging, indexing, creating glossaries, manipulating
 bibliographies, and displaying personal pronouns.")
       (license license:lppl1.3+))))
+
+(define-public texlive-physics
+  (package
+    (inherit (simple-texlive-package
+              "texlive-physics"
+              '("/doc/latex/physics/"
+                "/tex/latex/physics/")
+              (base32
+               "1wy58wwcv1pv18xs1n71abnm73dqnxqijxvhfxk0rcmvbc6wvwrb")
+              #:trivial? #t))
+    (home-page "https://ctan.org/pkg/physics")
+    (synopsis "Macros supporting the Mathematics of Physics")
+    (description "The package defines simple and flexible macros for
+typesetting equations in the languages of vector calculus and linear
+algebra, using Dirac notation.")
+    (license license:lppl)))
-- 
2.32.0





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

* [bug#56849] [PATCH 6/8] gnu: Add texlive-sourcesanspro.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
                   ` (4 preceding siblings ...)
  2022-07-31  1:08 ` [bug#56849] [PATCH 5/8] gnu: Add texlive-physics Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 7/8] gnu: Add texlive-sourceserifpro Philip McGrath
                   ` (2 subsequent siblings)
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index d3185f5256..1221726ccd 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11231,3 +11231,31 @@ (define-public texlive-physics
 typesetting equations in the languages of vector calculus and linear
 algebra, using Dirac notation.")
     (license license:lppl)))
+
+(define-public texlive-sourcesanspro
+  (package
+    (inherit (simple-texlive-package
+              "texlive-sourcesanspro"
+              '("/doc/latex/sourcesanspro/"
+                "/fonts/enc/dvips/sourcesanspro/"
+                "/fonts/map/dvips/sourcesanspro/"
+                "/fonts/opentype/adobe/sourcesanspro/"
+                ;; ^ It would be tempting to use our
+                ;; font-adobe-source-sans-pro for these, but the version in
+                ;; texlive could differ from our version: probably the
+                ;; difference would be small, but debugging would not be fun.
+                ;; If the files are really identical, Guix will hard-link them
+                ;; anyway.
+                "/fonts/tfm/adobe/sourcesanspro/"
+                "/fonts/type1/adobe/sourcesanspro/"
+                "/fonts/vf/adobe/sourcesanspro/"
+                "/tex/latex/sourcesanspro/")
+              (base32
+               "18z7ln8dyh0sp6v0vdvc6qqxnpg3h3ix0f5magjcjbpay54kl0i3")
+              #:trivial? #t))
+    (home-page "https://ctan.org/pkg/sourcesanspro")
+    (synopsis "Use Source Sans Pro with TeX(-alike) systems")
+    (description "This package provides the Source Sans Pro font family from
+Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the
+use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).")
+    (license (list license:lppl1.3+ license:silofl1.1))))
-- 
2.32.0





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

* [bug#56849] [PATCH 7/8] gnu: Add texlive-sourceserifpro.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
                   ` (5 preceding siblings ...)
  2022-07-31  1:08 ` [bug#56849] [PATCH 6/8] gnu: Add texlive-sourcesanspro Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-07-31  1:08 ` [bug#56849] [PATCH 8/8] gnu: Add texlive-sourcecodepro Philip McGrath
  2022-08-05 12:47 ` bug#56849: [PATCH 0/8] gnu: Add several TeX packages Ludovic Courtès
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1221726ccd..1ad6743661 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11259,3 +11259,26 @@ (define-public texlive-sourcesanspro
 Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the
 use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).")
     (license (list license:lppl1.3+ license:silofl1.1))))
+
+(define-public texlive-sourceserifpro
+  (package
+    (inherit (simple-texlive-package
+              "texlive-sourceserifpro"
+              '("/doc/latex/sourceserifpro/"
+                "/fonts/enc/dvips/sourceserifpro/"
+                "/fonts/map/dvips/sourceserifpro/"
+                "/fonts/opentype/adobe/sourceserifpro/"
+                ;; ^ see comment on texlive-sourcesanspro
+                "/fonts/tfm/adobe/sourceserifpro/"
+                "/fonts/type1/adobe/sourceserifpro/"
+                "/fonts/vf/adobe/sourceserifpro/"
+                "/tex/latex/sourceserifpro/")
+              (base32
+               "18xxncg8ybv86r46zq5mvgkrfnvlhx93n55fy8nkk8vdmminrh8w")
+              #:trivial? #t))
+    (home-page "https://ctan.org/pkg/sourceserifpro")
+    (synopsis "Use Source Serif Pro with TeX(-alike) systems")
+    (description "This package provides the Source Serif Pro font family from
+Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the
+use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).")
+    (license (list license:lppl1.3+ license:silofl1.1))))
-- 
2.32.0





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

* [bug#56849] [PATCH 8/8] gnu: Add texlive-sourcecodepro.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
                   ` (6 preceding siblings ...)
  2022-07-31  1:08 ` [bug#56849] [PATCH 7/8] gnu: Add texlive-sourceserifpro Philip McGrath
@ 2022-07-31  1:08 ` Philip McGrath
  2022-08-05 12:47 ` bug#56849: [PATCH 0/8] gnu: Add several TeX packages Ludovic Courtès
  8 siblings, 0 replies; 10+ messages in thread
From: Philip McGrath @ 2022-07-31  1:08 UTC (permalink / raw)
  To: 56849; +Cc: Philip McGrath

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 1ad6743661..2ca48af577 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11282,3 +11282,26 @@ (define-public texlive-sourceserifpro
 Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the
 use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).")
     (license (list license:lppl1.3+ license:silofl1.1))))
+
+(define-public texlive-sourcecodepro
+  (package
+    (inherit (simple-texlive-package
+              "texlive-sourcecodepro"
+              '("/doc/latex/sourcecodepro/"
+                "/fonts/enc/dvips/sourcecodepro/"
+                "/fonts/map/dvips/sourcecodepro/"
+                "/fonts/opentype/adobe/sourcecodepro/"
+                ;; ^ see comment on texlive-sourcesanspro
+                "/fonts/tfm/adobe/sourcecodepro/"
+                "/fonts/type1/adobe/sourcecodepro/"
+                "/fonts/vf/adobe/sourcecodepro/"
+                "/tex/latex/sourcecodepro/")
+              (base32
+               "009v9y7d3vsljgq9nw5yx4kzyqavxbwrlvwhfjj83s6rmb9xcrmh")
+              #:trivial? #t))
+    (home-page "https://ctan.org/pkg/sourcecodepro")
+    (synopsis "Use Source Code Pro with TeX(-alike) systems")
+    (description "This package provides the Source Code Pro font family from
+Adobe in both Adobe Type 1 and OpenType formats, plus macros supporting the
+use of the fonts in LaTeX (Type 1) and XeLaTeX/LuaLaTeX (OTF).")
+    (license (list license:lppl1.3+ license:silofl1.1))))
-- 
2.32.0





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

* bug#56849: [PATCH 0/8] gnu: Add several TeX packages.
  2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
                   ` (7 preceding siblings ...)
  2022-07-31  1:08 ` [bug#56849] [PATCH 8/8] gnu: Add texlive-sourcecodepro Philip McGrath
@ 2022-08-05 12:47 ` Ludovic Courtès
  8 siblings, 0 replies; 10+ messages in thread
From: Ludovic Courtès @ 2022-08-05 12:47 UTC (permalink / raw)
  To: Philip McGrath; +Cc: 56849-done

Hi Philip,

Philip McGrath <philip@philipmcgrath.com> skribis:

>   gnu: Add texlive-abstract.
>   gnu: Add texlive-breqn.
>   gnu: Add texlive-comment.
>   gnu: Add texlive-datatool.
>   gnu: Add texlive-physics.
>   gnu: Add texlive-sourcesanspro.
>   gnu: Add texlive-sourceserifpro.
>   gnu: Add texlive-sourcecodepro.

Applied!

However, I had a hash mismatch on texlive-abstract.  I compared with
what ‘guix import texlive’ gives, and ended up adding
“tex/latex/abstract/” and adjusting the hash.

Please let me know if anything’s wrong.

Thanks,
Ludo’.




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

end of thread, other threads:[~2022-08-05 12:48 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-31  1:06 [bug#56849] [PATCH 0/8] gnu: Add several TeX packages Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 1/8] gnu: Add texlive-abstract Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 2/8] gnu: Add texlive-breqn Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 3/8] gnu: Add texlive-comment Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 4/8] gnu: Add texlive-datatool Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 5/8] gnu: Add texlive-physics Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 6/8] gnu: Add texlive-sourcesanspro Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 7/8] gnu: Add texlive-sourceserifpro Philip McGrath
2022-07-31  1:08 ` [bug#56849] [PATCH 8/8] gnu: Add texlive-sourcecodepro Philip McGrath
2022-08-05 12:47 ` bug#56849: [PATCH 0/8] gnu: Add several TeX packages Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).