all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [bug#56517] [PATCH 0/2] Add more nordic babel packs for texlive
@ 2022-07-12 10:08 Wiktor Żelazny
  2022-07-12 10:13 ` [bug#56517] [PATCH 1/2] gnu: Add texlive-generic-babel-norsk Wiktor Żelazny
  0 siblings, 1 reply; 4+ messages in thread
From: Wiktor Żelazny @ 2022-07-12 10:08 UTC (permalink / raw)
  To: 56517; +Cc: Wiktor Żelazny

texlive-generic-babel-norsk based on texlive-generic-babel-german.
texlive-babel-danish based on texlive-babel-finnish.

Wiktor Żelazny (2):
  gnu: Add texlive-generic-babel-norsk.
  gnu: Add texlive-babel-danish.

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


base-commit: 94b04fcd06688e0d3e7e839b539cc820bc273efc
-- 
2.36.1





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

* [bug#56517] [PATCH 1/2] gnu: Add texlive-generic-babel-norsk.
  2022-07-12 10:08 [bug#56517] [PATCH 0/2] Add more nordic babel packs for texlive Wiktor Żelazny
@ 2022-07-12 10:13 ` Wiktor Żelazny
  2022-07-12 10:13   ` [bug#56517] [PATCH 2/2] gnu: Add texlive-babel-danish Wiktor Żelazny
  2022-07-19 21:09   ` bug#56517: [PATCH 0/2] Add more nordic babel packs for texlive Ludovic Courtès
  0 siblings, 2 replies; 4+ messages in thread
From: Wiktor Żelazny @ 2022-07-12 10:13 UTC (permalink / raw)
  To: 56517; +Cc: Wiktor Żelazny

From: Wiktor Żelazny <wzelazny@vurv.cz>

* gnu/packages/tex.scm (texlive-generic-babel-norsk): New variable.
---
 gnu/packages/tex.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 47e015da71..8ef9e1cb6e 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11034,3 +11034,24 @@ (define-public texlive-babel-finnish
 Finnish in @code{babel}.  It provides all the necessary macros, definitions and
 settings to typeset Finnish documents.")
       (license license:lppl1.3c+))))
+
+(define-public texlive-generic-babel-norsk
+  (package
+    (name "texlive-generic-babel-norsk")
+    (version (number->string %texlive-revision))
+    (source (origin
+              (method svn-fetch)
+              (uri (texlive-ref "generic" "babel-norsk"))
+              (file-name (string-append name "-" version "-checkout"))
+              (sha256
+               (base32
+                "1yf538l2isxgmab8jslxxx5fbdk4njf147n4raf5vyw3l4slxm6m"))))
+    (build-system texlive-build-system)
+    (arguments '(#:tex-directory "generic/babel-norsk"))
+    (home-page "https://www.ctan.org/pkg/babel-norsk")
+    (synopsis "Babel support for Norwegian")
+    (description
+       "The package provides the language definition file for support of
+Norwegian in @code{babel}.  Some shortcuts are defined, as well as translations
+to Norsk of standard “LaTeX names”.")
+    (license license:lppl1.3+)))
-- 
2.36.1





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

* [bug#56517] [PATCH 2/2] gnu: Add texlive-babel-danish.
  2022-07-12 10:13 ` [bug#56517] [PATCH 1/2] gnu: Add texlive-generic-babel-norsk Wiktor Żelazny
@ 2022-07-12 10:13   ` Wiktor Żelazny
  2022-07-19 21:09   ` bug#56517: [PATCH 0/2] Add more nordic babel packs for texlive Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Wiktor Żelazny @ 2022-07-12 10:13 UTC (permalink / raw)
  To: 56517; +Cc: Wiktor Żelazny

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

diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 8ef9e1cb6e..ddcd0043c4 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -11055,3 +11055,30 @@ (define-public texlive-generic-babel-norsk
 Norwegian in @code{babel}.  Some shortcuts are defined, as well as translations
 to Norsk of standard “LaTeX names”.")
     (license license:lppl1.3+)))
+
+(define-public texlive-babel-danish
+  (let ((template (simple-texlive-package
+                   "texlive-babel-danish"
+                   (list "/source/generic/babel-danish/")
+                   (base32
+                    "00dryb078fqckqjnxa2riq478j6d5i28j5cclv4bw7dn5naa3lz7"))))
+    (package
+      (inherit template)
+      (arguments
+       (substitute-keyword-arguments (package-arguments template)
+         ((#:tex-directory _ '())
+          "generic/babel-danish")
+         ((#:build-targets _ '())
+          ''("danish.ins")) ; TODO: use dtx and build documentation
+         ((#:phases phases)
+          `(modify-phases ,phases
+             (add-after 'unpack 'chdir
+               (lambda _
+                 (chdir "source/generic/babel-danish")))))))
+      (home-page "https://www.ctan.org/pkg/babel-danish")
+      (synopsis "Babel support for Danish")
+      (description
+       "This package provides the language definition file for support of
+Danish in @code{babel}.  It provides all the necessary macros, definitions and
+settings to typeset Danish documents.")
+      (license license:lppl1.3c+))))
-- 
2.36.1





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

* bug#56517: [PATCH 0/2] Add more nordic babel packs for texlive
  2022-07-12 10:13 ` [bug#56517] [PATCH 1/2] gnu: Add texlive-generic-babel-norsk Wiktor Żelazny
  2022-07-12 10:13   ` [bug#56517] [PATCH 2/2] gnu: Add texlive-babel-danish Wiktor Żelazny
@ 2022-07-19 21:09   ` Ludovic Courtès
  1 sibling, 0 replies; 4+ messages in thread
From: Ludovic Courtès @ 2022-07-19 21:09 UTC (permalink / raw)
  To: Wiktor Żelazny; +Cc: Wiktor Żelazny, 56517-done

Hi Wiktor,

Wiktor Żelazny <wz@freeshell.de> skribis:

> From: Wiktor Żelazny <wzelazny@vurv.cz>
>
> * gnu/packages/tex.scm (texlive-generic-babel-norsk): New variable.

[...]

> * gnu/packages/tex.scm (texlive-babel-danish): New variable.

Applied, thanks!

Ludo’.




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

end of thread, other threads:[~2022-07-19 21:11 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-12 10:08 [bug#56517] [PATCH 0/2] Add more nordic babel packs for texlive Wiktor Żelazny
2022-07-12 10:13 ` [bug#56517] [PATCH 1/2] gnu: Add texlive-generic-babel-norsk Wiktor Żelazny
2022-07-12 10:13   ` [bug#56517] [PATCH 2/2] gnu: Add texlive-babel-danish Wiktor Żelazny
2022-07-19 21:09   ` bug#56517: [PATCH 0/2] Add more nordic babel packs for texlive Ludovic Courtès

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.