gnu: Add texlive-charter.
* gnu/packages/tex.scm (texlive-charter): New variable. (texlive-fonts-charter): Deprecate package.
This commit is contained in:
		
							parent
							
								
									8fee5067b2
								
							
						
					
					
						commit
						1f50ae6346
					
				
					 1 changed files with 19 additions and 64 deletions
				
			
		| 
						 | 
					@ -7258,74 +7258,29 @@ be specified in the document itself (one often needs a LaTeX citation-style
 | 
				
			||||||
package, such as @command{natbib} as well).")
 | 
					package, such as @command{natbib} as well).")
 | 
				
			||||||
    (license license:knuth)))
 | 
					    (license license:knuth)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public texlive-fonts-charter
 | 
					(define-public texlive-charter
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "texlive-fonts-charter")
 | 
					    (inherit (simple-texlive-package
 | 
				
			||||||
    (version (number->string %texlive-revision))
 | 
					              "texlive-charter"
 | 
				
			||||||
    (source (origin
 | 
					              (list "/doc/fonts/charter/readme.charter"
 | 
				
			||||||
              (method svn-fetch)
 | 
					                    "/fonts/afm/bitstrea/charter/"
 | 
				
			||||||
              (uri (svn-reference
 | 
					                    "/fonts/tfm/bitstrea/charter/"
 | 
				
			||||||
                    (url (string-append "svn://www.tug.org/texlive/tags/"
 | 
					                    "/fonts/type1/bitstrea/charter/"
 | 
				
			||||||
                                        %texlive-tag "/Master/texmf-dist/"
 | 
					                    "/fonts/vf/bitstrea/charter/")
 | 
				
			||||||
                                        "/fonts/type1/bitstrea/charter"))
 | 
					 | 
				
			||||||
                    (revision %texlive-revision)))
 | 
					 | 
				
			||||||
              (file-name (string-append name "-" version "-checkout"))
 | 
					 | 
				
			||||||
              (sha256
 | 
					 | 
				
			||||||
              (base32
 | 
					              (base32
 | 
				
			||||||
                "0yvib45xxff3jm5270zij4q888pivbc18cqs7lz4pqfhn1am4wnv"))))
 | 
					               "09l5ymgz48s3hyn776l01g3isk3dnhrj1vdavdw4qq4kfxxpqdn9")
 | 
				
			||||||
    (build-system trivial-build-system)
 | 
					              #:trivial? #t))
 | 
				
			||||||
    (arguments
 | 
					 | 
				
			||||||
     `(#:modules ((guix build utils)
 | 
					 | 
				
			||||||
                  (ice-9 match))
 | 
					 | 
				
			||||||
       #:builder
 | 
					 | 
				
			||||||
       (begin
 | 
					 | 
				
			||||||
         (use-modules (guix build utils)
 | 
					 | 
				
			||||||
                      (ice-9 match))
 | 
					 | 
				
			||||||
         (let ((root (string-append (assoc-ref %outputs "out")
 | 
					 | 
				
			||||||
                                    "/share/texmf-dist/"))
 | 
					 | 
				
			||||||
               (pkgs '(("source" . "fonts/type1/bitstrea/charter")
 | 
					 | 
				
			||||||
                       ("charter-afm" . "fonts/afm/bitstrea/charter")
 | 
					 | 
				
			||||||
                       ("charter-tfm" . "fonts/tfm/bitstrea/charter"))))
 | 
					 | 
				
			||||||
           (for-each (match-lambda
 | 
					 | 
				
			||||||
                       ((pkg . dir)
 | 
					 | 
				
			||||||
                        (let ((target (string-append root dir)))
 | 
					 | 
				
			||||||
                          (mkdir-p target)
 | 
					 | 
				
			||||||
                          (copy-recursively (assoc-ref %build-inputs pkg)
 | 
					 | 
				
			||||||
                                            target))))
 | 
					 | 
				
			||||||
                     pkgs)
 | 
					 | 
				
			||||||
           #t))))
 | 
					 | 
				
			||||||
    (native-inputs
 | 
					 | 
				
			||||||
     `(("charter-afm"
 | 
					 | 
				
			||||||
        ,(origin
 | 
					 | 
				
			||||||
           (method svn-fetch)
 | 
					 | 
				
			||||||
           (uri (svn-reference
 | 
					 | 
				
			||||||
                 (url (string-append "svn://www.tug.org/texlive/tags/"
 | 
					 | 
				
			||||||
                                     %texlive-tag "/Master/texmf-dist/"
 | 
					 | 
				
			||||||
                                     "/fonts/afm/bitstrea/charter"))
 | 
					 | 
				
			||||||
                 (revision %texlive-revision)))
 | 
					 | 
				
			||||||
           (file-name (string-append name "-afm-" version "-checkout"))
 | 
					 | 
				
			||||||
           (sha256
 | 
					 | 
				
			||||||
            (base32
 | 
					 | 
				
			||||||
             "02nbkqrlr3vypnzslmr7dxg1353mmc0rl4ynx0s6qbvf313fq76a"))))
 | 
					 | 
				
			||||||
       ("charter-tfm"
 | 
					 | 
				
			||||||
        ,(origin
 | 
					 | 
				
			||||||
           (method svn-fetch)
 | 
					 | 
				
			||||||
           (uri (svn-reference
 | 
					 | 
				
			||||||
                 (url (string-append "svn://www.tug.org/texlive/tags/"
 | 
					 | 
				
			||||||
                                     %texlive-tag "/Master/texmf-dist/"
 | 
					 | 
				
			||||||
                                     "/fonts/tfm/bitstrea/charter"))
 | 
					 | 
				
			||||||
                 (revision %texlive-revision)))
 | 
					 | 
				
			||||||
           (file-name (string-append name "-tfm-" version "-checkout"))
 | 
					 | 
				
			||||||
           (sha256
 | 
					 | 
				
			||||||
            (base32
 | 
					 | 
				
			||||||
             "0j7ci9vprivbhac70aq0z7m23hqcpx1g0i3wp1k0h8ilhimj80xk"))))))
 | 
					 | 
				
			||||||
    (home-page "https://www.ctan.org/pkg/charter")
 | 
					    (home-page "https://www.ctan.org/pkg/charter")
 | 
				
			||||||
    (synopsis "Charter fonts for TeX")
 | 
					    (synopsis "Charter fonts for TeX")
 | 
				
			||||||
    (description "A commercial text font donated for the common good.  Support
 | 
					    (description "This package provides a copy of the Charter Type-1 fonts
 | 
				
			||||||
for use with LaTeX is available in @code{freenfss}, part of
 | 
					which Bitstream contributed to the X consortium, renamed for use with TeX.
 | 
				
			||||||
 | 
					Support for use with LaTeX is available in @code{freenfss}, part of
 | 
				
			||||||
@command{psnfss}. ")
 | 
					@command{psnfss}. ")
 | 
				
			||||||
    (license (license:non-copyleft (string-append "http://mirrors.ctan.org/"
 | 
					    (license (license:non-copyleft
 | 
				
			||||||
                                                  "fonts/charter/readme.charter")))))
 | 
					              "http://mirrors.ctan.org/fonts/charter/readme.charter"))))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(define-public texlive-fonts-charter
 | 
				
			||||||
 | 
					  (deprecated-package "texlive-fonts-charter" texlive-charter))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public texlive-context-base
 | 
					(define-public texlive-context-base
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue