me
/
guix
Archived
1
0
Fork 0

gnu: texlive-latex-bookmark -> texlive-bookmark.

* gnu/packages/tex.scm (texlive-bookmark): New variable.
(texlive-latex-bookmark): Deprecate variable.
* gnu/packages/docbook.scm (dblatex): Use new name.
Nicolas Goaziou 2023-05-13 16:10:15 +02:00
parent c2cefad5c8
commit ae465393d9
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
2 changed files with 23 additions and 10 deletions

View File

@ -537,7 +537,7 @@ the in DocBook SGML DTDs.")
`(("texlive" ,(texlive-updmap.cfg (list texlive-amsfonts `(("texlive" ,(texlive-updmap.cfg (list texlive-amsfonts
texlive-anysize texlive-anysize
texlive-appendix texlive-appendix
texlive-latex-bookmark texlive-bookmark
texlive-latex-changebar texlive-latex-changebar
texlive-latex-colortbl texlive-latex-colortbl
texlive-latex-fancybox texlive-latex-fancybox

View File

@ -6514,23 +6514,36 @@ be used, for example, for per chapter/section appendices. An
(define-deprecated-package texlive-latex-appendix texlive-appendix) (define-deprecated-package texlive-latex-appendix texlive-appendix)
(define-public texlive-latex-bookmark (define-public texlive-bookmark
(package (package
(inherit (simple-texlive-package (name "texlive-bookmark")
"texlive-latex-bookmark" (version (number->string %texlive-revision))
(list "/doc/latex/bookmark/" (source (texlive-origin
"/tex/latex/bookmark/") name version
(base32 (list "doc/latex/bookmark/"
"0xwjdah0p4an0fknvgj9y5phl62sf522z6570pvy6c09hkz0j4h1") "source/latex/bookmark/"
#:trivial? #t)) "tex/latex/bookmark/")
(base32
"111sjwabcbr8ry8fh94ywpzska032y8r4iz4waxa4kf5l3k0p4bs")))
(outputs '("out" "doc"))
(build-system texlive-build-system)
(arguments
(list #:build-targets #~(list "bookmark.dtx")))
(propagated-inputs
(list texlive-atenddvi
texlive-atveryend
texlive-auxhook
texlive-hyperref))
(home-page "https://www.ctan.org/pkg/bookmark") (home-page "https://www.ctan.org/pkg/bookmark")
(synopsis "Bookmark (outline) organization for hyperref") (synopsis "Bookmark (outline) organization for @code{hyperref}")
(description (description
"This package implements a new bookmark (outline) organization for the "This package implements a new bookmark (outline) organization for the
@code{hyperref} package. Bookmark properties such as style and color. Other @code{hyperref} package. Bookmark properties such as style and color. Other
action types are available (URI, GoToR, Named).") action types are available (URI, GoToR, Named).")
(license license:lppl1.3c+))) (license license:lppl1.3c+)))
(define-deprecated-package texlive-latex-bookmark texlive-bookmark)
(define-public texlive-latex-changebar (define-public texlive-latex-changebar
(package (package
(name "texlive-latex-changebar") (name "texlive-latex-changebar")