guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

01/01: gnu: colordiff: Update to 1.0.18.


From: Tobias Geerinckx-Rice
Subject: 01/01: gnu: colordiff: Update to 1.0.18.
Date: Fri, 12 Jan 2018 07:16:43 -0500 (EST)

nckx pushed a commit to branch master
in repository guix.

commit 58e3603e7f5452026b9a5fa61bb771d153ead4f4
Author: Tobias Geerinckx-Rice <address@hidden>
Date:   Fri Jan 12 12:10:19 2018 +0100

    gnu: colordiff: Update to 1.0.18.
    
    Also add the non-archive URL, which was probably the intention of commit
    8d479d27ca74f86a69b48d385f3d9537adf5392b.  Better late than never.
    
    * gnu/packages/patchutils.scm (colordiff): Update to 1.0.18.
---
 gnu/packages/patchutils.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/patchutils.scm b/gnu/packages/patchutils.scm
index 1e4b3fb..224b0e8 100644
--- a/gnu/packages/patchutils.scm
+++ b/gnu/packages/patchutils.scm
@@ -1,6 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2014 Eric Bavier <address@hidden>
 ;;; Copyright © 2015 Leo Famulari <address@hidden>
+;;; Copyright © 2018 Tobias Geerinckx-Rice <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -150,24 +151,26 @@ refreshed, and more.")
 (define-public colordiff
   (package
     (name "colordiff")
-    (version "1.0.16")
+    (version "1.0.18")
     (source
       (origin
         (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")))
       (sha256
        (base32
-        "12qkkw13261dra8pg7mzx4r8p9pb0ajb090bib9j1s6hgphwzwga"))))
+        "1q6n60n4b9fnzccxyxv04mxjsql4ddq17vl2c74ijvjdhpcfrkr9"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:tests? #f
+     `(#:tests? #f                      ; no tests
        #:make-flags (list (string-append "DESTDIR=" (assoc-ref %outputs "out"))
                           "INSTALL_DIR=/bin" "MAN_DIR=/share/man/man1")
        #:phases
        (modify-phases %standard-phases
-         (delete 'configure)
-         (delete 'build))))
+         (delete 'configure)            ; no configure script
+         (delete 'build))))             ; nothing to build
     (inputs
      `(("perl" ,perl)
        ("xmlto" ,xmlto)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]