GNU bug report logs -
#56517
[PATCH 0/2] Add more nordic babel packs for texlive
Previous Next
Reported by: Wiktor Żelazny <wz <at> freeshell.de>
Date: Tue, 12 Jul 2022 10:10:01 UTC
Severity: normal
Tags: patch
Done: Ludovic Courtès <ludo <at> gnu.org>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 56517 in the body.
You can then email your comments to 56517 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
guix-patches <at> gnu.org
:
bug#56517
; Package
guix-patches
.
(Tue, 12 Jul 2022 10:10:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
Wiktor Żelazny <wz <at> freeshell.de>
:
New bug report received and forwarded. Copy sent to
guix-patches <at> gnu.org
.
(Tue, 12 Jul 2022 10:10:01 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#56517
; Package
guix-patches
.
(Tue, 12 Jul 2022 10:15:02 GMT)
Full text and
rfc822 format available.
Message #8 received at 56517 <at> debbugs.gnu.org (full text, mbox):
From: Wiktor Żelazny <wzelazny <at> 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
Information forwarded
to
guix-patches <at> gnu.org
:
bug#56517
; Package
guix-patches
.
(Tue, 12 Jul 2022 10:15:02 GMT)
Full text and
rfc822 format available.
Message #11 received at 56517 <at> debbugs.gnu.org (full text, mbox):
* 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
Reply sent
to
Ludovic Courtès <ludo <at> gnu.org>
:
You have taken responsibility.
(Tue, 19 Jul 2022 21:11:01 GMT)
Full text and
rfc822 format available.
Notification sent
to
Wiktor Żelazny <wz <at> freeshell.de>
:
bug acknowledged by developer.
(Tue, 19 Jul 2022 21:11:02 GMT)
Full text and
rfc822 format available.
Message #16 received at 56517-done <at> debbugs.gnu.org (full text, mbox):
Hi Wiktor,
Wiktor Żelazny <wz <at> freeshell.de> skribis:
> From: Wiktor Żelazny <wzelazny <at> vurv.cz>
>
> * gnu/packages/tex.scm (texlive-generic-babel-norsk): New variable.
[...]
> * gnu/packages/tex.scm (texlive-babel-danish): New variable.
Applied, thanks!
Ludo’.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Wed, 17 Aug 2022 11:24:04 GMT)
Full text and
rfc822 format available.
This bug report was last modified 2 years and 304 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.