gnu: texlive-generic-listofitems -> texlive-listofitems.
* gnu/packages/tex.scm (texlive-listofitems): New variable. (texlive-generic-listofitems): Deprecate variable. (texlive-latex-readarray): * gnu/packages/maths.scm (hypre): Use new name.
This commit is contained in:
		
							parent
							
								
									68a7e9c749
								
							
						
					
					
						commit
						40b0c09d27
					
				
					 2 changed files with 18 additions and 30 deletions
				
			
		| 
						 | 
					@ -5797,7 +5797,7 @@ set.")
 | 
				
			||||||
                                     texlive-wasy
 | 
					                                     texlive-wasy
 | 
				
			||||||
                                     texlive-xcolor
 | 
					                                     texlive-xcolor
 | 
				
			||||||
                                     texlive-xypic
 | 
					                                     texlive-xypic
 | 
				
			||||||
                                     texlive-generic-listofitems
 | 
					                                     texlive-listofitems
 | 
				
			||||||
                                     texlive-latex-cmap
 | 
					                                     texlive-latex-cmap
 | 
				
			||||||
                                     texlive-latex-colortbl
 | 
					                                     texlive-latex-colortbl
 | 
				
			||||||
                                     texlive-latex-float
 | 
					                                     texlive-latex-float
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -9590,40 +9590,28 @@ level of curly braces are removed from the values.")
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-deprecated-package texlive-generic-kvsetkeys texlive-kvsetkeys)
 | 
					(define-deprecated-package texlive-generic-kvsetkeys texlive-kvsetkeys)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public texlive-generic-listofitems
 | 
					(define-public texlive-listofitems
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "texlive-generic-listofitems")
 | 
					    (name "texlive-listofitems")
 | 
				
			||||||
    (version (number->string %texlive-revision))
 | 
					    (version (number->string %texlive-revision))
 | 
				
			||||||
    (source (origin
 | 
					    (source (texlive-origin
 | 
				
			||||||
              (method svn-fetch)
 | 
					             name version
 | 
				
			||||||
              (uri (svn-reference
 | 
					             (list "doc/generic/listofitems"
 | 
				
			||||||
                    (url (string-append "svn://www.tug.org/texlive/tags/"
 | 
					                   "tex/generic/listofitems")
 | 
				
			||||||
                                        %texlive-tag "/Master/texmf-dist/"
 | 
					 | 
				
			||||||
                                        "/tex/generic/listofitems"))
 | 
					 | 
				
			||||||
                    (revision %texlive-revision)))
 | 
					 | 
				
			||||||
              (file-name (string-append name "-" version "-checkout"))
 | 
					 | 
				
			||||||
              (sha256
 | 
					 | 
				
			||||||
             (base32
 | 
					             (base32
 | 
				
			||||||
                "1wnbnfrhi6hgqa78jsw6hljzi03i5x99mlr5n2419hgws52hk67y"))))
 | 
					              "1vzp4qkpfxzgcll1ak9syyc91sl93k9wr5rgfqvd6d6rgrnh3ava")))
 | 
				
			||||||
    (build-system trivial-build-system)
 | 
					    (outputs '("out" "doc"))
 | 
				
			||||||
    (arguments
 | 
					    (build-system texlive-build-system)
 | 
				
			||||||
     `(#:modules ((guix build utils))
 | 
					    (home-page "https://ctan.org/pkg/listofitems")
 | 
				
			||||||
       #:builder
 | 
					 | 
				
			||||||
       (begin
 | 
					 | 
				
			||||||
         (use-modules (guix build utils))
 | 
					 | 
				
			||||||
         (let ((target (string-append (assoc-ref %outputs "out")
 | 
					 | 
				
			||||||
                                      "/share/texmf-dist/tex/generic/listofitems")))
 | 
					 | 
				
			||||||
           (mkdir-p target)
 | 
					 | 
				
			||||||
           (copy-recursively (assoc-ref %build-inputs "source") target)
 | 
					 | 
				
			||||||
           #t))))
 | 
					 | 
				
			||||||
    (home-page "https://www.ctan.org/pkg/listofitems")
 | 
					 | 
				
			||||||
    (synopsis "Grab items in lists using user-specified separation character")
 | 
					    (synopsis "Grab items in lists using user-specified separation character")
 | 
				
			||||||
    (description
 | 
					    (description
 | 
				
			||||||
     "This package allows one to capture all the items of a list, for which
 | 
					     "This package is designed to read a list, for which the parsing character
 | 
				
			||||||
the parsing character has been selected by the user, and to access any of
 | 
					has been selected by the user, and to access any of these items with a simple
 | 
				
			||||||
these items with a simple syntax.")
 | 
					interface.")
 | 
				
			||||||
    (license license:lppl1.3c+)))
 | 
					    (license license:lppl1.3c+)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					(define-deprecated-package texlive-generic-listofitems texlive-listofitems)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(define-public texlive-ltxcmds
 | 
					(define-public texlive-ltxcmds
 | 
				
			||||||
  (let ((template (simple-texlive-package
 | 
					  (let ((template (simple-texlive-package
 | 
				
			||||||
                   "texlive-ltxcmds"
 | 
					                   "texlive-ltxcmds"
 | 
				
			||||||
| 
						 | 
					@ -9734,7 +9722,7 @@ values are not limited.")
 | 
				
			||||||
           (copy-recursively (assoc-ref %build-inputs "source") target)
 | 
					           (copy-recursively (assoc-ref %build-inputs "source") target)
 | 
				
			||||||
           #t))))
 | 
					           #t))))
 | 
				
			||||||
    (propagated-inputs
 | 
					    (propagated-inputs
 | 
				
			||||||
     (list texlive-generic-listofitems))
 | 
					     (list texlive-listofitems))
 | 
				
			||||||
    (home-page "https://www.ctan.org/pkg/readarray")
 | 
					    (home-page "https://www.ctan.org/pkg/readarray")
 | 
				
			||||||
    (synopsis "Read, store and recall array-formatted data")
 | 
					    (synopsis "Read, store and recall array-formatted data")
 | 
				
			||||||
    (description
 | 
					    (description
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue