[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
12/232: gnu: Add texlive-paralist.
From: |
guix-commits |
Subject: |
12/232: gnu: Add texlive-paralist. |
Date: |
Sun, 24 Apr 2022 23:58:24 -0400 (EDT) |
apteryx pushed a commit to branch wip-ipython-polyglossia
in repository guix.
commit 79a41a2682745160bddaccead2e459f69a0726c8
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Mar 31 01:30:53 2022 -0400
gnu: Add texlive-paralist.
* gnu/packages/tex.scm (texlive-paralist): New variable.
---
gnu/packages/tex.scm | 47 ++++++++++++++++++++++++++++++++++++++++++++++-
1 file changed, 46 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index 34e9aa1e06..8c31d131b6 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -14,7 +14,7 @@
;;; Copyright © 2018, 2020 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2020 Vincent Legoll <vincent.legoll@gmail.com>
;;; Copyright © 2020, 2021 Paul Garlick <pgarlick@tourbillion-technology.com>
-;;; Copyright © 2021 Maxim Cournoyer <maxim.cournoyer@gmail.com>
+;;; Copyright © 2021, 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
;;; Copyright © 2021 Leo Le Bouter <lle-bout@zaclys.net>
;;; Copyright © 2021 Xinglu Chen <public@yoctocell.xyz>
;;; Copyright © 2021 Ivan Gankevich <i.gankevich@spbu.ru>
@@ -5417,6 +5417,51 @@ which adds some minor changes to LaTeX maths; a rewrite
of LaTeX's tabular and
array environments; verbatim handling; and syntax diagrams.")
(license license:gpl3+)))
+(define-public texlive-paralist
+ (package
+ (inherit (simple-texlive-package
+ "texlive-paralist"
+ (list "doc/latex/paralist/README"
+ "source/latex/paralist/paralist.dtx"
+ "source/latex/paralist/paralist.ins")
+ (base32 "1lz8yds2i64wkb89a9amydwkzsdbc09s1kbgn7vgh2qsxqrrgwam")))
+ (outputs '("out" "doc"))
+ (arguments
+ (list
+ #:tex-directory "latex/paralist"
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-before 'build 'chdir
+ (lambda _
+ (setenv "ROOT_DIR" (getcwd))
+ (chdir "source/latex/paralist")))
+ (add-after 'build 'build-doc
+ (lambda* (#:key outputs tex-directory #:allow-other-keys)
+ (copy-file "paralist.dtx" "build/paralist.dtx")
+ (chdir "build")
+ (invoke "pdflatex" "paralist.dtx")))
+ (replace 'install
+ (lambda* (#:key outputs tex-directory #:allow-other-keys)
+ (let ((doc (string-append (assoc-ref outputs "doc")
+ "/share/doc/" tex-directory))
+ (out (string-append #$output "/share/texmf-dist/tex/"
+ tex-directory)))
+ (install-file "paralist.pdf" doc)
+ (install-file (car (find-files (getenv "ROOT_DIR") "README"))
+ doc)
+ (install-file "paralist.sty" out)))))))
+ (native-inputs (list texlive-latex-base
+ (texlive-updmap.cfg
+ (list texlive-cm
+ texlive-jknappen))))
+ (home-page "https://ctan.org/pkg/paralist")
+ (synopsis "Enumerate and itemize within paragraphs")
+ (description "The @code{paralist} package provides enumerate and itemize
+environments that can be used within paragraphs to format the items either as
+running text or as separate paragraphs with a preceding number or symbol. It
+also provides compacted versions of enumerate and itemize.")
+ (license license:lppl1.0+)))
+
(define-public texlive-latex-polyglossia
(package
(name "texlive-latex-polyglossia")
- branch wip-ipython-polyglossia created (now fda121f755), guix-commits, 2022/04/24
- 02/232: gnu: python-astroid: Propagate python-typing-extensions., guix-commits, 2022/04/24
- 03/232: gnu: Add python-pure-eval., guix-commits, 2022/04/24
- 04/232: gnu: Add python-asttokens., guix-commits, 2022/04/24
- 06/232: gnu: Add python-stack-data., guix-commits, 2022/04/24
- 09/232: gnu: python-prompt-toolkit: Update to 3.0.29., guix-commits, 2022/04/24
- 08/232: gnu: python-jinja2: Update to 3.1.1., guix-commits, 2022/04/24
- 10/232: gnu: python-ipython: Update to 8.2.0 [fixes CVE-2022-21699]., guix-commits, 2022/04/24
- 20/232: gnu: Add opentype-sanitizer., guix-commits, 2022/04/24
- 11/232: gnu: python-nbformat: Update to 5.3.0., guix-commits, 2022/04/24
- 12/232: gnu: Add texlive-paralist.,
guix-commits <=
- 21/232: gnu: Add python-opentype-sanitizer., guix-commits, 2022/04/24
- 07/232: gnu: python-traitlets: Update to 5.1.1., guix-commits, 2022/04/24
- 01/232: gnu: python-ipython: Re-order fields., guix-commits, 2022/04/24
- 05/232: gnu: Add python-littleutils., guix-commits, 2022/04/24
- 13/232: gnu: Add texlive-stix2-otf., guix-commits, 2022/04/24
- 14/232: gnu: Add texlive-metalogo., guix-commits, 2022/04/24
- 16/232: gnu: Add texlive-csplain., guix-commits, 2022/04/24
- 22/232: gnu: Add python-defcon-bootstrap., guix-commits, 2022/04/24
- 32/232: gnu: Add python-fontparts., guix-commits, 2022/04/24
- 36/232: gnu: Add python-types-toml., guix-commits, 2022/04/24