[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
131/242: gnu: Add texlive-xindy.
From: |
guix-commits |
Subject: |
131/242: gnu: Add texlive-xindy. |
Date: |
Wed, 11 May 2022 18:03:16 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 7a61d1e49939090c2387216856563a5c8758acb3
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Wed Apr 20 23:55:07 2022 -0400
gnu: Add texlive-xindy.
* gnu/packages/tex.scm (texlive-xindy): New variable.
---
gnu/packages/tex.scm | 50 ++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 50 insertions(+)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 994f03987e..9f8fdbafdc 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -50,6 +50,7 @@
#:use-module (guix build-system texlive)
#:use-module (guix utils)
#:use-module (guix deprecation)
+ #:use-module (guix gexp)
#:use-module (guix git-download)
#:use-module (guix svn-download)
#:use-module (gnu packages)
@@ -58,6 +59,7 @@
#:use-module (gnu packages bash)
#:use-module (gnu packages boost)
#:use-module (gnu packages compression)
+ #:use-module (gnu packages lisp)
#:use-module (gnu packages fonts)
#:use-module (gnu packages fontutils)
#:use-module (gnu packages gd)
@@ -10820,6 +10822,54 @@ the package @code{calc}, together with the ability of
defining new commands to
handle complex tests.")
(license license:lppl)))
+(define-public texlive-xindy
+ (package
+ (name "texlive-xindy")
+ (version "2.5.1")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://ctan/indexing/xindy/base/xindy-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0hxsx4zw19kmixkmrln17sxgg1ln4pfp4lpfn5v5fyr1nwfyk3ic"))))
+ (build-system gnu-build-system)
+ (arguments
+ (list
+ #:configure-flags #~(list "--enable-docs")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'patch-clisp
+ (lambda* (#:key inputs #:allow-other-keys)
+ ;; The xindy.in file is encoded in ISO-8859-1 (or iso-latin-1).
+ (with-fluids ((%default-port-encoding "ISO-8859-1"))
+ (substitute* "user-commands/xindy.in"
+ (("(our \\$clisp = ).*" _ head)
+ (format #f "our $clisp = ~s;~%"
+ (search-input-file inputs "bin/clisp"))))))))))
+ (native-inputs (list clisp
+ glibc-locales
+ perl
+ texlive-bin
+ texlive-greek-fontenc
+ texlive-hyperref
+ texlive-latex-base
+ texlive-latex-cyrillic
+ texlive-latex-geometry
+ (texlive-updmap.cfg ;fonts
+ (list texlive-cbfonts
+ texlive-lh
+ texlive-jknappen))))
+ (inputs (list clisp perl)) ;used at run time
+ (home-page "https://www.ctan.org/pkg/xindy")
+ (synopsis "General-purpose index processor")
+ (description "Xindy was developed after an impasse had been encountered in
+the attempt to complete internationalisation of @command{makeindex}. Xindy
+can be used to process indexes for documents marked up using (La)TeX, Nroff
+family and SGML-based languages. Xindy is highly configurable, both in markup
+terms and in terms of the collating order of the text being processed.")
+ (license license:gpl2+)))
+
(define-public bibtool
(package
(name "bibtool")
- 113/242: gnu: python-nbconvert: Update to 6.5.0., (continued)
- 113/242: gnu: python-nbconvert: Update to 6.5.0., guix-commits, 2022/05/11
- 116/242: gnu: python-send2trash: Update to 1.8.0 and update home page., guix-commits, 2022/05/11
- 117/242: gnu: python-notebook: Update to 6.4.10., guix-commits, 2022/05/11
- 118/242: gnu: Add python-nbdime., guix-commits, 2022/05/11
- 119/242: gnu: Add python-docrepr., guix-commits, 2022/05/11
- 121/242: gnu: Add python-pep621., guix-commits, 2022/05/11
- 122/242: gnu: Add python-sphinx-theme-builder., guix-commits, 2022/05/11
- 123/242: gnu: Add python-sphinx-sitemap., guix-commits, 2022/05/11
- 124/242: gnu: texlive-fontspec: Add missing propagated inputs., guix-commits, 2022/05/11
- 130/242: gnu: Add texlive-cm-lgc., guix-commits, 2022/05/11
- 131/242: gnu: Add texlive-xindy.,
guix-commits <=
- 135/242: gnu: Add python-rfc3339-validator., guix-commits, 2022/05/11
- 133/242: gnu: python-websockets: Update to 10.3 and enable tests., guix-commits, 2022/05/11
- 139/242: gnu: python-httpcore: Update to 0.14.7 and enable tests., guix-commits, 2022/05/11
- 153/242: gnu: Add python-jupyterlab-server., guix-commits, 2022/05/11
- 142/242: gnu: python-httpx: Update to 0.22.0., guix-commits, 2022/05/11
- 151/242: gnu: Add python-dictpath., guix-commits, 2022/05/11
- 143/242: gnu: python-uvicorn: Update to 0.17.6., guix-commits, 2022/05/11
- 154/242: gnu: python-hypothesis-6.23: Update to 6.43.3., guix-commits, 2022/05/11
- 155/242: gnu: python-numpy: Update to 1.21.6 and parallelize build/tests., guix-commits, 2022/05/11
- 148/242: gnu: Add python-aioredis., guix-commits, 2022/05/11