mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-10 13:40:20 +01:00
gnu: texlive-generic-uniquecounter: Rename to texlive-uniquecounter.
* gnu/packages/tex.scm (texlive-uniquecounter): New variable. (texlive-generic-uniquecounter): Deprecated alias. (texlive-latex-rerunfilecheck): Use new name.
This commit is contained in:
parent
774042fede
commit
b3fb3c10b8
1 changed files with 41 additions and 17 deletions
|
@ -3536,7 +3536,7 @@ arrows; record information about document class(es) used; and many more.")
|
||||||
#:trivial? #t))
|
#:trivial? #t))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list texlive-atveryend texlive-infwarerr
|
(list texlive-atveryend texlive-infwarerr
|
||||||
texlive-generic-uniquecounter texlive-latex-kvoptions
|
texlive-uniquecounter texlive-latex-kvoptions
|
||||||
texlive-pdftexcmds))
|
texlive-pdftexcmds))
|
||||||
(home-page "https://www.ctan.org/pkg/rerunfilecheck")
|
(home-page "https://www.ctan.org/pkg/rerunfilecheck")
|
||||||
(synopsis "Checksum based rerun checks on auxiliary files")
|
(synopsis "Checksum based rerun checks on auxiliary files")
|
||||||
|
@ -8531,24 +8531,48 @@ using TeX or e-TeX.")
|
||||||
|
|
||||||
(define-deprecated-package texlive-generic-pdfescape texlive-pdfescape)
|
(define-deprecated-package texlive-generic-pdfescape texlive-pdfescape)
|
||||||
|
|
||||||
(define-public texlive-generic-uniquecounter
|
(define-public texlive-uniquecounter
|
||||||
(package
|
(let ((template (simple-texlive-package
|
||||||
(inherit (simple-texlive-package
|
"texlive-uniquecounter"
|
||||||
"texlive-generic-uniquecounter"
|
(list "doc/latex/uniquecounter/"
|
||||||
'("/doc/latex/uniquecounter/"
|
"source/latex/uniquecounter/"
|
||||||
"/tex/generic/uniquecounter/")
|
"tex/generic/uniquecounter/")
|
||||||
(base32
|
(base32
|
||||||
"1bjh8vwiqlkmjqndnh4xp116524x4m3hdcyq2s231jiqy8il8dcc")
|
"1ll3iwk8x44l3qx1dhna399ngg66vbllivv8i3lwzriwkx22xbf3"))))
|
||||||
#:trivial? #t))
|
(package
|
||||||
(propagated-inputs
|
(inherit template)
|
||||||
(list texlive-bigintcalc texlive-infwarerr))
|
(outputs '("out" "doc"))
|
||||||
(home-page "https://www.ctan.org/pkg/uniquecounter")
|
(arguments
|
||||||
(synopsis "Unlimited unique counter")
|
(substitute-keyword-arguments (package-arguments template)
|
||||||
(description
|
((#:tex-directory _ '())
|
||||||
"This package provides a kind of counter that provides unique number
|
"generic/uniquecounter")
|
||||||
|
((#:build-targets _ '())
|
||||||
|
#~(list "uniquecounter.dtx"))
|
||||||
|
((#:phases phases)
|
||||||
|
#~(modify-phases #$phases
|
||||||
|
(add-after 'unpack 'chdir
|
||||||
|
(lambda _
|
||||||
|
(chdir "source/latex/uniquecounter")))
|
||||||
|
(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))))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list texlive-bigintcalc texlive-infwarerr))
|
||||||
|
(home-page "https://www.ctan.org/pkg/uniquecounter")
|
||||||
|
(synopsis "Unlimited unique counter")
|
||||||
|
(description
|
||||||
|
"This package provides a kind of counter that provides unique number
|
||||||
values. Several counters can be created with different names. The numeric
|
values. Several counters can be created with different names. The numeric
|
||||||
values are not limited.")
|
values are not limited.")
|
||||||
(license license:lppl1.3c+)))
|
(license license:lppl1.3c+))))
|
||||||
|
|
||||||
|
(define-deprecated-package texlive-generic-uniquecounter texlive-uniquecounter)
|
||||||
|
|
||||||
(define-public texlive-latex-readarray
|
(define-public texlive-latex-readarray
|
||||||
(package
|
(package
|
||||||
|
|
Loading…
Add table
Reference in a new issue