unofficial mirror of guix-patches@gnu.org 
 help / color / mirror / code / Atom feed
* [bug#61659] [PATCH v2 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs.
       [not found] <20230220210503.11061-1-Morgan.J.Smith@outlook.com>
@ 2023-02-20 21:04 ` Morgan.J.Smith
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 3/6] gnu: texlive-mdframed: " Morgan.J.Smith
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 21:04 UTC (permalink / raw)
  To: 61659; +Cc: Morgan Smith

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/tex.scm (texlive-latex-ifplatform)[propagated-inputs]: Add
texlive-catchfile.
---
 gnu/packages/tex.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index efccba17cc..2fea0e9697 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -4957,6 +4957,7 @@ (define-public texlive-latex-ifplatform
                (base32
                 "157pplavvm2z97b3jl4x41w11k6q9wgy074mfg0dwmsx5lm328jy"))))
     (build-system texlive-build-system)
+    (propagated-inputs (list texlive-catchfile))
     (arguments '(#:tex-directory "latex/ifplatform"))
     (home-page "https://www.ctan.org/pkg/ifplatform")
     (synopsis "Conditionals to test which platform is being used")
-- 
2.39.1





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

* [bug#61659] [PATCH v2 3/6] gnu: texlive-mdframed: Add needed propagated-inputs.
       [not found] <20230220210503.11061-1-Morgan.J.Smith@outlook.com>
  2023-02-20 21:04 ` [bug#61659] [PATCH v2 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs Morgan.J.Smith
@ 2023-02-20 21:05 ` Morgan.J.Smith
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 4/6] gnu: texlive-latex-fancyvrb: " Morgan.J.Smith
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 21:05 UTC (permalink / raw)
  To: 61659; +Cc: Morgan Smith

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/tex.scm (texlive-mdframed)[propagated-inputs]: Add
texlive-latex-needspace, and texlive-zref.
---
 gnu/packages/tex.scm | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 2fea0e9697..5d82f98f35 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11518,6 +11518,8 @@ (define-public texlive-mdframed
        "tex/latex/mdframed/")
       (base32 "1i5rm946wg43rjckxlfhx79zfx5cgd3bxk71206hd1dqkrgpdpa8")
       #:trivial? #t))
+    (propagated-inputs (list texlive-latex-needspace
+                             texlive-zref))
     (home-page "https://ctan.org/pkg/mdframed")
     (synopsis "Framed environments that can split at page boundaries")
     (description
-- 
2.39.1





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

* [bug#61659] [PATCH v2 4/6] gnu: texlive-latex-fancyvrb: Add needed propagated-inputs.
       [not found] <20230220210503.11061-1-Morgan.J.Smith@outlook.com>
  2023-02-20 21:04 ` [bug#61659] [PATCH v2 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs Morgan.J.Smith
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 3/6] gnu: texlive-mdframed: " Morgan.J.Smith
@ 2023-02-20 21:05 ` Morgan.J.Smith
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 5/6] gnu: Add texlive-fvextra Morgan.J.Smith
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 6/6] gnu: Add texlive-minted Morgan.J.Smith
  4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 21:05 UTC (permalink / raw)
  To: 61659; +Cc: Morgan Smith

From: Morgan Smith <Morgan.J.Smith@outlook.com>

* gnu/packages/tex.scm (texlive-latex-fancyvrb)[propagated-inputs]: Add
texlive-latex-upquote.
---
 gnu/packages/tex.scm | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 5d82f98f35..bf4a50973b 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -3174,6 +3174,7 @@ (define-public texlive-latex-fancyvrb
               (base32
                "0pdilgpw4zc0ipp4z9kdi61nymifyjy2mfpk74xk2cw9vhynkk3w")
               #:trivial? #t))
+    (propagated-inputs (list texlive-latex-upquote))
     (home-page "https://www.ctan.org/pkg/fancyvrb")
     (synopsis "Sophisticated verbatim text")
     (description
-- 
2.39.1





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

* [bug#61659] [PATCH v2 5/6] gnu: Add texlive-fvextra.
       [not found] <20230220210503.11061-1-Morgan.J.Smith@outlook.com>
                   ` (2 preceding siblings ...)
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 4/6] gnu: texlive-latex-fancyvrb: " Morgan.J.Smith
@ 2023-02-20 21:05 ` Morgan.J.Smith
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 6/6] gnu: Add texlive-minted Morgan.J.Smith
  4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 21:05 UTC (permalink / raw)
  To: 61659; +Cc: Morgan Smith

From: Morgan Smith <Morgan.J.Smith@outlook.com>

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index bf4a50973b..6aef6905a6 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11173,6 +11173,28 @@ (define-public texlive-floatflt
 tables and figures to be set left/right or alternating on even/odd pages.")
     (license license:lppl1.3+)))
 
+(define-public texlive-fvextra
+  (let ((template (simple-texlive-package
+                   "texlive-fvextra"
+                   (list "/doc/latex/fvextra/"
+                         "/source/latex/fvextra/"
+                         "/tex/latex/fvextra/")
+                   (base32
+                    "0nawx1fh55yhqspy5jgss2qmwpqmikfrg7628smk931rph9nq0aa"))))
+    (package
+      (inherit template)
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ #t)
+          "latex/fvextra")))
+      (home-page "https://ctan.org/macros/latex/contrib/fvextra")
+      (synopsis "Extensions and patches for fancyvrb")
+      (description
+       "This package provides several extensions to fancyvrb, including
+automatic line breaking and improved math mode.  It also patches some fancyvrb
+internals.")
+      (license license:lppl1.3+))))
+
 (define-public bibtool
   (package
     (name "bibtool")
-- 
2.39.1





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

* [bug#61659] [PATCH v2 6/6] gnu: Add texlive-minted.
       [not found] <20230220210503.11061-1-Morgan.J.Smith@outlook.com>
                   ` (3 preceding siblings ...)
  2023-02-20 21:05 ` [bug#61659] [PATCH v2 5/6] gnu: Add texlive-fvextra Morgan.J.Smith
@ 2023-02-20 21:05 ` Morgan.J.Smith
  4 siblings, 0 replies; 5+ messages in thread
From: Morgan.J.Smith @ 2023-02-20 21:05 UTC (permalink / raw)
  To: 61659; +Cc: Morgan Smith

From: Morgan Smith <Morgan.J.Smith@outlook.com>

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 6aef6905a6..592ef6943a 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -10035,6 +10035,37 @@ (define-public texlive-microtype
 the bundle.")
       (license license:lppl1.3c))))
 
