diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-03-06 11:14:36 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-03-06 12:22:13 +0100 |
commit | b2907f5b25d7fc177bf54701de4e3067ff94f9c5 (patch) | |
tree | e94c5667d1f0adf4fa36cca19450f61b12b265e0 /gnu | |
parent | 4270d3cf98ec2dc4623e6d8a06f2949bca91bfbb (diff) | |
download | guix-b2907f5b25d7fc177bf54701de4e3067ff94f9c5.tar guix-b2907f5b25d7fc177bf54701de4e3067ff94f9c5.tar.gz |
gnu: texlive-generic-intcalc: Rename to texlive-intcalc.
* gnu/packages/tex.scm (texlive-intcalc): New variable.
(texlive-generic-intcalc): Deprecated alias.
(texlive-hyperref):
(texlive-bitset): Use new name.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/tex.scm | 55 |
1 files changed, 40 insertions, 15 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index 080077ed2c..861ffcc4f7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -3462,7 +3462,7 @@ XML, using UTF-8 or a suitable 8-bit encoding.") texlive-gettitlestring texlive-iftex texlive-infwarerr - texlive-generic-intcalc + texlive-intcalc texlive-generic-kvdefinekeys texlive-generic-kvsetkeys texlive-generic-ltxcmds @@ -8155,7 +8155,7 @@ integers that can exceed TeX's number limits.") (copy-recursively (string-append origin "/source") source) (copy-recursively (string-append origin "/doc") doc)))))))) (propagated-inputs - (list texlive-bigintcalc texlive-infwarerr texlive-generic-intcalc)) + (list texlive-bigintcalc texlive-infwarerr texlive-intcalc)) (home-page "https://www.ctan.org/pkg/bitset") (synopsis "Handle bit-vector datatype") (description @@ -8293,20 +8293,45 @@ complete implementations.") (define-deprecated-package texlive-generic-infwarerr texlive-infwarerr) -(define-public texlive-generic-intcalc - (package - (inherit (simple-texlive-package - "texlive-generic-intcalc" - '("/tex/generic/intcalc/") - (base32 - "0llrnayqwdqxi91yh7panbbiljina3bynv2hxhi6sssaw3pyd92l") - #:trivial? #t)) - (home-page "https://www.ctan.org/pkg/intcalc") - (synopsis "Expandable arithmetic operations with integers") - (description - "This package provides expandable arithmetic operations with integers, +(define-public texlive-intcalc + (let ((template (simple-texlive-package + "texlive-intcalc" + (list "doc/latex/intcalc/" + "source/latex/intcalc/" + "tex/generic/intcalc/") + (base32 + "15alwp9cr8wasfajs3p201p7nqml37vly9mpg1j5l6xv95javk7x")))) + (package + (inherit template) + (outputs '("out" "doc")) + (arguments + (substitute-keyword-arguments (package-arguments template) + ((#:tex-directory _ '()) + "generic/intcalc") + ((#:build-targets _ '()) + #~(list "intcalc.dtx")) + ((#:phases phases) + #~(modify-phases #$phases + (add-after 'unpack 'chdir + (lambda _ + (chdir "source/latex/intcalc"))) + (replace 'copy-files + (lambda* (#:key inputs #:allow-other-keys) + (let ((origin (assoc-ref inputs "source")) + (source (string-append #$output + "/share/texmf-dist/source")) + (doc (string-append #$output:doc + "/share/texmf-dist/doc"))) + (copy-recursively (string-append origin "/source") source) + (copy-recursively (string-append origin "/doc") doc)))))))) + (home-page "https://www.ctan.org/pkg/intcalc") + (synopsis "Expandable arithmetic operations with integers") + (description + "This package provides expandable arithmetic operations with integers, using the e-TeX extension @code{\\numexpr} if it is available.") - (license license:lppl1.3c+))) + (license license:lppl1.3c+)))) + +(define-deprecated-package texlive-generic-intcalc texlive-intcalc) (define-public texlive-generic-kvdefinekeys (package |