From 80a0fd737f78200a1a9ce01317af51dbd57f6163 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Thu, 20 Jul 2023 10:48:36 +0200 Subject: gnu: Add texlive-epsf-dvipdfmx. * gnu/packages/tex.scm (texlive-epsf-dvipdfmx): New variable. --- gnu/packages/tex.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index ac8f49f616..787192c8b7 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -2386,6 +2386,27 @@ epigram, laid out on a single line) whether to produce a line or a displayed paragraph.") (license license:public-domain))) +(define-public texlive-epsf-dvipdfmx + (package + (name "texlive-epsf-dvipdfmx") + (version (number->string %texlive-revision)) + (source (texlive-origin + name version + (list "doc/plain/epsf-dvipdfmx/" + "tex/plain/epsf-dvipdfmx/") + (base32 + "0xj4hag3nldxxjcpympvra5cdn19nk76af9dxq07ci585gcki3x5"))) + (outputs '("out" "doc")) + (build-system texlive-build-system) + (home-page "https://ctan.org/pkg/epsf-dvipdfmx") + (synopsis "Plain TeX file for using epsf.tex with (x)dvipdfmx") + (description + "@file{epsf-dvipdfmx.tex} is a plain TeX file to be @code{\\input} after +@file{epsf.tex} when using plain TeX with @code{dvipdfmx}. It is needed when +an @file{.eps} file has anything except the origin for the lower-left of its +bounding box.") + (license license:public-domain))) + (define-public texlive-findhyph (package (name "texlive-findhyph") -- cgit v1.2.3 -paths.scm?id=93b86f7362106ef84c0820e8c4d548cc816f7334'>diff
path: root/tests/search-paths.scm
AgeCommit message (Collapse)Author
2019-06-14build: Remove 'gnu/packages/bootstrap' and its binaries.Ludovic Courtès
* gnu/local.mk (bootstrapdir, bootstrap_i686_linuxdir) (bootstrap_armhf_linuxdir, bootstrap_aarch64_linuxdir) (bootstrap_mips64el_linuxdir, dist_bootstrap_i686_linux_DATA) (dist_bootstrap_armhf_linux_DATA, dist_bootstrap_aarch64_linux_DATA) (dist_bootstrap_mips64el_linux_DATA): Remove. (set-bootstrap-executable-permissions): Remove target. * Makefile.am (install-data-hook): Remove dependency on 'set-bootstrap-executable-permissions'. * gnu/packages/bootstrap: Remove directory. * tests/search-paths.scm ("evaluate-search-paths, separator is #f"): Adjust to match .../aux-files/linux-libre.
2017-04-04tests: Adjust search-paths test following the introduction of aarch64.Ludovic Courtès
Fixes a regression introduced in 3b88f3767d9f3ad2cc64173525cd53d429bfe7e7. * tests/search-paths.scm ("evaluate-search-paths, separator is #f"): Change the expected result to "aarch64-linux".
2017-01-23search-paths: Allow specs with #f as their separator.Ludovic Courtès
This adds support for single-entry search paths. Fixes <http://bugs.gnu.org/25422>. Reported by Leo Famulari <leo@famulari.name>. * guix/search-paths.scm (<search-path-specification>)[separator]: Document as string or #f. (evaluate-search-paths): Add case for SEPARATOR as #f. (environment-variable-definition): Handle SEPARATOR being #f. * guix/build/utils.scm (list->search-path-as-string): Add case for SEPARATOR as #f. (search-path-as-string->list): Likewise. * guix/build/profiles.scm (abstract-profile): Likewise. * tests/search-paths.scm: New file. * Makefile.am (SCM_TESTS): Add it. * tests/packages.scm ("--search-paths with single-item search path"): New test. * gnu/packages/version-control.scm (git)[native-search-paths](separator): New field.