gnu: colordiff: Update to 1.0.18.

Also add the non-archive URL, which was probably the intention of commit
8d479d27ca.  Better late than never.

* gnu/packages/patchutils.scm (colordiff): Update to 1.0.18.
master
Tobias Geerinckx-Rice 2018-01-12 12:10:19 +01:00
parent 138c08899b
commit 58e3603e7f
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 9 additions and 6 deletions

View File

@ -1,6 +1,7 @@
;;; GNU Guix --- Functional package management for GNU ;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org> ;;; Copyright © 2014 Eric Bavier <bavier@member.fsf.org>
;;; Copyright © 2015 Leo Famulari <leo@famulari.name> ;;; Copyright © 2015 Leo Famulari <leo@famulari.name>
;;; Copyright © 2018 Tobias Geerinckx-Rice <me@tobias.gr>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -150,24 +151,26 @@ refreshed, and more.")
(define-public colordiff (define-public colordiff
(package (package
(name "colordiff") (name "colordiff")
(version "1.0.16") (version "1.0.18")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (list (string-append "http://www.colordiff.org/archive/colordiff-" (uri (list (string-append "https://www.colordiff.org/colordiff-"
version ".tar.gz")
(string-append "http://www.colordiff.org/archive/colordiff-"
version ".tar.gz"))) version ".tar.gz")))
(sha256 (sha256
(base32 (base32
"12qkkw13261dra8pg7mzx4r8p9pb0ajb090bib9j1s6hgphwzwga")))) "1q6n60n4b9fnzccxyxv04mxjsql4ddq17vl2c74ijvjdhpcfrkr9"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(arguments (arguments
`(#:tests? #f `(#:tests? #f ; no tests
#:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out")) #:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
"INSTALL_DIR=/bin" "MAN_DIR=/share/man/man1") "INSTALL_DIR=/bin" "MAN_DIR=/share/man/man1")
#:phases #:phases
(modify-phases %standard-phases (modify-phases %standard-phases
(delete 'configure) (delete 'configure) ; no configure script
(delete 'build)))) (delete 'build)))) ; nothing to build
(inputs (inputs
`(("perl" ,perl) `(("perl" ,perl)
("xmlto" ,xmlto))) ("xmlto" ,xmlto)))