guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: fossil: Update to 2.8.


From: guix-commits
Subject: 01/02: gnu: fossil: Update to 2.8.
Date: Wed, 27 Feb 2019 03:41:00 -0500 (EST)

efraim pushed a commit to branch master
in repository guix.

commit 66d05055bbfbdb657a0743c6b6a2332cb319fc42
Author: Jovany Leandro G.C <address@hidden>
Date:   Sat Feb 23 11:13:47 2019 -0500

    gnu: fossil: Update to 2.8.
    
    * gnu/packages/version-control.scm (fossil): Update to 2.8.
    [inputs]: Remove sqlite, add address@hidden
    [arguments]: Add custom phase to patch more shebangs.
    
    Signed-off-by: Efraim Flashner <address@hidden>
---
 gnu/packages/version-control.scm | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm
index c18a035..9453f02 100644
--- a/gnu/packages/version-control.scm
+++ b/gnu/packages/version-control.scm
@@ -22,6 +22,7 @@
 ;;; Copyright © 2018 Christopher Baines <address@hidden>
 ;;; Copyright © 2018 Timothy Sample <address@hidden>
 ;;; Copyright © 2018 Arun Isaac <address@hidden>
+;;; Copyright © 2019 Jovany Leandro G.C <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -1867,7 +1868,7 @@ repository\" with git-annex.")
 (define-public fossil
   (package
     (name "fossil")
-    (version "2.5")
+    (version "2.8")
     (source
      (origin
        (method url-fetch)
@@ -1881,7 +1882,7 @@ repository\" with git-annex.")
               "fossil-src-" version ".tar.gz")))
        (sha256
         (base32
-         "1lxawkhr1ki9fqw8076fxib2b1w673449yzb6vxjshqzh5h77c7r"))))
+         "0pbinf8d2kj1j7niblhzjd2l2khg6r2pn2xvig6gavz27p3vwcka"))))
     (build-system gnu-build-system)
     (native-inputs
      `(("tcl" ,tcl)                     ;for configuration only
@@ -1890,12 +1891,17 @@ repository\" with git-annex.")
     (inputs
      `(("openssl" ,openssl)
        ("zlib" ,zlib)
-       ("sqlite" ,sqlite)))
+       ("sqlite" ,sqlite-3.26.0)))
     (arguments
      `(#:configure-flags (list "--with-openssl=auto"
                                "--disable-internal-sqlite")
        #:test-target "test"
        #:phases (modify-phases %standard-phases
+                  (add-after 'patch-source-shebangs 'patch-sh
+                    (lambda _
+                      (substitute* '("auto.def")
+                        (("/bin/sh") (which "sh")))
+                      #t))
                   (replace 'configure
                     (lambda* (#:key outputs (configure-flags '())
                               #:allow-other-keys)



reply via email to

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