[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/111: gnu: Add texlive-unicode-data.
From: |
guix-commits |
Subject: |
08/111: gnu: Add texlive-unicode-data. |
Date: |
Tue, 16 Jul 2019 09:20:47 -0400 (EDT) |
rekado pushed a commit to branch wip-texlive
in repository guix.
commit 1adf89409be8acc6ad3b89efe73f73d8ce2bb9f1
Author: Ricardo Wurmus <address@hidden>
Date: Sat Jul 6 23:08:21 2019 +0200
gnu: Add texlive-unicode-data.
* gnu/packages/tex.scm (texlive-unicode-data): New variable.
(texlive-generic-unicode-data): Deprecate package.
---
gnu/packages/tex.scm | 65 +++++++++++++++++++++-------------------------------
1 file changed, 26 insertions(+), 39 deletions(-)
diff --git a/gnu/packages/tex.scm b/gnu/packages/tex.scm
index bc89709..e5c4e17 100644
--- a/gnu/packages/tex.scm
+++ b/gnu/packages/tex.scm
@@ -411,6 +411,32 @@ This package contains the binaries.")
(license (license:fsf-free "https://www.tug.org/texlive/copying.html"))
(home-page "https://www.tug.org/texlive/")))
+
+(define-public texlive-unicode-data
+ (package
+ (inherit (simple-texlive-package
+ "texlive-unicode-data"
+ (list "/tex/generic/unicode-data/"
+ "/doc/generic/unicode-data/")
+ (base32
+ "0dr3an5z0jp7pb3qc3dlk8m3bzyb1k3sps93pcbn9531rc4gfy9b")
+ #:trivial? #t))
+ (home-page "https://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-public texlive-generic-unicode-data
+ (deprecated-package "texlive-generic-unicode-data" texlive-unicode-data))
+
(define-public texlive-dvips
(package
(name "texlive-dvips")
@@ -478,45 +504,6 @@ 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)))
- (file-name (string-append name "-" version "-checkout"))
- (sha256
- (base32
- "0r1v16jyfpz6dwqsgm6b9jcj4kf2pkzc9hg07s6fx9g8ba8qglih"))))
- (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 "https://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-public texlive-generic-dehyph-exptl
(package
(name "texlive-generic-dehyph-exptl")
- branch wip-texlive created (now 9736df7), guix-commits, 2019/07/16
- 02/111: build: svn-fetch: Use "svn export"., guix-commits, 2019/07/16
- 01/111: gnu: texlive-union: Build font maps., guix-commits, 2019/07/16
- 04/111: build-system/texlive: Add texlive-origin., guix-commits, 2019/07/16
- 05/111: gnu: Add simple-texlive-package., guix-commits, 2019/07/16
- 06/111: gnu: Add hyph-utf8-scripts., guix-commits, 2019/07/16
- 09/111: gnu: Add texlive-hyphen-base., guix-commits, 2019/07/16
- 11/111: gnu: Add texlive-dehyph-exptl., guix-commits, 2019/07/16
- 13/111: gnu: texlive-fonts-cm: Remove cm-type1., guix-commits, 2019/07/16
- 03/111: guix: Add svn-multi-reference., guix-commits, 2019/07/16
- 08/111: gnu: Add texlive-unicode-data.,
guix-commits <=
- 12/111: gnu: texlive-dvips: Implement with simple-texlive-package., guix-commits, 2019/07/16
- 16/111: gnu: Add texlive-hyphen-afrikaans., guix-commits, 2019/07/16
- 10/111: gnu: Add texlive-hyph-utf8., guix-commits, 2019/07/16
- 19/111: gnu: Add texlive-hyphen-basque., guix-commits, 2019/07/16
- 15/111: gnu: Add texlive-tex-ini-files., guix-commits, 2019/07/16
- 07/111: gnu: Add texlive-hyphen-package., guix-commits, 2019/07/16
- 14/111: gnu: texlive-fonts-cm: Use simple-texlive-package., guix-commits, 2019/07/16
- 20/111: gnu: Add texlive-mkpattern., guix-commits, 2019/07/16
- 22/111: gnu: Add texlive-hyphen-bulgarian., guix-commits, 2019/07/16
- 18/111: gnu: Add texlive-hyphen-armenian., guix-commits, 2019/07/16