gnu: zile: Update to 2.6.2.
* gnu/packages/zile.scm (zile): Update to 2.6.2. [arguments]: Adjust file list in custom 'patch-/bin/sh phase. [inputs]: Add gee and glib. Signed-off-by: Mathieu Othacehe <othacehe@gnu.org>
This commit is contained in:
		
							parent
							
								
									2a1fde403d
								
							
						
					
					
						commit
						da40d07066
					
				
					 1 changed files with 9 additions and 4 deletions
				
			
		| 
						 | 
					@ -4,6 +4,7 @@
 | 
				
			||||||
;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 | 
					;;; Copyright © 2016 Efraim Flashner <efraim@flashner.co.il>
 | 
				
			||||||
;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 | 
					;;; Copyright © 2018, 2020 Tobias Geerinckx-Rice <me@tobias.gr>
 | 
				
			||||||
;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
 | 
					;;; Copyright © 2020 Marius Bakke <mbakke@fastmail.com>
 | 
				
			||||||
 | 
					;;; Copyright © 2021 Matthew James Kraai <kraai@ftbfs.org>
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
;;; This file is part of GNU Guix.
 | 
					;;; This file is part of GNU Guix.
 | 
				
			||||||
;;;
 | 
					;;;
 | 
				
			||||||
| 
						 | 
					@ -30,7 +31,9 @@
 | 
				
			||||||
  #:use-module (gnu packages autotools)
 | 
					  #:use-module (gnu packages autotools)
 | 
				
			||||||
  #:use-module (gnu packages bash)
 | 
					  #:use-module (gnu packages bash)
 | 
				
			||||||
  #:use-module (gnu packages bdw-gc)
 | 
					  #:use-module (gnu packages bdw-gc)
 | 
				
			||||||
 | 
					  #:use-module (gnu packages glib)
 | 
				
			||||||
  #:use-module (gnu packages guile)
 | 
					  #:use-module (gnu packages guile)
 | 
				
			||||||
 | 
					  #:use-module (gnu packages gnome)
 | 
				
			||||||
  #:use-module (gnu packages gnupg)
 | 
					  #:use-module (gnu packages gnupg)
 | 
				
			||||||
  #:use-module (gnu packages m4)
 | 
					  #:use-module (gnu packages m4)
 | 
				
			||||||
  #:use-module (gnu packages man)
 | 
					  #:use-module (gnu packages man)
 | 
				
			||||||
| 
						 | 
					@ -42,14 +45,14 @@
 | 
				
			||||||
(define-public zile
 | 
					(define-public zile
 | 
				
			||||||
  (package
 | 
					  (package
 | 
				
			||||||
    (name "zile")
 | 
					    (name "zile")
 | 
				
			||||||
    (version "2.4.15")
 | 
					    (version "2.6.2")
 | 
				
			||||||
    (source (origin
 | 
					    (source (origin
 | 
				
			||||||
             (method url-fetch)
 | 
					             (method url-fetch)
 | 
				
			||||||
             (uri (string-append "mirror://gnu/zile/zile-"
 | 
					             (uri (string-append "mirror://gnu/zile/zile-"
 | 
				
			||||||
                                 version ".tar.gz"))
 | 
					                                 version ".tar.gz"))
 | 
				
			||||||
             (sha256
 | 
					             (sha256
 | 
				
			||||||
              (base32
 | 
					              (base32
 | 
				
			||||||
               "0ph3wd0cz3ysdyka6ds2w5l5b89mb5l79kwkfyk7phvq9yih1hrr"))))
 | 
					               "0hf788zadmwx0xp1dhrgqcfvhwnarh6h9b51va4dr2y9yfppvsvp"))))
 | 
				
			||||||
    (build-system gnu-build-system)
 | 
					    (build-system gnu-build-system)
 | 
				
			||||||
    (arguments
 | 
					    (arguments
 | 
				
			||||||
     `(#:phases
 | 
					     `(#:phases
 | 
				
			||||||
| 
						 | 
					@ -58,7 +61,7 @@
 | 
				
			||||||
           (lambda* (#:key inputs #:allow-other-keys)
 | 
					           (lambda* (#:key inputs #:allow-other-keys)
 | 
				
			||||||
             (let ((bash (assoc-ref inputs "bash")))
 | 
					             (let ((bash (assoc-ref inputs "bash")))
 | 
				
			||||||
               ;; Refer to the actual shell.
 | 
					               ;; Refer to the actual shell.
 | 
				
			||||||
               (substitute* '("lib/spawni.c" "src/funcs.c")
 | 
					               (substitute* '("src/shell.c")
 | 
				
			||||||
                 (("/bin/sh")
 | 
					                 (("/bin/sh")
 | 
				
			||||||
                  (string-append bash "/bin/sh")))
 | 
					                  (string-append bash "/bin/sh")))
 | 
				
			||||||
               #t)))
 | 
					               #t)))
 | 
				
			||||||
| 
						 | 
					@ -76,7 +79,9 @@
 | 
				
			||||||
    (inputs
 | 
					    (inputs
 | 
				
			||||||
     `(("boehm-gc" ,libgc)
 | 
					     `(("boehm-gc" ,libgc)
 | 
				
			||||||
       ("ncurses" ,ncurses)
 | 
					       ("ncurses" ,ncurses)
 | 
				
			||||||
       ("bash" ,bash)))
 | 
					       ("bash" ,bash)
 | 
				
			||||||
 | 
					       ("gee" ,libgee)
 | 
				
			||||||
 | 
					       ("glib" ,glib)))
 | 
				
			||||||
    (native-inputs
 | 
					    (native-inputs
 | 
				
			||||||
     `(("perl" ,perl)
 | 
					     `(("perl" ,perl)
 | 
				
			||||||
       ("help2man" ,help2man)
 | 
					       ("help2man" ,help2man)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Reference in a new issue