+(define-public texlive-minted
+  (let ((template (simple-texlive-package
+                   "texlive-minted"
+                   (list "/doc/latex/minted/"
+                         "/source/latex/minted/"
+                         "/tex/latex/minted/")
+                   (base32
+                    "08pbhp4a9k8v49kji26206zzabp0nn0fz403l4w7gxajw9rj8icr"))))
+    (package
+      (inherit template)
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ #t)
+          "latex/minted")))
+      (propagated-inputs (list python-pygments
+                               texlive-etoolbox
+                               texlive-fvextra
+                               texlive-generic-xstring
+                               texlive-latex-fancyvrb
+                               texlive-latex-float
+                               texlive-latex-framed
+                               texlive-latex-ifplatform
+                               texlive-latex-newfloat
+                               texlive-lineno))
+      (home-page "https://ctan.org/pkg/minted")
+      (synopsis "Highlight source code in LaTeX documents")
+      (description "This package facilitates expressive syntax highlighting in
+LaTeX using the Pygments library.  This package also provides options to
+customize the highlighted source code output using fancyvrb and fvextra.")
+      (license license:lppl1.3+))))
+
 (define-public texlive-caption
   (let ((template (simple-texlive-package
                    "texlive-caption"
-- 
2.39.1





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

end of thread, other threads:[~2023-02-20 21:06 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <20230220210503.11061-1-Morgan.J.Smith@outlook.com>
2023-02-20 21:04 ` [bug#61659] [PATCH v2 2/6] gnu: texlive-latex-ifplatform: Add needed propagated-inputs Morgan.J.Smith
2023-02-20 21:05 ` [bug#61659] [PATCH v2 3/6] gnu: texlive-mdframed: " Morgan.J.Smith
2023-02-20 21:05 ` [bug#61659] [PATCH v2 4/6] gnu: texlive-latex-fancyvrb: " Morgan.J.Smith
2023-02-20 21:05 ` [bug#61659] [PATCH v2 5/6] gnu: Add texlive-fvextra Morgan.J.Smith
2023-02-20 21:05 ` [bug#61659] [PATCH v2 6/6] gnu: Add texlive-minted Morgan.J.Smith

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).