From 99952c538b5931bca814b47d840ce83e41e46f4e Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Sun, 4 Jun 2017 18:25:02 +0200 Subject: gnu: Add texlive-generic-unicode-data. * gnu/packages/tex.scm (texlive-generic-unicode-date): New variable. --- gnu/packages/tex.scm | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) (limited to 'gnu') diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm index b1adec5d99..9e05eee516 100644 --- a/gnu/packages/tex.scm +++ b/gnu/packages/tex.scm @@ -218,6 +218,44 @@ to PostScript.") license:expat license:lgpl3+)))) +(define-public texlive-generic-unicode-data + (package + (name "texlive-generic-unicode-data") + (version (number->string %texlive-revision)) + (source (origin + (method svn-fetch) + (uri (svn-reference + (url (string-append "svn://www.tug.org/texlive/tags/" + %texlive-tag "/Master/texmf-dist/" + "/tex/generic/unicode-data")) + (revision %texlive-revision))) + (sha256 + (base32 + "0ivrhp6jz31pl4z841g4ws41lmvdiwz4sslmhf02inlib79gz6r2")))) + (build-system trivial-build-system) + (arguments + `(#:modules ((guix build utils)) + #:builder + (begin + (use-modules (guix build utils)) + (let ((target (string-append (assoc-ref %outputs "out") + "/share/texmf-dist/tex/generic/unicode-data"))) + (mkdir-p target) + (copy-recursively (assoc-ref %build-inputs "source") target) + #t)))) + (home-page "http://www.ctan.org/pkg/unicode-data") + (synopsis "Unicode data and loaders for TeX") + (description "This bundle provides generic access to Unicode Consortium +data for TeX use. It contains a set of text files provided by the Unicode +Consortium which are currently all from Unicode 8.0.0, with the exception of +@code{MathClass.txt} which is not currently part of the Unicode Character +Database. Accompanying these source data are generic TeX loader files +allowing this data to be used as part of TeX runs, in particular in building +format files. Currently there are two loader files: one for general character +set up and one for initializing XeTeX character classes as has been carried +out to date by @code{unicode-letters.tex}. ") + (license license:lppl1.3c+))) + (define texlive-texmf (package (name "texlive-texmf") -- cgit v1.2.3 2020-12-15store-copy: 'populate-store' can optionally deduplicate files....Ludovic Courtès 2020-12-15store-copy: 'populate-store' resets timestamps....Ludovic Courtès 2020-11-05gexp: Warn when importing (guix config) or (ice-9 …)....Ludovic Courtès 2020-11-05gexp: Store the source code location in <gexp>....Ludovic Courtès 2020-05-25gexp: Fix expansion for (file-append (local-file ...) ...)....Ludovic Courtès 2020-05-25tests: Hide quoted (define-module ...) form from Geiser....Ludovic Courtès 2020-05-16gexp: Add 'let-system'....Ludovic Courtès 2020-03-12gexp: Add 'with-parameters'....Ludovic Courtès 2020-03-08gexp: Default to current target....Mathieu Othacehe 2020-01-04gexp: Add 'raw-derivation-file'....Ludovic Courtès 2019-12-18gexp: Allow character literals in GEXP->SEXP....Marius Bakke 2019-11-30gexp: 'local-file' properly resolves non-literal relative file names....Ludovic Courtès 2019-09-23gexp: Catch and report non-self-quoting gexp inputs....Ludovic Courtès 2019-07-26gexp: 'program-file' honors the current system and cross-compilation target....Ludovic Courtès 2019-07-15gexp: 'lowered-gexp-guile' now returns a <derivation-input>....Ludovic Courtès 2019-07-15gexp: <lowered-gexp> separates sources from derivation inputs....Ludovic Courtès 2019-07-04gexp: Add 'lower-gexp' and express 'gexp->derivation' in terms of it....Ludovic Courtès 2019-01-21store: Rename '&nix-error' to '&store-error'....Ludovic Courtès 2019-01-05gexp: Lowering a <computed-file> honors SYSTEM and TARGET....Ludovic Courtès 2018-11-29Merge branch 'master' into core-updatesMarius Bakke 2018-11-28derivations: Add properties....Ludovic Courtès 2018-11-14Merge branch 'master' into core-updatesMarius Bakke 2018-11-12tests: Add 'test-assertm' to (guix tests)....Ludovic Courtès 2018-11-05Merge branch 'master' into core-updatesMarius Bakke 2018-10-27gexp: 'gexp-modules' now consistently deletes duplicates....Ludovic Courtès 2018-10-05Merge branch 'master' into core-updatesMarius Bakke 2018-09-27tests: Update (guix build store-copy) tests....Ludovic Courtès 2018-09-09Merge branch 'master' into core-updatesMarius Bakke 2018-09-08gexp: 'file-union' accepts directory names....Ludovic Courtès