diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-06-18 16:14:54 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2023-07-18 18:15:12 +0200 |
commit | dcf85e46bb1981f8c557d651ccfd83c295c080fe (patch) | |
tree | c65cb2e8cde8566e96d22ca33b6449d71ee6945e | |
parent | 8b5b87730e388ce420d95c9e045a5dda20d7e7db (diff) | |
download | guix-dcf85e46bb1981f8c557d651ccfd83c295c080fe.tar.gz guix-dcf85e46bb1981f8c557d651ccfd83c295c080fe.zip |
gnu: Add texlive-pdfmanagement-testphase.
* gnu/packages/tex.scm (texlive-pdfmanagement-testphase): New variable.
-rw-r--r-- | gnu/packages/tex.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index dd536ecdee..86efb4b132 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -12092,6 +12092,32 @@ attribute. Pages with this attribute will be displayed in landscape orientation by conforming PDF viewers.") (license license:lppl1.3+))) +(define-public texlive-pdfmanagement-testphase + (package + (name "texlive-pdfmanagement-testphase") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/latex/pdfmanagement-testphase/" + "source/latex/pdfmanagement-testphase/" + "tex/latex/pdfmanagement-testphase/") + (base32 + "0lxnr7xzis376fmkcyk7ghyj1x7m9yvlg98fvvy6vc4b26hf2kyk"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/pdfmanagement-testphase") + (synopsis "LaTeX PDF management testphase bundle") + (description + "This is a temporary package, which is used during a test phase to load +the new PDF management code of LaTeX. The new PDF management code offers +backend-independent interfaces to central PDF dictionaries, tools to create +annotations, form Xobjects, to embed files, and to handle PDF standards. The +code is provided, during a testphase, as an independent package to allow users +and package authors to safely test the code. At a later stage it will be +integrated into the LaTeX kernel (or in parts into permanent support +packages), and the current testphase bundle will be removed.") + (license license:lppl1.3c))) + (define-public texlive-pslatex (package (name "texlive-pslatex") |